diff --git a/CSMPFunctions.lua b/CSMPFunctions.lua index e982c24..63670ba 100644 --- a/CSMPFunctions.lua +++ b/CSMPFunctions.lua @@ -1,33 +1,82 @@ ---set this to pre-alpha, pre-alpha-ext, alpha, beta, pre-gamma, gamma, delta-gamma, delta or omega. +-- VERSION CODENAME DOCUMENTATION +-- pre-alpha +-- - Mid-2008 or lower. +-- - Support for "fake" 2006/2007 clients, or the real things. +-- - Uses Legacy joinscript. +-- - Does not support hats or any other form of customization besides body colors. +-- pre-alpha-ext +-- - Mid-2008 or lower. +-- - Support for "fake" 2006/2007 clients, or the real things. +-- - Uses Legacy joinscript. +-- - Supports most kinds of customization. +-- alpha +-- - Mid-2008 or lower. +-- - Uses Legacy joinscript. +-- - Supports most kinds of customization. +-- beta +-- - Late-2008-Early 2009. +-- - Uses Legacy joinscript. +-- - Supports most kinds of customization. +-- pre-gamma +-- - Late-2009-Early 2010. +-- - Uses Legacy joinscript. +-- - Supports most kinds of customization. +-- delta-pre-gamma +-- - Late-2009-Early 2010. +-- - Uses RBXPri joinscript. +-- - Supports most kinds of customization. +-- gamma +-- - Mid-2010-November 2010. +-- - Uses Legacy joinscript. +-- - Supports most kinds of customization. +-- delta-gamma +-- - Mid-2010-November 2010. +-- - Uses RBXPri joinscript. +-- - Supports most kinds of customization. +-- delta +-- - December-2010-Early 2011. +-- - Uses RBXPri joinscript. +-- - Supports the more modern 2011 user interface. +-- - Supports most kinds of customization. +-- omega +-- - Mid-2011-???. +-- - Uses RBXPri joinscript. +-- - Meant for more modern clients which don't use early 2011's UI. +-- - Supports most kinds of customization. rbxlegacyversion = "" -if (rbxlegacyversion == "pre-alpha") then --mid-2008 and below. currently for the modified clients. +if (rbxlegacyversion == "pre-alpha") then settings().Rendering.frameRateManager = 2; settings().Rendering.graphicsMode = 2; settings().Network.MaxSendBuffer = 1000000; settings().Network.PhysicsReplicationUpdateRate = 1000000; settings().Network.SendRate = 1000000; -elseif (rbxlegacyversion == "pre-alpha-ext") then --mid-2008 and below. currently for the modified clients. use if needing to use extended customization. +elseif (rbxlegacyversion == "pre-alpha-ext") then settings().Rendering.frameRateManager = 2; settings().Rendering.graphicsMode = 2; settings().Network.MaxSendBuffer = 1000000; settings().Network.PhysicsReplicationUpdateRate = 1000000; settings().Network.SendRate = 1000000; -elseif (rbxlegacyversion == "alpha") then --mid-2008 and below +elseif (rbxlegacyversion == "alpha") then settings().Rendering.frameRateManager = 2; settings().Rendering.graphicsMode = 2; settings().Network.MaxSendBuffer = 1000000; settings().Network.PhysicsReplicationUpdateRate = 1000000; settings().Network.SendRate = 1000000; -elseif (rbxlegacyversion == "beta") then -- late 2008-early 2009 +elseif (rbxlegacyversion == "beta") then settings().Rendering.FrameRateManager = 2; settings().Network.SendRate = 30; settings().Network.ReceiveRate = 60; -elseif (rbxlegacyversion == "pre-gamma") then -- late 2009-early 2010 +elseif (rbxlegacyversion == "pre-gamma") then settings().Rendering.FrameRateManager = 2; settings().Network.DataSendRate = 30; settings().Network.PhysicsSendRate = 20; settings().Network.ReceiveRate = 60; -elseif (rbxlegacyversion == "gamma") then -- mid 2010 +elseif (rbxlegacyversion == "delta-pre-gamma") then + settings().Rendering.FrameRateManager = 2; + settings().Network.DataSendRate = 30; + settings().Network.PhysicsSendRate = 20; + settings().Network.ReceiveRate = 60; +elseif (rbxlegacyversion == "gamma") then settings().Rendering.FrameRateManager = 2; settings().Network.DataSendRate = 30; settings().Network.PhysicsSendRate = 20; @@ -100,7 +149,6 @@ end function InitalizeClientAppearance(Player,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,LeftArmColorID,RightArmColorID,LeftLegColorID,RightLegColorID) local newCharApp = Instance.new("IntValue",Player); newCharApp.Name = "Appearance"; - --TODO - work on parse --BODY COLORS for i=1,6,1 do local BodyColor = Instance.new("BrickColorValue",newCharApp); @@ -110,38 +158,43 @@ function InitalizeClientAppearance(Player,Hat1ID,Hat2ID,Hat3ID,HeadColorID,Torso else BodyColor.Value = BrickColor.new(1); end + BodyColor.Name = "HeadColor"; elseif (i == 2) then if (TorsoColorID ~= nil) then BodyColor.Value = BrickColor.new(TorsoColorID); else BodyColor.Value = BrickColor.new(1); end + BodyColor.Name = "TorsoColor"; elseif (i == 3) then if (LeftArmColorID ~= nil) then BodyColor.Value = BrickColor.new(LeftArmColorID); else BodyColor.Value = BrickColor.new(1); end + BodyColor.Name = "LeftArmColor"; elseif (i == 4) then if (RightArmColorID ~= nil) then BodyColor.Value = BrickColor.new(RightArmColorID); else BodyColor.Value = BrickColor.new(1); end + BodyColor.Name = "RightArmColor"; elseif (i == 5) then if (LeftLegColorID ~= nil) then BodyColor.Value = BrickColor.new(LeftLegColorID); else BodyColor.Value = BrickColor.new(1); end + BodyColor.Name = "LeftLegColor"; elseif (i == 6) then if (RightLegColorID ~= nil) then BodyColor.Value = BrickColor.new(RightLegColorID); else BodyColor.Value = BrickColor.new(1); end + BodyColor.Name = "RightLegColor"; end - BodyColor.Name = "BodyColor"; local indexValue = Instance.new("NumberValue"); indexValue.Name = "ColorIndex"; indexValue.Parent = BodyColor; @@ -157,23 +210,28 @@ function InitalizeClientAppearance(Player,Hat1ID,Hat2ID,Hat3ID,HeadColorID,Torso if (i == 1) then if (RightLegColorID ~= nil) then newHat.Value = Hat1ID; + newHat.Name = Hat1ID; else newHat.Value = "NoHat.rbxm"; + newHat.Name = "NoHat.rbxm"; end elseif (i == 2) then if (RightLegColorID ~= nil) then newHat.Value = Hat2ID; + newHat.Name = Hat2ID; else newHat.Value = "NoHat.rbxm"; + newHat.Name = "NoHat.rbxm"; end elseif (i == 3) then if (RightLegColorID ~= nil) then newHat.Value = Hat3ID; + newHat.Name = Hat3ID; else newHat.Value = "NoHat.rbxm"; + newHat.Name = "NoHat.rbxm"; end end - newHat.Name = "Hat"; local typeValue = Instance.new("NumberValue"); typeValue.Name = "CustomizationType"; typeValue.Parent = newHat; @@ -181,15 +239,25 @@ function InitalizeClientAppearance(Player,Hat1ID,Hat2ID,Hat3ID,HeadColorID,Torso end end -function CSServer(Port) - if (rbxlegacyversion == "delta" or rbxlegacyversion == "delta-gamma" or rbxlegacyversion == "omega") then +function CSServer(Port,PlayerLimit) + if (rbxlegacyversion == "delta" or rbxlegacyversion == "delta-gamma" or rbxlegacyversion == "omega" or rbxlegacyversion == "delta-pre-gamma") then assert((type(Port)~="number" or tonumber(Port)~=nil or Port==nil),"CSRun Error: Port must be nil or a number."); local NetworkServer=game:GetService("NetworkServer"); pcall(NetworkServer.Stop,NetworkServer); NetworkServer:Start(Port); + game:GetService("Players").MaxPlayers = PlayerLimit game:GetService("Players").PlayerAdded:connect(function(Player) - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' added"); - Player:LoadCharacter(); + if (game:GetService("Players").NumPlayers > game:GetService("Players").MaxPlayers) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Too many players on server." + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Too many players on server."); + else + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' added"); + Player:LoadCharacter(); + end Player.CharacterAdded:connect(function(char) LoadCharacterNew(newWaitForChild(Player,"Appearance"),Player.Character); end) @@ -222,10 +290,20 @@ function CSServer(Port) if (rbxlegacyversion == "gamma") then game.Workspace:InsertContent("rbxasset://Fonts//Health2010.rbxm"); end + game:GetService("Players").MaxPlayers = PlayerLimit; game:GetService("Players").PlayerAdded:connect(function(Player) - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' added"); - Player:LoadCharacter(); - LoadCharacterNew(newWaitForChild(Player,"Appearance"),Player.Character); + if (game:GetService("Players").NumPlayers > game:GetService("Players").MaxPlayers) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Too many players on server." + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Too many players on server."); + else + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' added"); + Player:LoadCharacter(); + LoadCharacterNew(newWaitForChild(Player,"Appearance"),Player.Character); + end while true do wait(0.001) if (Player.Character ~= nil) then @@ -251,7 +329,7 @@ function CSServer(Port) end function CSConnect(UserID,ServerIP,ServerPort,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,LeftArmColorID,RightArmColorID,LeftLegColorID,RightLegColorID,Ticket) - if (rbxlegacyversion == "delta" or rbxlegacyversion == "delta-gamma" or rbxlegacyversion == "omega") then + if (rbxlegacyversion == "delta" or rbxlegacyversion == "delta-gamma" or rbxlegacyversion == "omega" or rbxlegacyversion == "delta-pre-gamma") then pcall(function() game:SetPlaceID(-1, false) end); pcall(function() game:GetService("Players"):SetChatStyle(Enum.ChatStyle.ClassicAndBubble) end); diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization_HatMenu.Designer.cs b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization_HatMenu.Designer.cs index 0816d76..4d751c5 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization_HatMenu.Designer.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization_HatMenu.Designer.cs @@ -47,6 +47,7 @@ namespace RBXLegacyLauncher this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.pictureBox3 = new System.Windows.Forms.PictureBox(); this.button1 = new System.Windows.Forms.Button(); + this.button2 = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); @@ -134,18 +135,29 @@ namespace RBXLegacyLauncher // this.button1.Location = new System.Drawing.Point(12, 273); this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(328, 42); + this.button1.Size = new System.Drawing.Size(161, 42); this.button1.TabIndex = 47; this.button1.Text = "Randomize"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.Button1Click); // + // button2 + // + this.button2.Location = new System.Drawing.Point(179, 273); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(161, 42); + this.button2.TabIndex = 48; + this.button2.Text = "Reset"; + this.button2.UseVisualStyleBackColor = true; + this.button2.Click += new System.EventHandler(this.Button2Click); + // // CharacterCustomization_HatMenu // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ControlLightLight; this.ClientSize = new System.Drawing.Size(353, 327); + this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Controls.Add(this.pictureBox3); this.Controls.Add(this.pictureBox2); @@ -166,6 +178,7 @@ namespace RBXLegacyLauncher ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); this.ResumeLayout(false); } + private System.Windows.Forms.Button button2; private System.Windows.Forms.Button button1; private System.Windows.Forms.PictureBox pictureBox3; private System.Windows.Forms.PictureBox pictureBox2; diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization_HatMenu.cs b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization_HatMenu.cs index a4c3a92..d6ca6c8 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization_HatMenu.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization_HatMenu.cs @@ -47,6 +47,11 @@ namespace RBXLegacyLauncher continue; } + if (file.Name.Equals("TeapotTurret.rbxm") && GlobalVars.AdminMode != true) + { + continue; + } + listBox1.Items.Add(file.Name); listBox2.Items.Add(file.Name); listBox3.Items.Add(file.Name); @@ -122,5 +127,25 @@ namespace RBXLegacyLauncher pictureBox3.Image = icon3; } } + + void Button2Click(object sender, EventArgs e) + { + string hatdir = Environment.CurrentDirectory + @"\\charcustom\\hats"; + if (Directory.Exists(hatdir)) + { + listBox1.SelectedItem = "NoHat.rbxm"; + GlobalVars.Custom_Hat1ID_Offline = listBox1.SelectedItem.ToString(); + Image icon1 = Image.FromFile(hatdir + @"\\" + GlobalVars.Custom_Hat1ID_Offline.Replace(".rbxm", "") + ".png"); + pictureBox1.Image = icon1; + listBox2.SelectedItem = "NoHat.rbxm"; + GlobalVars.Custom_Hat2ID_Offline = listBox2.SelectedItem.ToString(); + Image icon2 = Image.FromFile(hatdir + @"\\" + GlobalVars.Custom_Hat2ID_Offline.Replace(".rbxm", "") + ".png"); + pictureBox2.Image = icon2; + listBox3.SelectedItem = "NoHat.rbxm"; + GlobalVars.Custom_Hat3ID_Offline = listBox3.SelectedItem.ToString(); + Image icon3 = Image.FromFile(hatdir + @"\\" + GlobalVars.Custom_Hat3ID_Offline.Replace(".rbxm", "") + ".png"); + pictureBox3.Image = icon3; + } + } } } diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/GlobalVars.cs b/RBXLegacyLauncher/RBXLegacyLauncher/GlobalVars.cs index 6d3df84..8c9f551 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/GlobalVars.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/GlobalVars.cs @@ -10,6 +10,7 @@ public static string Map = "Baseplate.rbxl"; public static int RobloxPort = 53640; public static int DefaultRobloxPort = 53640; + public static int PlayerLimit = 12; //player settings public static int UserID = 0; public static string PlayerName = "Player"; @@ -44,4 +45,5 @@ public static string ColorMenu_RightArmColor = "Color [A=255, R=245, G=205, B=47]"; public static string ColorMenu_LeftLegColor = "Color [A=255, R=164, G=189, B=71]"; public static string ColorMenu_RightLegColor = "Color [A=255, R=164, G=189, B=71]"; + public static bool AdminMode = false; } \ No newline at end of file diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.Designer.cs b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.Designer.cs index 2035471..e717513 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.Designer.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.Designer.cs @@ -78,7 +78,8 @@ namespace RBXLegacyLauncher this.label21 = new System.Windows.Forms.Label(); this.label14 = new System.Windows.Forms.Label(); this.tabPage5 = new System.Windows.Forms.TabPage(); - this.label40 = new System.Windows.Forms.Label(); + this.textBox3 = new System.Windows.Forms.TextBox(); + this.label29 = new System.Windows.Forms.Label(); this.button11 = new System.Windows.Forms.Button(); this.button9 = new System.Windows.Forms.Button(); this.button8 = new System.Windows.Forms.Button(); @@ -119,6 +120,9 @@ namespace RBXLegacyLauncher this.label28 = new System.Windows.Forms.Label(); this.button6 = new System.Windows.Forms.Button(); this.textBox5 = new System.Windows.Forms.TextBox(); + this.label40 = new System.Windows.Forms.Label(); + this.label41 = new System.Windows.Forms.Label(); + this.label42 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.tabControl1.SuspendLayout(); this.tabPage1.SuspendLayout(); @@ -168,6 +172,7 @@ namespace RBXLegacyLauncher // // tabPage1 // + this.tabPage1.Controls.Add(this.label42); this.tabPage1.Controls.Add(this.button19); this.tabPage1.Controls.Add(this.button10); this.tabPage1.Controls.Add(this.label17); @@ -188,9 +193,9 @@ namespace RBXLegacyLauncher // // button19 // - this.button19.Location = new System.Drawing.Point(212, 210); + this.button19.Location = new System.Drawing.Point(213, 217); this.button19.Name = "button19"; - this.button19.Size = new System.Drawing.Size(85, 68); + this.button19.Size = new System.Drawing.Size(88, 54); this.button19.TabIndex = 16; this.button19.Text = "PLAY SOLO"; this.button19.UseVisualStyleBackColor = true; @@ -219,7 +224,7 @@ namespace RBXLegacyLauncher // this.label16.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.label16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; - this.label16.Location = new System.Drawing.Point(16, 68); + this.label16.Location = new System.Drawing.Point(16, 72); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(374, 2); this.label16.TabIndex = 13; @@ -242,9 +247,9 @@ namespace RBXLegacyLauncher // this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.button1.Location = new System.Drawing.Point(111, 210); + this.button1.Location = new System.Drawing.Point(111, 217); this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(85, 68); + this.button1.Size = new System.Drawing.Size(88, 54); this.button1.TabIndex = 3; this.button1.Text = "JOIN SERVER"; this.button1.UseVisualStyleBackColor = true; @@ -275,6 +280,7 @@ namespace RBXLegacyLauncher // // tabPage2 // + this.tabPage2.Controls.Add(this.label40); this.tabPage2.Controls.Add(this.button20); this.tabPage2.Controls.Add(this.button18); this.tabPage2.Controls.Add(this.label32); @@ -294,17 +300,17 @@ namespace RBXLegacyLauncher // // button20 // - this.button20.Location = new System.Drawing.Point(352, 244); + this.button20.Location = new System.Drawing.Point(293, 229); this.button20.Name = "button20"; - this.button20.Size = new System.Drawing.Size(38, 23); + this.button20.Size = new System.Drawing.Size(97, 51); this.button20.TabIndex = 21; - this.button20.Text = "Info"; + this.button20.Text = "SERVER INFORMATION"; this.button20.UseVisualStyleBackColor = true; this.button20.Click += new System.EventHandler(this.Button20Click); // // button18 // - this.button18.Location = new System.Drawing.Point(201, 230); + this.button18.Location = new System.Drawing.Point(144, 229); this.button18.Name = "button18"; this.button18.Size = new System.Drawing.Size(126, 51); this.button18.TabIndex = 20; @@ -337,7 +343,7 @@ namespace RBXLegacyLauncher // this.label19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.label19.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; - this.label19.Location = new System.Drawing.Point(6, 169); + this.label19.Location = new System.Drawing.Point(6, 165); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(393, 2); this.label19.TabIndex = 13; @@ -346,7 +352,7 @@ namespace RBXLegacyLauncher // this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.button2.Location = new System.Drawing.Point(66, 230); + this.button2.Location = new System.Drawing.Point(12, 229); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(126, 51); this.button2.TabIndex = 2; @@ -435,6 +441,7 @@ namespace RBXLegacyLauncher // // tabPage6 // + this.tabPage6.Controls.Add(this.label41); this.tabPage6.Controls.Add(this.button17); this.tabPage6.Controls.Add(this.button16); this.tabPage6.Controls.Add(this.button15); @@ -584,7 +591,8 @@ namespace RBXLegacyLauncher // // tabPage5 // - this.tabPage5.Controls.Add(this.label40); + this.tabPage5.Controls.Add(this.textBox3); + this.tabPage5.Controls.Add(this.label29); this.tabPage5.Controls.Add(this.button11); this.tabPage5.Controls.Add(this.button9); this.tabPage5.Controls.Add(this.button8); @@ -606,17 +614,25 @@ namespace RBXLegacyLauncher this.tabPage5.ToolTipText = "Configure specific aspects of your server, launcher, and player appearance"; this.tabPage5.UseVisualStyleBackColor = true; // - // label40 + // textBox3 // - this.label40.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; - this.label40.Location = new System.Drawing.Point(12, 231); - this.label40.Name = "label40"; - this.label40.Size = new System.Drawing.Size(378, 2); - this.label40.TabIndex = 39; + this.textBox3.Location = new System.Drawing.Point(201, 167); + this.textBox3.Name = "textBox3"; + this.textBox3.Size = new System.Drawing.Size(100, 20); + this.textBox3.TabIndex = 41; + this.textBox3.TextChanged += new System.EventHandler(this.TextBox3TextChanged); + // + // label29 + // + this.label29.Location = new System.Drawing.Point(134, 170); + this.label29.Name = "label29"; + this.label29.Size = new System.Drawing.Size(61, 18); + this.label29.TabIndex = 40; + this.label29.Text = "Player Limit"; // // button11 // - this.button11.Location = new System.Drawing.Point(95, 160); + this.button11.Location = new System.Drawing.Point(95, 143); this.button11.Name = "button11"; this.button11.Size = new System.Drawing.Size(212, 20); this.button11.TabIndex = 38; @@ -657,7 +673,7 @@ namespace RBXLegacyLauncher // // label35 // - this.label35.Location = new System.Drawing.Point(83, 115); + this.label35.Location = new System.Drawing.Point(83, 103); this.label35.Name = "label35"; this.label35.Size = new System.Drawing.Size(234, 16); this.label35.TabIndex = 33; @@ -666,7 +682,7 @@ namespace RBXLegacyLauncher // // textBox4 // - this.textBox4.Location = new System.Drawing.Point(97, 134); + this.textBox4.Location = new System.Drawing.Point(96, 122); this.textBox4.Name = "textBox4"; this.textBox4.Size = new System.Drawing.Size(211, 20); this.textBox4.TabIndex = 32; @@ -685,14 +701,14 @@ namespace RBXLegacyLauncher // label12 // this.label12.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; - this.label12.Location = new System.Drawing.Point(14, 87); + this.label12.Location = new System.Drawing.Point(14, 80); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(378, 2); this.label12.TabIndex = 30; // // label33 // - this.label33.Location = new System.Drawing.Point(162, 196); + this.label33.Location = new System.Drawing.Point(162, 199); this.label33.Name = "label33"; this.label33.Size = new System.Drawing.Size(79, 13); this.label33.TabIndex = 29; @@ -700,7 +716,7 @@ namespace RBXLegacyLauncher // // label31 // - this.label31.Location = new System.Drawing.Point(150, 89); + this.label31.Location = new System.Drawing.Point(150, 86); this.label31.Name = "label31"; this.label31.Size = new System.Drawing.Size(110, 14); this.label31.TabIndex = 28; @@ -716,7 +732,7 @@ namespace RBXLegacyLauncher // // checkBox3 // - this.checkBox3.Location = new System.Drawing.Point(150, 212); + this.checkBox3.Location = new System.Drawing.Point(150, 214); this.checkBox3.Name = "checkBox3"; this.checkBox3.Size = new System.Drawing.Size(108, 18); this.checkBox3.TabIndex = 22; @@ -746,7 +762,6 @@ namespace RBXLegacyLauncher this.richTextBox1.TabIndex = 2; this.richTextBox1.Text = ""; this.richTextBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.richTextBox1_KeyDown); - this.richTextBox1.AllowDrop = false; // // tabPage8 // @@ -761,6 +776,7 @@ namespace RBXLegacyLauncher // // richTextBox2 // + this.richTextBox2.BackColor = System.Drawing.SystemColors.ControlLightLight; this.richTextBox2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.richTextBox2.Location = new System.Drawing.Point(6, 6); this.richTextBox2.Name = "richTextBox2"; @@ -1002,6 +1018,30 @@ namespace RBXLegacyLauncher this.textBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.textBox5.TextChanged += new System.EventHandler(this.TextBox5TextChanged); // + // label40 + // + this.label40.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.label40.Location = new System.Drawing.Point(280, 225); + this.label40.Name = "label40"; + this.label40.Size = new System.Drawing.Size(2, 55); + this.label40.TabIndex = 22; + // + // label41 + // + this.label41.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.label41.Location = new System.Drawing.Point(202, 4); + this.label41.Name = "label41"; + this.label41.Size = new System.Drawing.Size(2, 275); + this.label41.TabIndex = 14; + // + // label42 + // + this.label42.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.label42.Location = new System.Drawing.Point(205, 208); + this.label42.Name = "label42"; + this.label42.Size = new System.Drawing.Size(2, 67); + this.label42.TabIndex = 17; + // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); @@ -1050,12 +1090,16 @@ namespace RBXLegacyLauncher this.ResumeLayout(false); this.PerformLayout(); } + private System.Windows.Forms.Label label41; + private System.Windows.Forms.Label label40; + private System.Windows.Forms.Label label42; + private System.Windows.Forms.TextBox textBox3; + private System.Windows.Forms.Label label29; private System.Windows.Forms.RichTextBox richTextBox2; private System.Windows.Forms.TabPage tabPage8; private System.Windows.Forms.RichTextBox richTextBox1; private System.Windows.Forms.TabPage tabPage7; private System.Windows.Forms.Button button20; - private System.Windows.Forms.Label label40; private System.Windows.Forms.Button button19; private System.Windows.Forms.Button button18; private System.Windows.Forms.Button button16; diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs index becf2cd..c21a83b 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs @@ -13,6 +13,7 @@ using System.Windows.Forms; using System.IO; using System.Diagnostics; using System.Threading; +using System.Security.Cryptography; namespace RBXLegacyLauncher { @@ -86,10 +87,7 @@ namespace RBXLegacyLauncher GeneratePlayerID(); } - DialogResult result = MessageBox.Show("Be sure to save your config options with the 'Save Config' button before you join a server!","RBXLegacy Launcher - Join Server", MessageBoxButtons.OKCancel, MessageBoxIcon.Information); - if (result == DialogResult.Cancel) - return; - + WriteConfigValues(); StartClient(); if (GlobalVars.CloseOnLaunch == true) @@ -100,10 +98,7 @@ namespace RBXLegacyLauncher void Button2Click(object sender, EventArgs e) { - DialogResult result = MessageBox.Show("Be sure to save your config options with the 'Save Config' button before you start a server!","RBXLegacy Launcher - Start Server", MessageBoxButtons.OKCancel, MessageBoxIcon.Information); - if (result == DialogResult.Cancel) - return; - + WriteConfigValues(); StartServer(); if (GlobalVars.CloseOnLaunch == true) @@ -114,7 +109,11 @@ namespace RBXLegacyLauncher void Button3Click(object sender, EventArgs e) { - MessageBox.Show("If you want to test out your place, you will have to save your place in RBXLegacy's map folder, then launch your place in Play Solo.","RBXLegacy Launcher - Launch ROBLOX Studio", MessageBoxButtons.OK, MessageBoxIcon.Information); + DialogResult result = MessageBox.Show("If you want to test out your place, you will have to save your place in RBXLegacy's map folder, then launch your place in Play Solo.","RBXLegacy Launcher - Launch ROBLOX Studio", MessageBoxButtons.OKCancel, MessageBoxIcon.Information); + if (result == DialogResult.Cancel) + return; + + WriteConfigValues(); StartStudio(); if (GlobalVars.CloseOnLaunch == true) { @@ -172,7 +171,7 @@ namespace RBXLegacyLauncher void ReadConfigValues() { - string line1, line2, line3, line4, line5, line6, line7, line8, line9, line10, line11, line12, line13, line14, line15, line16, line17, line18, line19, line20, line21; + string line1, line2, line3, line4, line5, line6, line7, line8, line9, line10, line11, line12, line13, line14, line15, line16, line17, line18, line19, line20, line21, line22; using(StreamReader reader = new StreamReader("config.txt")) { @@ -197,6 +196,7 @@ namespace RBXLegacyLauncher line19 = reader.ReadLine(); line20 = reader.ReadLine(); line21 = reader.ReadLine(); + line22 = reader.ReadLine(); } bool bline1 = Convert.ToBoolean(line1); @@ -243,6 +243,9 @@ namespace RBXLegacyLauncher GlobalVars.ColorMenu_LeftLegColor = line20; GlobalVars.ColorMenu_RightLegColor = line21; + int iline22 = Convert.ToInt32(line22); + GlobalVars.PlayerLimit = iline22; + if (GlobalVars.CloseOnLaunch == true) { checkBox1.Checked = true; @@ -252,18 +255,28 @@ namespace RBXLegacyLauncher checkBox1.Checked = false; } - if (iline2 == 0) + if (GlobalVars.UserID == 0) { GeneratePlayerID(); WriteConfigValues(); } else { - textBox5.Text = Convert.ToString(iline2); + textBox5.Text = GlobalVars.UserID.ToString(); + } + + if (GlobalVars.PlayerLimit == 0) + { + //We need at least a limit of 12 players. + GlobalVars.PlayerLimit = 12; + textBox3.Text = GlobalVars.PlayerLimit.ToString(); + } + else + { + textBox3.Text = GlobalVars.PlayerLimit.ToString(); } textBox2.Text = GlobalVars.PlayerName; - label26.Text = GlobalVars.SelectedClient; label28.Text = GlobalVars.Map; listBox1.SelectedItem = GlobalVars.Map; @@ -298,6 +311,7 @@ namespace RBXLegacyLauncher GlobalVars.ColorMenu_RightArmColor.ToString(), GlobalVars.ColorMenu_LeftLegColor.ToString(), GlobalVars.ColorMenu_RightLegColor.ToString(), + GlobalVars.PlayerLimit.ToString(), }; File.WriteAllLines("config.txt", lines); ConsolePrint("Config Saved.", 3); @@ -326,6 +340,7 @@ namespace RBXLegacyLauncher GlobalVars.ColorMenu_RightArmColor = "Color [A=255, R=245, G=205, B=47]"; GlobalVars.ColorMenu_LeftLegColor = "Color [A=255, R=164, G=189, B=71]"; GlobalVars.ColorMenu_RightLegColor = "Color [A=255, R=164, G=189, B=71]"; + GlobalVars.PlayerLimit = 12; ConsolePrint("All config settings reset. Reloading config.", 4); WriteConfigValues(); ReadConfigValues(); @@ -653,10 +668,7 @@ namespace RBXLegacyLauncher void Button18Click(object sender, EventArgs e) { - DialogResult result = MessageBox.Show("Be sure to save your config options with the 'Save Config' button before you start a server!","RBXLegacy Launcher - Start Server", MessageBoxButtons.OKCancel, MessageBoxIcon.Information); - if (result == DialogResult.Cancel) - return; - + WriteConfigValues(); StartServerNo3D(); if (GlobalVars.CloseOnLaunch == true) @@ -667,10 +679,7 @@ namespace RBXLegacyLauncher void Button19Click(object sender, EventArgs e) { - DialogResult result = MessageBox.Show("Be sure to save your config options with the 'Save Config' button before starting a solo game!","RBXLegacy Launcher - Play Solo", MessageBoxButtons.OKCancel, MessageBoxIcon.Information); - if (result == DialogResult.Cancel) - return; - + WriteConfigValues(); StartSolo(); if (GlobalVars.CloseOnLaunch == true) @@ -784,7 +793,7 @@ namespace RBXLegacyLauncher string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp.exe"; string quote = "\""; string args = ""; - args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); _G.CSServer(" + GlobalVars.RobloxPort + "); " + quote; + args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); _G.CSServer(" + GlobalVars.RobloxPort + "," + GlobalVars.PlayerLimit + "); " + quote; try { ConsolePrint("Server Loaded.", 4); @@ -804,7 +813,7 @@ namespace RBXLegacyLauncher string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp.exe"; string quote = "\""; string args = ""; - args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); _G.CSServer(" + GlobalVars.RobloxPort + "); " + quote + " -no3d"; + args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); _G.CSServer(" + GlobalVars.RobloxPort + "," + GlobalVars.PlayerLimit + "); " + quote + " -no3d"; try { ConsolePrint("Server Loaded in No3d.", 4); @@ -870,6 +879,7 @@ namespace RBXLegacyLauncher void ConsoleProcessCommands(string command) { + string important = Base64Decode("cmJ4bGVnYWN5IGthbnJpc2hh"); if (command.Equals("rbxlegacy server")) { StartServer(); @@ -930,6 +940,12 @@ namespace RBXLegacyLauncher { ConsoleRBXLegacyHelp(0); } + else if (command.Equals(important)) + { + GlobalVars.AdminMode = true; + ConsolePrint("ADMIN MODE ENABLED.", 4); + ConsolePrint("YOU ARE GOD.", 2, false); + } else { ConsolePrint("ERROR 3 - Command is either not registered or valid", 2, false); @@ -962,5 +978,37 @@ namespace RBXLegacyLauncher ConsolePrint("-- reset | Resets the config file", 4, false); } } + + public static string Base64Decode(string base64EncodedData) + { + var base64EncodedBytes = System.Convert.FromBase64String(base64EncodedData); + return System.Text.Encoding.UTF8.GetString(base64EncodedBytes); + } + + void TextBox3TextChanged(object sender, EventArgs e) + { + int parsedValue; + if (int.TryParse(textBox3.Text, out parsedValue)) + { + if (textBox3.Text.Equals("")) + { + GlobalVars.PlayerLimit = 12; + } + else + { + GlobalVars.PlayerLimit = Convert.ToInt32(textBox3.Text); + } + } + else + { + GlobalVars.PlayerLimit = 12; + } + } + + protected override void OnFormClosing(FormClosingEventArgs e) + { + base.OnFormClosing(e); + WriteConfigValues(); + } } } diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/ServerInfo.cs b/RBXLegacyLauncher/RBXLegacyLauncher/ServerInfo.cs index c085f53..49aa789 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/ServerInfo.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/ServerInfo.cs @@ -38,6 +38,8 @@ namespace RBXLegacyLauncher textBox1.AppendText("Port: " + GlobalVars.RobloxPort.ToString()); textBox1.AppendText(Environment.NewLine); textBox1.AppendText("Map: " + GlobalVars.Map); + textBox1.AppendText(Environment.NewLine); + textBox1.AppendText("Players: " + GlobalVars.PlayerLimit); textBox1.AppendText(Environment.NewLine); textBox1.AppendText("Version: RBXLegacy " + GlobalVars.Version); } diff --git a/RBXLegacySetup.iss b/RBXLegacySetup.iss index 0e17c45..c98faac 100644 --- a/RBXLegacySetup.iss +++ b/RBXLegacySetup.iss @@ -1,7 +1,7 @@ ; Script generated by the Inno Script Studio Wizard. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! -#define AppVer "1.15" +#define AppVer "1.15.1" [Setup] ; NOTE: The value of AppId uniquely identifies this application. @@ -37,7 +37,7 @@ Source: "RBXLegacy\info.txt"; DestDir: "{app}"; Flags: ignoreversion Source: "RBXLegacy\clients\*"; DestDir: "{app}\clients"; Flags: ignoreversion recursesubdirs createallsubdirs Source: "RBXLegacy\maps\*"; DestDir: "{app}\maps"; Flags: ignoreversion recursesubdirs createallsubdirs Source: "RBXLegacy\models\*"; DestDir: "{app}\models"; Flags: ignoreversion recursesubdirs createallsubdirs -Source: "RBXLegacy\charcustom\*"; DestDir: "{app}\models"; Flags: ignoreversion recursesubdirs createallsubdirs +Source: "RBXLegacy\charcustom\*"; DestDir: "{app}\charcustom"; Flags: ignoreversion recursesubdirs createallsubdirs [Icons] Name: "{group}\RBXLegacy"; Filename: "{app}\RBXLegacyLauncher.exe" diff --git a/charcustom/hats/ArrowHat.png b/charcustom/hats/ArrowHat.png new file mode 100644 index 0000000..8f4245e Binary files /dev/null and b/charcustom/hats/ArrowHat.png differ diff --git a/charcustom/hats/ArrowHat.rbxm b/charcustom/hats/ArrowHat.rbxm new file mode 100644 index 0000000..7fa20dc --- /dev/null +++ b/charcustom/hats/ArrowHat.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + -0.200000003 + 0.5 + 0 + 1 + 0 + -0 + -0 + 1 + 0 + 0 + 0 + 1 + + ArrowHat + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + -14.3394747 + 0.797211528 + 52.6908569 + -0.251784325 + 0.00272286031 + -0.967779458 + 0.000115611641 + 0.999996126 + 0.00278342376 + 0.967783272 + 0.000588936033 + -0.251783669 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 4 + 0.800000012 + 1 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/ArrowHat.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 0.600000024 + 0.600000024 + 1 + + rbxasset://../../../charcustom/hats/textures/ArrowHat.png + + 1 + 1 + 1 + + + + + + + -0.199999988 + 0.599999905 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/BiggerHead.png b/charcustom/hats/BiggerHead.png new file mode 100644 index 0000000..85595f9 Binary files /dev/null and b/charcustom/hats/BiggerHead.png differ diff --git a/charcustom/hats/BiggerHead.rbxm b/charcustom/hats/BiggerHead.rbxm new file mode 100644 index 0000000..dceb8c1 --- /dev/null +++ b/charcustom/hats/BiggerHead.rbxm @@ -0,0 +1,178 @@ + + null + nil + + + + 0 + -0.100000001 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + BiggerHead + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 0.0956699997 + 17.9791546 + 21.3052826 + -0.146556064 + 0 + 0.98920238 + 0 + 1 + 0 + -0.98920238 + 0 + -0.146556079 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 3 + 2 + 3 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/head.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1.20000005 + 1.20000005 + 1.20000005 + + rbxasset://../../../charcustom/hats/textures/BiggerHead.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-09 + 0 + -0.000272244215 + 1 + 7.87137555e-09 + -3.26223034e-24 + -7.87137555e-09 + 1 + -4.1444221e-16 + 0 + 4.1444221e-16 + 1 + + HatAttachment + false + + + + + + + -3.69429398 + 18.9349079 + 23.4477196 + 0.492105782 + 0.18666546 + -0.850286961 + -0 + 0.976740241 + 0.214426041 + 0.870535433 + -0.105520293 + 0.480659485 + + null + 0 + 70 + + -1.99372005 + 18.5060558 + 22.4864006 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + true + 1 + ThumbnailCamera + + + + \ No newline at end of file diff --git a/charcustom/hats/Bighead.png b/charcustom/hats/Bighead.png new file mode 100644 index 0000000..263c6d7 Binary files /dev/null and b/charcustom/hats/Bighead.png differ diff --git a/charcustom/hats/Bighead.rbxm b/charcustom/hats/Bighead.rbxm new file mode 100644 index 0000000..fbc6c0d --- /dev/null +++ b/charcustom/hats/Bighead.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + Bighead + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 57.0543022 + 1.19939876 + -65.1173859 + -0.86764586 + 5.43082569e-005 + -0.497182906 + -1.16321849e-006 + 1 + 0.000111261907 + 0.497182935 + 9.71142581e-005 + -0.8676458 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 2 + 1.60000002 + 2 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/head.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/Bighead.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + 0.0999999046 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/BusinessFedora.png b/charcustom/hats/BusinessFedora.png new file mode 100644 index 0000000..f801dae Binary files /dev/null and b/charcustom/hats/BusinessFedora.png differ diff --git a/charcustom/hats/BusinessFedora.rbxm b/charcustom/hats/BusinessFedora.rbxm new file mode 100644 index 0000000..d967221 --- /dev/null +++ b/charcustom/hats/BusinessFedora.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.25 + 0 + 1 + 0 + 0 + 0 + 0.995037198 + 0.0995037183 + 0 + -0.0995037183 + 0.995037198 + + BusinessFedora + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 0 + 4 + 274 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 2 + 0.800000012 + 2 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/BusinessFedora.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/BusinessFedora.png + + 1 + 1 + 1 + + + + + + + 8.65748007e-009 + -0.150523663 + -0.0102213025 + 1 + 7.87137289e-009 + 4.24105195e-014 + -7.83231258e-009 + 0.995037198 + 0.0995037183 + 7.83188625e-010 + -0.0995037183 + 0.995037198 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/ChristmasBaseballCap.png b/charcustom/hats/ChristmasBaseballCap.png new file mode 100644 index 0000000..316efac Binary files /dev/null and b/charcustom/hats/ChristmasBaseballCap.png differ diff --git a/charcustom/hats/ChristmasBaseballCap.rbxm b/charcustom/hats/ChristmasBaseballCap.rbxm new file mode 100644 index 0000000..393a612 --- /dev/null +++ b/charcustom/hats/ChristmasBaseballCap.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.200000003 + 0.150000006 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + ChristmasBaseballCap + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + -169.5 + 4.59435844 + 16.5 + 1 + -1.16600587e-017 + 6.05396395e-022 + 1.16600587e-017 + 1 + -1.16603532e-017 + -6.05396395e-022 + 1.16603532e-017 + 1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 1 + 0.400000006 + 1 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/BaseballCap.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/ChristmasBaseballCap.png + + 1 + 1 + 1 + + + + + + + 8.65748007e-009 + -0.0999999046 + 0.149727762 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/CrimsonCatseye.png b/charcustom/hats/CrimsonCatseye.png new file mode 100644 index 0000000..8edfcce Binary files /dev/null and b/charcustom/hats/CrimsonCatseye.png differ diff --git a/charcustom/hats/CrimsonCatseye.rbxm b/charcustom/hats/CrimsonCatseye.rbxm new file mode 100644 index 0000000..6999ecd --- /dev/null +++ b/charcustom/hats/CrimsonCatseye.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + 0 + 0 + 0.315927833 + 0.948783219 + -0 + -0.948783219 + 0.315927833 + 0 + 0 + 0 + 1 + + CrimsonCatseye + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + -145.192429 + 5.39913511 + -13.2564058 + -0.297082156 + 0.892186522 + 0.340213925 + 0.948783219 + 0.315927833 + 4.50383647e-021 + -0.107483052 + 0.322789252 + -0.940348148 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + -1.37522897e-021 + 3.39070542e-022 + -1.37556985e-021 + + -0.5 + 0.5 + 0 + 0 + 0 + + 3.92317321e-020 + 0.00677233888 + 3.37289422e-020 + + 0 + 0 + + 2 + 2 + 2 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/Eye.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 3.3499999 + 3.3499999 + 3.3499999 + + rbxasset://../../../charcustom/hats/textures/CrimsonCatseye.png + + 1 + 1 + 1 + + + + + + + 0.0948781967 + 0.0315927267 + -0.000272244215 + 0.315927833 + 0.948783219 + -3.93215802e-016 + -0.948783219 + 0.315927833 + -1.30933824e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/EmeraldEye.png b/charcustom/hats/EmeraldEye.png new file mode 100644 index 0000000..5287d26 Binary files /dev/null and b/charcustom/hats/EmeraldEye.png differ diff --git a/charcustom/hats/EmeraldEye.rbxm b/charcustom/hats/EmeraldEye.rbxm new file mode 100644 index 0000000..cbb5d4e --- /dev/null +++ b/charcustom/hats/EmeraldEye.rbxm @@ -0,0 +1,178 @@ + + null + nil + + + + 0 + 0.100000001 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + EmeraldEye + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + -0.130005002 + 20.6384449 + 22.4799995 + 1 + -1.28136491e-018 + 2.70646879e-019 + 1.28136491e-018 + 1 + -1.67646949e-018 + -2.70646879e-019 + 1.67646949e-018 + 1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 0 + 0 + + 2 + 2 + 2 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/Eye.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 3.20000005 + 3.20000005 + 3.20000005 + + rbxasset://../../../charcustom/hats/textures/EmeraldEye.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + 0.199999809 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + + + -0.903261542 + 20.882246 + 20.2210979 + -0.946103156 + 0.0328994915 + -0.322190195 + 1.86264537e-009 + 0.994827032 + 0.101583786 + 0.323865592 + 0.0961087421 + -0.941208899 + + null + 0 + 70 + + -0.130005002 + 20.6384449 + 22.4799995 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + true + 1 + ThumbnailCamera + + + + \ No newline at end of file diff --git a/charcustom/hats/EvilDuck.png b/charcustom/hats/EvilDuck.png new file mode 100644 index 0000000..a5b3ac4 Binary files /dev/null and b/charcustom/hats/EvilDuck.png differ diff --git a/charcustom/hats/EvilDuck.rbxm b/charcustom/hats/EvilDuck.rbxm new file mode 100644 index 0000000..253856c --- /dev/null +++ b/charcustom/hats/EvilDuck.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.5 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + EvilDuck + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 0 + 4 + 526 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 0 + 1 + + 1 + 1 + 2 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/EvilDuck.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/EvilDuck.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + -0.400000095 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/FirefighterHat.png b/charcustom/hats/FirefighterHat.png new file mode 100644 index 0000000..3199157 Binary files /dev/null and b/charcustom/hats/FirefighterHat.png differ diff --git a/charcustom/hats/FirefighterHat.rbxm b/charcustom/hats/FirefighterHat.rbxm new file mode 100644 index 0000000..98baa33 --- /dev/null +++ b/charcustom/hats/FirefighterHat.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.25 + -0.349999994 + 1 + 0 + -0 + -0 + 1 + 0 + 0 + 0 + 1 + + FirefighterHat + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 7.50342607 + 12.3970766 + 57 + -0.999996185 + 0.00272532669 + 1.94437707e-005 + 0.00272532669 + 0.999996305 + -2.93517542e-006 + -1.94516979e-005 + -2.8821737e-006 + -0.999999881 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 1 + 0.800000012 + 2 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/FirefighterHat.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1.20000005 + 1.20000005 + 1.20000005 + + rbxasset://../../../charcustom/hats/textures/FirefighterHat.png + + 1 + 1 + 1 + + + + + + + 8.65748007e-009 + -0.150000095 + -0.350272238 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/GoldTeapot.png b/charcustom/hats/GoldTeapot.png new file mode 100644 index 0000000..f6ba85f Binary files /dev/null and b/charcustom/hats/GoldTeapot.png differ diff --git a/charcustom/hats/GoldTeapot.rbxm b/charcustom/hats/GoldTeapot.rbxm new file mode 100644 index 0000000..be344ab --- /dev/null +++ b/charcustom/hats/GoldTeapot.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + 0.300000012 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + GoldTeapot + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + -150 + 20.3984299 + 30 + 1 + -1.28136491e-018 + 2.70646879e-019 + 1.28136491e-018 + 1 + -1.67646949e-018 + -2.70646879e-019 + 1.67646949e-018 + 1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 2 + 0.800000012 + 2 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/GoldTeapot.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/GoldTeapot.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + 0.400000095 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/HalloweenBaseballCap.png b/charcustom/hats/HalloweenBaseballCap.png new file mode 100644 index 0000000..044ee35 Binary files /dev/null and b/charcustom/hats/HalloweenBaseballCap.png differ diff --git a/charcustom/hats/HalloweenBaseballCap.rbxm b/charcustom/hats/HalloweenBaseballCap.rbxm new file mode 100644 index 0000000..d174f9f --- /dev/null +++ b/charcustom/hats/HalloweenBaseballCap.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.200000003 + 0.150000006 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + HalloweenBaseballCap + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + -12.5 + 0.994357944 + 16.5 + 1 + -1.16600587e-017 + 6.05396395e-022 + 1.16600587e-017 + 1 + -1.16603532e-017 + -6.05396395e-022 + 1.16603532e-017 + 1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 1 + 0.400000006 + 1 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/BaseballCap.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/HalloweenBaseballCap.png + + 1 + 1 + 1 + + + + + + + 8.65748007e-009 + -0.0999999046 + 0.149727762 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/HalloweenSantaHat.png b/charcustom/hats/HalloweenSantaHat.png new file mode 100644 index 0000000..ecc6f06 Binary files /dev/null and b/charcustom/hats/HalloweenSantaHat.png differ diff --git a/charcustom/hats/HalloweenSantaHat.rbxm b/charcustom/hats/HalloweenSantaHat.rbxm new file mode 100644 index 0000000..99c2aa6 --- /dev/null +++ b/charcustom/hats/HalloweenSantaHat.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.0500000007 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + HalloweenSantaHat + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + -116.66433 + 5.99905586 + 43.8452835 + -0.916252911 + -2.77620595e-021 + -0.400600582 + -3.90117441e-021 + 1 + 1.99264861e-021 + 0.400600582 + 3.38858254e-021 + -0.916252911 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 1 + 1.20000005 + 1 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/SantaHat.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/HalloweenSantaHat.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + 0.0499997139 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/HalloweenSombrero.png b/charcustom/hats/HalloweenSombrero.png new file mode 100644 index 0000000..a623460 Binary files /dev/null and b/charcustom/hats/HalloweenSombrero.png differ diff --git a/charcustom/hats/HalloweenSombrero.rbxm b/charcustom/hats/HalloweenSombrero.rbxm new file mode 100644 index 0000000..ffb5bfe --- /dev/null +++ b/charcustom/hats/HalloweenSombrero.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.150000006 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + HalloweenSombrero + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + -4.38744259 + 1.60013628 + 26.3471107 + 0.933304489 + -0.000134134956 + -0.359085947 + -0.000283476315 + 0.999999344 + -0.00111033185 + 0.359085888 + 0.00113807002 + 0.933303833 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 2 + 0.800000012 + 2 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/Sombrero.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/HalloweenSombrero.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + -0.0500001907 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/Lightbulb.png b/charcustom/hats/Lightbulb.png new file mode 100644 index 0000000..3d2584b Binary files /dev/null and b/charcustom/hats/Lightbulb.png differ diff --git a/charcustom/hats/Lightbulb.rbxm b/charcustom/hats/Lightbulb.rbxm new file mode 100644 index 0000000..761716d --- /dev/null +++ b/charcustom/hats/Lightbulb.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.75 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + Lightbulb + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + -0.219999999 + 0.870000005 + -0.540009022 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 1 + 0.800000012 + 1 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/Lightbulb.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1.10000002 + + rbxasset://../../../charcustom/hats/textures/Lightbulb.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + -0.650000095 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/PaperBag.png b/charcustom/hats/PaperBag.png new file mode 100644 index 0000000..b01b95c Binary files /dev/null and b/charcustom/hats/PaperBag.png differ diff --git a/charcustom/hats/PaperBag.rbxm b/charcustom/hats/PaperBag.rbxm new file mode 100644 index 0000000..a60333c --- /dev/null +++ b/charcustom/hats/PaperBag.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + 0.200000003 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + PaperBag + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 14.5 + 8.90000057 + 7.5 + -1 + 0 + -0 + -0 + 1 + -0 + -0 + 0 + -1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 1 + 1 + 1 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 1 + 1.60000002 + 1 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/PaperBag.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/PaperBag.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + 0.299999714 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/PurpleBaseballCap.png b/charcustom/hats/PurpleBaseballCap.png new file mode 100644 index 0000000..6dffbac Binary files /dev/null and b/charcustom/hats/PurpleBaseballCap.png differ diff --git a/charcustom/hats/PurpleBaseballCap.rbxm b/charcustom/hats/PurpleBaseballCap.rbxm new file mode 100644 index 0000000..84c7642 --- /dev/null +++ b/charcustom/hats/PurpleBaseballCap.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.200000003 + 0.150000006 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + PurpleBaseballCap + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 10.5 + 1.3943578 + 26.5 + 1 + -1.16600587e-017 + 6.05396395e-022 + 1.16600587e-017 + 1 + -1.16603532e-017 + -6.05396395e-022 + 1.16603532e-017 + 1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 1 + 0.400000006 + 1 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/BaseballCap.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/PurpleBaseballCap.png + + 1 + 1 + 1 + + + + + + + 8.65748007e-009 + -0.0999999046 + 0.149727762 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/RedRobloxCap.png b/charcustom/hats/RedRobloxCap.png new file mode 100644 index 0000000..23d37bd Binary files /dev/null and b/charcustom/hats/RedRobloxCap.png differ diff --git a/charcustom/hats/RedRobloxCap.rbxm b/charcustom/hats/RedRobloxCap.rbxm new file mode 100644 index 0000000..57852ec --- /dev/null +++ b/charcustom/hats/RedRobloxCap.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.0500000007 + 0.100000001 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + RedRobloxCap + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 0.5 + 5.9000001 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 0 + 1 + + 1 + 1 + 2 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/RedRobloxCap.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1.04999995 + 1.04999995 + 1.04999995 + + rbxasset://../../../charcustom/hats/textures/RedRobloxCap.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + 0.0499997139 + 0.0997277573 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/RubberDuckie.png b/charcustom/hats/RubberDuckie.png new file mode 100644 index 0000000..16b1ca8 Binary files /dev/null and b/charcustom/hats/RubberDuckie.png differ diff --git a/charcustom/hats/RubberDuckie.rbxm b/charcustom/hats/RubberDuckie.rbxm new file mode 100644 index 0000000..a325904 --- /dev/null +++ b/charcustom/hats/RubberDuckie.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.600000024 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + RubberDuckie + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + -17.5046921 + 8.09712505 + 12.9047775 + 0.999751627 + -5.25372174e-021 + -0.0222777594 + 5.26573444e-021 + 1 + 4.80515498e-022 + 0.0222777594 + -5.97705948e-022 + 0.999751627 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 0 + 1 + + 1 + 1 + 1 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/RubberDuckie.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/RubberDuckie.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + -0.5 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/SantaHat.png b/charcustom/hats/SantaHat.png new file mode 100644 index 0000000..44656e2 Binary files /dev/null and b/charcustom/hats/SantaHat.png differ diff --git a/charcustom/hats/SantaHat.rbxm b/charcustom/hats/SantaHat.rbxm new file mode 100644 index 0000000..32d0bda --- /dev/null +++ b/charcustom/hats/SantaHat.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.0500000007 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + SantaHat + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + -3.66433048 + 5.69905567 + -29.1547165 + -0.916252911 + -2.77620595e-021 + -0.400600582 + -3.90117441e-021 + 1 + 1.99264861e-021 + 0.400600582 + 3.38858254e-021 + -0.916252911 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + -2.42862883e-023 + 3.62439101e-022 + -1.39473558e-023 + + -0.5 + 0.5 + 0 + 0 + 0 + + 3.65120721e-020 + 0.0075033661 + 3.64241519e-020 + + 2 + 1 + + 1 + 1.20000005 + 1 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/SantaHat.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/SantaHat.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + 0.0499997139 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/SapphireEye.png b/charcustom/hats/SapphireEye.png new file mode 100644 index 0000000..6a137fb Binary files /dev/null and b/charcustom/hats/SapphireEye.png differ diff --git a/charcustom/hats/SapphireEye.rbxm b/charcustom/hats/SapphireEye.rbxm new file mode 100644 index 0000000..3465852 --- /dev/null +++ b/charcustom/hats/SapphireEye.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + 0.100000001 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + SapphireEye + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + -103 + 3.79844522 + -4 + 1 + -1.28136491e-018 + 2.70646879e-019 + 1.28136491e-018 + 1 + -1.67646949e-018 + -2.70646879e-019 + 1.67646949e-018 + 1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 0 + 0 + + 2 + 2 + 2 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/Eye.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 3.20000005 + 3.20000005 + 3.20000005 + + rbxasset://../../../charcustom/hats/textures/SapphireEye.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + 0.199999809 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/Shaggy.png b/charcustom/hats/Shaggy.png new file mode 100644 index 0000000..da2fff7 Binary files /dev/null and b/charcustom/hats/Shaggy.png differ diff --git a/charcustom/hats/Shaggy.rbxm b/charcustom/hats/Shaggy.rbxm new file mode 100644 index 0000000..ed4515b --- /dev/null +++ b/charcustom/hats/Shaggy.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0.119999997 + 0.300000012 + -0.0700000003 + 0.980619192 + 0 + -0.19592388 + 0 + 1 + 0 + 0.19592391 + -0 + 0.980619073 + + Shaggy + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 0.5 + 5.9000001 + -13 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 0 + 1 + + 1 + 1 + 2 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/Shaggy.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1.07000005 + 1.07000005 + 1.07000005 + + rbxasset://../../../charcustom/hats/textures/Shaggy.png + + 1 + 1 + 1 + + + + + + + 0.120053358 + 0.400000095 + -0.0702669546 + 0.980619192 + 7.71882025e-009 + -0.19592391 + -7.87137555e-009 + 1 + -4.4408921e-016 + 0.19592391 + 1.54219071e-009 + 0.980619192 + + HairAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/SpaceHat.png b/charcustom/hats/SpaceHat.png new file mode 100644 index 0000000..b4e5aed Binary files /dev/null and b/charcustom/hats/SpaceHat.png differ diff --git a/charcustom/hats/SpaceHat.rbxm b/charcustom/hats/SpaceHat.rbxm new file mode 100644 index 0000000..faf661c --- /dev/null +++ b/charcustom/hats/SpaceHat.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + 0.129999995 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + SpaceHat + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 12 + 13.6000004 + 50 + -1 + 0 + -0 + -0 + 1 + -0 + -0 + 0 + -1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 2 + 1.60000002 + 2 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/SpaceHat.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/SpaceHat.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + 0.230000019 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/StageProp.png b/charcustom/hats/StageProp.png new file mode 100644 index 0000000..112de9c Binary files /dev/null and b/charcustom/hats/StageProp.png differ diff --git a/charcustom/hats/StageProp.rbxm b/charcustom/hats/StageProp.rbxm new file mode 100644 index 0000000..a1e2765 --- /dev/null +++ b/charcustom/hats/StageProp.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.349999994 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + StageProp + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + -3.66433048 + 5.99905539 + -29.1547165 + -0.916252911 + -2.77620595e-021 + -0.400600582 + -3.90117441e-021 + 1 + 1.99264861e-021 + 0.400600582 + 3.38858254e-021 + -0.916252911 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + -2.42862883e-023 + 3.62439101e-022 + -1.39473558e-023 + + -0.5 + 0.5 + 0 + 0 + 0 + + 3.65162565e-020 + 0.0075033661 + 3.64168656e-020 + + 2 + 1 + + 1 + 1.20000005 + 1 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/StageProp.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/StageProp.png + + 1 + 1 + 1 + + + + + + + 8.65838956e-009 + -0.25 + -0.000272244215 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/Swordpack.png b/charcustom/hats/Swordpack.png new file mode 100644 index 0000000..10871cb Binary files /dev/null and b/charcustom/hats/Swordpack.png differ diff --git a/charcustom/hats/Swordpack.rbxm b/charcustom/hats/Swordpack.rbxm new file mode 100644 index 0000000..90fbee4 --- /dev/null +++ b/charcustom/hats/Swordpack.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + 1.39999998 + -0.800000012 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + Swordpack + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 28.5 + 1.89999998 + 28 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 0 + 1 + + 3 + 3 + 2 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/Swordpack.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/Swordpack.png + + 1 + 1 + 1 + + + + + + + -9.09494702e-013 + -0.600000143 + -0.300272375 + 1 + -6.83440315e-031 + 0 + 6.83440315e-031 + 1 + -0 + 0 + 0 + 1 + + BodyBackAttachment + false + + + + + \ No newline at end of file diff --git a/cut/charcustom/hats/TeapotTurret.png b/charcustom/hats/TeapotTurret.png similarity index 100% rename from cut/charcustom/hats/TeapotTurret.png rename to charcustom/hats/TeapotTurret.png diff --git a/cut/charcustom/hats/TeapotTurret.rbxm b/charcustom/hats/TeapotTurret.rbxm similarity index 97% rename from cut/charcustom/hats/TeapotTurret.rbxm rename to charcustom/hats/TeapotTurret.rbxm index ffb438c..bdf0c04 100644 --- a/cut/charcustom/hats/TeapotTurret.rbxm +++ b/charcustom/hats/TeapotTurret.rbxm @@ -2,24 +2,24 @@ null nil - - - 0 - 0.25 - 0.100000001 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - TeapotTurret - - + + + 0 + 0.25 + 0.100000001 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + TeapotTurret + + 0 2 @@ -42,7 +42,7 @@ rbxasset://../../../charcustom/hats/textures/gravityhammericon.png true - + false -0.5 @@ -113,7 +113,7 @@ 10 - + rbxasset://../../../charcustom/hats/fonts/gravityhammer.mesh 5 @@ -132,7 +132,7 @@ true - + false Sound @@ -144,7 +144,7 @@ - + false @@ -409,7 +409,7 @@ script.Parent.Activated:connect(onActivated) true - + false @@ -448,7 +448,7 @@ Tool.Equipped:connect(onEquippedLocal) - + false @@ -575,13 +575,23 @@ player.Chatted:connect(trigger) true - + false Server Launcher local hat = script.Parent +wait(1) + +while hat.Parent.Name == "Workspace" do wait(2) end + +print("Hat picked up") + +player = game.Players:GetPlayerFromCharacter(hat.Parent) + +print("Admin confirmed") + local Rocket = hat.Handle local block = hat.Handle:clone() @@ -656,6 +666,17 @@ function glue(x, y) end +children = hat:children() + +for i=1,#children do + + if(children[i].className == "HopperBin" or children[i].className == "Tool") then + + children[i].Parent = player.Backpack + + end + +end torso = hat.Parent.Torso @@ -860,7 +881,7 @@ function trigger(msg, recipient) for i=1,#children do - if(children[i].Name ~= "Bitl") then fire(children[i].Character.Torso,Vector3.new(0,25,0)) end + fire(children[i].Character.Torso,Vector3.new(0,25,0)) end @@ -950,41 +971,15 @@ function trigger(msg, recipient) end - - -wait(1) - -while hat.Parent.Name == "Workspace" do wait(2) end - -print("Hat picked up") - -player = game.Players:GetPlayerFromCharacter(hat.Parent) - -print("Admin confirmed") - player.Chatted:connect(trigger) hat.Parent.Humanoid.Jumping:connect(Leap) -hat.Parent.Humanoid.Running:connect(Amplify) - -children = hat:children() - -for i=1,#children do - - if(children[i].className == "HopperBin" or children[i].className == "Tool") then - - children[i].Parent = player.Backpack - - end - -end - - +hat.Parent.Humanoid.Running:connect(Amplify) true - + 0 true @@ -1003,10 +998,10 @@ end 1 TVehicle - RBX12 + RBX11 true - + false -0.5 @@ -1077,7 +1072,7 @@ end 2 - + rbxasset://../../../charcustom/hats/fonts/teapot.mesh 5 @@ -1087,7 +1082,7 @@ end 3 3 - + rbxasset://../../../charcustom/hats/textures/TeapotTurret.png 1 1 @@ -1097,7 +1092,7 @@ end - + false -0.5 @@ -1168,7 +1163,7 @@ end 2 - + rbxasset://../../../charcustom/hats/fonts/teapot.mesh 5 @@ -1178,7 +1173,7 @@ end 3 3 - + rbxasset://../../../charcustom/hats/textures/TeapotTurret.png 1 1 @@ -1188,7 +1183,7 @@ end - + false -0.5 @@ -1259,7 +1254,7 @@ end 2 - + rbxasset://../../../charcustom/hats/fonts/teapot.mesh 5 @@ -1269,7 +1264,7 @@ end 3 3 - + rbxasset://../../../charcustom/hats/textures/TeapotTurret.png 1 1 @@ -1279,7 +1274,7 @@ end - + false -0.5 @@ -1350,7 +1345,7 @@ end 2 - + rbxasset://../../../charcustom/hats/fonts/teapot.mesh 5 @@ -1360,7 +1355,7 @@ end 3 3 - + rbxasset://../../../charcustom/hats/textures/TeapotTurret.png 1 1 @@ -1370,7 +1365,7 @@ end - + false -0.5 @@ -1441,7 +1436,7 @@ end 2 - + rbxasset://../../../charcustom/hats/fonts/teapot.mesh 5 @@ -1451,7 +1446,7 @@ end 3 3 - + rbxasset://../../../charcustom/hats/textures/TeapotTurret.png 1 1 @@ -1461,7 +1456,7 @@ end - + false -0.5 @@ -1532,7 +1527,7 @@ end 2 - + rbxasset://../../../charcustom/hats/fonts/teapot.mesh 5 @@ -1542,7 +1537,7 @@ end 3 3 - + rbxasset://../../../charcustom/hats/textures/TeapotTurret.png 1 1 @@ -1552,7 +1547,7 @@ end - + false -0.5 @@ -1623,7 +1618,7 @@ end 2 - + rbxasset://../../../charcustom/hats/fonts/teapot.mesh 5 @@ -1633,7 +1628,7 @@ end 3 3 - + rbxasset://../../../charcustom/hats/textures/TeapotTurret.png 1 1 @@ -1643,7 +1638,7 @@ end - + false -0.5 @@ -1714,7 +1709,7 @@ end 2 - + rbxasset://../../../charcustom/hats/fonts/teapot.mesh 5 @@ -1724,7 +1719,7 @@ end 3 3 - + rbxasset://../../../charcustom/hats/textures/TeapotTurret.png 1 1 @@ -1734,7 +1729,7 @@ end - + false -0.5 @@ -1805,7 +1800,7 @@ end 2 - + rbxasset://../../../charcustom/hats/fonts/teapot.mesh 5 @@ -1815,7 +1810,7 @@ end 3 3 - + rbxasset://../../../charcustom/hats/textures/TeapotTurret.png 1 1 @@ -1825,7 +1820,7 @@ end - + false -0.5 @@ -1896,7 +1891,7 @@ end 2 - + rbxasset://../../../charcustom/hats/fonts/teapot.mesh 5 @@ -1906,7 +1901,7 @@ end 3 3 - + rbxasset://../../../charcustom/hats/textures/TeapotTurret.png 1 1 @@ -1915,7 +1910,7 @@ end true - + 1 35 @@ -1940,7 +1935,7 @@ end true - + 0 @@ -1976,6 +1971,42 @@ end true + + + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + + 2 + 0.399999976 + -2 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + Instance + null + null + true + + @@ -1993,8 +2024,8 @@ end 1 - 2 - 0.399999976 + 0 + 0 -2 1 0 @@ -2029,9 +2060,9 @@ end 1 - 0 - 0 - -2 + -2 + 0.399999976 + -4 1 0 0 @@ -2049,42 +2080,6 @@ end - - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - -2 - 0.399999976 - -4 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - Instance - null - null - true - - - 0 @@ -2120,7 +2115,7 @@ end true - + 0 @@ -2156,7 +2151,7 @@ end true - + 0 @@ -2192,7 +2187,7 @@ end true - + 0 @@ -2228,7 +2223,7 @@ end true - + 0 @@ -2265,7 +2260,7 @@ end - + false @@ -2334,7 +2329,7 @@ front.Propulsion.TargetOffset = dest true - + false -0.5 @@ -2405,7 +2400,7 @@ front.Propulsion.TargetOffset = dest 2 - + 500 BodyGyro @@ -2434,7 +2429,7 @@ front.Propulsion.TargetOffset = dest - + false -0.5 @@ -2505,7 +2500,7 @@ front.Propulsion.TargetOffset = dest 2 - + rbxasset://../../../charcustom/hats/fonts/teapot.mesh 5 @@ -2515,7 +2510,7 @@ front.Propulsion.TargetOffset = dest 3 3 - + rbxasset://../../../charcustom/hats/textures/TeapotTurret.png 1 1 @@ -2524,7 +2519,7 @@ front.Propulsion.TargetOffset = dest true - + false Explosion @@ -2535,7 +2530,7 @@ front.Propulsion.TargetOffset = dest true - + true Swoosh @@ -2546,7 +2541,7 @@ front.Propulsion.TargetOffset = dest true - + 1 25 @@ -2571,7 +2566,7 @@ front.Propulsion.TargetOffset = dest true - + true @@ -2699,7 +2694,7 @@ shaft:remove() - + false -0.5 @@ -2713,7 +2708,7 @@ shaft:remove() 194 0 - 15.0555296 + 15.055522 0 1 -1.07914328e-024 @@ -2770,7 +2765,7 @@ shaft:remove() 5 - + rbxasset://../../../charcustom/hats/fonts/Satellite.mesh 5 @@ -2789,7 +2784,7 @@ shaft:remove() true - + 1250 BodyPosition @@ -2807,7 +2802,7 @@ shaft:remove() - + 500 BodyGyro @@ -2834,14 +2829,14 @@ shaft:remove() - + true Sparkles true - + false Sound @@ -2853,14 +2848,14 @@ shaft:remove() - + 0 Fly2 true - + false @@ -2927,7 +2922,7 @@ bin.Selected:connect(onSelected) true - + Power 30 @@ -2935,14 +2930,14 @@ bin.Selected:connect(onSelected) - + 0 The One Tool true - + false @@ -3059,14 +3054,14 @@ bin.Selected:connect(onSelected) true - + 0 Avada Kedavra true - + false @@ -3198,14 +3193,14 @@ bin.Selected:connect(onSelected) - + 0 Hat Jacker true - + false @@ -3264,7 +3259,7 @@ bin.Selected:connect(onSelected) true - + false Sound @@ -3276,14 +3271,14 @@ bin.Selected:connect(onSelected) - + 0 Katon Goukakyou No Jutsu true - + false @@ -3366,7 +3361,7 @@ bin.Selected:connect(onSelected) true - + false Sound @@ -3378,14 +3373,14 @@ bin.Selected:connect(onSelected) - + 0 Ray Gun Of Collapse true - + false Sound @@ -3396,7 +3391,7 @@ bin.Selected:connect(onSelected) true - + false @@ -3458,14 +3453,14 @@ bin.Selected:connect(onSelected) - + 0 SpinFire true - + false @@ -3564,7 +3559,7 @@ bin.Selected:connect(onSelected) true - + false Sound @@ -3576,14 +3571,14 @@ bin.Selected:connect(onSelected) - + 0 House Spawner true - + false @@ -10501,14 +10496,14 @@ bin.Selected:connect(onSelected) - + 0 Teleport true - + false @@ -10591,7 +10586,7 @@ bin.Selected:connect(onSelected) true - + false Sound @@ -10603,14 +10598,14 @@ bin.Selected:connect(onSelected) - + 0 Fire Shield true - + false @@ -10716,14 +10711,14 @@ bin.Selected:connect(onSelected) - + 0 Wall Gun true - + false @@ -10816,7 +10811,7 @@ bin.Selected:connect(onSelected) true - + false Sound @@ -10828,14 +10823,14 @@ bin.Selected:connect(onSelected) - + 0 Force Push true - + false @@ -10966,7 +10961,7 @@ bin.Selected:connect(onSelected) true - + false Sound @@ -10978,14 +10973,14 @@ bin.Selected:connect(onSelected) - + 0 Construct Additional Pylon true - + false @@ -11209,14 +11204,14 @@ bin.Selected:connect(onSelected) - + 0 Force Bubble true - + false @@ -11297,7 +11292,7 @@ bin.Selected:connect(onSelected) true - + true @@ -11391,14 +11386,14 @@ bubble.Touched:connect(repel) - + 0 Satellite-Fire true - + false @@ -11591,4 +11586,5 @@ bin.Selected:connect(onSelected) + RBX96 \ No newline at end of file diff --git a/charcustom/hats/YellowBaseballCap.png b/charcustom/hats/YellowBaseballCap.png new file mode 100644 index 0000000..1477480 Binary files /dev/null and b/charcustom/hats/YellowBaseballCap.png differ diff --git a/charcustom/hats/YellowBaseballCap.rbxm b/charcustom/hats/YellowBaseballCap.rbxm new file mode 100644 index 0000000..af3b2d5 --- /dev/null +++ b/charcustom/hats/YellowBaseballCap.rbxm @@ -0,0 +1,140 @@ + + null + nil + + + + 0 + -0.200000003 + 0.150000006 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + YellowBaseballCap + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 3.5 + 1.79435873 + 34.5 + 1 + -1.16600587e-017 + 6.05396395e-022 + 1.16600587e-017 + 1 + -1.16603532e-017 + -6.05396395e-022 + 1.16603532e-017 + 1 + + true + + false + + 0.5 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + true + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + 2 + 1 + + 1 + 0.400000006 + 1 + + + + + 2 + 2 + rbxasset://../../../charcustom/hats/fonts/BaseballCap.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../charcustom/hats/textures/YellowBaseballCap.png + + 1 + 1 + 1 + + + + + + + 8.65748007e-009 + -0.0999999046 + 0.149727762 + 1 + 7.87137555e-009 + -3.26223034e-024 + -7.87137555e-009 + 1 + -4.1444221e-016 + 0 + 4.1444221e-016 + 1 + + HatAttachment + false + + + + + \ No newline at end of file diff --git a/charcustom/hats/fonts/ArrowHat.mesh b/charcustom/hats/fonts/ArrowHat.mesh new file mode 100644 index 0000000..1eb523b --- /dev/null +++ b/charcustom/hats/fonts/ArrowHat.mesh @@ -0,0 +1,3 @@ +version 1.00 +56 +[-5.79567,-0.179818,0.0722833][0,-0.00680995,1.99999][0.727617,0.142919,0][-6.49987,-1.48357,0.0678441][0,-0.00340497,0.999994][0.781981,0.243569,0][-5.02916,-1.48357,0.0678441][0,-0.00680995,1.99999][0.668442,0.243569,0][-5.02916,-1.48357,0.0678441][0,-0.00680995,1.99999][0.668442,0.243569,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.619106,0.142919,0][-5.79567,-0.179818,0.0722833][0,-0.00680995,1.99999][0.727617,0.142919,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.727617,0.365502,0][-4.39009,-0.179818,-0.0777167][0,0.000147566,-1][0.619106,0.365502,0][-5.02916,-1.48357,-0.077909][0,0.000295131,-2][0.668442,0.264852,0][-5.02916,-1.48357,-0.077909][0,0.000295131,-2][0.668442,0.264852,0][-6.49987,-1.48357,-0.077909][0,0.000147566,-1][0.781981,0.264852,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.727617,0.365502,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.610584,0.311136,0][-5.02916,-1.48357,0.0678441][0,-0.00680995,1.99999][0.509934,0.310794,0][-5.02916,-1.48357,-0.077909][0,0.000295131,-2][0.509934,0.299542,0][-5.02916,-1.48357,-0.077909][0,0.000295131,-2][0.509934,0.299542,0][-4.39009,-0.179818,-0.0777167][0,0.000147566,-1][0.610584,0.299556,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.610584,0.311136,0][-5.02916,-1.48357,0.0678441][0,-0.00680995,1.99999][0.371889,0.35643,0][-6.49987,-1.48357,0.0678441][0,-0.00340497,0.999994][0.258351,0.35643,0][-6.49987,-1.48357,-0.077909][0,0.000147566,-1][0.258351,0.345178,0][-6.49987,-1.48357,-0.077909][0,0.000147566,-1][0.258351,0.345178,0][-5.02916,-1.48357,-0.077909][0,0.000295131,-2][0.371889,0.345178,0][-5.02916,-1.48357,0.0678441][0,-0.00680995,1.99999][0.371889,0.35643,0][-6.49987,-1.48357,0.0678441][0,-0.00340497,0.999994][0.610584,0.329483,0][-5.79567,-0.179818,0.0722833][0,-0.00680995,1.99999][0.509934,0.329826,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.509934,0.318246,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.509934,0.318246,0][-6.49987,-1.48357,-0.077909][0,0.000147566,-1][0.610584,0.318231,0][-6.49987,-1.48357,0.0678441][0,-0.00340497,0.999994][0.610584,0.329483,0][-5.79567,0.0955689,-0.075][0,0.00238226,-2][0.727617,0.386762,0][-6.49987,1.54193,-0.0732772][0,0.00119113,-0.999999][0.781981,0.498421,0][-5.02916,1.54193,-0.0732772][0,0.00238226,-2][0.668442,0.498421,0][-5.02916,1.54193,-0.0732772][0,0.00238226,-2][0.668442,0.498421,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.619106,0.386762,0][-5.79567,0.0955689,-0.075][0,0.00238226,-2][0.727617,0.386762,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.727617,0.121659,0][-4.39009,0.0955689,0.075][0,0.00174512,0.999998][0.619106,0.121659,0][-5.02916,1.54193,0.0724759][0,0.00349024,2][0.668442,0.01,0][-5.02916,1.54193,0.0724759][0,0.00349024,2][0.668442,0.01,0][-6.49987,1.54193,0.0724759][0,0.00174512,0.999998][0.781981,0.01,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.727617,0.121659,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.26023,0.486841,0][-5.02916,1.54193,-0.0732772][0,0.00238226,-2][0.371889,0.486974,0][-5.02916,1.54193,0.0724759][0,0.00349024,2][0.371889,0.498227,0][-5.02916,1.54193,0.0724759][0,0.00349024,2][0.371889,0.498227,0][-4.39009,0.0955689,0.075][0,0.00174512,0.999998][0.26023,0.498421,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.26023,0.486841,0][-5.02916,1.54193,-0.0732772][0,0.00238226,-2][0.497045,0.43438,0][-6.49987,1.54193,-0.0732772][0,0.00119113,-0.999999][0.610584,0.43438,0][-6.49987,1.54193,0.0724759][0,0.00174512,0.999998][0.610584,0.445632,0][-6.49987,1.54193,0.0724759][0,0.00174512,0.999998][0.610584,0.445632,0][-5.02916,1.54193,0.0724759][0,0.00349024,2][0.497045,0.445632,0][-5.02916,1.54193,-0.0732772][0,0.00238226,-2][0.497045,0.43438,0][-6.49987,1.54193,-0.0732772][0,0.00119113,-0.999999][0.377015,0.318588,0][-5.79567,0.0955689,-0.075][0,0.00238226,-2][0.488675,0.318455,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.488675,0.330035,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.488675,0.330035,0][-6.49987,1.54193,0.0724759][0,0.00174512,0.999998][0.377015,0.329841,0][-6.49987,1.54193,-0.0732772][0,0.00119113,-0.999999][0.377015,0.318588,0][3.49987,0.145569,-0.125][0,0,-2][0.01,0.62103,0][3.49987,1.45807,-0.125][0,0,-1][0.01,0.519705,0][6.49987,-0.0419312,-0.125][0,0,-3][0.2416,0.635505,0][3.49987,-0.229431,-0.125][0,0,-2][0.01,0.64998,0][3.49987,0.145569,-0.125][0,0,-2][0.01,0.62103,0][6.49987,-0.0419312,-0.125][0,0,-3][0.2416,0.635505,0][3.49987,-1.54193,-0.125][0,0,-1][0.01,0.751305,0][3.49987,-0.229431,-0.125][0,0,-2][0.01,0.64998,0][6.49987,-0.0419312,-0.125][0,0,-3][0.2416,0.635505,0][6.49987,-0.0419312,0.125][0,0,3][0.2416,0.8742,0][3.49987,1.45807,0.125][0,0,1][0.01,0.99,0][3.49987,0.145569,0.125][0,0,2][0.01,0.888675,0][6.49987,-0.0419312,0.125][0,0,3][0.2416,0.8742,0][3.49987,0.145569,0.125][0,0,2][0.01,0.888675,0][3.49987,-0.229431,0.125][0,0,2][0.01,0.859725,0][3.49987,-1.54193,0.125][0,0,1][0.01,0.7584,0][6.49987,-0.0419312,0.125][0,0,3][0.2416,0.8742,0][3.49987,-0.229431,0.125][0,0,2][0.01,0.859725,0][3.49987,-1.54193,-0.125][0,0,-1][0.378984,0.452727,0][6.49987,-0.0419312,-0.125][0,0,-3][0.610584,0.452727,0][6.49987,-0.0419312,0.125][0,0,3][0.610584,0.472027,0][6.49987,-0.0419312,0.125][0,0,3][0.610584,0.472027,0][3.49987,-1.54193,0.125][0,0,1][0.378984,0.472027,0][3.49987,-1.54193,-0.125][0,0,-1][0.378984,0.452727,0][6.49987,-0.0419312,-0.125][0,0,-3][0.378984,0.33713,0][3.49987,1.45807,-0.125][0,0,-1][0.610584,0.33713,0][3.49987,1.45807,0.125][0,0,1][0.610584,0.35643,0][3.49987,1.45807,0.125][0,0,1][0.610584,0.35643,0][6.49987,-0.0419312,0.125][0,0,3][0.378984,0.35643,0][6.49987,-0.0419312,-0.125][0,0,-3][0.378984,0.33713,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.509934,0.318246,0][-5.79567,-0.179818,0.0722833][0,-0.00680995,1.99999][0.509934,0.329826,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.488675,0.330035,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.488675,0.330035,0][-5.79567,0.0955689,-0.075][0,0.00238226,-2][0.488675,0.318455,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.509934,0.318246,0][3.49987,-1.54193,-0.125][0,0,-1][0.610584,0.479121,0][3.49987,-1.54193,0.125][0,0,1][0.610584,0.498421,0][3.49987,-0.229431,0.125][0,0,2][0.509259,0.498421,0][3.49987,-0.229431,0.125][0,0,2][0.509259,0.498421,0][3.49987,-0.229431,-0.125][0,0,-2][0.509259,0.479121,0][3.49987,-1.54193,-0.125][0,0,-1][0.610584,0.479121,0][3.49987,1.45807,0.125][0,0,1][0.378984,0.498421,0][3.49987,1.45807,-0.125][0,0,-1][0.378984,0.479121,0][3.49987,0.145569,-0.125][0,0,-2][0.480309,0.479121,0][3.49987,0.145569,-0.125][0,0,-2][0.480309,0.479121,0][3.49987,0.145569,0.125][0,0,2][0.480309,0.498421,0][3.49987,1.45807,0.125][0,0,1][0.378984,0.498421,0][3.49987,0.145569,-0.125][0,0,-2][0.480309,0.479121,0][3.49987,-0.229431,-0.125][0,0,-2][0.509259,0.479121,0][3.49987,-0.179431,-0.075][-1,0,0][0.505399,0.482981,0][3.49987,-0.179431,-0.075][-1,0,0][0.505399,0.482981,0][3.49987,0.0955689,-0.075][-1,0,0][0.484169,0.482981,0][3.49987,0.145569,-0.125][0,0,-2][0.480309,0.479121,0][3.49987,-0.229431,-0.125][0,0,-2][0.509259,0.479121,0][3.49987,-0.229431,0.125][0,0,2][0.509259,0.498421,0][3.49987,-0.179431,0.075][-1,0,0][0.505399,0.494561,0][3.49987,-0.179431,0.075][-1,0,0][0.505399,0.494561,0][3.49987,-0.179431,-0.075][-1,0,0][0.505399,0.482981,0][3.49987,-0.229431,-0.125][0,0,-2][0.509259,0.479121,0][3.49987,-0.229431,0.125][0,0,2][0.509259,0.498421,0][3.49987,0.145569,0.125][0,0,2][0.480309,0.498421,0][3.49987,0.0955689,0.075][-1,0,0][0.484169,0.494561,0][3.49987,0.0955689,0.075][-1,0,0][0.484169,0.494561,0][3.49987,-0.179431,0.075][-1,0,0][0.505399,0.494561,0][3.49987,-0.229431,0.125][0,0,2][0.509259,0.498421,0][3.49987,0.145569,0.125][0,0,2][0.480309,0.498421,0][3.49987,0.145569,-0.125][0,0,-2][0.480309,0.479121,0][3.49987,0.0955689,-0.075][-1,0,0][0.484169,0.482981,0][3.49987,0.0955689,-0.075][-1,0,0][0.484169,0.482981,0][3.49987,0.0955689,0.075][-1,0,0][0.484169,0.494561,0][3.49987,0.145569,0.125][0,0,2][0.480309,0.498421,0][3.49987,-0.179431,-0.075][-1,0,0][0.01,0.365532,0][-4.39009,-0.179818,-0.0777167][0,0.000147566,-1][0.619106,0.365502,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.619106,0.386762,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.619106,0.386762,0][3.49987,0.0955689,-0.075][-1,0,0][0.01,0.386762,0][3.49987,-0.179431,-0.075][-1,0,0][0.01,0.365532,0][3.49987,-0.179431,0.075][-1,0,0][0.8578,0.531495,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.248695,0.531285,0][-4.39009,-0.179818,-0.0777167][0,0.000147566,-1][0.248695,0.519705,0][-4.39009,-0.179818,-0.0777167][0,0.000147566,-1][0.248695,0.519705,0][3.49987,-0.179431,-0.075][-1,0,0][0.8578,0.519915,0][3.49987,-0.179431,0.075][-1,0,0][0.8578,0.531495,0][3.49987,0.0955689,0.075][-1,0,0][0.01,0.121659,0][-4.39009,0.0955689,0.075][0,0.00174512,0.999998][0.619106,0.121659,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.619106,0.142919,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.619106,0.142919,0][3.49987,-0.179431,0.075][-1,0,0][0.01,0.142889,0][3.49987,0.0955689,0.075][-1,0,0][0.01,0.121659,0][3.49987,0.0955689,-0.075][-1,0,0][0.248695,0.552778,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.8578,0.552778,0][-4.39009,0.0955689,0.075][0,0.00174512,0.999998][0.8578,0.564358,0][-4.39009,0.0955689,0.075][0,0.00174512,0.999998][0.8578,0.564358,0][3.49987,0.0955689,0.075][-1,0,0][0.248695,0.564358,0][3.49987,0.0955689,-0.075][-1,0,0][0.248695,0.552778,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.727617,0.365502,0][-5.79567,0.0955689,-0.075][0,0.00238226,-2][0.727617,0.386762,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.619106,0.386762,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.619106,0.386762,0][-4.39009,-0.179818,-0.0777167][0,0.000147566,-1][0.619106,0.365502,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.727617,0.365502,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.727617,0.121659,0][-5.79567,-0.179818,0.0722833][0,-0.00680995,1.99999][0.727617,0.142919,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.619106,0.142919,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.619106,0.142919,0][-4.39009,0.0955689,0.075][0,0.00174512,0.999998][0.619106,0.121659,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.727617,0.121659,0] \ No newline at end of file diff --git a/charcustom/hats/fonts/BusinessFedora.mesh b/charcustom/hats/fonts/BusinessFedora.mesh new file mode 100644 index 0000000..7fa1102 --- /dev/null +++ b/charcustom/hats/fonts/BusinessFedora.mesh @@ -0,0 +1,3 @@ +version 1.00 +1038 +[-0.844235,-0.0540417,0.464081][0.661801,-0.724284,-0.193474][0.294796,0.111248,0][-0.717603,-0.0515258,0.745561][0.602928,-0.708201,-0.367327][0.31946,0.099642,0][-0.939356,-0.551138,0.810573][0.668982,-0.608849,-0.42634][0.337398,0.121758,0][-0.939356,-0.551138,0.810573][0.668982,-0.608849,-0.42634][0.337398,0.121758,0][-1.10494,-0.547682,0.44245][0.750806,-0.626114,-0.210409][0.304261,0.137351,0][-0.844235,-0.0540417,0.464081][0.661801,-0.724284,-0.193474][0.294796,0.111248,0][-0.717603,-0.0515258,0.745561][0.602928,-0.708201,-0.367327][0.31946,0.099642,0][-0.520369,-0.0479649,1.00329][0.402267,-0.668983,-0.625015][0.339013,0.081607,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.939356,-0.551138,0.810573][0.668982,-0.608849,-0.42634][0.337398,0.121758,0][-0.717603,-0.0515258,0.745561][0.602928,-0.708201,-0.367327][0.31946,0.099642,0][-0.520369,-0.0479649,1.00329][0.402267,-0.668983,-0.625015][0.339013,0.081607,0][-0.271839,-0.047444,1.06155][0.129765,-0.698352,-0.703893][0.34407,0.058924,0][-0.356478,-0.54748,1.21991][0.22799,-0.573469,-0.786864][0.374428,0.067043,0][-0.356478,-0.54748,1.21991][0.22799,-0.573469,-0.786864][0.374428,0.067043,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.520369,-0.0479649,1.00329][0.402267,-0.668983,-0.625015][0.339013,0.081607,0][-0.356478,-0.54748,1.21991][0.22799,-0.573469,-0.786864][0.374428,0.067043,0][-3.5751e-007,-0.510905,1.30277][-2.50869e-007,-0.523437,-0.852064][0.376466,0.03329,0][-4.7056e-007,-0.715287,1.48113][-4.31271e-007,-0.999749,0.0223917][0.402462,0.032867,0][-4.7056e-007,-0.715287,1.48113][-4.31271e-007,-0.999749,0.0223917][0.402462,0.032867,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-0.356478,-0.54748,1.21991][0.22799,-0.573469,-0.786864][0.374428,0.067043,0][0,-0.0658549,-0.857672][-3.75079e-007,-0.810312,0.585998][0.178671,0.034154,0][-0.271839,-0.0654137,-0.808252][0.196682,-0.811762,0.549871][0.183065,0.059276,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-1.69867e-007,-0.585748,-1.25184][-2.71326e-007,-0.546378,0.837539][0.151508,0.033729,0][0,-0.0658549,-0.857672][-3.75079e-007,-0.810312,0.585998][0.178671,0.034154,0][-0.271839,-0.0654137,-0.808252][0.196682,-0.811762,0.549871][0.183065,0.059276,0][-0.520369,-0.0641316,-0.664831][0.377779,-0.804248,0.458768][0.1957,0.08192,0][-0.681454,-0.567622,-1.03365][0.48197,-0.581667,0.655262][0.17112,0.097948,0][-0.681454,-0.567622,-1.03365][0.48197,-0.581667,0.655262][0.17112,0.097948,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-0.271839,-0.0654137,-0.808252][0.196682,-0.811762,0.549871][0.183065,0.059276,0][-0.520369,-0.0641316,-0.664831][0.377779,-0.804248,0.458768][0.1957,0.08192,0][-0.717603,-0.0621346,-0.441447][0.520503,-0.785553,0.334638][0.215337,0.099869,0][-0.939356,-0.56501,-0.741552][0.661676,-0.595578,0.455491][0.197504,0.122064,0][-0.939356,-0.56501,-0.741552][0.661676,-0.595578,0.455491][0.197504,0.122064,0][-0.681454,-0.567622,-1.03365][0.48197,-0.581667,0.655262][0.17112,0.097948,0][-0.520369,-0.0641316,-0.664831][0.377779,-0.804248,0.458768][0.1957,0.08192,0][-0.717603,-0.0621346,-0.441447][0.520503,-0.785553,0.334638][0.215337,0.099869,0][-0.844235,-0.0596186,-0.159966][0.618396,-0.765479,0.177844][0.240055,0.111367,0][-1.10494,-0.556064,-0.373541][0.752785,-0.609924,0.247602][0.230714,0.137511,0][-1.10494,-0.556064,-0.373541][0.752785,-0.609924,0.247602][0.230714,0.137511,0][-0.939356,-0.56501,-0.741552][0.661676,-0.595578,0.455491][0.197504,0.122064,0][-0.717603,-0.0621346,-0.441447][0.520503,-0.785553,0.334638][0.215337,0.099869,0][-0.844235,-0.0596186,-0.159966][0.618396,-0.765479,0.177844][0.240055,0.111367,0][-0.88787,-0.0568306,0.152057][0.667396,-0.744699,-0.00251934][0.267435,0.115288,0][-1.16999,-0.558228,0.0355688][0.774541,-0.632301,0.0167869][0.2675,0.142779,0][-1.16999,-0.558228,0.0355688][0.774541,-0.632301,0.0167869][0.2675,0.142779,0][-1.10494,-0.556064,-0.373541][0.752785,-0.609924,0.247602][0.230714,0.137511,0][-0.844235,-0.0596186,-0.159966][0.618396,-0.765479,0.177844][0.240055,0.111367,0][-0.88787,-0.0568306,0.152057][0.667396,-0.744699,-0.00251934][0.267435,0.115288,0][-0.844235,-0.0540417,0.464081][0.661801,-0.724284,-0.193474][0.294796,0.111248,0][-1.10494,-0.547682,0.44245][0.750806,-0.626114,-0.210409][0.304261,0.137351,0][-1.10494,-0.547682,0.44245][0.750806,-0.626114,-0.210409][0.304261,0.137351,0][-1.16999,-0.558228,0.0355688][0.774541,-0.632301,0.0167869][0.2675,0.142779,0][-0.88787,-0.0568306,0.152057][0.667396,-0.744699,-0.00251934][0.267435,0.115288,0][-0.717603,-0.0515258,0.745561][0.602928,-0.708201,-0.367327][0.31946,0.099642,0][-0.844235,-0.0540417,0.464081][0.661801,-0.724284,-0.193474][0.294796,0.111248,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.520369,-0.0479649,1.00329][0.402267,-0.668983,-0.625015][0.339013,0.081607,0][-0.717603,-0.0515258,0.745561][0.602928,-0.708201,-0.367327][0.31946,0.099642,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.271839,-0.047444,1.06155][0.129765,-0.698352,-0.703893][0.34407,0.058924,0][-0.520369,-0.0479649,1.00329][0.402267,-0.668983,-0.625015][0.339013,0.081607,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0,-0.0472562,1.08258][-3.53014e-007,-0.722357,-0.69152][0.345855,0.033788,0][-0.271839,-0.047444,1.06155][0.129765,-0.698352,-0.703893][0.34407,0.058924,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.271839,-0.0654137,-0.808252][0.196682,-0.811762,0.549871][0.183065,0.059276,0][0,-0.0658549,-0.857672][-3.75079e-007,-0.810312,0.585998][0.178671,0.034154,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.520369,-0.0641316,-0.664831][0.377779,-0.804248,0.458768][0.1957,0.08192,0][-0.271839,-0.0654137,-0.808252][0.196682,-0.811762,0.549871][0.183065,0.059276,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.717603,-0.0621346,-0.441447][0.520503,-0.785553,0.334638][0.215337,0.099869,0][-0.520369,-0.0641316,-0.664831][0.377779,-0.804248,0.458768][0.1957,0.08192,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.844235,-0.0596186,-0.159966][0.618396,-0.765479,0.177844][0.240055,0.111367,0][-0.717603,-0.0621346,-0.441447][0.520503,-0.785553,0.334638][0.215337,0.099869,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.88787,-0.0568306,0.152057][0.667396,-0.744699,-0.00251934][0.267435,0.115288,0][-0.844235,-0.0596186,-0.159966][0.618396,-0.765479,0.177844][0.240055,0.111367,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.844235,-0.0540417,0.464081][0.661801,-0.724284,-0.193474][0.294796,0.111248,0][-0.88787,-0.0568306,0.152057][0.667396,-0.744699,-0.00251934][0.267435,0.115288,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][2.49967e-007,0.571379,0.257224][4.90324e-007,0.999334,-0.0364884][0.749768,0.226993,0][-0.180334,0.587348,0.24833][0.196054,0.980141,-0.0297619][0.747471,0.182288,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][2.35262e-007,0.576585,0.453827][4.95509e-007,0.999578,-0.0290418][0.800555,0.227003,0][2.49967e-007,0.571379,0.257224][4.90324e-007,0.999334,-0.0364884][0.749768,0.226993,0][-1.02099,-0.0159627,0.869153][-0.837419,0.156463,0.523687][0.719728,0.644196,0][-0.933413,0.437559,0.828259][-0.850884,0.218343,0.477831][0.720435,0.806277,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-1.20089,-0.0211015,0.471694][-0.940283,0.180334,0.288698][0.604634,0.64236,0][-1.02099,-0.0159627,0.869153][-0.837419,0.156463,0.523687][0.719728,0.644196,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-1.20089,-0.0211015,0.471694][-0.940283,0.180334,0.288698][0.604634,0.64236,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-1.14678,0.461416,0.034407][-0.961759,0.258857,-0.0895176][0.495884,0.814803,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-1.14678,0.461416,0.034407][-0.961759,0.258857,-0.0895176][0.495884,0.814803,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-0.979383,0.218722,-0.439858][-0.459888,0.596683,-0.657627][0.362558,0.728068,0][-0.945696,0.381638,-0.354573][-0.524399,0.360339,-0.771467][0.376825,0.793634,0][-0.783955,0.321947,-0.498098][-0.560174,0.400223,-0.725277][0.30811,0.764959,0][-0.783955,0.321947,-0.498098][-0.560174,0.400223,-0.725277][0.30811,0.764959,0][-0.879661,0.122159,-0.616606][-0.340189,0.738866,-0.581677][0.308959,0.693558,0][-0.979383,0.218722,-0.439858][-0.459888,0.596683,-0.657627][0.362558,0.728068,0][-0.879661,0.122159,-0.616606][-0.340189,0.738866,-0.581677][0.308959,0.693558,0][-0.783955,0.321947,-0.498098][-0.560174,0.400223,-0.725277][0.30811,0.764959,0][-0.572981,0.281684,-0.688148][-0.542834,0.415614,-0.729792][0.224814,0.75057,0][-0.572981,0.281684,-0.688148][-0.542834,0.415614,-0.729792][0.224814,0.75057,0][-0.648121,0.0697744,-0.82582][-0.359999,0.778945,-0.513464][0.224594,0.674837,0][-0.879661,0.122159,-0.616606][-0.340189,0.738866,-0.581677][0.308959,0.693558,0][-0.648121,0.0697744,-0.82582][-0.359999,0.778945,-0.513464][0.224594,0.674837,0][-0.572981,0.281684,-0.688148][-0.542834,0.415614,-0.729792][0.224814,0.75057,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.417833,0.114991,-0.947852][-0.471548,0.725463,-0.501345][0.160685,0.690997,0][-0.648121,0.0697744,-0.82582][-0.359999,0.778945,-0.513464][0.224594,0.674837,0][-0.318551,0.183914,-0.97185][-0.610962,0.609921,-0.5047][0.133586,0.715629,0][-0.417833,0.114991,-0.947852][-0.471548,0.725463,-0.501345][0.160685,0.690997,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.266523,0.27629,-0.94409][-0.667877,0.398039,-0.628892][0.121998,0.748642,0][-0.318551,0.183914,-0.97185][-0.610962,0.609921,-0.5047][0.133586,0.715629,0][-1.26063e-007,-0.00569123,1.41095][0,0.0782557,0.996933][0.960103,0.647867,0][0,0.403359,1.36505][0,0.175048,0.98456][0.960103,0.794055,0][-0.37334,0.404642,1.31998][-0.262887,0.172349,0.949308][0.888,0.794513,0][-0.37334,0.404642,1.31998][-0.262887,0.172349,0.949308][0.888,0.794513,0][-0.387723,-0.00611604,1.36349][-0.266893,0.0800133,0.960399][0.887703,0.647716,0][-1.26063e-007,-0.00569123,1.41095][0,0.0782557,0.996933][0.960103,0.647867,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-0.387723,-0.00611604,1.36349][-0.266893,0.0800133,0.960399][0.887703,0.647716,0][-0.37334,0.404642,1.31998][-0.262887,0.172349,0.949308][0.888,0.794513,0][-0.37334,0.404642,1.31998][-0.262887,0.172349,0.949308][0.888,0.794513,0][-0.703517,0.424924,1.16813][-0.630153,0.175608,0.756352][0.812163,0.801762,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-0.703517,0.424924,1.16813][-0.630153,0.175608,0.756352][0.812163,0.801762,0][-0.933413,0.437559,0.828259][-0.850884,0.218343,0.477831][0.720435,0.806277,0][-0.933413,0.437559,0.828259][-0.850884,0.218343,0.477831][0.720435,0.806277,0][-1.02099,-0.0159627,0.869153][-0.837419,0.156463,0.523687][0.719728,0.644196,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-0.792026,-0.717187,1.26856][-0.00898057,-0.999089,0.0417088][0.382862,0.109921,0][-0.937414,-0.529112,1.48242][-0.399732,-0.65545,0.640781][0.412594,0.129512,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.09155,-0.717177,0.929196][0.0308774,-0.998912,-0.0349599][0.351363,0.138976,0][-0.792026,-0.717187,1.26856][-0.00898057,-0.999089,0.0417088][0.382862,0.109921,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.09155,-0.717177,0.929196][0.0308774,-0.998912,-0.0349599][0.351363,0.138976,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.58629,-0.597601,0.596417][-0.460297,-0.843063,0.278159][0.322969,0.189989,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.681,-0.675449,0.0287787][-0.271523,-0.952977,0.13457][0.267611,0.197218,0][-1.35744,-0.731259,0.0301428][0.26367,-0.961381,0.078893][0.26755,0.164181,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.58629,-0.597601,0.596417][-0.460297,-0.843063,0.278159][0.322969,0.189989,0][-1.681,-0.675449,0.0287787][-0.271523,-0.952977,0.13457][0.267611,0.197218,0][-1.35744,-0.731259,0.0301428][0.26367,-0.961381,0.078893][0.26755,0.164181,0][-1.681,-0.675449,0.0287787][-0.271523,-0.952977,0.13457][0.267611,0.197218,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.28385,-0.772562,-0.442914][0.349294,-0.916075,0.19698][0.223442,0.157865,0][-1.35744,-0.731259,0.0301428][0.26367,-0.961381,0.078893][0.26755,0.164181,0][-1.09154,-0.828245,-0.869067][0.30651,-0.895328,0.323172][0.18362,0.139342,0][-1.28385,-0.772562,-0.442914][0.349294,-0.916075,0.19698][0.223442,0.157865,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.32109,-0.841776,-1.065][-0.0648835,-0.99173,0.110729][0.162219,0.169711,0][-1.09154,-0.828245,-0.869067][0.30651,-0.895328,0.323172][0.18362,0.139342,0][-0.792025,-0.883304,-1.20593][0.224067,-0.865032,0.448903][0.151984,0.110426,0][-1.09154,-0.828245,-0.869067][0.30651,-0.895328,0.323172][0.18362,0.139342,0][-1.32109,-0.841776,-1.065][-0.0648835,-0.99173,0.110729][0.162219,0.169711,0][-1.32109,-0.841776,-1.065][-0.0648835,-0.99173,0.110729][0.162219,0.169711,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-0.792025,-0.883304,-1.20593][0.224067,-0.865032,0.448903][0.151984,0.110426,0][-0.414608,-0.912371,-1.39681][0.114565,-0.855428,0.505091][0.134121,0.073877,0][-0.792025,-0.883304,-1.20593][0.224067,-0.865032,0.448903][0.151984,0.110426,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-0.49104,-0.956381,-1.66316][-0.00111413,-0.992913,0.118837][0.099134,0.084243,0][-0.414608,-0.912371,-1.39681][0.114565,-0.855428,0.505091][0.134121,0.073877,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][-3.09665e-007,-0.912723,-1.43618][-3.73148e-007,-0.836829,0.547464][0.130362,0.033398,0][-0.414608,-0.912371,-1.39681][0.114565,-0.855428,0.505091][0.134121,0.073877,0][-0.414608,-0.912371,-1.39681][0.114565,-0.855428,0.505091][0.134121,0.073877,0][-0.49104,-0.956381,-1.66316][-0.00111413,-0.992913,0.118837][0.099134,0.084243,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-4.7056e-007,-0.715287,1.48113][-4.31271e-007,-0.999749,0.0223917][0.402462,0.032867,0][-3.82071e-007,-0.479491,1.75505][-2.79219e-007,-0.589156,0.80802][0.439249,0.032757,0][-3.82071e-007,-0.479491,1.75505][-2.79219e-007,-0.589156,0.80802][0.439249,0.032757,0][-0.491039,-0.491135,1.69358][-0.189182,-0.599963,0.777338][0.433118,0.083603,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-0.491039,-0.491135,1.69358][-0.189182,-0.599963,0.777338][0.433118,0.083603,0][-0.937414,-0.529112,1.48242][-0.399732,-0.65545,0.640781][0.412594,0.129512,0][-0.937414,-0.529112,1.48242][-0.399732,-0.65545,0.640781][0.412594,0.129512,0][-0.792026,-0.717187,1.26856][-0.00898057,-0.999089,0.0417088][0.382862,0.109921,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-1.10114,-0.664548,-0.88099][-0.173194,0.972846,-0.153542][0.29192,0.41778,0][-1.32204,-0.73877,-1.03811][-0.0969236,0.985762,-0.137399][0.291925,0.367597,0][-1.49459,-0.681148,-0.531945][-0.0471658,0.989448,-0.136996][0.38786,0.369055,0][-1.49459,-0.681148,-0.531945][-0.0471658,0.989448,-0.136996][0.38786,0.369055,0][-1.32513,-0.651314,-0.462713][-0.0694956,0.995845,-0.0588403][0.387885,0.420196,0][-1.10114,-0.664548,-0.88099][-0.173194,0.972846,-0.153542][0.29192,0.41778,0][-0.775094,-0.658751,-1.18589][-0.409877,0.726892,-0.551026][0.208158,0.428886,0][-0.799104,-0.670184,-1.22261][-0.159536,0.959552,-0.231965][0.20817,0.417868,0][-1.10114,-0.664548,-0.88099][-0.173194,0.972846,-0.153542][0.29192,0.41778,0][-1.10114,-0.664548,-0.88099][-0.173194,0.972846,-0.153542][0.29192,0.41778,0][-1.06824,-0.655783,-0.853873][-0.582983,0.692815,-0.424428][0.291918,0.429017,0][-0.775094,-0.658751,-1.18589][-0.409877,0.726892,-0.551026][0.208158,0.428886,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-0.41833,-0.676217,-1.41866][-0.0896019,0.936254,-0.339706][0.113491,0.418482,0][-0.799104,-0.670184,-1.22261][-0.159536,0.959552,-0.231965][0.20817,0.417868,0][-0.799104,-0.670184,-1.22261][-0.159536,0.959552,-0.231965][0.20817,0.417868,0][-0.775094,-0.658751,-1.18589][-0.409877,0.726892,-0.551026][0.208158,0.428886,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-1.9124e-007,-0.660816,-1.41681][3.14796e-007,0.696868,-0.7172][0.045394,0.428223,0][-1.95161e-007,-0.67784,-1.46482][4.0879e-007,0.940736,-0.339138][0.045376,0.417384,0][-1.95161e-007,-0.67784,-1.46482][4.0879e-007,0.940736,-0.339138][0.045376,0.417384,0][-0.41833,-0.676217,-1.41866][-0.0896019,0.936254,-0.339706][0.113491,0.418482,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-0.405707,-0.608839,1.40659][-0.199084,0.664978,0.71984][0.912957,0.429875,0][-0.421863,-0.620654,1.46244][0.0888586,0.94078,-0.327164][0.913051,0.416465,0][-0.421863,-0.620654,1.46244][0.0888586,0.94078,-0.327164][0.913051,0.416465,0][-4.27596e-007,-0.61901,1.51481][4.01754e-007,0.916047,-0.401071][0.971705,0.41767,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-0.805824,-0.622291,1.2883][0.171672,0.951054,-0.256953][0.809373,0.415134,0][-0.421863,-0.620654,1.46244][0.0888586,0.94078,-0.327164][0.913051,0.416465,0][-0.421863,-0.620654,1.46244][0.0888586,0.94078,-0.327164][0.913051,0.416465,0][-0.405707,-0.608839,1.40659][-0.199084,0.664978,0.71984][0.912957,0.429875,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-1.06824,-0.613286,0.909145][-0.623443,0.661486,0.41684][0.72059,0.430116,0][-1.11035,-0.623881,0.944046][0.220612,0.957878,-0.18385][0.720583,0.416319,0][-1.11035,-0.623881,0.944046][0.220612,0.957878,-0.18385][0.720583,0.416319,0][-0.805824,-0.622291,1.2883][0.171672,0.951054,-0.256953][0.809373,0.415134,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-1.11035,-0.623881,0.944046][0.220612,0.957878,-0.18385][0.720583,0.416319,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-1.49792,-0.533544,0.564781][0.494782,0.819548,-0.289018][0.623028,0.370987,0][-1.49792,-0.533544,0.564781][0.494782,0.819548,-0.289018][0.623028,0.370987,0][-1.26598,-0.451561,1.05627][0.560605,0.695833,-0.44893][0.720577,0.37184,0][-1.11035,-0.623881,0.944046][0.220612,0.957878,-0.18385][0.720583,0.416319,0][-2.72365e-007,-0.304581,1.45419][3.03867e-007,0.634453,0.772961][0.971531,0.520934,0][-2.67779e-007,-0.300386,1.42461][3.42596e-007,0.698199,0.715904][0.961003,0.53844,0][-0.397291,-0.30082,1.37605][-0.192647,0.70575,0.681765][0.887697,0.538409,0][-0.397291,-0.30082,1.37605][-0.192647,0.70575,0.681765][0.887697,0.538409,0][-0.405707,-0.305024,1.40461][-0.209843,0.629223,0.748361][0.912933,0.520934,0][-2.72365e-007,-0.304581,1.45419][3.03867e-007,0.634453,0.772961][0.971531,0.520934,0][-0.405707,-0.305024,1.40461][-0.209843,0.629223,0.748361][0.912933,0.520934,0][-0.397291,-0.30082,1.37605][-0.192647,0.70575,0.681765][0.887697,0.538409,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-0.775094,-0.306503,1.23918][-0.468329,0.616974,0.632464][0.809372,0.520934,0][-0.405707,-0.305024,1.40461][-0.209843,0.629223,0.748361][0.912933,0.520934,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-0.775094,-0.306503,1.23918][-0.468329,0.616974,0.632464][0.809372,0.520934,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-1.04621,-0.30122,0.888796][-0.633337,0.666352,0.393522][0.71835,0.538381,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-1.04621,-0.30122,0.888796][-0.633337,0.666352,0.393522][0.71835,0.538381,0][-1.23055,-0.315919,0.479132][-0.59229,0.780936,0.198323][0.622663,0.53743,0][-1.23055,-0.315919,0.479132][-0.59229,0.780936,0.198323][0.622663,0.53743,0][-1.27922,-0.313165,0.493701][-0.682731,0.696262,0.221581][0.622866,0.52293,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-1.27922,-0.321543,-0.443608][-0.716601,0.645772,-0.263556][0.387862,0.522643,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.04621,-0.316302,-0.785952][-0.544065,0.72867,-0.415974][0.305111,0.53731,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-1.04621,-0.316302,-0.785952][-0.544065,0.72867,-0.415974][0.305111,0.53731,0][-0.759086,-0.318212,-1.06951][-0.378843,0.754558,-0.535836][0.222659,0.537174,0][-0.759086,-0.318212,-1.06951][-0.378843,0.754558,-0.535836][0.222659,0.537174,0][-0.775094,-0.326733,-1.09423][-0.447441,0.659336,-0.604212][0.208126,0.520934,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-0.775094,-0.326733,-1.09423][-0.447441,0.659336,-0.604212][0.208126,0.520934,0][-0.759086,-0.318212,-1.06951][-0.378843,0.754558,-0.535836][0.222659,0.537174,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][-0.405707,-0.328426,-1.28353][-0.214226,0.671371,-0.709485][0.113474,0.520934,0][-0.775094,-0.326733,-1.09423][-0.447441,0.659336,-0.604212][0.208126,0.520934,0][0,-0.328798,-1.32516][3.11974e-007,0.686666,-0.726973][0.045424,0.520934,0][-0.405707,-0.328426,-1.28353][-0.214226,0.671371,-0.709485][0.113474,0.520934,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][0,-0.320235,-1.29569][3.41706e-007,0.748475,-0.663162][0.046096,0.53703,0][0,-0.328798,-1.32516][3.11974e-007,0.686666,-0.726973][0.045424,0.520934,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][-0.759086,-0.318212,-1.06951][-0.378843,0.754558,-0.535836][0.222659,0.537174,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-0.356212,0.00637035,-1.12741][-0.285207,0.441385,-0.850786][0.131317,0.652178,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][0,-0.320235,-1.29569][3.41706e-007,0.748475,-0.663162][0.046096,0.53703,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][-0.356212,0.00637035,-1.12741][-0.285207,0.441385,-0.850786][0.131317,0.652178,0][-0.356212,0.00637035,-1.12741][-0.285207,0.441385,-0.850786][0.131317,0.652178,0][0,-0.000837807,-1.18476][1.73264e-007,0.363554,-0.931573][0.046177,0.649602,0][0,-0.320235,-1.29569][3.41706e-007,0.748475,-0.663162][0.046096,0.53703,0][-2.67779e-007,-0.300386,1.42461][3.42596e-007,0.698199,0.715904][0.961003,0.53844,0][-1.26063e-007,-0.00569123,1.41095][0,0.0782557,0.996933][0.960103,0.647867,0][-0.387723,-0.00611604,1.36349][-0.266893,0.0800133,0.960399][0.887703,0.647716,0][-0.387723,-0.00611604,1.36349][-0.266893,0.0800133,0.960399][0.887703,0.647716,0][-0.397291,-0.30082,1.37605][-0.192647,0.70575,0.681765][0.887697,0.538409,0][-2.67779e-007,-0.300386,1.42461][3.42596e-007,0.698199,0.715904][0.961003,0.53844,0][-0.397291,-0.30082,1.37605][-0.192647,0.70575,0.681765][0.887697,0.538409,0][-0.387723,-0.00611604,1.36349][-0.266893,0.0800133,0.960399][0.887703,0.647716,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-0.397291,-0.30082,1.37605][-0.192647,0.70575,0.681765][0.887697,0.538409,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-1.02099,-0.0159627,0.869153][-0.837419,0.156463,0.523687][0.719728,0.644196,0][-1.02099,-0.0159627,0.869153][-0.837419,0.156463,0.523687][0.719728,0.644196,0][-1.04621,-0.30122,0.888796][-0.633337,0.666352,0.393522][0.71835,0.538381,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-1.04621,-0.30122,0.888796][-0.633337,0.666352,0.393522][0.71835,0.538381,0][-1.02099,-0.0159627,0.869153][-0.837419,0.156463,0.523687][0.719728,0.644196,0][-1.20089,-0.0211015,0.471694][-0.940283,0.180334,0.288698][0.604634,0.64236,0][-1.20089,-0.0211015,0.471694][-0.940283,0.180334,0.288698][0.604634,0.64236,0][-1.23055,-0.315919,0.479132][-0.59229,0.780936,0.198323][0.622663,0.53743,0][-1.04621,-0.30122,0.888796][-0.633337,0.666352,0.393522][0.71835,0.538381,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.00542,-0.00567541,-0.697061][-0.71802,0.398177,-0.570879][0.308711,0.647873,0][-1.00542,-0.00567541,-0.697061][-0.71802,0.398177,-0.570879][0.308711,0.647873,0][-1.04621,-0.316302,-0.785952][-0.544065,0.72867,-0.415974][0.305111,0.53731,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.04621,-0.316302,-0.785952][-0.544065,0.72867,-0.415974][0.305111,0.53731,0][-1.00542,-0.00567541,-0.697061][-0.71802,0.398177,-0.570879][0.308711,0.647873,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-0.759086,-0.318212,-1.06951][-0.378843,0.754558,-0.535836][0.222659,0.537174,0][-1.04621,-0.316302,-0.785952][-0.544065,0.72867,-0.415974][0.305111,0.53731,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][-0.163617,0.560188,-0.236956][0.197931,0.979828,-0.0275787][0.622112,0.186383,0][-0.601713,0.710126,-0.367336][0.291577,0.956344,-0.019738][0.588432,0.077991,0][-0.601713,0.710126,-0.367336][0.291577,0.956344,-0.019738][0.588432,0.077991,0][-0.788395,0.76363,-0.133][0.331803,0.942942,-0.0276859][0.648965,0.031783,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][-0.140062,0.560958,-0.691163][0.179982,0.983479,0.0193906][0.504781,0.192228,0][-0.258774,0.593068,-0.640187][0.289875,0.956922,0.016496][0.517949,0.162841,0][-0.163617,0.560188,-0.236956][0.197931,0.979828,-0.0275787][0.622112,0.186383,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][3.2653e-007,0.548831,-0.741531][4.33738e-007,0.999974,0.00724544][0.49177,0.22695,0][-0.140062,0.560958,-0.691163][0.179982,0.983479,0.0193906][0.504781,0.192228,0][-0.140062,0.560958,-0.691163][0.179982,0.983479,0.0193906][0.504781,0.192228,0][-0.163617,0.560188,-0.236956][0.197931,0.979828,-0.0275787][0.622112,0.186383,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][2.06991e-007,0.642073,1.13441][4.04088e-007,0.994194,-0.107604][0.976363,0.227127,0][2.19507e-007,0.583506,0.671799][4.78642e-007,0.996272,-0.0862719][0.856861,0.227016,0][-0.193497,0.608524,0.675266][0.171394,0.983085,-0.0645626][0.857757,0.179063,0][-0.193497,0.608524,0.675266][0.171394,0.983085,-0.0645626][0.857757,0.179063,0][-0.298124,0.649169,1.12267][0.110628,0.991924,-0.0620267][0.97333,0.153186,0][2.06991e-007,0.642073,1.13441][4.04088e-007,0.994194,-0.107604][0.976363,0.227127,0][-0.193497,0.608524,0.675266][0.171394,0.983085,-0.0645626][0.857757,0.179063,0][-0.702001,0.742541,0.753559][0.318222,0.948011,-0.00314011][0.877981,0.053174,0][-0.550727,0.699008,0.990038][0.212882,0.977014,0.0112142][0.939069,0.090618,0][-0.550727,0.699008,0.990038][0.212882,0.977014,0.0112142][0.939069,0.090618,0][-0.298124,0.649169,1.12267][0.110628,0.991924,-0.0620267][0.97333,0.153186,0][-0.193497,0.608524,0.675266][0.171394,0.983085,-0.0645626][0.857757,0.179063,0][-0.180334,0.587348,0.24833][0.196054,0.980141,-0.0297619][0.747471,0.182288,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.704849,0.016444,0][-0.823886,0.782313,0.437464][0.350654,0.936501,0.00277412][0.796328,0.023014,0][-0.823886,0.782313,0.437464][0.350654,0.936501,0.00277412][0.796328,0.023014,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][-0.180334,0.587348,0.24833][0.196054,0.980141,-0.0297619][0.747471,0.182288,0][-0.961506,0.654289,-0.247349][-0.786463,0.341189,-0.514846][0.412345,0.883733,0][-0.942867,0.765969,-0.216007][-0.604144,0.648301,-0.463375][0.419162,0.912816,0][-0.767809,0.713093,-0.426345][-0.428359,0.702632,-0.568169][0.306858,0.89392,0][-0.767809,0.713093,-0.426345][-0.428359,0.702632,-0.568169][0.306858,0.89392,0][-0.790876,0.629613,-0.454907][-0.632713,0.40647,-0.659133][0.307145,0.874914,0][-0.961506,0.654289,-0.247349][-0.786463,0.341189,-0.514846][0.412345,0.883733,0][-0.790876,0.629613,-0.454907][-0.632713,0.40647,-0.659133][0.307145,0.874914,0][-0.767809,0.713093,-0.426345][-0.428359,0.702632,-0.568169][0.306858,0.89392,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.569796,0.588453,-0.663266][-0.509353,0.429863,-0.745505][0.224954,0.860204,0][-0.790876,0.629613,-0.454907][-0.632713,0.40647,-0.659133][0.307145,0.874914,0][-0.569796,0.588453,-0.663266][-0.509353,0.429863,-0.745505][0.224954,0.860204,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.303384,0.579897,-0.816149][-0.169651,0.74009,-0.650757][0.14334,0.846318,0][-0.303384,0.579897,-0.816149][-0.169651,0.74009,-0.650757][0.14334,0.846318,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][-0.569796,0.588453,-0.663266][-0.509353,0.429863,-0.745505][0.224954,0.860204,0][-0.292201,0.361605,-0.890561][-0.668062,0.129487,-0.732752][0.133207,0.779132,0][-0.266523,0.27629,-0.94409][-0.667877,0.398039,-0.628892][0.121998,0.748642,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.378747,0.397432,-0.806556][-0.656242,-0.0103413,-0.75448][0.166127,0.791937,0][-0.292201,0.361605,-0.890561][-0.668062,0.129487,-0.732752][0.133207,0.779132,0][0,0.403359,1.36505][0,0.175048,0.98456][0.960103,0.794055,0][1.53952e-007,0.565717,1.32463][0,0.241187,0.970479][0.960103,0.852079,0][-0.362761,0.567049,1.28196][-0.254903,0.235442,0.937865][0.887841,0.852555,0][-0.362761,0.567049,1.28196][-0.254903,0.235442,0.937865][0.887841,0.852555,0][-0.37334,0.404642,1.31998][-0.262887,0.172349,0.949308][0.888,0.794513,0][0,0.403359,1.36505][0,0.175048,0.98456][0.960103,0.794055,0][-0.703517,0.424924,1.16813][-0.630153,0.175608,0.756352][0.812163,0.801762,0][-0.37334,0.404642,1.31998][-0.262887,0.172349,0.949308][0.888,0.794513,0][-0.362761,0.567049,1.28196][-0.254903,0.235442,0.937865][0.887841,0.852555,0][-0.362761,0.567049,1.28196][-0.254903,0.235442,0.937865][0.887841,0.852555,0][-0.674653,0.607752,1.1357][-0.622413,0.234288,0.7468][0.813748,0.867101,0][-0.703517,0.424924,1.16813][-0.630153,0.175608,0.756352][0.812163,0.801762,0][-0.933413,0.437559,0.828259][-0.850884,0.218343,0.477831][0.720435,0.806277,0][-0.703517,0.424924,1.16813][-0.630153,0.175608,0.756352][0.812163,0.801762,0][-0.674653,0.607752,1.1357][-0.622413,0.234288,0.7468][0.813748,0.867101,0][-0.674653,0.607752,1.1357][-0.622413,0.234288,0.7468][0.813748,0.867101,0][-0.880986,0.666895,0.79795][-0.850926,0.253572,0.460028][0.720763,0.888238,0][-0.933413,0.437559,0.828259][-0.850884,0.218343,0.477831][0.720435,0.806277,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-0.933413,0.437559,0.828259][-0.850884,0.218343,0.477831][0.720435,0.806277,0][-0.880986,0.666895,0.79795][-0.850926,0.253572,0.460028][0.720763,0.888238,0][-0.880986,0.666895,0.79795][-0.850926,0.253572,0.460028][0.720763,0.888238,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-1.14678,0.461416,0.034407][-0.961759,0.258857,-0.0895176][0.495884,0.814803,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-1.07226,0.706526,0.04087][-0.944586,0.301965,-0.12874][0.497106,0.902401,0][-1.14678,0.461416,0.034407][-0.961759,0.258857,-0.0895176][0.495884,0.814803,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-1.14678,0.461416,0.034407][-0.961759,0.258857,-0.0895176][0.495884,0.814803,0][-1.07226,0.706526,0.04087][-0.944586,0.301965,-0.12874][0.497106,0.902401,0][-1.07226,0.706526,0.04087][-0.944586,0.301965,-0.12874][0.497106,0.902401,0][-0.961506,0.654289,-0.247349][-0.786463,0.341189,-0.514846][0.412345,0.883733,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-0.414608,-0.912371,-1.39681][0.114565,-0.855428,0.505091][0.134121,0.073877,0][-3.09665e-007,-0.912723,-1.43618][-3.73148e-007,-0.836829,0.547464][0.130362,0.033398,0][-3.09665e-007,-0.912723,-1.43618][-3.73148e-007,-0.836829,0.547464][0.130362,0.033398,0][-1.69867e-007,-0.585748,-1.25184][-2.71326e-007,-0.546378,0.837539][0.151508,0.033729,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.356478,-0.54748,1.21991][0.22799,-0.573469,-0.786864][0.374428,0.067043,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-0.792026,-0.717187,1.26856][-0.00898057,-0.999089,0.0417088][0.382862,0.109921,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.792026,-0.717187,1.26856][-0.00898057,-0.999089,0.0417088][0.382862,0.109921,0][-1.09155,-0.717177,0.929196][0.0308774,-0.998912,-0.0349599][0.351363,0.138976,0][-1.09155,-0.717177,0.929196][0.0308774,-0.998912,-0.0349599][0.351363,0.138976,0][-0.939356,-0.551138,0.810573][0.668982,-0.608849,-0.42634][0.337398,0.121758,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.939356,-0.551138,0.810573][0.668982,-0.608849,-0.42634][0.337398,0.121758,0][-1.09155,-0.717177,0.929196][0.0308774,-0.998912,-0.0349599][0.351363,0.138976,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.10494,-0.547682,0.44245][0.750806,-0.626114,-0.210409][0.304261,0.137351,0][-0.939356,-0.551138,0.810573][0.668982,-0.608849,-0.42634][0.337398,0.121758,0][-1.16999,-0.558228,0.0355688][0.774541,-0.632301,0.0167869][0.2675,0.142779,0][-1.10494,-0.547682,0.44245][0.750806,-0.626114,-0.210409][0.304261,0.137351,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.35744,-0.731259,0.0301428][0.26367,-0.961381,0.078893][0.26755,0.164181,0][-1.16999,-0.558228,0.0355688][0.774541,-0.632301,0.0167869][0.2675,0.142779,0][-1.35744,-0.731259,0.0301428][0.26367,-0.961381,0.078893][0.26755,0.164181,0][-1.28385,-0.772562,-0.442914][0.349294,-0.916075,0.19698][0.223442,0.157865,0][-1.10494,-0.556064,-0.373541][0.752785,-0.609924,0.247602][0.230714,0.137511,0][-1.10494,-0.556064,-0.373541][0.752785,-0.609924,0.247602][0.230714,0.137511,0][-1.16999,-0.558228,0.0355688][0.774541,-0.632301,0.0167869][0.2675,0.142779,0][-1.35744,-0.731259,0.0301428][0.26367,-0.961381,0.078893][0.26755,0.164181,0][-0.939356,-0.56501,-0.741552][0.661676,-0.595578,0.455491][0.197504,0.122064,0][-1.10494,-0.556064,-0.373541][0.752785,-0.609924,0.247602][0.230714,0.137511,0][-1.28385,-0.772562,-0.442914][0.349294,-0.916075,0.19698][0.223442,0.157865,0][-1.28385,-0.772562,-0.442914][0.349294,-0.916075,0.19698][0.223442,0.157865,0][-1.09154,-0.828245,-0.869067][0.30651,-0.895328,0.323172][0.18362,0.139342,0][-0.939356,-0.56501,-0.741552][0.661676,-0.595578,0.455491][0.197504,0.122064,0][-0.681454,-0.567622,-1.03365][0.48197,-0.581667,0.655262][0.17112,0.097948,0][-0.939356,-0.56501,-0.741552][0.661676,-0.595578,0.455491][0.197504,0.122064,0][-1.09154,-0.828245,-0.869067][0.30651,-0.895328,0.323172][0.18362,0.139342,0][-1.09154,-0.828245,-0.869067][0.30651,-0.895328,0.323172][0.18362,0.139342,0][-0.792025,-0.883304,-1.20593][0.224067,-0.865032,0.448903][0.151984,0.110426,0][-0.681454,-0.567622,-1.03365][0.48197,-0.581667,0.655262][0.17112,0.097948,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-0.681454,-0.567622,-1.03365][0.48197,-0.581667,0.655262][0.17112,0.097948,0][-0.792025,-0.883304,-1.20593][0.224067,-0.865032,0.448903][0.151984,0.110426,0][-0.792025,-0.883304,-1.20593][0.224067,-0.865032,0.448903][0.151984,0.110426,0][-0.414608,-0.912371,-1.39681][0.114565,-0.855428,0.505091][0.134121,0.073877,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-0.57699,-0.88946,-1.95562][-0.164932,0.764239,-0.623487][0.11987,0.326643,0][-0.496225,-0.787949,-1.67069][-0.0760469,0.936919,-0.341173][0.117371,0.371416,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][-2.48244e-007,-0.897365,-2.05499][3.48292e-007,0.759449,-0.650567][0.045197,0.326999,0][-0.57699,-0.88946,-1.95562][-0.164932,0.764239,-0.623487][0.11987,0.326643,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-0.947269,-0.758088,-1.44855][-0.112046,0.963235,-0.244181][0.208953,0.370468,0][-0.496225,-0.787949,-1.67069][-0.0760469,0.936919,-0.341173][0.117371,0.371416,0][-0.496225,-0.787949,-1.67069][-0.0760469,0.936919,-0.341173][0.117371,0.371416,0][-0.57699,-0.88946,-1.95562][-0.164932,0.764239,-0.623487][0.11987,0.326643,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-1.50547,-0.758415,-1.21366][-0.34696,0.890355,-0.294765][0.291929,0.325103,0][-1.32204,-0.73877,-1.03811][-0.0969236,0.985762,-0.137399][0.291925,0.367597,0][-0.947269,-0.758088,-1.44855][-0.112046,0.963235,-0.244181][0.208953,0.370468,0][-0.947269,-0.758088,-1.44855][-0.112046,0.963235,-0.244181][0.208953,0.370468,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-1.50547,-0.758415,-1.21366][-0.34696,0.890355,-0.294765][0.291929,0.325103,0][-1.71937,-0.696386,-0.622723][-0.329403,0.918117,-0.220353][0.387869,0.325023,0][-1.49459,-0.681148,-0.531945][-0.0471658,0.989448,-0.136996][0.38786,0.369055,0][-1.32204,-0.73877,-1.03811][-0.0969236,0.985762,-0.137399][0.291925,0.367597,0][-1.32204,-0.73877,-1.03811][-0.0969236,0.985762,-0.137399][0.291925,0.367597,0][-1.50547,-0.758415,-1.21366][-0.34696,0.890355,-0.294765][0.291929,0.325103,0][-1.71937,-0.696386,-0.622723][-0.329403,0.918117,-0.220353][0.387869,0.325023,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.56176,-0.632845,0.0275138][0.258314,0.961747,-0.0911952][0.504639,0.371214,0][-1.49459,-0.681148,-0.531945][-0.0471658,0.989448,-0.136996][0.38786,0.369055,0][-1.49459,-0.681148,-0.531945][-0.0471658,0.989448,-0.136996][0.38786,0.369055,0][-1.71937,-0.696386,-0.622723][-0.329403,0.918117,-0.220353][0.387869,0.325023,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.65825,-0.374009,0.66569][0.113149,0.947247,-0.299866][0.623033,0.326223,0][-1.49792,-0.533544,0.564781][0.494782,0.819548,-0.289018][0.623028,0.370987,0][-1.49792,-0.533544,0.564781][0.494782,0.819548,-0.289018][0.623028,0.370987,0][-1.56176,-0.632845,0.0275138][0.258314,0.961747,-0.0911952][0.504639,0.371214,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.26598,-0.451561,1.05627][0.560605,0.695833,-0.44893][0.720577,0.37184,0][-1.49792,-0.533544,0.564781][0.494782,0.819548,-0.289018][0.623028,0.370987,0][-1.65825,-0.374009,0.66569][0.113149,0.947247,-0.299866][0.623033,0.326223,0][-1.65825,-0.374009,0.66569][0.113149,0.947247,-0.299866][0.623033,0.326223,0][-1.41955,-0.217509,1.16868][0.166754,0.936193,-0.309413][0.720573,0.32611,0][-1.26598,-0.451561,1.05627][0.560605,0.695833,-0.44893][0.720577,0.37184,0][-0.94727,-0.433411,1.4591][0.426736,0.625385,-0.653292][0.809374,0.372535,0][-1.26598,-0.451561,1.05627][0.560605,0.695833,-0.44893][0.720577,0.37184,0][-1.41955,-0.217509,1.16868][0.166754,0.936193,-0.309413][0.720573,0.32611,0][-1.41955,-0.217509,1.16868][0.166754,0.936193,-0.309413][0.720573,0.32611,0][-1.10089,-0.155303,1.54287][0.161391,0.894252,-0.417451][0.809375,0.327138,0][-0.94727,-0.433411,1.4591][0.426736,0.625385,-0.653292][0.809374,0.372535,0][-0.57699,-0.068659,1.78768][0.0837001,0.814042,-0.574743][0.913954,0.328011,0][-0.496225,-0.38796,1.67504][0.194909,0.532098,-0.823943][0.913484,0.373909,0][-0.94727,-0.433411,1.4591][0.426736,0.625385,-0.653292][0.809374,0.372535,0][-0.94727,-0.433411,1.4591][0.426736,0.625385,-0.653292][0.809374,0.372535,0][-1.10089,-0.155303,1.54287][0.161391,0.894252,-0.417451][0.809375,0.327138,0][-0.57699,-0.068659,1.78768][0.0837001,0.814042,-0.574743][0.913954,0.328011,0][-3.06327e-007,-0.323828,1.73769][2.34301e-007,0.48672,-0.873558][0.971591,0.376293,0][-0.496225,-0.38796,1.67504][0.194909,0.532098,-0.823943][0.913484,0.373909,0][-0.57699,-0.068659,1.78768][0.0837001,0.814042,-0.574743][0.913954,0.328011,0][-0.57699,-0.068659,1.78768][0.0837001,0.814042,-0.574743][0.913954,0.328011,0][-1.81671e-007,-0.0392693,1.86389][4.12382e-007,0.841837,-0.539732][0.971447,0.329715,0][-3.06327e-007,-0.323828,1.73769][2.34301e-007,0.48672,-0.873558][0.971591,0.376293,0][-1.34213,-0.316284,0.0298988][-0.714137,0.69969,-0.0210279][0.505488,0.536958,0][-1.36029,-0.323289,0.0239868][-0.823182,0.567497,-0.0178301][0.506408,0.523675,0][-1.27922,-0.313165,0.493701][-0.682731,0.696262,0.221581][0.622866,0.52293,0][-1.27922,-0.313165,0.493701][-0.682731,0.696262,0.221581][0.622866,0.52293,0][-1.23055,-0.315919,0.479132][-0.59229,0.780936,0.198323][0.622663,0.53743,0][-1.34213,-0.316284,0.0298988][-0.714137,0.69969,-0.0210279][0.505488,0.536958,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.34213,-0.316284,0.0298988][-0.714137,0.69969,-0.0210279][0.505488,0.536958,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.34213,-0.316284,0.0298988][-0.714137,0.69969,-0.0210279][0.505488,0.536958,0][-1.23055,-0.315919,0.479132][-0.59229,0.780936,0.198323][0.622663,0.53743,0][-1.20089,-0.0211015,0.471694][-0.940283,0.180334,0.288698][0.604634,0.64236,0][-1.20089,-0.0211015,0.471694][-0.940283,0.180334,0.288698][0.604634,0.64236,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-1.34213,-0.316284,0.0298988][-0.714137,0.69969,-0.0210279][0.505488,0.536958,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-1.42913,-0.647021,0.0301018][0.0603542,0.997916,-0.0228221][0.506976,0.417038,0][-1.56176,-0.632845,0.0275138][0.258314,0.961747,-0.0911952][0.504639,0.371214,0][-1.56176,-0.632845,0.0275138][0.258314,0.961747,-0.0911952][0.504639,0.371214,0][-1.49792,-0.533544,0.564781][0.494782,0.819548,-0.289018][0.623028,0.370987,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-0.41833,-0.676217,-1.41866][-0.0896019,0.936254,-0.339706][0.113491,0.418482,0][-1.95161e-007,-0.67784,-1.46482][4.0879e-007,0.940736,-0.339138][0.045376,0.417384,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][-0.496225,-0.787949,-1.67069][-0.0760469,0.936919,-0.341173][0.117371,0.371416,0][-0.41833,-0.676217,-1.41866][-0.0896019,0.936254,-0.339706][0.113491,0.418482,0][-0.947269,-0.758088,-1.44855][-0.112046,0.963235,-0.244181][0.208953,0.370468,0][-0.799104,-0.670184,-1.22261][-0.159536,0.959552,-0.231965][0.20817,0.417868,0][-0.41833,-0.676217,-1.41866][-0.0896019,0.936254,-0.339706][0.113491,0.418482,0][-0.41833,-0.676217,-1.41866][-0.0896019,0.936254,-0.339706][0.113491,0.418482,0][-0.496225,-0.787949,-1.67069][-0.0760469,0.936919,-0.341173][0.117371,0.371416,0][-0.947269,-0.758088,-1.44855][-0.112046,0.963235,-0.244181][0.208953,0.370468,0][-1.32204,-0.73877,-1.03811][-0.0969236,0.985762,-0.137399][0.291925,0.367597,0][-1.10114,-0.664548,-0.88099][-0.173194,0.972846,-0.153542][0.29192,0.41778,0][-0.799104,-0.670184,-1.22261][-0.159536,0.959552,-0.231965][0.20817,0.417868,0][-0.799104,-0.670184,-1.22261][-0.159536,0.959552,-0.231965][0.20817,0.417868,0][-0.947269,-0.758088,-1.44855][-0.112046,0.963235,-0.244181][0.208953,0.370468,0][-1.32204,-0.73877,-1.03811][-0.0969236,0.985762,-0.137399][0.291925,0.367597,0][-0.805824,-0.622291,1.2883][0.171672,0.951054,-0.256953][0.809373,0.415134,0][-1.11035,-0.623881,0.944046][0.220612,0.957878,-0.18385][0.720583,0.416319,0][-1.26598,-0.451561,1.05627][0.560605,0.695833,-0.44893][0.720577,0.37184,0][-1.26598,-0.451561,1.05627][0.560605,0.695833,-0.44893][0.720577,0.37184,0][-0.94727,-0.433411,1.4591][0.426736,0.625385,-0.653292][0.809374,0.372535,0][-0.805824,-0.622291,1.2883][0.171672,0.951054,-0.256953][0.809373,0.415134,0][-0.496225,-0.38796,1.67504][0.194909,0.532098,-0.823943][0.913484,0.373909,0][-0.421863,-0.620654,1.46244][0.0888586,0.94078,-0.327164][0.913051,0.416465,0][-0.805824,-0.622291,1.2883][0.171672,0.951054,-0.256953][0.809373,0.415134,0][-0.805824,-0.622291,1.2883][0.171672,0.951054,-0.256953][0.809373,0.415134,0][-0.94727,-0.433411,1.4591][0.426736,0.625385,-0.653292][0.809374,0.372535,0][-0.496225,-0.38796,1.67504][0.194909,0.532098,-0.823943][0.913484,0.373909,0][-4.27596e-007,-0.61901,1.51481][4.01754e-007,0.916047,-0.401071][0.971705,0.41767,0][-0.421863,-0.620654,1.46244][0.0888586,0.94078,-0.327164][0.913051,0.416465,0][-0.496225,-0.38796,1.67504][0.194909,0.532098,-0.823943][0.913484,0.373909,0][-0.496225,-0.38796,1.67504][0.194909,0.532098,-0.823943][0.913484,0.373909,0][-3.06327e-007,-0.323828,1.73769][2.34301e-007,0.48672,-0.873558][0.971591,0.376293,0][-4.27596e-007,-0.61901,1.51481][4.01754e-007,0.916047,-0.401071][0.971705,0.41767,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-1.11035,-0.623881,0.944046][0.220612,0.957878,-0.18385][0.720583,0.416319,0][-1.06824,-0.613286,0.909145][-0.623443,0.661486,0.41684][0.72059,0.430116,0][-1.06824,-0.613286,0.909145][-0.623443,0.661486,0.41684][0.72059,0.430116,0][-1.28028,-0.628832,0.501061][-0.64343,0.739138,0.199179][0.622967,0.428731,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-1.28028,-0.628832,0.501061][-0.64343,0.739138,0.199179][0.622967,0.428731,0][-1.37949,-0.647021,0.0301018][-0.6294,0.776923,-0.0157229][0.506828,0.429766,0][-1.37949,-0.647021,0.0301018][-0.6294,0.776923,-0.0157229][0.506828,0.429766,0][-1.42913,-0.647021,0.0301018][0.0603542,0.997916,-0.0228221][0.506976,0.417038,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-1.06824,-0.655783,-0.853873][-0.582983,0.692815,-0.424428][0.291918,0.429017,0][-1.10114,-0.664548,-0.88099][-0.173194,0.972846,-0.153542][0.29192,0.41778,0][-1.32513,-0.651314,-0.462713][-0.0694956,0.995845,-0.0588403][0.387885,0.420196,0][-1.32513,-0.651314,-0.462713][-0.0694956,0.995845,-0.0588403][0.387885,0.420196,0][-1.28028,-0.65066,-0.445207][-0.634237,0.736103,-0.236424][0.387882,0.429184,0][-1.06824,-0.655783,-0.853873][-0.582983,0.692815,-0.424428][0.291918,0.429017,0][-1.56176,-0.632845,0.0275138][0.258314,0.961747,-0.0911952][0.504639,0.371214,0][-1.42913,-0.647021,0.0301018][0.0603542,0.997916,-0.0228221][0.506976,0.417038,0][-1.32513,-0.651314,-0.462713][-0.0694956,0.995845,-0.0588403][0.387885,0.420196,0][-1.32513,-0.651314,-0.462713][-0.0694956,0.995845,-0.0588403][0.387885,0.420196,0][-1.49459,-0.681148,-0.531945][-0.0471658,0.989448,-0.136996][0.38786,0.369055,0][-1.56176,-0.632845,0.0275138][0.258314,0.961747,-0.0911952][0.504639,0.371214,0][-0.491039,-0.491135,1.69358][-0.189182,-0.599963,0.777338][0.433118,0.083603,0][-3.82071e-007,-0.479491,1.75505][-2.79219e-007,-0.589156,0.80802][0.439249,0.032757,0][-2.14646e-007,-0.0970813,1.92574][0,-0.0338154,0.999428][0.471493,0.033729,0][-2.14646e-007,-0.0970813,1.92574][0,-0.0338154,0.999428][0.471493,0.033729,0][-0.589458,-0.123164,1.84729][-0.286632,-0.0525617,0.956598][0.461618,0.089223,0][-0.491039,-0.491135,1.69358][-0.189182,-0.599963,0.777338][0.433118,0.083603,0][-0.937414,-0.529112,1.48242][-0.399732,-0.65545,0.640781][0.412594,0.129512,0][-0.491039,-0.491135,1.69358][-0.189182,-0.599963,0.777338][0.433118,0.083603,0][-0.589458,-0.123164,1.84729][-0.286632,-0.0525617,0.956598][0.461618,0.089223,0][-0.589458,-0.123164,1.84729][-0.286632,-0.0525617,0.956598][0.461618,0.089223,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.444827,0.148688,0][-0.937414,-0.529112,1.48242][-0.399732,-0.65545,0.640781][0.412594,0.129512,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-0.937414,-0.529112,1.48242][-0.399732,-0.65545,0.640781][0.412594,0.129512,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.444827,0.148688,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.444827,0.148688,0][-1.48045,-0.291835,1.17237][-0.808413,-0.197368,0.554539][0.394684,0.202347,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.48045,-0.291835,1.17237][-0.808413,-0.197368,0.554539][0.394684,0.202347,0][-1.73962,-0.43989,0.655097][-0.950031,-0.118762,0.288679][0.334299,0.225713,0][-1.73962,-0.43989,0.655097][-0.950031,-0.118762,0.288679][0.334299,0.225713,0][-1.58629,-0.597601,0.596417][-0.460297,-0.843063,0.278159][0.322969,0.189989,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.58629,-0.597601,0.596417][-0.460297,-0.843063,0.278159][0.322969,0.189989,0][-1.73962,-0.43989,0.655097][-0.950031,-0.118762,0.288679][0.334299,0.225713,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.267036,0.239652,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.267036,0.239652,0][-1.681,-0.675449,0.0287787][-0.271523,-0.952977,0.13457][0.267611,0.197218,0][-1.58629,-0.597601,0.596417][-0.460297,-0.843063,0.278159][0.322969,0.189989,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.681,-0.675449,0.0287787][-0.271523,-0.952977,0.13457][0.267611,0.197218,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.267036,0.239652,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.267036,0.239652,0][-1.76771,-0.774267,-0.637966][-0.781354,-0.616466,-0.0972437][0.197772,0.226018,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.32109,-0.841776,-1.065][-0.0648835,-0.99173,0.110729][0.162219,0.169711,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.76771,-0.774267,-0.637966][-0.781354,-0.616466,-0.0972437][0.197772,0.226018,0][-1.76771,-0.774267,-0.637966][-0.781354,-0.616466,-0.0972437][0.197772,0.226018,0][-1.53296,-0.838166,-1.22754][-0.650296,-0.704048,-0.285362][0.140942,0.197038,0][-1.32109,-0.841776,-1.065][-0.0648835,-0.99173,0.110729][0.162219,0.169711,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-1.32109,-0.841776,-1.065][-0.0648835,-0.99173,0.110729][0.162219,0.169711,0][-1.53296,-0.838166,-1.22754][-0.650296,-0.704048,-0.285362][0.140942,0.197038,0][-1.53296,-0.838166,-1.22754][-0.650296,-0.704048,-0.285362][0.140942,0.197038,0][-1.13496,-0.918381,-1.68613][-0.485081,-0.745553,-0.456998][0.091249,0.148424,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-1.13496,-0.918381,-1.68613][-0.485081,-0.745553,-0.456998][0.091249,0.148424,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.063505,0.107014,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.063505,0.107014,0][-0.49104,-0.956381,-1.66316][-0.00111413,-0.992913,0.118837][0.099134,0.084243,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][-0.49104,-0.956381,-1.66316][-0.00111413,-0.992913,0.118837][0.099134,0.084243,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.063505,0.107014,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.063505,0.107014,0][-2.91647e-007,-0.989764,-2.06249][-4.19245e-007,-0.862658,-0.505788][0.049401,0.031072,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][-0.163617,0.560188,-0.236956][0.197931,0.979828,-0.0275787][0.622112,0.186383,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][2.65827e-007,0.560426,0.0160691][3.76922e-007,0.999,-0.0447062][0.687473,0.226972,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][2.44075e-007,0.320048,-1.04623][2.42099e-007,0.427924,-0.903815][0.046177,0.76428,0][-0.126965,0.324207,-1.00708][-0.212482,0.444987,-0.869964][0.08118,0.765767,0][-0.126965,0.324207,-1.00708][-0.212482,0.444987,-0.869964][0.08118,0.765767,0][-0.180833,0.436038,-0.937216][-0.252656,0.466912,-0.847442][0.098815,0.805734,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][0,-0.000837807,-1.18476][1.73264e-007,0.363554,-0.931573][0.046177,0.649602,0][-0.356212,0.00637035,-1.12741][-0.285207,0.441385,-0.850786][0.131317,0.652178,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][1.61628e-007,0.132282,-1.12729][2.14034e-007,0.415122,-0.909766][0.046177,0.697176,0][0,-0.000837807,-1.18476][1.73264e-007,0.363554,-0.931573][0.046177,0.649602,0][-0.572981,0.281684,-0.688148][-0.542834,0.415614,-0.729792][0.224814,0.75057,0][-0.555984,0.449002,-0.653911][-0.671623,-0.0904,-0.735357][0.224896,0.810367,0][-0.378747,0.397432,-0.806556][-0.656242,-0.0103413,-0.75448][0.166127,0.791937,0][-0.378747,0.397432,-0.806556][-0.656242,-0.0103413,-0.75448][0.166127,0.791937,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.572981,0.281684,-0.688148][-0.542834,0.415614,-0.729792][0.224814,0.75057,0][-0.783955,0.321947,-0.498098][-0.560174,0.400223,-0.725277][0.30811,0.764959,0][-0.762701,0.499891,-0.471397][-0.671489,-0.0816201,-0.736506][0.307877,0.828554,0][-0.555984,0.449002,-0.653911][-0.671623,-0.0904,-0.735357][0.224896,0.810367,0][-0.555984,0.449002,-0.653911][-0.671623,-0.0904,-0.735357][0.224896,0.810367,0][-0.572981,0.281684,-0.688148][-0.542834,0.415614,-0.729792][0.224814,0.75057,0][-0.783955,0.321947,-0.498098][-0.560174,0.400223,-0.725277][0.30811,0.764959,0][-0.945696,0.381638,-0.354573][-0.524399,0.360339,-0.771467][0.376825,0.793634,0][-0.883103,0.516508,-0.361904][-0.661921,0.0844494,-0.744801][0.372753,0.834492,0][-0.762701,0.499891,-0.471397][-0.671489,-0.0816201,-0.736506][0.307877,0.828554,0][-0.762701,0.499891,-0.471397][-0.671489,-0.0816201,-0.736506][0.307877,0.828554,0][-0.783955,0.321947,-0.498098][-0.560174,0.400223,-0.725277][0.30811,0.764959,0][-0.945696,0.381638,-0.354573][-0.524399,0.360339,-0.771467][0.376825,0.793634,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][-0.823886,0.782313,0.437464][0.350654,0.936501,0.00277412][0.796328,0.023014,0][-0.702001,0.742541,0.753559][0.318222,0.948011,-0.00314011][0.877981,0.053174,0][-0.702001,0.742541,0.753559][0.318222,0.948011,-0.00314011][0.877981,0.053174,0][-0.193497,0.608524,0.675266][0.171394,0.983085,-0.0645626][0.857757,0.179063,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][-0.193497,0.608524,0.675266][0.171394,0.983085,-0.0645626][0.857757,0.179063,0][2.19507e-007,0.583506,0.671799][4.78642e-007,0.996272,-0.0862719][0.856861,0.227016,0][2.19507e-007,0.583506,0.671799][4.78642e-007,0.996272,-0.0862719][0.856861,0.227016,0][2.35262e-007,0.576585,0.453827][4.95509e-007,0.999578,-0.0290418][0.800555,0.227003,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][-0.788395,0.76363,-0.133][0.331803,0.942942,-0.0276859][0.648965,0.031783,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.704849,0.016444,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.704849,0.016444,0][-0.180334,0.587348,0.24833][0.196054,0.980141,-0.0297619][0.747471,0.182288,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][2.65827e-007,0.560426,0.0160691][3.76922e-007,0.999,-0.0447062][0.687473,0.226972,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][-0.180334,0.587348,0.24833][0.196054,0.980141,-0.0297619][0.747471,0.182288,0][-0.180334,0.587348,0.24833][0.196054,0.980141,-0.0297619][0.747471,0.182288,0][2.49967e-007,0.571379,0.257224][4.90324e-007,0.999334,-0.0364884][0.749768,0.226993,0][2.65827e-007,0.560426,0.0160691][3.76922e-007,0.999,-0.0447062][0.687473,0.226972,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.10197,0.163441,-0.383777][-0.743109,0.427419,-0.514881][0.388417,0.708312,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-1.00542,-0.00567541,-0.697061][-0.71802,0.398177,-0.570879][0.308711,0.647873,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-1.05003,0.445644,-0.243942][-0.737867,0.352027,-0.575872][0.414971,0.804529,0][-1.05003,0.445644,-0.243942][-0.737867,0.352027,-0.575872][0.414971,0.804529,0][-1.10197,0.163441,-0.383777][-0.743109,0.427419,-0.514881][0.388417,0.708312,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.00542,-0.00567541,-0.697061][-0.71802,0.398177,-0.570879][0.308711,0.647873,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-0.711746,-0.0168905,-0.948529][-0.420754,0.680747,-0.599624][0.224421,0.643865,0][-0.711746,-0.0168905,-0.948529][-0.420754,0.680747,-0.599624][0.224421,0.643865,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-1.00542,-0.00567541,-0.697061][-0.71802,0.398177,-0.570879][0.308711,0.647873,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-0.711746,-0.0168905,-0.948529][-0.420754,0.680747,-0.599624][0.224421,0.643865,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.356212,0.00637035,-1.12741][-0.285207,0.441385,-0.850786][0.131317,0.652178,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][-0.356212,0.00637035,-1.12741][-0.285207,0.441385,-0.850786][0.131317,0.652178,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.242697,0.173053,-1.06097][-0.39846,0.540581,-0.740946][0.108695,0.711747,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][-0.180833,0.436038,-0.937216][-0.252656,0.466912,-0.847442][0.098815,0.805734,0][-0.126965,0.324207,-1.00708][-0.212482,0.444987,-0.869964][0.08118,0.765767,0][-0.165042,0.316492,-1.00231][-0.313994,0.454592,-0.833519][0.091511,0.76301,0][-0.165042,0.316492,-1.00231][-0.313994,0.454592,-0.833519][0.091511,0.76301,0][-0.210948,0.419694,-0.937207][-0.368153,0.39759,-0.840468][0.107202,0.799893,0][-0.180833,0.436038,-0.937216][-0.252656,0.466912,-0.847442][0.098815,0.805734,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][-0.340709,0.48659,-0.844386][-0.499851,0.269226,-0.823205][0.151121,0.8238,0][-0.576397,0.559414,-0.675105][-0.595817,0.174341,-0.783969][0.224931,0.849826,0][-0.576397,0.559414,-0.675105][-0.595817,0.174341,-0.783969][0.224931,0.849826,0][-0.569796,0.588453,-0.663266][-0.509353,0.429863,-0.745505][0.224954,0.860204,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][-0.569796,0.588453,-0.663266][-0.509353,0.429863,-0.745505][0.224954,0.860204,0][-0.576397,0.559414,-0.675105][-0.595817,0.174341,-0.783969][0.224931,0.849826,0][-0.798896,0.600146,-0.465418][-0.694475,0.187625,-0.694623][0.307251,0.864383,0][-0.798896,0.600146,-0.465418][-0.694475,0.187625,-0.694623][0.307251,0.864383,0][-0.790876,0.629613,-0.454907][-0.632713,0.40647,-0.659133][0.307145,0.874914,0][-0.569796,0.588453,-0.663266][-0.509353,0.429863,-0.745505][0.224954,0.860204,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-0.961506,0.654289,-0.247349][-0.786463,0.341189,-0.514846][0.412345,0.883733,0][-0.95447,0.622986,-0.278692][-0.725753,0.331201,-0.602983][0.403198,0.872546,0][-0.95447,0.622986,-0.278692][-0.725753,0.331201,-0.602983][0.403198,0.872546,0][-1.05003,0.445644,-0.243942][-0.737867,0.352027,-0.575872][0.414971,0.804529,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-0.790876,0.629613,-0.454907][-0.632713,0.40647,-0.659133][0.307145,0.874914,0][-0.798896,0.600146,-0.465418][-0.694475,0.187625,-0.694623][0.307251,0.864383,0][-0.95447,0.622986,-0.278692][-0.725753,0.331201,-0.602983][0.403198,0.872546,0][-0.95447,0.622986,-0.278692][-0.725753,0.331201,-0.602983][0.403198,0.872546,0][-0.961506,0.654289,-0.247349][-0.786463,0.341189,-0.514846][0.412345,0.883733,0][-0.790876,0.629613,-0.454907][-0.632713,0.40647,-0.659133][0.307145,0.874914,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][-0.242697,0.173053,-1.06097][-0.39846,0.540581,-0.740946][0.108695,0.711747,0][-0.165042,0.316492,-1.00231][-0.313994,0.454592,-0.833519][0.091511,0.76301,0][-0.165042,0.316492,-1.00231][-0.313994,0.454592,-0.833519][0.091511,0.76301,0][-0.126965,0.324207,-1.00708][-0.212482,0.444987,-0.869964][0.08118,0.765767,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][1.61628e-007,0.132282,-1.12729][2.14034e-007,0.415122,-0.909766][0.046177,0.697176,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][-0.126965,0.324207,-1.00708][-0.212482,0.444987,-0.869964][0.08118,0.765767,0][-0.126965,0.324207,-1.00708][-0.212482,0.444987,-0.869964][0.08118,0.765767,0][2.44075e-007,0.320048,-1.04623][2.42099e-007,0.427924,-0.903815][0.046177,0.76428,0][1.61628e-007,0.132282,-1.12729][2.14034e-007,0.415122,-0.909766][0.046177,0.697176,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][-0.180833,0.436038,-0.937216][-0.252656,0.466912,-0.847442][0.098815,0.805734,0][-0.210948,0.419694,-0.937207][-0.368153,0.39759,-0.840468][0.107202,0.799893,0][-0.210948,0.419694,-0.937207][-0.368153,0.39759,-0.840468][0.107202,0.799893,0][-0.340709,0.48659,-0.844386][-0.499851,0.269226,-0.823205][0.151121,0.8238,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][-0.180833,0.436038,-0.937216][-0.252656,0.466912,-0.847442][0.098815,0.805734,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][3.29103e-007,0.517404,-0.942382][4.03419e-007,0.718743,-0.695276][0.046177,0.823984,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][1.53952e-007,0.565717,1.32463][0,0.241187,0.970479][0.960103,0.852079,0][1.86438e-007,0.630872,1.30841][2.85123e-007,0.661243,0.750171][0.960103,0.864535,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][-0.362761,0.567049,1.28196][-0.254903,0.235442,0.937865][0.887841,0.852555,0][1.53952e-007,0.565717,1.32463][0,0.241187,0.970479][0.960103,0.852079,0][-0.674653,0.607752,1.1357][-0.622413,0.234288,0.7468][0.813748,0.867101,0][-0.362761,0.567049,1.28196][-0.254903,0.235442,0.937865][0.887841,0.852555,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][-0.66307,0.681122,1.12268][-0.463178,0.608977,0.643905][0.814415,0.882494,0][-0.674653,0.607752,1.1357][-0.622413,0.234288,0.7468][0.813748,0.867101,0][-0.880986,0.666895,0.79795][-0.850926,0.253572,0.460028][0.720763,0.888238,0][-0.674653,0.607752,1.1357][-0.622413,0.234288,0.7468][0.813748,0.867101,0][-0.66307,0.681122,1.12268][-0.463178,0.608977,0.643905][0.814415,0.882494,0][-0.66307,0.681122,1.12268][-0.463178,0.608977,0.643905][0.814415,0.882494,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.880986,0.666895,0.79795][-0.850926,0.253572,0.460028][0.720763,0.888238,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-0.880986,0.666895,0.79795][-0.850926,0.253572,0.460028][0.720763,0.888238,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.999599,0.804656,0.435201][-0.700724,0.681394,0.211394][0.610419,0.925504,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-1.04236,0.80489,0.043464][-0.723668,0.676751,-0.135325][0.50229,0.926726,0][-1.07226,0.706526,0.04087][-0.944586,0.301965,-0.12874][0.497106,0.902401,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-0.999599,0.804656,0.435201][-0.700724,0.681394,0.211394][0.610419,0.925504,0][-1.04236,0.80489,0.043464][-0.723668,0.676751,-0.135325][0.50229,0.926726,0][-1.07226,0.706526,0.04087][-0.944586,0.301965,-0.12874][0.497106,0.902401,0][-1.04236,0.80489,0.043464][-0.723668,0.676751,-0.135325][0.50229,0.926726,0][-0.942867,0.765969,-0.216007][-0.604144,0.648301,-0.463375][0.419162,0.912816,0][-0.942867,0.765969,-0.216007][-0.604144,0.648301,-0.463375][0.419162,0.912816,0][-0.961506,0.654289,-0.247349][-0.786463,0.341189,-0.514846][0.412345,0.883733,0][-1.07226,0.706526,0.04087][-0.944586,0.301965,-0.12874][0.497106,0.902401,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][-0.180833,0.436038,-0.937216][-0.252656,0.466912,-0.847442][0.098815,0.805734,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][-0.303384,0.579897,-0.816149][-0.169651,0.74009,-0.650757][0.14334,0.846318,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][-0.163617,0.560188,-0.236956][0.197931,0.979828,-0.0275787][0.622112,0.186383,0][-0.258774,0.593068,-0.640187][0.289875,0.956922,0.016496][0.517949,0.162841,0][-0.445699,0.656427,-0.514359][0.301002,0.953121,-0.0309438][0.550453,0.116591,0][-0.445699,0.656427,-0.514359][0.301002,0.953121,-0.0309438][0.550453,0.116591,0][-0.601713,0.710126,-0.367336][0.291577,0.956344,-0.019738][0.588432,0.077991,0][-0.163617,0.560188,-0.236956][0.197931,0.979828,-0.0275787][0.622112,0.186383,0][1.86438e-007,0.630872,1.30841][2.85123e-007,0.661243,0.750171][0.960103,0.864535,0][2.03953e-007,0.654293,1.23581][4.28964e-007,0.993915,0.110151][0.960103,0.869366,0][-0.333722,0.657891,1.20607][0.0361719,0.980434,0.193495][0.889346,0.870651,0][-0.333722,0.657891,1.20607][0.0361719,0.980434,0.193495][0.889346,0.870651,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][1.86438e-007,0.630872,1.30841][2.85123e-007,0.661243,0.750171][0.960103,0.864535,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][-0.333722,0.657891,1.20607][0.0361719,0.980434,0.193495][0.889346,0.870651,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.66307,0.681122,1.12268][-0.463178,0.608977,0.643905][0.814415,0.882494,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.66307,0.681122,1.12268][-0.463178,0.608977,0.643905][0.814415,0.882494,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.792197,0.77945,0.769662][0.0716489,0.986339,0.148329][0.722039,0.913866,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.792197,0.77945,0.769662][0.0716489,0.986339,0.148329][0.722039,0.913866,0][-0.923251,0.825984,0.434919][0.0372468,0.995943,0.0819218][0.610793,0.930941,0][-0.923251,0.825984,0.434919][0.0372468,0.995943,0.0819218][0.610793,0.930941,0][-0.999599,0.804656,0.435201][-0.700724,0.681394,0.211394][0.610419,0.925504,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.999599,0.804656,0.435201][-0.700724,0.681394,0.211394][0.610419,0.925504,0][-0.923251,0.825984,0.434919][0.0372468,0.995943,0.0819218][0.610793,0.930941,0][-0.958798,0.83246,0.059772][-0.0456157,0.996747,-0.0664452][0.503377,0.93304,0][-0.958798,0.83246,0.059772][-0.0456157,0.996747,-0.0664452][0.503377,0.93304,0][-1.04236,0.80489,0.043464][-0.723668,0.676751,-0.135325][0.50229,0.926726,0][-0.999599,0.804656,0.435201][-0.700724,0.681394,0.211394][0.610419,0.925504,0][-1.04236,0.80489,0.043464][-0.723668,0.676751,-0.135325][0.50229,0.926726,0][-0.958798,0.83246,0.059772][-0.0456157,0.996747,-0.0664452][0.503377,0.93304,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.942867,0.765969,-0.216007][-0.604144,0.648301,-0.463375][0.419162,0.912816,0][-1.04236,0.80489,0.043464][-0.723668,0.676751,-0.135325][0.50229,0.926726,0][-0.767809,0.713093,-0.426345][-0.428359,0.702632,-0.568169][0.306858,0.89392,0][-0.942867,0.765969,-0.216007][-0.604144,0.648301,-0.463375][0.419162,0.912816,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.696287,0.736347,-0.394979][0.0784258,0.973963,-0.212709][0.307196,0.89869,0][-0.767809,0.713093,-0.426345][-0.428359,0.702632,-0.568169][0.306858,0.89392,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.767809,0.713093,-0.426345][-0.428359,0.702632,-0.568169][0.306858,0.89392,0][-0.696287,0.736347,-0.394979][0.0784258,0.973963,-0.212709][0.307196,0.89869,0][-0.696287,0.736347,-0.394979][0.0784258,0.973963,-0.212709][0.307196,0.89869,0][-0.507955,0.670568,-0.581313][0.140713,0.967291,-0.211062][0.224977,0.875182,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.507955,0.670568,-0.581313][0.140713,0.967291,-0.211062][0.224977,0.875182,0][-0.279999,0.602958,-0.741726][0.176882,0.971474,-0.157958][0.144067,0.85102,0][-0.279999,0.602958,-0.741726][0.176882,0.971474,-0.157958][0.144067,0.85102,0][-0.303384,0.579897,-0.816149][-0.169651,0.74009,-0.650757][0.14334,0.846318,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.303384,0.579897,-0.816149][-0.169651,0.74009,-0.650757][0.14334,0.846318,0][-0.279999,0.602958,-0.741726][0.176882,0.971474,-0.157958][0.144067,0.85102,0][-0.139753,0.564494,-0.80389][0.112016,0.974367,-0.195095][0.093283,0.837273,0][-0.139753,0.564494,-0.80389][0.112016,0.974367,-0.195095][0.093283,0.837273,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][-0.303384,0.579897,-0.816149][-0.169651,0.74009,-0.650757][0.14334,0.846318,0][3.36332e-007,0.548768,-0.853997][4.85551e-007,0.975208,-0.221289][0.046177,0.831653,0][3.29103e-007,0.517404,-0.942382][4.03419e-007,0.718743,-0.695276][0.046177,0.823984,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][-0.139753,0.564494,-0.80389][0.112016,0.974367,-0.195095][0.093283,0.837273,0][3.36332e-007,0.548768,-0.853997][4.85551e-007,0.975208,-0.221289][0.046177,0.831653,0][2.03953e-007,0.654293,1.23581][4.28964e-007,0.993915,0.110151][0.960103,0.869366,0][2.06991e-007,0.642073,1.13441][4.04088e-007,0.994194,-0.107604][0.960103,0.879367,0][-0.298124,0.649169,1.12267][0.110628,0.991924,-0.0620267][0.892193,0.881903,0][-0.298124,0.649169,1.12267][0.110628,0.991924,-0.0620267][0.892193,0.881903,0][-0.333722,0.657891,1.20607][0.0361719,0.980434,0.193495][0.889346,0.870651,0][2.03953e-007,0.654293,1.23581][4.28964e-007,0.993915,0.110151][0.960103,0.869366,0][-0.333722,0.657891,1.20607][0.0361719,0.980434,0.193495][0.889346,0.870651,0][-0.298124,0.649169,1.12267][0.110628,0.991924,-0.0620267][0.892193,0.881903,0][-0.550727,0.699008,0.990038][0.212882,0.977014,0.0112142][0.819743,0.899659,0][-0.550727,0.699008,0.990038][0.212882,0.977014,0.0112142][0.819743,0.899659,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.333722,0.657891,1.20607][0.0361719,0.980434,0.193495][0.889346,0.870651,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.550727,0.699008,0.990038][0.212882,0.977014,0.0112142][0.819743,0.899659,0][-0.702001,0.742541,0.753559][0.318222,0.948011,-0.00314011][0.72392,0.920762,0][-0.702001,0.742541,0.753559][0.318222,0.948011,-0.00314011][0.72392,0.920762,0][-0.792197,0.77945,0.769662][0.0716489,0.986339,0.148329][0.722039,0.913866,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.823886,0.782313,0.437464][0.350654,0.936501,0.00277412][0.611409,0.934643,0][-0.923251,0.825984,0.434919][0.0372468,0.995943,0.0819218][0.610793,0.930941,0][-0.792197,0.77945,0.769662][0.0716489,0.986339,0.148329][0.722039,0.913866,0][-0.792197,0.77945,0.769662][0.0716489,0.986339,0.148329][0.722039,0.913866,0][-0.702001,0.742541,0.753559][0.318222,0.948011,-0.00314011][0.72392,0.920762,0][-0.823886,0.782313,0.437464][0.350654,0.936501,0.00277412][0.611409,0.934643,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.505306,0.940479,0][-0.958798,0.83246,0.059772][-0.0456157,0.996747,-0.0664452][0.503377,0.93304,0][-0.923251,0.825984,0.434919][0.0372468,0.995943,0.0819218][0.610793,0.930941,0][-0.923251,0.825984,0.434919][0.0372468,0.995943,0.0819218][0.610793,0.930941,0][-0.823886,0.782313,0.437464][0.350654,0.936501,0.00277412][0.611409,0.934643,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.505306,0.940479,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.505306,0.940479,0][-0.788395,0.76363,-0.133][0.331803,0.942942,-0.0276859][0.418878,0.926828,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.958798,0.83246,0.059772][-0.0456157,0.996747,-0.0664452][0.503377,0.93304,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.505306,0.940479,0][-0.788395,0.76363,-0.133][0.331803,0.942942,-0.0276859][0.418878,0.926828,0][-0.601713,0.710126,-0.367336][0.291577,0.956344,-0.019738][0.30811,0.907706,0][-0.696287,0.736347,-0.394979][0.0784258,0.973963,-0.212709][0.307196,0.89869,0][-0.696287,0.736347,-0.394979][0.0784258,0.973963,-0.212709][0.307196,0.89869,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.788395,0.76363,-0.133][0.331803,0.942942,-0.0276859][0.418878,0.926828,0][-0.507955,0.670568,-0.581313][0.140713,0.967291,-0.211062][0.224977,0.875182,0][-0.696287,0.736347,-0.394979][0.0784258,0.973963,-0.212709][0.307196,0.89869,0][-0.601713,0.710126,-0.367336][0.291577,0.956344,-0.019738][0.30811,0.907706,0][-0.601713,0.710126,-0.367336][0.291577,0.956344,-0.019738][0.30811,0.907706,0][-0.445699,0.656427,-0.514359][0.301002,0.953121,-0.0309438][0.224871,0.883916,0][-0.507955,0.670568,-0.581313][0.140713,0.967291,-0.211062][0.224977,0.875182,0][-0.258774,0.593068,-0.640187][0.289875,0.956922,0.016496][0.149203,0.861853,0][-0.279999,0.602958,-0.741726][0.176882,0.971474,-0.157958][0.144067,0.85102,0][-0.507955,0.670568,-0.581313][0.140713,0.967291,-0.211062][0.224977,0.875182,0][-0.507955,0.670568,-0.581313][0.140713,0.967291,-0.211062][0.224977,0.875182,0][-0.445699,0.656427,-0.514359][0.301002,0.953121,-0.0309438][0.224871,0.883916,0][-0.258774,0.593068,-0.640187][0.289875,0.956922,0.016496][0.149203,0.861853,0][-0.140062,0.560958,-0.691163][0.179982,0.983479,0.0193906][0.100174,0.850378,0][-0.139753,0.564494,-0.80389][0.112016,0.974367,-0.195095][0.093283,0.837273,0][-0.279999,0.602958,-0.741726][0.176882,0.971474,-0.157958][0.144067,0.85102,0][-0.279999,0.602958,-0.741726][0.176882,0.971474,-0.157958][0.144067,0.85102,0][-0.258774,0.593068,-0.640187][0.289875,0.956922,0.016496][0.149203,0.861853,0][-0.140062,0.560958,-0.691163][0.179982,0.983479,0.0193906][0.100174,0.850378,0][3.2653e-007,0.548831,-0.741531][4.33738e-007,0.999974,0.00724544][0.046177,0.846044,0][3.36332e-007,0.548768,-0.853997][4.85551e-007,0.975208,-0.221289][0.046177,0.831653,0][-0.139753,0.564494,-0.80389][0.112016,0.974367,-0.195095][0.093283,0.837273,0][-0.139753,0.564494,-0.80389][0.112016,0.974367,-0.195095][0.093283,0.837273,0][-0.140062,0.560958,-0.691163][0.179982,0.983479,0.0193906][0.100174,0.850378,0][3.2653e-007,0.548831,-0.741531][4.33738e-007,0.999974,0.00724544][0.046177,0.846044,0][-0.271839,-0.047444,1.06155][0.129765,-0.698352,-0.703893][0.34407,0.058924,0][0,-0.0472562,1.08258][-3.53014e-007,-0.722357,-0.69152][0.345855,0.033788,0][-3.5751e-007,-0.510905,1.30277][-2.50869e-007,-0.523437,-0.852064][0.376466,0.03329,0][-3.5751e-007,-0.510905,1.30277][-2.50869e-007,-0.523437,-0.852064][0.376466,0.03329,0][-0.356478,-0.54748,1.21991][0.22799,-0.573469,-0.786864][0.374428,0.067043,0][-0.271839,-0.047444,1.06155][0.129765,-0.698352,-0.703893][0.34407,0.058924,0][-1.36029,-0.323289,0.0239868][-0.823182,0.567497,-0.0178301][0.506408,0.523675,0][-1.34213,-0.316284,0.0298988][-0.714137,0.69969,-0.0210279][0.505488,0.536958,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.27922,-0.321543,-0.443608][-0.716601,0.645772,-0.263556][0.387862,0.522643,0][-1.36029,-0.323289,0.0239868][-0.823182,0.567497,-0.0178301][0.506408,0.523675,0][-1.42913,-0.647021,0.0301018][0.0603542,0.997916,-0.0228221][0.506976,0.417038,0][-1.37949,-0.647021,0.0301018][-0.6294,0.776923,-0.0157229][0.506828,0.429766,0][-1.28028,-0.65066,-0.445207][-0.634237,0.736103,-0.236424][0.387882,0.429184,0][-1.28028,-0.65066,-0.445207][-0.634237,0.736103,-0.236424][0.387882,0.429184,0][-1.32513,-0.651314,-0.462713][-0.0694956,0.995845,-0.0588403][0.387885,0.420196,0][-1.42913,-0.647021,0.0301018][0.0603542,0.997916,-0.0228221][0.506976,0.417038,0][-1.04595,0.197189,-0.412979][-0.554855,0.557763,-0.617282][0.37598,0.720373,0][-1.00364,0.416474,-0.301745][-0.584451,0.349024,-0.732529][0.396,0.799564,0][-0.945696,0.381638,-0.354573][-0.524399,0.360339,-0.771467][0.376825,0.793634,0][-0.945696,0.381638,-0.354573][-0.524399,0.360339,-0.771467][0.376825,0.793634,0][-0.979383,0.218722,-0.439858][-0.459888,0.596683,-0.657627][0.362558,0.728068,0][-1.04595,0.197189,-0.412979][-0.554855,0.557763,-0.617282][0.37598,0.720373,0][-0.936078,0.0860106,-0.649481][-0.335215,0.774054,-0.537095][0.308795,0.68064,0][-1.04595,0.197189,-0.412979][-0.554855,0.557763,-0.617282][0.37598,0.720373,0][-0.979383,0.218722,-0.439858][-0.459888,0.596683,-0.657627][0.362558,0.728068,0][-0.979383,0.218722,-0.439858][-0.459888,0.596683,-0.657627][0.362558,0.728068,0][-0.879661,0.122159,-0.616606][-0.340189,0.738866,-0.581677][0.308959,0.693558,0][-0.936078,0.0860106,-0.649481][-0.335215,0.774054,-0.537095][0.308795,0.68064,0][-0.936078,0.0860106,-0.649481][-0.335215,0.774054,-0.537095][0.308795,0.68064,0][-0.879661,0.122159,-0.616606][-0.340189,0.738866,-0.581677][0.308959,0.693558,0][-0.648121,0.0697744,-0.82582][-0.359999,0.778945,-0.513464][0.224594,0.674837,0][-0.648121,0.0697744,-0.82582][-0.359999,0.778945,-0.513464][0.224594,0.674837,0][-0.682724,0.0307995,-0.893294][-0.327133,0.831504,-0.448983][0.224494,0.660908,0][-0.936078,0.0860106,-0.649481][-0.335215,0.774054,-0.537095][0.308795,0.68064,0][-0.682724,0.0307995,-0.893294][-0.327133,0.831504,-0.448983][0.224494,0.660908,0][-0.648121,0.0697744,-0.82582][-0.359999,0.778945,-0.513464][0.224594,0.674837,0][-0.417833,0.114991,-0.947852][-0.471548,0.725463,-0.501345][0.160685,0.690997,0][-0.417833,0.114991,-0.947852][-0.471548,0.725463,-0.501345][0.160685,0.690997,0][-0.397691,0.0846564,-1.02441][-0.462612,0.7203,-0.516873][0.149063,0.680156,0][-0.682724,0.0307995,-0.893294][-0.327133,0.831504,-0.448983][0.224494,0.660908,0][-0.397691,0.0846564,-1.02441][-0.462612,0.7203,-0.516873][0.149063,0.680156,0][-0.417833,0.114991,-0.947852][-0.471548,0.725463,-0.501345][0.160685,0.690997,0][-0.318551,0.183914,-0.97185][-0.610962,0.609921,-0.5047][0.133586,0.715629,0][-0.318551,0.183914,-0.97185][-0.610962,0.609921,-0.5047][0.133586,0.715629,0][-0.28199,0.182559,-1.02063][-0.562787,0.597437,-0.571262][0.121047,0.715144,0][-0.397691,0.0846564,-1.02441][-0.462612,0.7203,-0.516873][0.149063,0.680156,0][-0.28199,0.182559,-1.02063][-0.562787,0.597437,-0.571262][0.121047,0.715144,0][-0.318551,0.183914,-0.97185][-0.610962,0.609921,-0.5047][0.133586,0.715629,0][-0.266523,0.27629,-0.94409][-0.667877,0.398039,-0.628892][0.121998,0.748642,0][-0.266523,0.27629,-0.94409][-0.667877,0.398039,-0.628892][0.121998,0.748642,0][-0.217351,0.298715,-0.979119][-0.554501,0.417632,-0.7198][0.106782,0.756657,0][-0.28199,0.182559,-1.02063][-0.562787,0.597437,-0.571262][0.121047,0.715144,0][-0.252682,0.391931,-0.920153][-0.572932,0.209646,-0.792337][0.120058,0.78997,0][-0.217351,0.298715,-0.979119][-0.554501,0.417632,-0.7198][0.106782,0.756657,0][-0.266523,0.27629,-0.94409][-0.667877,0.398039,-0.628892][0.121998,0.748642,0][-0.266523,0.27629,-0.94409][-0.667877,0.398039,-0.628892][0.121998,0.748642,0][-0.292201,0.361605,-0.890561][-0.668062,0.129487,-0.732752][0.133207,0.779132,0][-0.252682,0.391931,-0.920153][-0.572932,0.209646,-0.792337][0.120058,0.78997,0][-0.361346,0.44121,-0.833919][-0.638571,-0.0278087,-0.76906][0.158149,0.807582,0][-0.252682,0.391931,-0.920153][-0.572932,0.209646,-0.792337][0.120058,0.78997,0][-0.292201,0.361605,-0.890561][-0.668062,0.129487,-0.732752][0.133207,0.779132,0][-0.292201,0.361605,-0.890561][-0.668062,0.129487,-0.732752][0.133207,0.779132,0][-0.378747,0.397432,-0.806556][-0.656242,-0.0103413,-0.75448][0.166127,0.791937,0][-0.361346,0.44121,-0.833919][-0.638571,-0.0278087,-0.76906][0.158149,0.807582,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.361346,0.44121,-0.833919][-0.638571,-0.0278087,-0.76906][0.158149,0.807582,0][-0.378747,0.397432,-0.806556][-0.656242,-0.0103413,-0.75448][0.166127,0.791937,0][-0.378747,0.397432,-0.806556][-0.656242,-0.0103413,-0.75448][0.166127,0.791937,0][-0.555984,0.449002,-0.653911][-0.671623,-0.0904,-0.735357][0.224896,0.810367,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.555984,0.449002,-0.653911][-0.671623,-0.0904,-0.735357][0.224896,0.810367,0][-0.762701,0.499891,-0.471397][-0.671489,-0.0816201,-0.736506][0.307877,0.828554,0][-0.762701,0.499891,-0.471397][-0.671489,-0.0816201,-0.736506][0.307877,0.828554,0][-0.788871,0.551726,-0.471804][-0.699149,-0.184723,-0.690701][0.307522,0.847079,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.788871,0.551726,-0.471804][-0.699149,-0.184723,-0.690701][0.307522,0.847079,0][-0.762701,0.499891,-0.471397][-0.671489,-0.0816201,-0.736506][0.307877,0.828554,0][-0.883103,0.516508,-0.361904][-0.661921,0.0844494,-0.744801][0.372753,0.834492,0][-0.883103,0.516508,-0.361904][-0.661921,0.0844494,-0.744801][0.372753,0.834492,0][-0.925573,0.571558,-0.321632][-0.69417,0.133903,-0.707247][0.388415,0.854166,0][-0.788871,0.551726,-0.471804][-0.699149,-0.184723,-0.690701][0.307522,0.847079,0][-1.00364,0.416474,-0.301745][-0.584451,0.349024,-0.732529][0.396,0.799564,0][-0.925573,0.571558,-0.321632][-0.69417,0.133903,-0.707247][0.388415,0.854166,0][-0.883103,0.516508,-0.361904][-0.661921,0.0844494,-0.744801][0.372753,0.834492,0][-0.883103,0.516508,-0.361904][-0.661921,0.0844494,-0.744801][0.372753,0.834492,0][-0.945696,0.381638,-0.354573][-0.524399,0.360339,-0.771467][0.376825,0.793634,0][-1.00364,0.416474,-0.301745][-0.584451,0.349024,-0.732529][0.396,0.799564,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-1.10197,0.163441,-0.383777][-0.743109,0.427419,-0.514881][0.388417,0.708312,0][-1.04595,0.197189,-0.412979][-0.554855,0.557763,-0.617282][0.37598,0.720373,0][-1.04595,0.197189,-0.412979][-0.554855,0.557763,-0.617282][0.37598,0.720373,0][-0.936078,0.0860106,-0.649481][-0.335215,0.774054,-0.537095][0.308795,0.68064,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-0.682724,0.0307995,-0.893294][-0.327133,0.831504,-0.448983][0.224494,0.660908,0][-0.711746,-0.0168905,-0.948529][-0.420754,0.680747,-0.599624][0.224421,0.643865,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-0.936078,0.0860106,-0.649481][-0.335215,0.774054,-0.537095][0.308795,0.68064,0][-0.682724,0.0307995,-0.893294][-0.327133,0.831504,-0.448983][0.224494,0.660908,0][-0.397691,0.0846564,-1.02441][-0.462612,0.7203,-0.516873][0.149063,0.680156,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.711746,-0.0168905,-0.948529][-0.420754,0.680747,-0.599624][0.224421,0.643865,0][-0.711746,-0.0168905,-0.948529][-0.420754,0.680747,-0.599624][0.224421,0.643865,0][-0.682724,0.0307995,-0.893294][-0.327133,0.831504,-0.448983][0.224494,0.660908,0][-0.397691,0.0846564,-1.02441][-0.462612,0.7203,-0.516873][0.149063,0.680156,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.397691,0.0846564,-1.02441][-0.462612,0.7203,-0.516873][0.149063,0.680156,0][-0.28199,0.182559,-1.02063][-0.562787,0.597437,-0.571262][0.121047,0.715144,0][-0.28199,0.182559,-1.02063][-0.562787,0.597437,-0.571262][0.121047,0.715144,0][-0.242697,0.173053,-1.06097][-0.39846,0.540581,-0.740946][0.108695,0.711747,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.217351,0.298715,-0.979119][-0.554501,0.417632,-0.7198][0.106782,0.756657,0][-0.165042,0.316492,-1.00231][-0.313994,0.454592,-0.833519][0.091511,0.76301,0][-0.242697,0.173053,-1.06097][-0.39846,0.540581,-0.740946][0.108695,0.711747,0][-0.242697,0.173053,-1.06097][-0.39846,0.540581,-0.740946][0.108695,0.711747,0][-0.28199,0.182559,-1.02063][-0.562787,0.597437,-0.571262][0.121047,0.715144,0][-0.217351,0.298715,-0.979119][-0.554501,0.417632,-0.7198][0.106782,0.756657,0][-0.210948,0.419694,-0.937207][-0.368153,0.39759,-0.840468][0.107202,0.799893,0][-0.165042,0.316492,-1.00231][-0.313994,0.454592,-0.833519][0.091511,0.76301,0][-0.217351,0.298715,-0.979119][-0.554501,0.417632,-0.7198][0.106782,0.756657,0][-0.217351,0.298715,-0.979119][-0.554501,0.417632,-0.7198][0.106782,0.756657,0][-0.252682,0.391931,-0.920153][-0.572932,0.209646,-0.792337][0.120058,0.78997,0][-0.210948,0.419694,-0.937207][-0.368153,0.39759,-0.840468][0.107202,0.799893,0][-0.340709,0.48659,-0.844386][-0.499851,0.269226,-0.823205][0.151121,0.8238,0][-0.210948,0.419694,-0.937207][-0.368153,0.39759,-0.840468][0.107202,0.799893,0][-0.252682,0.391931,-0.920153][-0.572932,0.209646,-0.792337][0.120058,0.78997,0][-0.252682,0.391931,-0.920153][-0.572932,0.209646,-0.792337][0.120058,0.78997,0][-0.361346,0.44121,-0.833919][-0.638571,-0.0278087,-0.76906][0.158149,0.807582,0][-0.340709,0.48659,-0.844386][-0.499851,0.269226,-0.823205][0.151121,0.8238,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.576397,0.559414,-0.675105][-0.595817,0.174341,-0.783969][0.224931,0.849826,0][-0.340709,0.48659,-0.844386][-0.499851,0.269226,-0.823205][0.151121,0.8238,0][-0.340709,0.48659,-0.844386][-0.499851,0.269226,-0.823205][0.151121,0.8238,0][-0.361346,0.44121,-0.833919][-0.638571,-0.0278087,-0.76906][0.158149,0.807582,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.788871,0.551726,-0.471804][-0.699149,-0.184723,-0.690701][0.307522,0.847079,0][-0.798896,0.600146,-0.465418][-0.694475,0.187625,-0.694623][0.307251,0.864383,0][-0.576397,0.559414,-0.675105][-0.595817,0.174341,-0.783969][0.224931,0.849826,0][-0.576397,0.559414,-0.675105][-0.595817,0.174341,-0.783969][0.224931,0.849826,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.788871,0.551726,-0.471804][-0.699149,-0.184723,-0.690701][0.307522,0.847079,0][-0.925573,0.571558,-0.321632][-0.69417,0.133903,-0.707247][0.388415,0.854166,0][-0.95447,0.622986,-0.278692][-0.725753,0.331201,-0.602983][0.403198,0.872546,0][-0.798896,0.600146,-0.465418][-0.694475,0.187625,-0.694623][0.307251,0.864383,0][-0.798896,0.600146,-0.465418][-0.694475,0.187625,-0.694623][0.307251,0.864383,0][-0.788871,0.551726,-0.471804][-0.699149,-0.184723,-0.690701][0.307522,0.847079,0][-0.925573,0.571558,-0.321632][-0.69417,0.133903,-0.707247][0.388415,0.854166,0][-1.05003,0.445644,-0.243942][-0.737867,0.352027,-0.575872][0.414971,0.804529,0][-0.95447,0.622986,-0.278692][-0.725753,0.331201,-0.602983][0.403198,0.872546,0][-0.925573,0.571558,-0.321632][-0.69417,0.133903,-0.707247][0.388415,0.854166,0][-0.925573,0.571558,-0.321632][-0.69417,0.133903,-0.707247][0.388415,0.854166,0][-1.00364,0.416474,-0.301745][-0.584451,0.349024,-0.732529][0.396,0.799564,0][-1.05003,0.445644,-0.243942][-0.737867,0.352027,-0.575872][0.414971,0.804529,0][-1.10197,0.163441,-0.383777][-0.743109,0.427419,-0.514881][0.388417,0.708312,0][-1.05003,0.445644,-0.243942][-0.737867,0.352027,-0.575872][0.414971,0.804529,0][-1.00364,0.416474,-0.301745][-0.584451,0.349024,-0.732529][0.396,0.799564,0][-1.00364,0.416474,-0.301745][-0.584451,0.349024,-0.732529][0.396,0.799564,0][-1.04595,0.197189,-0.412979][-0.554855,0.557763,-0.617282][0.37598,0.720373,0][-1.10197,0.163441,-0.383777][-0.743109,0.427419,-0.514881][0.388417,0.708312,0][-0.57699,-0.88946,-1.95562][-0.164932,0.764239,-0.623487][0.11987,0.326643,0][-2.48244e-007,-0.897365,-2.05499][3.48292e-007,0.759449,-0.650567][0.045197,0.326999,0][-2.69108e-007,-0.946951,-2.0868][0,0.0206031,-0.999788][0.045183,0.304601,0][-2.69108e-007,-0.946951,-2.0868][0,0.0206031,-0.999788][0.045183,0.304601,0][-0.590603,-0.937709,-1.98365][-0.315554,0.0191239,-0.948715][0.121109,0.304432,0][-0.57699,-0.88946,-1.95562][-0.164932,0.764239,-0.623487][0.11987,0.326643,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-0.57699,-0.88946,-1.95562][-0.164932,0.764239,-0.623487][0.11987,0.326643,0][-0.590603,-0.937709,-1.98365][-0.315554,0.0191239,-0.948715][0.121109,0.304432,0][-0.590603,-0.937709,-1.98365][-0.315554,0.0191239,-0.948715][0.121109,0.304432,0][-1.13179,-0.871782,-1.70429][-0.577892,0.200707,-0.791048][0.211339,0.303629,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-1.53565,-0.795598,-1.23566][-0.798479,0.302247,-0.520652][0.291917,0.303158,0][-1.50547,-0.758415,-1.21366][-0.34696,0.890355,-0.294765][0.291929,0.325103,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-1.13179,-0.871782,-1.70429][-0.577892,0.200707,-0.791048][0.211339,0.303629,0][-1.53565,-0.795598,-1.23566][-0.798479,0.302247,-0.520652][0.291917,0.303158,0][-1.50547,-0.758415,-1.21366][-0.34696,0.890355,-0.294765][0.291929,0.325103,0][-1.53565,-0.795598,-1.23566][-0.798479,0.302247,-0.520652][0.291917,0.303158,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.71937,-0.696386,-0.622723][-0.329403,0.918117,-0.220353][0.387869,0.325023,0][-1.50547,-0.758415,-1.21366][-0.34696,0.890355,-0.294765][0.291929,0.325103,0][-1.71937,-0.696386,-0.622723][-0.329403,0.918117,-0.220353][0.387869,0.325023,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.81017,-0.577733,0.0219507][-0.656781,0.738474,-0.152631][0.504479,0.302972,0][-1.81017,-0.577733,0.0219507][-0.656781,0.738474,-0.152631][0.504479,0.302972,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.71937,-0.696386,-0.622723][-0.329403,0.918117,-0.220353][0.387869,0.325023,0][-1.7096,-0.389241,0.668842][-0.661146,0.749893,0.0233808][0.623032,0.303639,0][-1.65825,-0.374009,0.66569][0.113149,0.947247,-0.299866][0.623033,0.326223,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.81017,-0.577733,0.0219507][-0.656781,0.738474,-0.152631][0.504479,0.302972,0][-1.7096,-0.389241,0.668842][-0.661146,0.749893,0.0233808][0.623032,0.303639,0][-1.46207,-0.228026,1.18064][-0.672391,0.681934,0.287847][0.72058,0.303302,0][-1.41955,-0.217509,1.16868][0.166754,0.936193,-0.309413][0.720573,0.32611,0][-1.65825,-0.374009,0.66569][0.113149,0.947247,-0.299866][0.623033,0.326223,0][-1.65825,-0.374009,0.66569][0.113149,0.947247,-0.299866][0.623033,0.326223,0][-1.7096,-0.389241,0.668842][-0.661146,0.749893,0.0233808][0.623032,0.303639,0][-1.46207,-0.228026,1.18064][-0.672391,0.681934,0.287847][0.72058,0.303302,0][-1.1268,-0.157681,1.57025][-0.514191,0.697836,0.498631][0.809376,0.304733,0][-1.10089,-0.155303,1.54287][0.161391,0.894252,-0.417451][0.809375,0.327138,0][-1.41955,-0.217509,1.16868][0.166754,0.936193,-0.309413][0.720573,0.32611,0][-1.41955,-0.217509,1.16868][0.166754,0.936193,-0.309413][0.720573,0.32611,0][-1.46207,-0.228026,1.18064][-0.672391,0.681934,0.287847][0.72058,0.303302,0][-1.1268,-0.157681,1.57025][-0.514191,0.697836,0.498631][0.809376,0.304733,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-0.57699,-0.068659,1.78768][0.0837001,0.814042,-0.574743][0.913954,0.328011,0][-1.10089,-0.155303,1.54287][0.161391,0.894252,-0.417451][0.809375,0.327138,0][-1.10089,-0.155303,1.54287][0.161391,0.894252,-0.417451][0.809375,0.327138,0][-1.1268,-0.157681,1.57025][-0.514191,0.697836,0.498631][0.809376,0.304733,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-1.81671e-007,-0.0392693,1.86389][4.12382e-007,0.841837,-0.539732][0.971447,0.329715,0][-0.57699,-0.068659,1.78768][0.0837001,0.814042,-0.574743][0.913954,0.328011,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-1.83816e-007,-0.0362533,1.90487][3.78379e-007,0.816902,0.576776][0.971127,0.307216,0][-1.81671e-007,-0.0392693,1.86389][4.12382e-007,0.841837,-0.539732][0.971447,0.329715,0][-1.72193e-007,-0.618743,-1.4052][1.47753e-007,0.266098,-0.963946][0.045398,0.439389,0][-1.9124e-007,-0.660816,-1.41681][3.14796e-007,0.696868,-0.7172][0.045394,0.428223,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-0.405707,-0.618371,-1.36357][-0.274522,0.255874,-0.926912][0.113487,0.440968,0][-1.72193e-007,-0.618743,-1.4052][1.47753e-007,0.266098,-0.963946][0.045398,0.439389,0][-0.775094,-0.658751,-1.18589][-0.409877,0.726892,-0.551026][0.208158,0.428886,0][-0.775094,-0.616678,-1.17427][-0.598261,0.212024,-0.772742][0.208154,0.44055,0][-0.405707,-0.618371,-1.36357][-0.274522,0.255874,-0.926912][0.113487,0.440968,0][-0.405707,-0.618371,-1.36357][-0.274522,0.255874,-0.926912][0.113487,0.440968,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-0.775094,-0.658751,-1.18589][-0.409877,0.726892,-0.551026][0.208158,0.428886,0][-1.06824,-0.655783,-0.853873][-0.582983,0.692815,-0.424428][0.291918,0.429017,0][-1.06824,-0.613837,-0.847534][-0.815071,0.0894726,-0.57241][0.291917,0.440664,0][-0.775094,-0.616678,-1.17427][-0.598261,0.212024,-0.772742][0.208154,0.44055,0][-0.775094,-0.616678,-1.17427][-0.598261,0.212024,-0.772742][0.208154,0.44055,0][-0.775094,-0.658751,-1.18589][-0.409877,0.726892,-0.551026][0.208158,0.428886,0][-1.06824,-0.655783,-0.853873][-0.582983,0.692815,-0.424428][0.291918,0.429017,0][-1.28028,-0.65066,-0.445207][-0.634237,0.736103,-0.236424][0.387882,0.429184,0][-1.28014,-0.608954,-0.445004][-0.940032,0.00828316,-0.340985][0.387879,0.441027,0][-1.06824,-0.613837,-0.847534][-0.815071,0.0894726,-0.57241][0.291917,0.440664,0][-1.06824,-0.613837,-0.847534][-0.815071,0.0894726,-0.57241][0.291917,0.440664,0][-1.06824,-0.655783,-0.853873][-0.582983,0.692815,-0.424428][0.291918,0.429017,0][-1.28028,-0.65066,-0.445207][-0.634237,0.736103,-0.236424][0.387882,0.429184,0][-1.37949,-0.647021,0.0301018][-0.6294,0.776923,-0.0157229][0.506828,0.429766,0][-1.37705,-0.605998,0.0293268][-0.998398,0.0564848,0.00318453][0.506775,0.441666,0][-1.28014,-0.608954,-0.445004][-0.940032,0.00828316,-0.340985][0.387879,0.441027,0][-1.28014,-0.608954,-0.445004][-0.940032,0.00828316,-0.340985][0.387879,0.441027,0][-1.28028,-0.65066,-0.445207][-0.634237,0.736103,-0.236424][0.387882,0.429184,0][-1.37949,-0.647021,0.0301018][-0.6294,0.776923,-0.0157229][0.506828,0.429766,0][-1.28028,-0.628832,0.501061][-0.64343,0.739138,0.199179][0.622967,0.428731,0][-1.28015,-0.588831,0.500128][-0.943502,0.0129008,0.331116][0.622964,0.440668,0][-1.37705,-0.605998,0.0293268][-0.998398,0.0564848,0.00318453][0.506775,0.441666,0][-1.37705,-0.605998,0.0293268][-0.998398,0.0564848,0.00318453][0.506775,0.441666,0][-1.37949,-0.647021,0.0301018][-0.6294,0.776923,-0.0157229][0.506828,0.429766,0][-1.28028,-0.628832,0.501061][-0.64343,0.739138,0.199179][0.622967,0.428731,0][-1.06824,-0.613286,0.909145][-0.623443,0.661486,0.41684][0.72059,0.430116,0][-1.06824,-0.574786,0.908894][-0.82526,0.00411248,0.564738][0.720595,0.441624,0][-1.28015,-0.588831,0.500128][-0.943502,0.0129008,0.331116][0.622964,0.440668,0][-1.28015,-0.588831,0.500128][-0.943502,0.0129008,0.331116][0.622964,0.440668,0][-1.28028,-0.628832,0.501061][-0.64343,0.739138,0.199179][0.622967,0.428731,0][-1.06824,-0.613286,0.909145][-0.623443,0.661486,0.41684][0.72059,0.430116,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-0.775094,-0.571819,1.24091][-0.592605,0.00525099,0.805476][0.809373,0.440531,0][-1.06824,-0.574786,0.908894][-0.82526,0.00411248,0.564738][0.720595,0.441624,0][-1.06824,-0.574786,0.908894][-0.82526,0.00411248,0.564738][0.720595,0.441624,0][-1.06824,-0.613286,0.909145][-0.623443,0.661486,0.41684][0.72059,0.430116,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-0.405707,-0.608839,1.40659][-0.199084,0.664978,0.71984][0.912957,0.429875,0][-0.405707,-0.57034,1.40633][-0.268156,0.0062833,0.963355][0.912954,0.441414,0][-0.775094,-0.571819,1.24091][-0.592605,0.00525099,0.805476][0.809373,0.440531,0][-0.775094,-0.571819,1.24091][-0.592605,0.00525099,0.805476][0.809373,0.440531,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-0.405707,-0.608839,1.40659][-0.199084,0.664978,0.71984][0.912957,0.429875,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-4.00306e-007,-0.572554,1.45604][0,0.00687457,0.999976][0.971679,0.441249,0][-0.405707,-0.57034,1.40633][-0.268156,0.0062833,0.963355][0.912954,0.441414,0][-0.405707,-0.57034,1.40633][-0.268156,0.0062833,0.963355][0.912954,0.441414,0][-0.405707,-0.608839,1.40659][-0.199084,0.664978,0.71984][0.912957,0.429875,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-3.45345e-007,-0.457438,1.45524][0,0.00686313,0.999976][0.971615,0.47548,0][-2.82917e-007,-0.326683,1.45434][0,0.00690768,0.999976][0.971543,0.514362,0][-0.405707,-0.326907,1.40475][-0.268062,0.00628473,0.963381][0.912935,0.514375,0][-0.405707,-0.326907,1.40475][-0.268062,0.00628473,0.963381][0.912935,0.514375,0][-0.405707,-0.456366,1.40559][-0.268118,0.00629266,0.963366][0.912945,0.475574,0][-3.45345e-007,-0.457438,1.45524][0,0.00686313,0.999976][0.971615,0.47548,0][-0.405707,-0.456366,1.40559][-0.268118,0.00629266,0.963366][0.912945,0.475574,0][-0.405707,-0.326907,1.40475][-0.268062,0.00628473,0.963381][0.912935,0.514375,0][-0.775094,-0.328385,1.23932][-0.592605,0.00525822,0.805476][0.809372,0.514302,0][-0.775094,-0.328385,1.23932][-0.592605,0.00525822,0.805476][0.809372,0.514302,0][-0.775094,-0.457845,1.24016][-0.592605,0.00525077,0.805476][0.809373,0.47507,0][-0.405707,-0.456366,1.40559][-0.268118,0.00629266,0.963366][0.912945,0.475574,0][-0.775094,-0.457845,1.24016][-0.592605,0.00525077,0.805476][0.809373,0.47507,0][-0.775094,-0.328385,1.23932][-0.592605,0.00525822,0.805476][0.809372,0.514302,0][-1.06824,-0.331353,0.907308][-0.826641,0.00375647,0.562718][0.720624,0.514393,0][-1.06824,-0.331353,0.907308][-0.826641,0.00375647,0.562718][0.720624,0.514393,0][-1.06824,-0.460812,0.908152][-0.826063,0.00415762,0.563563][0.720609,0.475694,0][-0.775094,-0.457845,1.24016][-0.592605,0.00525077,0.805476][0.809373,0.47507,0][-1.06824,-0.460812,0.908152][-0.826063,0.00415762,0.563563][0.720609,0.475694,0][-1.06824,-0.331353,0.907308][-0.826641,0.00375647,0.562718][0.720624,0.514393,0][-1.27929,-0.335901,0.494231][-0.948305,0.010539,0.317186][0.622879,0.516145,0][-1.27929,-0.335901,0.494231][-0.948305,0.010539,0.317186][0.622879,0.516145,0][-1.27975,-0.470411,0.497368][-0.94616,0.0127626,0.323449][0.622956,0.476006,0][-1.06824,-0.460812,0.908152][-0.826063,0.00415762,0.563563][0.720609,0.475694,0][-1.27975,-0.470411,0.497368][-0.94616,0.0127626,0.323449][0.622956,0.476006,0][-1.27929,-0.335901,0.494231][-0.948305,0.010539,0.317186][0.622879,0.516145,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.36985,-0.484552,0.0270328][-0.998366,0.0571001,0.00215559][0.506617,0.476896,0][-1.27975,-0.470411,0.497368][-0.94616,0.0127626,0.323449][0.622956,0.476006,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.36985,-0.484552,0.0270328][-0.998366,0.0571001,0.00215559][0.506617,0.476896,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.27929,-0.345248,-0.443723][-0.939024,0.0053595,-0.343811][0.387864,0.515912,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.27929,-0.345248,-0.443723][-0.939024,0.0053595,-0.343811][0.387864,0.515912,0][-1.06824,-0.348604,-0.807448][-0.791746,0.0885045,-0.604405][0.291908,0.514313,0][-1.06824,-0.348604,-0.807448][-0.791746,0.0885045,-0.604405][0.291908,0.514313,0][-1.06824,-0.489657,-0.828766][-0.803686,0.0905849,-0.588118][0.291913,0.475146,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.06824,-0.489657,-0.828766][-0.803686,0.0905849,-0.588118][0.291913,0.475146,0][-1.06824,-0.348604,-0.807448][-0.791746,0.0885045,-0.604405][0.291908,0.514313,0][-0.775094,-0.350647,-1.10083][-0.580774,0.212119,-0.785943][0.208128,0.514304,0][-0.775094,-0.350647,-1.10083][-0.580774,0.212119,-0.785943][0.208128,0.514304,0][-0.775094,-0.492124,-1.13989][-0.591785,0.210748,-0.778059][0.208142,0.475081,0][-1.06824,-0.489657,-0.828766][-0.803686,0.0905849,-0.588118][0.291913,0.475146,0][-0.775094,-0.492124,-1.13989][-0.591785,0.210748,-0.778059][0.208142,0.475081,0][-0.775094,-0.350647,-1.10083][-0.580774,0.212119,-0.785943][0.208128,0.514304,0][-0.405707,-0.35234,-1.29013][-0.274522,0.255887,-0.926909][0.113475,0.514338,0][-0.405707,-0.35234,-1.29013][-0.274522,0.255887,-0.926909][0.113475,0.514338,0][-0.405707,-0.493817,-1.32919][-0.274522,0.255882,-0.92691][0.113481,0.47532,0][-0.775094,-0.492124,-1.13989][-0.591785,0.210748,-0.778059][0.208142,0.475081,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][0,-0.494189,-1.37081][1.33454e-007,0.266105,-0.963944][0.045409,0.477042,0][-0.405707,-0.493817,-1.32919][-0.274522,0.255882,-0.92691][0.113481,0.47532,0][-0.405707,-0.493817,-1.32919][-0.274522,0.255882,-0.92691][0.113481,0.47532,0][-0.405707,-0.35234,-1.29013][-0.274522,0.255887,-0.926909][0.113475,0.514338,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][-0.589458,-0.123164,1.84729][-0.286632,-0.0525617,0.956598][0.913961,0.285945,0][-2.14646e-007,-0.0970813,1.92574][0,-0.0338154,0.999428][0.967942,0.288353,0][-1.83816e-007,-0.0362533,1.90487][3.78379e-007,0.816902,0.576776][0.971127,0.307216,0][-1.83816e-007,-0.0362533,1.90487][3.78379e-007,0.816902,0.576776][0.971127,0.307216,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-0.589458,-0.123164,1.84729][-0.286632,-0.0525617,0.956598][0.913961,0.285945,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.809376,0.285819,0][-0.589458,-0.123164,1.84729][-0.286632,-0.0525617,0.956598][0.913961,0.285945,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-1.1268,-0.157681,1.57025][-0.514191,0.697836,0.498631][0.809376,0.304733,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.809376,0.285819,0][-1.46207,-0.228026,1.18064][-0.672391,0.681934,0.287847][0.72058,0.303302,0][-1.48045,-0.291835,1.17237][-0.808413,-0.197368,0.554539][0.720493,0.28699,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.809376,0.285819,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.809376,0.285819,0][-1.1268,-0.157681,1.57025][-0.514191,0.697836,0.498631][0.809376,0.304733,0][-1.46207,-0.228026,1.18064][-0.672391,0.681934,0.287847][0.72058,0.303302,0][-1.7096,-0.389241,0.668842][-0.661146,0.749893,0.0233808][0.623032,0.303639,0][-1.73962,-0.43989,0.655097][-0.950031,-0.118762,0.288679][0.623041,0.286141,0][-1.48045,-0.291835,1.17237][-0.808413,-0.197368,0.554539][0.720493,0.28699,0][-1.48045,-0.291835,1.17237][-0.808413,-0.197368,0.554539][0.720493,0.28699,0][-1.46207,-0.228026,1.18064][-0.672391,0.681934,0.287847][0.72058,0.303302,0][-1.7096,-0.389241,0.668842][-0.661146,0.749893,0.0233808][0.623032,0.303639,0][-1.81017,-0.577733,0.0219507][-0.656781,0.738474,-0.152631][0.504479,0.302972,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.506342,0.285551,0][-1.73962,-0.43989,0.655097][-0.950031,-0.118762,0.288679][0.623041,0.286141,0][-1.73962,-0.43989,0.655097][-0.950031,-0.118762,0.288679][0.623041,0.286141,0][-1.7096,-0.389241,0.668842][-0.661146,0.749893,0.0233808][0.623032,0.303639,0][-1.81017,-0.577733,0.0219507][-0.656781,0.738474,-0.152631][0.504479,0.302972,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.76771,-0.774267,-0.637966][-0.781354,-0.616466,-0.0972437][0.387869,0.28711,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.506342,0.285551,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.506342,0.285551,0][-1.81017,-0.577733,0.0219507][-0.656781,0.738474,-0.152631][0.504479,0.302972,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.53296,-0.838166,-1.22754][-0.650296,-0.704048,-0.285362][0.291904,0.285608,0][-1.76771,-0.774267,-0.637966][-0.781354,-0.616466,-0.0972437][0.387869,0.28711,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.53565,-0.795598,-1.23566][-0.798479,0.302247,-0.520652][0.291917,0.303158,0][-1.53296,-0.838166,-1.22754][-0.650296,-0.704048,-0.285362][0.291904,0.285608,0][-1.13496,-0.918381,-1.68613][-0.485081,-0.745553,-0.456998][0.21188,0.287379,0][-1.53296,-0.838166,-1.22754][-0.650296,-0.704048,-0.285362][0.291904,0.285608,0][-1.53565,-0.795598,-1.23566][-0.798479,0.302247,-0.520652][0.291917,0.303158,0][-1.53565,-0.795598,-1.23566][-0.798479,0.302247,-0.520652][0.291917,0.303158,0][-1.13179,-0.871782,-1.70429][-0.577892,0.200707,-0.791048][0.211339,0.303629,0][-1.13496,-0.918381,-1.68613][-0.485081,-0.745553,-0.456998][0.21188,0.287379,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.122086,0.286741,0][-1.13496,-0.918381,-1.68613][-0.485081,-0.745553,-0.456998][0.21188,0.287379,0][-1.13179,-0.871782,-1.70429][-0.577892,0.200707,-0.791048][0.211339,0.303629,0][-1.13179,-0.871782,-1.70429][-0.577892,0.200707,-0.791048][0.211339,0.303629,0][-0.590603,-0.937709,-1.98365][-0.315554,0.0191239,-0.948715][0.121109,0.304432,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.122086,0.286741,0][-2.91647e-007,-0.989764,-2.06249][-4.19245e-007,-0.862658,-0.505788][0.044969,0.286108,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.122086,0.286741,0][-0.590603,-0.937709,-1.98365][-0.315554,0.0191239,-0.948715][0.121109,0.304432,0][-0.590603,-0.937709,-1.98365][-0.315554,0.0191239,-0.948715][0.121109,0.304432,0][-2.69108e-007,-0.946951,-2.0868][0,0.0206031,-0.999788][0.045183,0.304601,0][-2.91647e-007,-0.989764,-2.06249][-4.19245e-007,-0.862658,-0.505788][0.044969,0.286108,0][-0.775094,-0.350647,-1.10083][-0.580774,0.212119,-0.785943][0.208128,0.514304,0][-0.775094,-0.326733,-1.09423][-0.447441,0.659336,-0.604212][0.208126,0.520934,0][-0.405707,-0.328426,-1.28353][-0.214226,0.671371,-0.709485][0.113474,0.520934,0][-0.405707,-0.328426,-1.28353][-0.214226,0.671371,-0.709485][0.113474,0.520934,0][-0.405707,-0.35234,-1.29013][-0.274522,0.255887,-0.926909][0.113475,0.514338,0][-0.775094,-0.350647,-1.10083][-0.580774,0.212119,-0.785943][0.208128,0.514304,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][-0.405707,-0.35234,-1.29013][-0.274522,0.255887,-0.926909][0.113475,0.514338,0][-0.405707,-0.328426,-1.28353][-0.214226,0.671371,-0.709485][0.113474,0.520934,0][-0.405707,-0.328426,-1.28353][-0.214226,0.671371,-0.709485][0.113474,0.520934,0][0,-0.328798,-1.32516][3.11974e-007,0.686666,-0.726973][0.045424,0.520934,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][-2.82917e-007,-0.326683,1.45434][0,0.00690768,0.999976][0.971543,0.514362,0][-2.72365e-007,-0.304581,1.45419][3.03867e-007,0.634453,0.772961][0.971531,0.520934,0][-0.405707,-0.305024,1.40461][-0.209843,0.629223,0.748361][0.912933,0.520934,0][-0.405707,-0.305024,1.40461][-0.209843,0.629223,0.748361][0.912933,0.520934,0][-0.405707,-0.326907,1.40475][-0.268062,0.00628473,0.963381][0.912935,0.514375,0][-2.82917e-007,-0.326683,1.45434][0,0.00690768,0.999976][0.971543,0.514362,0][-0.405707,-0.326907,1.40475][-0.268062,0.00628473,0.963381][0.912935,0.514375,0][-0.405707,-0.305024,1.40461][-0.209843,0.629223,0.748361][0.912933,0.520934,0][-0.775094,-0.306503,1.23918][-0.468329,0.616974,0.632464][0.809372,0.520934,0][-0.775094,-0.306503,1.23918][-0.468329,0.616974,0.632464][0.809372,0.520934,0][-0.775094,-0.328385,1.23932][-0.592605,0.00525822,0.805476][0.809372,0.514302,0][-0.405707,-0.326907,1.40475][-0.268062,0.00628473,0.963381][0.912935,0.514375,0][-0.775094,-0.328385,1.23932][-0.592605,0.00525822,0.805476][0.809372,0.514302,0][-0.775094,-0.306503,1.23918][-0.468329,0.616974,0.632464][0.809372,0.520934,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-1.06824,-0.331353,0.907308][-0.826641,0.00375647,0.562718][0.720624,0.514393,0][-0.775094,-0.328385,1.23932][-0.592605,0.00525822,0.805476][0.809372,0.514302,0][-1.06824,-0.331353,0.907308][-0.826641,0.00375647,0.562718][0.720624,0.514393,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-1.27922,-0.313165,0.493701][-0.682731,0.696262,0.221581][0.622866,0.52293,0][-1.27922,-0.313165,0.493701][-0.682731,0.696262,0.221581][0.622866,0.52293,0][-1.27929,-0.335901,0.494231][-0.948305,0.010539,0.317186][0.622879,0.516145,0][-1.06824,-0.331353,0.907308][-0.826641,0.00375647,0.562718][0.720624,0.514393,0][-1.27929,-0.335901,0.494231][-0.948305,0.010539,0.317186][0.622879,0.516145,0][-1.27922,-0.313165,0.493701][-0.682731,0.696262,0.221581][0.622866,0.52293,0][-1.36029,-0.323289,0.0239868][-0.823182,0.567497,-0.0178301][0.506408,0.523675,0][-1.36029,-0.323289,0.0239868][-0.823182,0.567497,-0.0178301][0.506408,0.523675,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.27929,-0.335901,0.494231][-0.948305,0.010539,0.317186][0.622879,0.516145,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.36029,-0.323289,0.0239868][-0.823182,0.567497,-0.0178301][0.506408,0.523675,0][-1.27922,-0.321543,-0.443608][-0.716601,0.645772,-0.263556][0.387862,0.522643,0][-1.27922,-0.321543,-0.443608][-0.716601,0.645772,-0.263556][0.387862,0.522643,0][-1.27929,-0.345248,-0.443723][-0.939024,0.0053595,-0.343811][0.387864,0.515912,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.27929,-0.345248,-0.443723][-0.939024,0.0053595,-0.343811][0.387864,0.515912,0][-1.27922,-0.321543,-0.443608][-0.716601,0.645772,-0.263556][0.387862,0.522643,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-1.06824,-0.348604,-0.807448][-0.791746,0.0885045,-0.604405][0.291908,0.514313,0][-1.27929,-0.345248,-0.443723][-0.939024,0.0053595,-0.343811][0.387864,0.515912,0][-1.06824,-0.348604,-0.807448][-0.791746,0.0885045,-0.604405][0.291908,0.514313,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-0.775094,-0.326733,-1.09423][-0.447441,0.659336,-0.604212][0.208126,0.520934,0][-0.775094,-0.326733,-1.09423][-0.447441,0.659336,-0.604212][0.208126,0.520934,0][-0.775094,-0.350647,-1.10083][-0.580774,0.212119,-0.785943][0.208128,0.514304,0][-1.06824,-0.348604,-0.807448][-0.791746,0.0885045,-0.604405][0.291908,0.514313,0][-0.775094,-0.616678,-1.17427][-0.598261,0.212024,-0.772742][0.208154,0.44055,0][-0.775094,-0.492124,-1.13989][-0.591785,0.210748,-0.778059][0.208142,0.475081,0][-0.405707,-0.493817,-1.32919][-0.274522,0.255882,-0.92691][0.113481,0.47532,0][-0.405707,-0.493817,-1.32919][-0.274522,0.255882,-0.92691][0.113481,0.47532,0][-0.405707,-0.618371,-1.36357][-0.274522,0.255874,-0.926912][0.113487,0.440968,0][-0.775094,-0.616678,-1.17427][-0.598261,0.212024,-0.772742][0.208154,0.44055,0][0,-0.494189,-1.37081][1.33454e-007,0.266105,-0.963944][0.045409,0.477042,0][-1.72193e-007,-0.618743,-1.4052][1.47753e-007,0.266098,-0.963946][0.045398,0.439389,0][-0.405707,-0.618371,-1.36357][-0.274522,0.255874,-0.926912][0.113487,0.440968,0][-0.405707,-0.618371,-1.36357][-0.274522,0.255874,-0.926912][0.113487,0.440968,0][-0.405707,-0.493817,-1.32919][-0.274522,0.255882,-0.92691][0.113481,0.47532,0][0,-0.494189,-1.37081][1.33454e-007,0.266105,-0.963944][0.045409,0.477042,0][-4.00306e-007,-0.572554,1.45604][0,0.00687457,0.999976][0.971679,0.441249,0][-3.45345e-007,-0.457438,1.45524][0,0.00686313,0.999976][0.971615,0.47548,0][-0.405707,-0.456366,1.40559][-0.268118,0.00629266,0.963366][0.912945,0.475574,0][-0.405707,-0.456366,1.40559][-0.268118,0.00629266,0.963366][0.912945,0.475574,0][-0.405707,-0.57034,1.40633][-0.268156,0.0062833,0.963355][0.912954,0.441414,0][-4.00306e-007,-0.572554,1.45604][0,0.00687457,0.999976][0.971679,0.441249,0][-0.405707,-0.57034,1.40633][-0.268156,0.0062833,0.963355][0.912954,0.441414,0][-0.405707,-0.456366,1.40559][-0.268118,0.00629266,0.963366][0.912945,0.475574,0][-0.775094,-0.457845,1.24016][-0.592605,0.00525077,0.805476][0.809373,0.47507,0][-0.775094,-0.457845,1.24016][-0.592605,0.00525077,0.805476][0.809373,0.47507,0][-0.775094,-0.571819,1.24091][-0.592605,0.00525099,0.805476][0.809373,0.440531,0][-0.405707,-0.57034,1.40633][-0.268156,0.0062833,0.963355][0.912954,0.441414,0][-0.775094,-0.571819,1.24091][-0.592605,0.00525099,0.805476][0.809373,0.440531,0][-0.775094,-0.457845,1.24016][-0.592605,0.00525077,0.805476][0.809373,0.47507,0][-1.06824,-0.460812,0.908152][-0.826063,0.00415762,0.563563][0.720609,0.475694,0][-1.06824,-0.460812,0.908152][-0.826063,0.00415762,0.563563][0.720609,0.475694,0][-1.06824,-0.574786,0.908894][-0.82526,0.00411248,0.564738][0.720595,0.441624,0][-0.775094,-0.571819,1.24091][-0.592605,0.00525099,0.805476][0.809373,0.440531,0][-1.06824,-0.574786,0.908894][-0.82526,0.00411248,0.564738][0.720595,0.441624,0][-1.06824,-0.460812,0.908152][-0.826063,0.00415762,0.563563][0.720609,0.475694,0][-1.27975,-0.470411,0.497368][-0.94616,0.0127626,0.323449][0.622956,0.476006,0][-1.27975,-0.470411,0.497368][-0.94616,0.0127626,0.323449][0.622956,0.476006,0][-1.28015,-0.588831,0.500128][-0.943502,0.0129008,0.331116][0.622964,0.440668,0][-1.06824,-0.574786,0.908894][-0.82526,0.00411248,0.564738][0.720595,0.441624,0][-1.28015,-0.588831,0.500128][-0.943502,0.0129008,0.331116][0.622964,0.440668,0][-1.27975,-0.470411,0.497368][-0.94616,0.0127626,0.323449][0.622956,0.476006,0][-1.36985,-0.484552,0.0270328][-0.998366,0.0571001,0.00215559][0.506617,0.476896,0][-1.36985,-0.484552,0.0270328][-0.998366,0.0571001,0.00215559][0.506617,0.476896,0][-1.37705,-0.605998,0.0293268][-0.998398,0.0564848,0.00318453][0.506775,0.441666,0][-1.28015,-0.588831,0.500128][-0.943502,0.0129008,0.331116][0.622964,0.440668,0][-1.37705,-0.605998,0.0293268][-0.998398,0.0564848,0.00318453][0.506775,0.441666,0][-1.36985,-0.484552,0.0270328][-0.998366,0.0571001,0.00215559][0.506617,0.476896,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.28014,-0.608954,-0.445004][-0.940032,0.00828316,-0.340985][0.387879,0.441027,0][-1.37705,-0.605998,0.0293268][-0.998398,0.0564848,0.00318453][0.506775,0.441666,0][-1.28014,-0.608954,-0.445004][-0.940032,0.00828316,-0.340985][0.387879,0.441027,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.06824,-0.489657,-0.828766][-0.803686,0.0905849,-0.588118][0.291913,0.475146,0][-1.06824,-0.489657,-0.828766][-0.803686,0.0905849,-0.588118][0.291913,0.475146,0][-1.06824,-0.613837,-0.847534][-0.815071,0.0894726,-0.57241][0.291917,0.440664,0][-1.28014,-0.608954,-0.445004][-0.940032,0.00828316,-0.340985][0.387879,0.441027,0][-1.06824,-0.613837,-0.847534][-0.815071,0.0894726,-0.57241][0.291917,0.440664,0][-1.06824,-0.489657,-0.828766][-0.803686,0.0905849,-0.588118][0.291913,0.475146,0][-0.775094,-0.492124,-1.13989][-0.591785,0.210748,-0.778059][0.208142,0.475081,0][-0.775094,-0.492124,-1.13989][-0.591785,0.210748,-0.778059][0.208142,0.475081,0][-0.775094,-0.616678,-1.17427][-0.598261,0.212024,-0.772742][0.208154,0.44055,0][-1.06824,-0.613837,-0.847534][-0.815071,0.0894726,-0.57241][0.291917,0.440664,0][0.844235,-0.0540425,0.464081][-0.661802,-0.724283,-0.193474][0.294796,0.111248,0][1.10494,-0.547683,0.44245][-0.750806,-0.626113,-0.210409][0.304261,0.137351,0][0.939356,-0.551139,0.810573][-0.668982,-0.608848,-0.426341][0.337398,0.121758,0][0.939356,-0.551139,0.810573][-0.668982,-0.608848,-0.426341][0.337398,0.121758,0][0.717603,-0.0515265,0.745561][-0.602928,-0.708201,-0.367327][0.31946,0.099642,0][0.844235,-0.0540425,0.464081][-0.661802,-0.724283,-0.193474][0.294796,0.111248,0][0.717603,-0.0515265,0.745561][-0.602928,-0.708201,-0.367327][0.31946,0.099642,0][0.939356,-0.551139,0.810573][-0.668982,-0.608848,-0.426341][0.337398,0.121758,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][0.520369,-0.0479654,1.00329][-0.402268,-0.668982,-0.625015][0.339013,0.081607,0][0.717603,-0.0515265,0.745561][-0.602928,-0.708201,-0.367327][0.31946,0.099642,0][0.520369,-0.0479654,1.00329][-0.402268,-0.668982,-0.625015][0.339013,0.081607,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][0.356478,-0.54748,1.21991][-0.22799,-0.573469,-0.786864][0.374428,0.067043,0][0.356478,-0.54748,1.21991][-0.22799,-0.573469,-0.786864][0.374428,0.067043,0][0.271839,-0.0474443,1.06155][-0.129766,-0.698352,-0.703893][0.34407,0.058924,0][0.520369,-0.0479654,1.00329][-0.402268,-0.668982,-0.625015][0.339013,0.081607,0][0.356478,-0.54748,1.21991][-0.22799,-0.573469,-0.786864][0.374428,0.067043,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][-4.7056e-007,-0.715287,1.48113][-4.31271e-007,-0.999749,0.0223917][0.402462,0.032867,0][-4.7056e-007,-0.715287,1.48113][-4.31271e-007,-0.999749,0.0223917][0.402462,0.032867,0][-3.5751e-007,-0.510905,1.30277][-2.50869e-007,-0.523437,-0.852064][0.376466,0.03329,0][0.356478,-0.54748,1.21991][-0.22799,-0.573469,-0.786864][0.374428,0.067043,0][0,-0.0658549,-0.857672][-3.75079e-007,-0.810312,0.585998][0.178671,0.034154,0][-1.69867e-007,-0.585748,-1.25184][-2.71326e-007,-0.546378,0.837539][0.151508,0.033729,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][0.271839,-0.065414,-0.808252][-0.196683,-0.811762,0.549871][0.183065,0.059276,0][0,-0.0658549,-0.857672][-3.75079e-007,-0.810312,0.585998][0.178671,0.034154,0][0.271839,-0.065414,-0.808252][-0.196683,-0.811762,0.549871][0.183065,0.059276,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][0.681454,-0.567622,-1.03365][-0.48197,-0.581666,0.655262][0.17112,0.097948,0][0.681454,-0.567622,-1.03365][-0.48197,-0.581666,0.655262][0.17112,0.097948,0][0.520369,-0.0641321,-0.664831][-0.37778,-0.804248,0.458768][0.1957,0.08192,0][0.271839,-0.065414,-0.808252][-0.196683,-0.811762,0.549871][0.183065,0.059276,0][0.520369,-0.0641321,-0.664831][-0.37778,-0.804248,0.458768][0.1957,0.08192,0][0.681454,-0.567622,-1.03365][-0.48197,-0.581666,0.655262][0.17112,0.097948,0][0.939356,-0.565011,-0.741552][-0.661677,-0.595577,0.45549][0.197504,0.122064,0][0.939356,-0.565011,-0.741552][-0.661677,-0.595577,0.45549][0.197504,0.122064,0][0.717603,-0.0621353,-0.441447][-0.520504,-0.785553,0.334638][0.215337,0.099869,0][0.520369,-0.0641321,-0.664831][-0.37778,-0.804248,0.458768][0.1957,0.08192,0][0.717603,-0.0621353,-0.441447][-0.520504,-0.785553,0.334638][0.215337,0.099869,0][0.939356,-0.565011,-0.741552][-0.661677,-0.595577,0.45549][0.197504,0.122064,0][1.10494,-0.556065,-0.373541][-0.752786,-0.609923,0.247602][0.230714,0.137511,0][1.10494,-0.556065,-0.373541][-0.752786,-0.609923,0.247602][0.230714,0.137511,0][0.844235,-0.0596194,-0.159966][-0.618397,-0.765478,0.177844][0.240055,0.111367,0][0.717603,-0.0621353,-0.441447][-0.520504,-0.785553,0.334638][0.215337,0.099869,0][0.844235,-0.0596194,-0.159966][-0.618397,-0.765478,0.177844][0.240055,0.111367,0][1.10494,-0.556065,-0.373541][-0.752786,-0.609923,0.247602][0.230714,0.137511,0][1.16999,-0.55823,0.035569][-0.774542,-0.6323,0.0167868][0.2675,0.142779,0][1.16999,-0.55823,0.035569][-0.774542,-0.6323,0.0167868][0.2675,0.142779,0][0.88787,-0.0568314,0.152057][-0.667397,-0.744698,-0.00251956][0.267435,0.115288,0][0.844235,-0.0596194,-0.159966][-0.618397,-0.765478,0.177844][0.240055,0.111367,0][1.10494,-0.547683,0.44245][-0.750806,-0.626113,-0.210409][0.304261,0.137351,0][0.844235,-0.0540425,0.464081][-0.661802,-0.724283,-0.193474][0.294796,0.111248,0][0.88787,-0.0568314,0.152057][-0.667397,-0.744698,-0.00251956][0.267435,0.115288,0][0.88787,-0.0568314,0.152057][-0.667397,-0.744698,-0.00251956][0.267435,0.115288,0][1.16999,-0.55823,0.035569][-0.774542,-0.6323,0.0167868][0.2675,0.142779,0][1.10494,-0.547683,0.44245][-0.750806,-0.626113,-0.210409][0.304261,0.137351,0][0.717603,-0.0515265,0.745561][-0.602928,-0.708201,-0.367327][0.31946,0.099642,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.844235,-0.0540425,0.464081][-0.661802,-0.724283,-0.193474][0.294796,0.111248,0][0.520369,-0.0479654,1.00329][-0.402268,-0.668982,-0.625015][0.339013,0.081607,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.717603,-0.0515265,0.745561][-0.602928,-0.708201,-0.367327][0.31946,0.099642,0][0.271839,-0.0474443,1.06155][-0.129766,-0.698352,-0.703893][0.34407,0.058924,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.520369,-0.0479654,1.00329][-0.402268,-0.668982,-0.625015][0.339013,0.081607,0][0,-0.0472562,1.08258][-3.53014e-007,-0.722357,-0.69152][0.345855,0.033788,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.271839,-0.0474443,1.06155][-0.129766,-0.698352,-0.703893][0.34407,0.058924,0][0.271839,-0.065414,-0.808252][-0.196683,-0.811762,0.549871][0.183065,0.059276,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0,-0.0658549,-0.857672][-3.75079e-007,-0.810312,0.585998][0.178671,0.034154,0][0.520369,-0.0641321,-0.664831][-0.37778,-0.804248,0.458768][0.1957,0.08192,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.271839,-0.065414,-0.808252][-0.196683,-0.811762,0.549871][0.183065,0.059276,0][0.717603,-0.0621353,-0.441447][-0.520504,-0.785553,0.334638][0.215337,0.099869,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.520369,-0.0641321,-0.664831][-0.37778,-0.804248,0.458768][0.1957,0.08192,0][0.844235,-0.0596194,-0.159966][-0.618397,-0.765478,0.177844][0.240055,0.111367,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.717603,-0.0621353,-0.441447][-0.520504,-0.785553,0.334638][0.215337,0.099869,0][0.88787,-0.0568314,0.152057][-0.667397,-0.744698,-0.00251956][0.267435,0.115288,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.844235,-0.0596194,-0.159966][-0.618397,-0.765478,0.177844][0.240055,0.111367,0][0.844235,-0.0540425,0.464081][-0.661802,-0.724283,-0.193474][0.294796,0.111248,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.88787,-0.0568314,0.152057][-0.667397,-0.744698,-0.00251956][0.267435,0.115288,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][0.180334,0.587348,0.24833][-0.196053,0.980142,-0.0297618][0.747471,0.182288,0][2.49967e-007,0.571379,0.257224][4.90324e-007,0.999334,-0.0364884][0.749768,0.226993,0][2.49967e-007,0.571379,0.257224][4.90324e-007,0.999334,-0.0364884][0.749768,0.226993,0][2.35262e-007,0.576585,0.453827][4.95509e-007,0.999578,-0.0290418][0.800555,0.227003,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][0.933413,0.437558,0.828259][0.850884,0.218342,0.477831][0.720435,0.806277,0][1.02099,-0.0159636,0.869153][0.837419,0.156463,0.523687][0.719728,0.644196,0][1.02099,-0.0159636,0.869153][0.837419,0.156463,0.523687][0.719728,0.644196,0][1.20089,-0.0211027,0.471694][0.940283,0.180333,0.288699][0.604634,0.64236,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][1.20089,-0.0211027,0.471694][0.940283,0.180333,0.288699][0.604634,0.64236,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.14678,0.461414,0.0344072][0.961759,0.258855,-0.0895174][0.495884,0.814803,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][1.14678,0.461414,0.0344072][0.961759,0.258855,-0.0895174][0.495884,0.814803,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][0.783955,0.321947,-0.498098][0.560174,0.400223,-0.725277][0.30811,0.764959,0][0.945696,0.381638,-0.354573][0.5244,0.360338,-0.771467][0.376825,0.793634,0][0.979383,0.218721,-0.439858][0.459888,0.596682,-0.657627][0.362558,0.728068,0][0.979383,0.218721,-0.439858][0.459888,0.596682,-0.657627][0.362558,0.728068,0][0.879661,0.122158,-0.616606][0.34019,0.738866,-0.581677][0.308959,0.693558,0][0.783955,0.321947,-0.498098][0.560174,0.400223,-0.725277][0.30811,0.764959,0][0.572981,0.281684,-0.688148][0.542835,0.415613,-0.729792][0.224814,0.75057,0][0.783955,0.321947,-0.498098][0.560174,0.400223,-0.725277][0.30811,0.764959,0][0.879661,0.122158,-0.616606][0.34019,0.738866,-0.581677][0.308959,0.693558,0][0.879661,0.122158,-0.616606][0.34019,0.738866,-0.581677][0.308959,0.693558,0][0.648121,0.0697738,-0.82582][0.36,0.778945,-0.513464][0.224594,0.674837,0][0.572981,0.281684,-0.688148][0.542835,0.415613,-0.729792][0.224814,0.75057,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.572981,0.281684,-0.688148][0.542835,0.415613,-0.729792][0.224814,0.75057,0][0.648121,0.0697738,-0.82582][0.36,0.778945,-0.513464][0.224594,0.674837,0][0.648121,0.0697738,-0.82582][0.36,0.778945,-0.513464][0.224594,0.674837,0][0.417833,0.114991,-0.947852][0.471548,0.725462,-0.501345][0.160685,0.690997,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.417833,0.114991,-0.947852][0.471548,0.725462,-0.501345][0.160685,0.690997,0][0.318551,0.183914,-0.97185][0.610963,0.60992,-0.5047][0.133586,0.715629,0][0.318551,0.183914,-0.97185][0.610963,0.60992,-0.5047][0.133586,0.715629,0][0.266523,0.27629,-0.94409][0.667877,0.398038,-0.628892][0.121998,0.748642,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.37334,0.404642,1.31998][0.262887,0.172349,0.949308][0.888,0.794513,0][0,0.403359,1.36505][0,0.175048,0.98456][0.960103,0.794055,0][-1.26063e-007,-0.00569123,1.41095][0,0.0782557,0.996933][0.960103,0.647867,0][-1.26063e-007,-0.00569123,1.41095][0,0.0782557,0.996933][0.960103,0.647867,0][0.387723,-0.00611641,1.36349][0.266892,0.0800131,0.960399][0.887703,0.647716,0][0.37334,0.404642,1.31998][0.262887,0.172349,0.949308][0.888,0.794513,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][0.703517,0.424923,1.16813][0.630154,0.175608,0.756352][0.812163,0.801762,0][0.37334,0.404642,1.31998][0.262887,0.172349,0.949308][0.888,0.794513,0][0.37334,0.404642,1.31998][0.262887,0.172349,0.949308][0.888,0.794513,0][0.387723,-0.00611641,1.36349][0.266892,0.0800131,0.960399][0.887703,0.647716,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][0.933413,0.437558,0.828259][0.850884,0.218342,0.477831][0.720435,0.806277,0][0.703517,0.424923,1.16813][0.630154,0.175608,0.756352][0.812163,0.801762,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][1.02099,-0.0159636,0.869153][0.837419,0.156463,0.523687][0.719728,0.644196,0][0.933413,0.437558,0.828259][0.850884,0.218342,0.477831][0.720435,0.806277,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][0.937414,-0.529113,1.48242][0.399731,-0.65545,0.640781][0.412594,0.129512,0][0.792025,-0.717188,1.26857][0.00897965,-0.999089,0.0417089][0.382862,0.109921,0][0.792025,-0.717188,1.26857][0.00897965,-0.999089,0.0417089][0.382862,0.109921,0][1.09154,-0.717178,0.929196][-0.0308784,-0.998912,-0.0349599][0.351363,0.138976,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.58629,-0.597603,0.596417][0.460296,-0.843063,0.278159][0.322969,0.189989,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.09154,-0.717178,0.929196][-0.0308784,-0.998912,-0.0349599][0.351363,0.138976,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.681,-0.675451,0.028779][0.271522,-0.952978,0.134571][0.267611,0.197218,0][1.58629,-0.597603,0.596417][0.460296,-0.843063,0.278159][0.322969,0.189989,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.35744,-0.731261,0.030143][-0.263672,-0.961381,0.078893][0.26755,0.164181,0][1.681,-0.675451,0.028779][0.271522,-0.952978,0.134571][0.267611,0.197218,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.681,-0.675451,0.028779][0.271522,-0.952978,0.134571][0.267611,0.197218,0][1.35744,-0.731261,0.030143][-0.263672,-0.961381,0.078893][0.26755,0.164181,0][1.35744,-0.731261,0.030143][-0.263672,-0.961381,0.078893][0.26755,0.164181,0][1.28385,-0.772564,-0.442914][-0.349295,-0.916074,0.196979][0.223442,0.157865,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.09154,-0.828246,-0.869067][-0.306511,-0.895327,0.323172][0.18362,0.139342,0][1.32109,-0.841778,-1.065][0.0648825,-0.99173,0.11073][0.162219,0.169711,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.28385,-0.772564,-0.442914][-0.349295,-0.916074,0.196979][0.223442,0.157865,0][1.09154,-0.828246,-0.869067][-0.306511,-0.895327,0.323172][0.18362,0.139342,0][0.792025,-0.883305,-1.20593][-0.224068,-0.865032,0.448903][0.151984,0.110426,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][1.32109,-0.841778,-1.065][0.0648825,-0.99173,0.11073][0.162219,0.169711,0][1.32109,-0.841778,-1.065][0.0648825,-0.99173,0.11073][0.162219,0.169711,0][1.09154,-0.828246,-0.869067][-0.306511,-0.895327,0.323172][0.18362,0.139342,0][0.792025,-0.883305,-1.20593][-0.224068,-0.865032,0.448903][0.151984,0.110426,0][0.414608,-0.912371,-1.39681][-0.114566,-0.855428,0.505091][0.134121,0.073877,0][0.49104,-0.956381,-1.66316][0.00111315,-0.992913,0.118837][0.099134,0.084243,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][0.792025,-0.883305,-1.20593][-0.224068,-0.865032,0.448903][0.151984,0.110426,0][0.414608,-0.912371,-1.39681][-0.114566,-0.855428,0.505091][0.134121,0.073877,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][0.49104,-0.956381,-1.66316][0.00111315,-0.992913,0.118837][0.099134,0.084243,0][0.414608,-0.912371,-1.39681][-0.114566,-0.855428,0.505091][0.134121,0.073877,0][0.414608,-0.912371,-1.39681][-0.114566,-0.855428,0.505091][0.134121,0.073877,0][-3.09665e-007,-0.912723,-1.43618][-3.73148e-007,-0.836829,0.547464][0.130362,0.033398,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][0.491039,-0.491136,1.69358][0.189181,-0.599963,0.777338][0.433118,0.083603,0][-3.82071e-007,-0.479491,1.75505][-2.79219e-007,-0.589156,0.80802][0.439249,0.032757,0][-3.82071e-007,-0.479491,1.75505][-2.79219e-007,-0.589156,0.80802][0.439249,0.032757,0][-4.7056e-007,-0.715287,1.48113][-4.31271e-007,-0.999749,0.0223917][0.402462,0.032867,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][0.937414,-0.529113,1.48242][0.399731,-0.65545,0.640781][0.412594,0.129512,0][0.491039,-0.491136,1.69358][0.189181,-0.599963,0.777338][0.433118,0.083603,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][0.792025,-0.717188,1.26857][0.00897965,-0.999089,0.0417089][0.382862,0.109921,0][0.937414,-0.529113,1.48242][0.399731,-0.65545,0.640781][0.412594,0.129512,0][1.49459,-0.68115,-0.531945][0.0471668,0.989448,-0.136996][0.38786,0.369055,0][1.32204,-0.738771,-1.03811][0.0969245,0.985762,-0.137399][0.291925,0.367597,0][1.10114,-0.664549,-0.88099][0.173195,0.972845,-0.153542][0.29192,0.41778,0][1.10114,-0.664549,-0.88099][0.173195,0.972845,-0.153542][0.29192,0.41778,0][1.32512,-0.651316,-0.462713][0.0694968,0.995845,-0.0588404][0.387885,0.420196,0][1.49459,-0.68115,-0.531945][0.0471668,0.989448,-0.136996][0.38786,0.369055,0][1.10114,-0.664549,-0.88099][0.173195,0.972845,-0.153542][0.29192,0.41778,0][0.799104,-0.670185,-1.2226][0.159537,0.959552,-0.231966][0.20817,0.417868,0][0.775094,-0.658752,-1.18589][0.409878,0.726891,-0.551026][0.208158,0.428886,0][0.775094,-0.658752,-1.18589][0.409878,0.726891,-0.551026][0.208158,0.428886,0][1.06824,-0.655784,-0.853873][0.582983,0.692815,-0.424428][0.291918,0.429017,0][1.10114,-0.664549,-0.88099][0.173195,0.972845,-0.153542][0.29192,0.41778,0][0.799104,-0.670185,-1.2226][0.159537,0.959552,-0.231966][0.20817,0.417868,0][0.41833,-0.676217,-1.41866][0.0896029,0.936254,-0.339706][0.113491,0.418482,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][0.775094,-0.658752,-1.18589][0.409878,0.726891,-0.551026][0.208158,0.428886,0][0.799104,-0.670185,-1.2226][0.159537,0.959552,-0.231966][0.20817,0.417868,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][0.41833,-0.676217,-1.41866][0.0896029,0.936254,-0.339706][0.113491,0.418482,0][-1.95161e-007,-0.67784,-1.46482][4.0879e-007,0.940736,-0.339138][0.045376,0.417384,0][-1.95161e-007,-0.67784,-1.46482][4.0879e-007,0.940736,-0.339138][0.045376,0.417384,0][-1.9124e-007,-0.660816,-1.41681][3.14796e-007,0.696868,-0.7172][0.045394,0.428223,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][0.421863,-0.620654,1.46244][-0.0888576,0.940781,-0.327164][0.913051,0.416465,0][0.405707,-0.608839,1.40659][0.199084,0.664978,0.71984][0.912957,0.429875,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-4.27596e-007,-0.61901,1.51481][4.01754e-007,0.916047,-0.401071][0.971705,0.41767,0][0.421863,-0.620654,1.46244][-0.0888576,0.940781,-0.327164][0.913051,0.416465,0][0.421863,-0.620654,1.46244][-0.0888576,0.940781,-0.327164][0.913051,0.416465,0][0.805824,-0.622292,1.2883][-0.171671,0.951054,-0.256953][0.809373,0.415134,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][0.405707,-0.608839,1.40659][0.199084,0.664978,0.71984][0.912957,0.429875,0][0.421863,-0.620654,1.46244][-0.0888576,0.940781,-0.327164][0.913051,0.416465,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][0.805824,-0.622292,1.2883][-0.171671,0.951054,-0.256953][0.809373,0.415134,0][1.11035,-0.623882,0.944046][-0.220611,0.957878,-0.183851][0.720583,0.416319,0][1.11035,-0.623882,0.944046][-0.220611,0.957878,-0.183851][0.720583,0.416319,0][1.06824,-0.613287,0.909145][0.623443,0.661486,0.416839][0.72059,0.430116,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][1.49792,-0.533546,0.564781][-0.494781,0.819549,-0.289018][0.623028,0.370987,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.11035,-0.623882,0.944046][-0.220611,0.957878,-0.183851][0.720583,0.416319,0][1.11035,-0.623882,0.944046][-0.220611,0.957878,-0.183851][0.720583,0.416319,0][1.26598,-0.451562,1.05627][-0.560605,0.695834,-0.44893][0.720577,0.37184,0][1.49792,-0.533546,0.564781][-0.494781,0.819549,-0.289018][0.623028,0.370987,0][0.397291,-0.30082,1.37605][0.192648,0.70575,0.681765][0.887697,0.538409,0][-2.67779e-007,-0.300386,1.42461][3.42596e-007,0.698199,0.715904][0.961003,0.53844,0][-2.72365e-007,-0.304581,1.45419][3.03867e-007,0.634453,0.772961][0.971531,0.520934,0][-2.72365e-007,-0.304581,1.45419][3.03867e-007,0.634453,0.772961][0.971531,0.520934,0][0.405707,-0.305024,1.40461][0.209844,0.629223,0.748361][0.912933,0.520934,0][0.397291,-0.30082,1.37605][0.192648,0.70575,0.681765][0.887697,0.538409,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][0.397291,-0.30082,1.37605][0.192648,0.70575,0.681765][0.887697,0.538409,0][0.405707,-0.305024,1.40461][0.209844,0.629223,0.748361][0.912933,0.520934,0][0.405707,-0.305024,1.40461][0.209844,0.629223,0.748361][0.912933,0.520934,0][0.775094,-0.306504,1.23918][0.468329,0.616974,0.632464][0.809372,0.520934,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][1.04621,-0.301221,0.888796][0.633337,0.666351,0.393522][0.71835,0.538381,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][0.775094,-0.306504,1.23918][0.468329,0.616974,0.632464][0.809372,0.520934,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][1.23055,-0.315921,0.479132][0.592291,0.780935,0.198323][0.622663,0.53743,0][1.04621,-0.301221,0.888796][0.633337,0.666351,0.393522][0.71835,0.538381,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][1.27922,-0.313167,0.493701][0.682731,0.696261,0.221582][0.622866,0.52293,0][1.23055,-0.315921,0.479132][0.592291,0.780935,0.198323][0.622663,0.53743,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][1.04621,-0.316303,-0.785952][0.544065,0.728669,-0.415974][0.305111,0.53731,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.27922,-0.321545,-0.443608][0.716601,0.645771,-0.263556][0.387862,0.522643,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][0.759086,-0.318213,-1.06951][0.378844,0.754557,-0.535836][0.222659,0.537174,0][1.04621,-0.316303,-0.785952][0.544065,0.728669,-0.415974][0.305111,0.53731,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][0.775094,-0.326734,-1.09423][0.447442,0.659336,-0.604212][0.208126,0.520934,0][0.759086,-0.318213,-1.06951][0.378844,0.754557,-0.535836][0.222659,0.537174,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0.759086,-0.318213,-1.06951][0.378844,0.754557,-0.535836][0.222659,0.537174,0][0.775094,-0.326734,-1.09423][0.447442,0.659336,-0.604212][0.208126,0.520934,0][0.775094,-0.326734,-1.09423][0.447442,0.659336,-0.604212][0.208126,0.520934,0][0.405707,-0.328426,-1.28353][0.214227,0.67137,-0.709485][0.113474,0.520934,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0.405707,-0.328426,-1.28353][0.214227,0.67137,-0.709485][0.113474,0.520934,0][0,-0.328798,-1.32516][3.11974e-007,0.686666,-0.726973][0.045424,0.520934,0][0,-0.328798,-1.32516][3.11974e-007,0.686666,-0.726973][0.045424,0.520934,0][0,-0.320235,-1.29569][3.41706e-007,0.748475,-0.663162][0.046096,0.53703,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0.356212,0.00637001,-1.12741][0.285207,0.441385,-0.850786][0.131317,0.652178,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][0.759086,-0.318213,-1.06951][0.378844,0.754557,-0.535836][0.222659,0.537174,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0.356212,0.00637001,-1.12741][0.285207,0.441385,-0.850786][0.131317,0.652178,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0,-0.320235,-1.29569][3.41706e-007,0.748475,-0.663162][0.046096,0.53703,0][0,-0.320235,-1.29569][3.41706e-007,0.748475,-0.663162][0.046096,0.53703,0][0,-0.000837807,-1.18476][1.73264e-007,0.363554,-0.931573][0.046177,0.649602,0][0.356212,0.00637001,-1.12741][0.285207,0.441385,-0.850786][0.131317,0.652178,0][0.387723,-0.00611641,1.36349][0.266892,0.0800131,0.960399][0.887703,0.647716,0][-1.26063e-007,-0.00569123,1.41095][0,0.0782557,0.996933][0.960103,0.647867,0][-2.67779e-007,-0.300386,1.42461][3.42596e-007,0.698199,0.715904][0.961003,0.53844,0][-2.67779e-007,-0.300386,1.42461][3.42596e-007,0.698199,0.715904][0.961003,0.53844,0][0.397291,-0.30082,1.37605][0.192648,0.70575,0.681765][0.887697,0.538409,0][0.387723,-0.00611641,1.36349][0.266892,0.0800131,0.960399][0.887703,0.647716,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][0.387723,-0.00611641,1.36349][0.266892,0.0800131,0.960399][0.887703,0.647716,0][0.397291,-0.30082,1.37605][0.192648,0.70575,0.681765][0.887697,0.538409,0][0.397291,-0.30082,1.37605][0.192648,0.70575,0.681765][0.887697,0.538409,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][1.02099,-0.0159636,0.869153][0.837419,0.156463,0.523687][0.719728,0.644196,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][1.04621,-0.301221,0.888796][0.633337,0.666351,0.393522][0.71835,0.538381,0][1.02099,-0.0159636,0.869153][0.837419,0.156463,0.523687][0.719728,0.644196,0][1.20089,-0.0211027,0.471694][0.940283,0.180333,0.288699][0.604634,0.64236,0][1.02099,-0.0159636,0.869153][0.837419,0.156463,0.523687][0.719728,0.644196,0][1.04621,-0.301221,0.888796][0.633337,0.666351,0.393522][0.71835,0.538381,0][1.04621,-0.301221,0.888796][0.633337,0.666351,0.393522][0.71835,0.538381,0][1.23055,-0.315921,0.479132][0.592291,0.780935,0.198323][0.622663,0.53743,0][1.20089,-0.0211027,0.471694][0.940283,0.180333,0.288699][0.604634,0.64236,0][1.00542,-0.00567637,-0.697061][0.718021,0.398175,-0.570879][0.308711,0.647873,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.04621,-0.316303,-0.785952][0.544065,0.728669,-0.415974][0.305111,0.53731,0][1.00542,-0.00567637,-0.697061][0.718021,0.398175,-0.570879][0.308711,0.647873,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][1.00542,-0.00567637,-0.697061][0.718021,0.398175,-0.570879][0.308711,0.647873,0][1.04621,-0.316303,-0.785952][0.544065,0.728669,-0.415974][0.305111,0.53731,0][1.04621,-0.316303,-0.785952][0.544065,0.728669,-0.415974][0.305111,0.53731,0][0.759086,-0.318213,-1.06951][0.378844,0.754557,-0.535836][0.222659,0.537174,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][0.788395,0.76363,-0.133][-0.331802,0.942943,-0.027686][0.648965,0.031783,0][0.601713,0.710126,-0.367336][-0.291576,0.956344,-0.019738][0.588432,0.077991,0][0.601713,0.710126,-0.367336][-0.291576,0.956344,-0.019738][0.588432,0.077991,0][0.163617,0.560188,-0.236956][-0.19793,0.979828,-0.0275788][0.622112,0.186383,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][0.140062,0.560958,-0.691163][-0.179981,0.983479,0.0193906][0.504781,0.192228,0][0.163617,0.560188,-0.236956][-0.19793,0.979828,-0.0275788][0.622112,0.186383,0][0.258774,0.593068,-0.640187][-0.289874,0.956923,0.0164961][0.517949,0.162841,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][0.163617,0.560188,-0.236956][-0.19793,0.979828,-0.0275788][0.622112,0.186383,0][0.140062,0.560958,-0.691163][-0.179981,0.983479,0.0193906][0.504781,0.192228,0][0.140062,0.560958,-0.691163][-0.179981,0.983479,0.0193906][0.504781,0.192228,0][3.2653e-007,0.548831,-0.741531][4.33738e-007,0.999974,0.00724544][0.49177,0.22695,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][0.193497,0.608524,0.675266][-0.171393,0.983085,-0.0645627][0.857757,0.179063,0][2.19507e-007,0.583506,0.671799][4.78642e-007,0.996272,-0.0862719][0.856861,0.227016,0][2.06991e-007,0.642073,1.13441][4.04088e-007,0.994194,-0.107604][0.976363,0.227127,0][2.06991e-007,0.642073,1.13441][4.04088e-007,0.994194,-0.107604][0.976363,0.227127,0][0.298124,0.649169,1.12267][-0.110627,0.991925,-0.0620266][0.97333,0.153186,0][0.193497,0.608524,0.675266][-0.171393,0.983085,-0.0645627][0.857757,0.179063,0][0.550727,0.699008,0.990038][-0.212881,0.977014,0.0112141][0.939069,0.090618,0][0.702001,0.742541,0.753559][-0.318222,0.948011,-0.00314032][0.877981,0.053174,0][0.193497,0.608524,0.675266][-0.171393,0.983085,-0.0645627][0.857757,0.179063,0][0.193497,0.608524,0.675266][-0.171393,0.983085,-0.0645627][0.857757,0.179063,0][0.298124,0.649169,1.12267][-0.110627,0.991925,-0.0620266][0.97333,0.153186,0][0.550727,0.699008,0.990038][-0.212881,0.977014,0.0112141][0.939069,0.090618,0][0.180334,0.587348,0.24833][-0.196053,0.980142,-0.0297618][0.747471,0.182288,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][0.823886,0.782313,0.437464][-0.350653,0.936501,0.00277404][0.796328,0.023014,0][0.823886,0.782313,0.437464][-0.350653,0.936501,0.00277404][0.796328,0.023014,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.704849,0.016444,0][0.180334,0.587348,0.24833][-0.196053,0.980142,-0.0297618][0.747471,0.182288,0][0.767809,0.713093,-0.426345][0.428359,0.702632,-0.568169][0.306858,0.89392,0][0.942867,0.765968,-0.216007][0.604144,0.6483,-0.463375][0.419162,0.912816,0][0.961506,0.654289,-0.247349][0.786463,0.341188,-0.514846][0.412345,0.883733,0][0.961506,0.654289,-0.247349][0.786463,0.341188,-0.514846][0.412345,0.883733,0][0.790876,0.629613,-0.454907][0.632714,0.406469,-0.659133][0.307145,0.874914,0][0.767809,0.713093,-0.426345][0.428359,0.702632,-0.568169][0.306858,0.89392,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.767809,0.713093,-0.426345][0.428359,0.702632,-0.568169][0.306858,0.89392,0][0.790876,0.629613,-0.454907][0.632714,0.406469,-0.659133][0.307145,0.874914,0][0.790876,0.629613,-0.454907][0.632714,0.406469,-0.659133][0.307145,0.874914,0][0.569796,0.588453,-0.663266][0.509353,0.429862,-0.745505][0.224954,0.860204,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.303384,0.579897,-0.816149][0.169652,0.74009,-0.650757][0.14334,0.846318,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.569796,0.588453,-0.663266][0.509353,0.429862,-0.745505][0.224954,0.860204,0][0.569796,0.588453,-0.663266][0.509353,0.429862,-0.745505][0.224954,0.860204,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.303384,0.579897,-0.816149][0.169652,0.74009,-0.650757][0.14334,0.846318,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.266523,0.27629,-0.94409][0.667877,0.398038,-0.628892][0.121998,0.748642,0][0.292201,0.361605,-0.890561][0.668063,0.129486,-0.732752][0.133207,0.779132,0][0.292201,0.361605,-0.890561][0.668063,0.129486,-0.732752][0.133207,0.779132,0][0.378747,0.397432,-0.806556][0.656242,-0.010342,-0.754479][0.166127,0.791937,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.362761,0.567049,1.28196][0.254904,0.235442,0.937865][0.887841,0.852555,0][1.53952e-007,0.565717,1.32463][0,0.241187,0.970479][0.960103,0.852079,0][0,0.403359,1.36505][0,0.175048,0.98456][0.960103,0.794055,0][0,0.403359,1.36505][0,0.175048,0.98456][0.960103,0.794055,0][0.37334,0.404642,1.31998][0.262887,0.172349,0.949308][0.888,0.794513,0][0.362761,0.567049,1.28196][0.254904,0.235442,0.937865][0.887841,0.852555,0][0.703517,0.424923,1.16813][0.630154,0.175608,0.756352][0.812163,0.801762,0][0.674653,0.607751,1.1357][0.622414,0.234287,0.7468][0.813748,0.867101,0][0.362761,0.567049,1.28196][0.254904,0.235442,0.937865][0.887841,0.852555,0][0.362761,0.567049,1.28196][0.254904,0.235442,0.937865][0.887841,0.852555,0][0.37334,0.404642,1.31998][0.262887,0.172349,0.949308][0.888,0.794513,0][0.703517,0.424923,1.16813][0.630154,0.175608,0.756352][0.812163,0.801762,0][0.933413,0.437558,0.828259][0.850884,0.218342,0.477831][0.720435,0.806277,0][0.880986,0.666894,0.79795][0.850927,0.253571,0.460028][0.720763,0.888238,0][0.674653,0.607751,1.1357][0.622414,0.234287,0.7468][0.813748,0.867101,0][0.674653,0.607751,1.1357][0.622414,0.234287,0.7468][0.813748,0.867101,0][0.703517,0.424923,1.16813][0.630154,0.175608,0.756352][0.812163,0.801762,0][0.933413,0.437558,0.828259][0.850884,0.218342,0.477831][0.720435,0.806277,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][0.880986,0.666894,0.79795][0.850927,0.253571,0.460028][0.720763,0.888238,0][0.880986,0.666894,0.79795][0.850927,0.253571,0.460028][0.720763,0.888238,0][0.933413,0.437558,0.828259][0.850884,0.218342,0.477831][0.720435,0.806277,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][1.14678,0.461414,0.0344072][0.961759,0.258855,-0.0895174][0.495884,0.814803,0][1.14678,0.461414,0.0344072][0.961759,0.258855,-0.0895174][0.495884,0.814803,0][1.07226,0.706524,0.0408702][0.944587,0.301964,-0.128739][0.497106,0.902401,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][0.961506,0.654289,-0.247349][0.786463,0.341188,-0.514846][0.412345,0.883733,0][1.07226,0.706524,0.0408702][0.944587,0.301964,-0.128739][0.497106,0.902401,0][1.07226,0.706524,0.0408702][0.944587,0.301964,-0.128739][0.497106,0.902401,0][1.14678,0.461414,0.0344072][0.961759,0.258855,-0.0895174][0.495884,0.814803,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][-3.09665e-007,-0.912723,-1.43618][-3.73148e-007,-0.836829,0.547464][0.130362,0.033398,0][0.414608,-0.912371,-1.39681][-0.114566,-0.855428,0.505091][0.134121,0.073877,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][-1.69867e-007,-0.585748,-1.25184][-2.71326e-007,-0.546378,0.837539][0.151508,0.033729,0][-3.09665e-007,-0.912723,-1.43618][-3.73148e-007,-0.836829,0.547464][0.130362,0.033398,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][0.792025,-0.717188,1.26857][0.00897965,-0.999089,0.0417089][0.382862,0.109921,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][0.356478,-0.54748,1.21991][-0.22799,-0.573469,-0.786864][0.374428,0.067043,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][1.09154,-0.717178,0.929196][-0.0308784,-0.998912,-0.0349599][0.351363,0.138976,0][0.792025,-0.717188,1.26857][0.00897965,-0.999089,0.0417089][0.382862,0.109921,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][0.939356,-0.551139,0.810573][-0.668982,-0.608848,-0.426341][0.337398,0.121758,0][1.09154,-0.717178,0.929196][-0.0308784,-0.998912,-0.0349599][0.351363,0.138976,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.09154,-0.717178,0.929196][-0.0308784,-0.998912,-0.0349599][0.351363,0.138976,0][0.939356,-0.551139,0.810573][-0.668982,-0.608848,-0.426341][0.337398,0.121758,0][0.939356,-0.551139,0.810573][-0.668982,-0.608848,-0.426341][0.337398,0.121758,0][1.10494,-0.547683,0.44245][-0.750806,-0.626113,-0.210409][0.304261,0.137351,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.10494,-0.547683,0.44245][-0.750806,-0.626113,-0.210409][0.304261,0.137351,0][1.16999,-0.55823,0.035569][-0.774542,-0.6323,0.0167868][0.2675,0.142779,0][1.16999,-0.55823,0.035569][-0.774542,-0.6323,0.0167868][0.2675,0.142779,0][1.35744,-0.731261,0.030143][-0.263672,-0.961381,0.078893][0.26755,0.164181,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.10494,-0.556065,-0.373541][-0.752786,-0.609923,0.247602][0.230714,0.137511,0][1.28385,-0.772564,-0.442914][-0.349295,-0.916074,0.196979][0.223442,0.157865,0][1.35744,-0.731261,0.030143][-0.263672,-0.961381,0.078893][0.26755,0.164181,0][1.35744,-0.731261,0.030143][-0.263672,-0.961381,0.078893][0.26755,0.164181,0][1.16999,-0.55823,0.035569][-0.774542,-0.6323,0.0167868][0.2675,0.142779,0][1.10494,-0.556065,-0.373541][-0.752786,-0.609923,0.247602][0.230714,0.137511,0][0.939356,-0.565011,-0.741552][-0.661677,-0.595577,0.45549][0.197504,0.122064,0][1.09154,-0.828246,-0.869067][-0.306511,-0.895327,0.323172][0.18362,0.139342,0][1.28385,-0.772564,-0.442914][-0.349295,-0.916074,0.196979][0.223442,0.157865,0][1.28385,-0.772564,-0.442914][-0.349295,-0.916074,0.196979][0.223442,0.157865,0][1.10494,-0.556065,-0.373541][-0.752786,-0.609923,0.247602][0.230714,0.137511,0][0.939356,-0.565011,-0.741552][-0.661677,-0.595577,0.45549][0.197504,0.122064,0][0.681454,-0.567622,-1.03365][-0.48197,-0.581666,0.655262][0.17112,0.097948,0][0.792025,-0.883305,-1.20593][-0.224068,-0.865032,0.448903][0.151984,0.110426,0][1.09154,-0.828246,-0.869067][-0.306511,-0.895327,0.323172][0.18362,0.139342,0][1.09154,-0.828246,-0.869067][-0.306511,-0.895327,0.323172][0.18362,0.139342,0][0.939356,-0.565011,-0.741552][-0.661677,-0.595577,0.45549][0.197504,0.122064,0][0.681454,-0.567622,-1.03365][-0.48197,-0.581666,0.655262][0.17112,0.097948,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][0.414608,-0.912371,-1.39681][-0.114566,-0.855428,0.505091][0.134121,0.073877,0][0.792025,-0.883305,-1.20593][-0.224068,-0.865032,0.448903][0.151984,0.110426,0][0.792025,-0.883305,-1.20593][-0.224068,-0.865032,0.448903][0.151984,0.110426,0][0.681454,-0.567622,-1.03365][-0.48197,-0.581666,0.655262][0.17112,0.097948,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][0.57699,-0.889461,-1.95562][0.164933,0.764239,-0.623487][0.11987,0.326643,0][-2.48244e-007,-0.897365,-2.05499][3.48292e-007,0.759449,-0.650567][0.045197,0.326999,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][0.496225,-0.78795,-1.67069][0.0760479,0.936919,-0.341173][0.117371,0.371416,0][0.57699,-0.889461,-1.95562][0.164933,0.764239,-0.623487][0.11987,0.326643,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][0.57699,-0.889461,-1.95562][0.164933,0.764239,-0.623487][0.11987,0.326643,0][0.496225,-0.78795,-1.67069][0.0760479,0.936919,-0.341173][0.117371,0.371416,0][0.496225,-0.78795,-1.67069][0.0760479,0.936919,-0.341173][0.117371,0.371416,0][0.947269,-0.758089,-1.44855][0.112047,0.963235,-0.244181][0.208953,0.370468,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][1.50547,-0.758417,-1.21366][0.34696,0.890355,-0.294765][0.291929,0.325103,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][0.947269,-0.758089,-1.44855][0.112047,0.963235,-0.244181][0.208953,0.370468,0][0.947269,-0.758089,-1.44855][0.112047,0.963235,-0.244181][0.208953,0.370468,0][1.32204,-0.738771,-1.03811][0.0969245,0.985762,-0.137399][0.291925,0.367597,0][1.50547,-0.758417,-1.21366][0.34696,0.890355,-0.294765][0.291929,0.325103,0][1.71937,-0.696388,-0.622723][0.329404,0.918116,-0.220353][0.387869,0.325023,0][1.50547,-0.758417,-1.21366][0.34696,0.890355,-0.294765][0.291929,0.325103,0][1.32204,-0.738771,-1.03811][0.0969245,0.985762,-0.137399][0.291925,0.367597,0][1.32204,-0.738771,-1.03811][0.0969245,0.985762,-0.137399][0.291925,0.367597,0][1.49459,-0.68115,-0.531945][0.0471668,0.989448,-0.136996][0.38786,0.369055,0][1.71937,-0.696388,-0.622723][0.329404,0.918116,-0.220353][0.387869,0.325023,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.71937,-0.696388,-0.622723][0.329404,0.918116,-0.220353][0.387869,0.325023,0][1.49459,-0.68115,-0.531945][0.0471668,0.989448,-0.136996][0.38786,0.369055,0][1.49459,-0.68115,-0.531945][0.0471668,0.989448,-0.136996][0.38786,0.369055,0][1.56176,-0.632847,0.027514][-0.258313,0.961747,-0.0911953][0.504639,0.371214,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.49792,-0.533546,0.564781][-0.494781,0.819549,-0.289018][0.623028,0.370987,0][1.65825,-0.374011,0.66569][-0.113148,0.947248,-0.299866][0.623033,0.326223,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.56176,-0.632847,0.027514][-0.258313,0.961747,-0.0911953][0.504639,0.371214,0][1.49792,-0.533546,0.564781][-0.494781,0.819549,-0.289018][0.623028,0.370987,0][1.65825,-0.374011,0.66569][-0.113148,0.947248,-0.299866][0.623033,0.326223,0][1.49792,-0.533546,0.564781][-0.494781,0.819549,-0.289018][0.623028,0.370987,0][1.26598,-0.451562,1.05627][-0.560605,0.695834,-0.44893][0.720577,0.37184,0][1.26598,-0.451562,1.05627][-0.560605,0.695834,-0.44893][0.720577,0.37184,0][1.41955,-0.21751,1.16868][-0.166753,0.936193,-0.309413][0.720573,0.32611,0][1.65825,-0.374011,0.66569][-0.113148,0.947248,-0.299866][0.623033,0.326223,0][1.41955,-0.21751,1.16868][-0.166753,0.936193,-0.309413][0.720573,0.32611,0][1.26598,-0.451562,1.05627][-0.560605,0.695834,-0.44893][0.720577,0.37184,0][0.94727,-0.433412,1.4591][-0.426735,0.625385,-0.653292][0.809374,0.372535,0][0.94727,-0.433412,1.4591][-0.426735,0.625385,-0.653292][0.809374,0.372535,0][1.10089,-0.155304,1.54287][-0.16139,0.894252,-0.417452][0.809375,0.327138,0][1.41955,-0.21751,1.16868][-0.166753,0.936193,-0.309413][0.720573,0.32611,0][0.57699,-0.0686596,1.78768][-0.0836992,0.814042,-0.574743][0.913954,0.328011,0][1.10089,-0.155304,1.54287][-0.16139,0.894252,-0.417452][0.809375,0.327138,0][0.94727,-0.433412,1.4591][-0.426735,0.625385,-0.653292][0.809374,0.372535,0][0.94727,-0.433412,1.4591][-0.426735,0.625385,-0.653292][0.809374,0.372535,0][0.496225,-0.38796,1.67504][-0.194908,0.532098,-0.823943][0.913484,0.373909,0][0.57699,-0.0686596,1.78768][-0.0836992,0.814042,-0.574743][0.913954,0.328011,0][0.57699,-0.0686596,1.78768][-0.0836992,0.814042,-0.574743][0.913954,0.328011,0][0.496225,-0.38796,1.67504][-0.194908,0.532098,-0.823943][0.913484,0.373909,0][-3.06327e-007,-0.323828,1.73769][2.34301e-007,0.48672,-0.873558][0.971591,0.376293,0][-3.06327e-007,-0.323828,1.73769][2.34301e-007,0.48672,-0.873558][0.971591,0.376293,0][-1.81671e-007,-0.0392693,1.86389][4.12382e-007,0.841837,-0.539732][0.971447,0.329715,0][0.57699,-0.0686596,1.78768][-0.0836992,0.814042,-0.574743][0.913954,0.328011,0][1.27922,-0.313167,0.493701][0.682731,0.696261,0.221582][0.622866,0.52293,0][1.36029,-0.323291,0.0239871][0.823183,0.567496,-0.0178298][0.506408,0.523675,0][1.34213,-0.316286,0.0298991][0.714138,0.699689,-0.0210278][0.505488,0.536958,0][1.34213,-0.316286,0.0298991][0.714138,0.699689,-0.0210278][0.505488,0.536958,0][1.23055,-0.315921,0.479132][0.592291,0.780935,0.198323][0.622663,0.53743,0][1.27922,-0.313167,0.493701][0.682731,0.696261,0.221582][0.622866,0.52293,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.34213,-0.316286,0.0298991][0.714138,0.699689,-0.0210278][0.505488,0.536958,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.34213,-0.316286,0.0298991][0.714138,0.699689,-0.0210278][0.505488,0.536958,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.20089,-0.0211027,0.471694][0.940283,0.180333,0.288699][0.604634,0.64236,0][1.20089,-0.0211027,0.471694][0.940283,0.180333,0.288699][0.604634,0.64236,0][1.23055,-0.315921,0.479132][0.592291,0.780935,0.198323][0.622663,0.53743,0][1.34213,-0.316286,0.0298991][0.714138,0.699689,-0.0210278][0.505488,0.536958,0][1.56176,-0.632847,0.027514][-0.258313,0.961747,-0.0911953][0.504639,0.371214,0][1.42913,-0.647023,0.030102][-0.0603532,0.997916,-0.0228221][0.506976,0.417038,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.49792,-0.533546,0.564781][-0.494781,0.819549,-0.289018][0.623028,0.370987,0][1.56176,-0.632847,0.027514][-0.258313,0.961747,-0.0911953][0.504639,0.371214,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][-1.95161e-007,-0.67784,-1.46482][4.0879e-007,0.940736,-0.339138][0.045376,0.417384,0][0.41833,-0.676217,-1.41866][0.0896029,0.936254,-0.339706][0.113491,0.418482,0][0.41833,-0.676217,-1.41866][0.0896029,0.936254,-0.339706][0.113491,0.418482,0][0.496225,-0.78795,-1.67069][0.0760479,0.936919,-0.341173][0.117371,0.371416,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][0.947269,-0.758089,-1.44855][0.112047,0.963235,-0.244181][0.208953,0.370468,0][0.496225,-0.78795,-1.67069][0.0760479,0.936919,-0.341173][0.117371,0.371416,0][0.41833,-0.676217,-1.41866][0.0896029,0.936254,-0.339706][0.113491,0.418482,0][0.41833,-0.676217,-1.41866][0.0896029,0.936254,-0.339706][0.113491,0.418482,0][0.799104,-0.670185,-1.2226][0.159537,0.959552,-0.231966][0.20817,0.417868,0][0.947269,-0.758089,-1.44855][0.112047,0.963235,-0.244181][0.208953,0.370468,0][1.32204,-0.738771,-1.03811][0.0969245,0.985762,-0.137399][0.291925,0.367597,0][0.947269,-0.758089,-1.44855][0.112047,0.963235,-0.244181][0.208953,0.370468,0][0.799104,-0.670185,-1.2226][0.159537,0.959552,-0.231966][0.20817,0.417868,0][0.799104,-0.670185,-1.2226][0.159537,0.959552,-0.231966][0.20817,0.417868,0][1.10114,-0.664549,-0.88099][0.173195,0.972845,-0.153542][0.29192,0.41778,0][1.32204,-0.738771,-1.03811][0.0969245,0.985762,-0.137399][0.291925,0.367597,0][1.26598,-0.451562,1.05627][-0.560605,0.695834,-0.44893][0.720577,0.37184,0][1.11035,-0.623882,0.944046][-0.220611,0.957878,-0.183851][0.720583,0.416319,0][0.805824,-0.622292,1.2883][-0.171671,0.951054,-0.256953][0.809373,0.415134,0][0.805824,-0.622292,1.2883][-0.171671,0.951054,-0.256953][0.809373,0.415134,0][0.94727,-0.433412,1.4591][-0.426735,0.625385,-0.653292][0.809374,0.372535,0][1.26598,-0.451562,1.05627][-0.560605,0.695834,-0.44893][0.720577,0.37184,0][0.496225,-0.38796,1.67504][-0.194908,0.532098,-0.823943][0.913484,0.373909,0][0.94727,-0.433412,1.4591][-0.426735,0.625385,-0.653292][0.809374,0.372535,0][0.805824,-0.622292,1.2883][-0.171671,0.951054,-0.256953][0.809373,0.415134,0][0.805824,-0.622292,1.2883][-0.171671,0.951054,-0.256953][0.809373,0.415134,0][0.421863,-0.620654,1.46244][-0.0888576,0.940781,-0.327164][0.913051,0.416465,0][0.496225,-0.38796,1.67504][-0.194908,0.532098,-0.823943][0.913484,0.373909,0][0.496225,-0.38796,1.67504][-0.194908,0.532098,-0.823943][0.913484,0.373909,0][0.421863,-0.620654,1.46244][-0.0888576,0.940781,-0.327164][0.913051,0.416465,0][-4.27596e-007,-0.61901,1.51481][4.01754e-007,0.916047,-0.401071][0.971705,0.41767,0][-4.27596e-007,-0.61901,1.51481][4.01754e-007,0.916047,-0.401071][0.971705,0.41767,0][-3.06327e-007,-0.323828,1.73769][2.34301e-007,0.48672,-0.873558][0.971591,0.376293,0][0.496225,-0.38796,1.67504][-0.194908,0.532098,-0.823943][0.913484,0.373909,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.28028,-0.628834,0.501061][0.64343,0.739138,0.199179][0.622967,0.428731,0][1.06824,-0.613287,0.909145][0.623443,0.661486,0.416839][0.72059,0.430116,0][1.06824,-0.613287,0.909145][0.623443,0.661486,0.416839][0.72059,0.430116,0][1.11035,-0.623882,0.944046][-0.220611,0.957878,-0.183851][0.720583,0.416319,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.42913,-0.647023,0.030102][-0.0603532,0.997916,-0.0228221][0.506976,0.417038,0][1.37948,-0.647023,0.030102][0.629402,0.776921,-0.0157228][0.506828,0.429766,0][1.37948,-0.647023,0.030102][0.629402,0.776921,-0.0157228][0.506828,0.429766,0][1.28028,-0.628834,0.501061][0.64343,0.739138,0.199179][0.622967,0.428731,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.32512,-0.651316,-0.462713][0.0694968,0.995845,-0.0588404][0.387885,0.420196,0][1.10114,-0.664549,-0.88099][0.173195,0.972845,-0.153542][0.29192,0.41778,0][1.06824,-0.655784,-0.853873][0.582983,0.692815,-0.424428][0.291918,0.429017,0][1.06824,-0.655784,-0.853873][0.582983,0.692815,-0.424428][0.291918,0.429017,0][1.28028,-0.650662,-0.445207][0.634237,0.736102,-0.236424][0.387882,0.429184,0][1.32512,-0.651316,-0.462713][0.0694968,0.995845,-0.0588404][0.387885,0.420196,0][1.32512,-0.651316,-0.462713][0.0694968,0.995845,-0.0588404][0.387885,0.420196,0][1.42913,-0.647023,0.030102][-0.0603532,0.997916,-0.0228221][0.506976,0.417038,0][1.56176,-0.632847,0.027514][-0.258313,0.961747,-0.0911953][0.504639,0.371214,0][1.56176,-0.632847,0.027514][-0.258313,0.961747,-0.0911953][0.504639,0.371214,0][1.49459,-0.68115,-0.531945][0.0471668,0.989448,-0.136996][0.38786,0.369055,0][1.32512,-0.651316,-0.462713][0.0694968,0.995845,-0.0588404][0.387885,0.420196,0][0.491039,-0.491136,1.69358][0.189181,-0.599963,0.777338][0.433118,0.083603,0][0.589458,-0.123165,1.84729][0.286631,-0.0525619,0.956598][0.461618,0.089223,0][-2.14646e-007,-0.0970813,1.92574][0,-0.0338154,0.999428][0.471493,0.033729,0][-2.14646e-007,-0.0970813,1.92574][0,-0.0338154,0.999428][0.471493,0.033729,0][-3.82071e-007,-0.479491,1.75505][-2.79219e-007,-0.589156,0.80802][0.439249,0.032757,0][0.491039,-0.491136,1.69358][0.189181,-0.599963,0.777338][0.433118,0.083603,0][0.937414,-0.529113,1.48242][0.399731,-0.65545,0.640781][0.412594,0.129512,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.444827,0.148688,0][0.589458,-0.123165,1.84729][0.286631,-0.0525619,0.956598][0.461618,0.089223,0][0.589458,-0.123165,1.84729][0.286631,-0.0525619,0.956598][0.461618,0.089223,0][0.491039,-0.491136,1.69358][0.189181,-0.599963,0.777338][0.433118,0.083603,0][0.937414,-0.529113,1.48242][0.399731,-0.65545,0.640781][0.412594,0.129512,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.48044,-0.291836,1.17237][0.808413,-0.197368,0.554539][0.394684,0.202347,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.444827,0.148688,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.444827,0.148688,0][0.937414,-0.529113,1.48242][0.399731,-0.65545,0.640781][0.412594,0.129512,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.73962,-0.439892,0.655097][0.950031,-0.118763,0.288679][0.334299,0.225713,0][1.48044,-0.291836,1.17237][0.808413,-0.197368,0.554539][0.394684,0.202347,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.58629,-0.597603,0.596417][0.460296,-0.843063,0.278159][0.322969,0.189989,0][1.73962,-0.439892,0.655097][0.950031,-0.118763,0.288679][0.334299,0.225713,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.267036,0.239652,0][1.73962,-0.439892,0.655097][0.950031,-0.118763,0.288679][0.334299,0.225713,0][1.58629,-0.597603,0.596417][0.460296,-0.843063,0.278159][0.322969,0.189989,0][1.58629,-0.597603,0.596417][0.460296,-0.843063,0.278159][0.322969,0.189989,0][1.681,-0.675451,0.028779][0.271522,-0.952978,0.134571][0.267611,0.197218,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.267036,0.239652,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.76771,-0.774269,-0.637966][0.781352,-0.616468,-0.097243][0.197772,0.226018,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.267036,0.239652,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.267036,0.239652,0][1.681,-0.675451,0.028779][0.271522,-0.952978,0.134571][0.267611,0.197218,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.32109,-0.841778,-1.065][0.0648825,-0.99173,0.11073][0.162219,0.169711,0][1.53296,-0.838168,-1.22754][0.650296,-0.704048,-0.285362][0.140942,0.197038,0][1.76771,-0.774269,-0.637966][0.781352,-0.616468,-0.097243][0.197772,0.226018,0][1.76771,-0.774269,-0.637966][0.781352,-0.616468,-0.097243][0.197772,0.226018,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.32109,-0.841778,-1.065][0.0648825,-0.99173,0.11073][0.162219,0.169711,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][1.13495,-0.918382,-1.68613][0.48508,-0.745553,-0.456998][0.091249,0.148424,0][1.53296,-0.838168,-1.22754][0.650296,-0.704048,-0.285362][0.140942,0.197038,0][1.53296,-0.838168,-1.22754][0.650296,-0.704048,-0.285362][0.140942,0.197038,0][1.32109,-0.841778,-1.065][0.0648825,-0.99173,0.11073][0.162219,0.169711,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.063505,0.107014,0][1.13495,-0.918382,-1.68613][0.48508,-0.745553,-0.456998][0.091249,0.148424,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][0.49104,-0.956381,-1.66316][0.00111315,-0.992913,0.118837][0.099134,0.084243,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.063505,0.107014,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.063505,0.107014,0][0.49104,-0.956381,-1.66316][0.00111315,-0.992913,0.118837][0.099134,0.084243,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][-2.91647e-007,-0.989764,-2.06249][-4.19245e-007,-0.862658,-0.505788][0.049401,0.031072,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.063505,0.107014,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][0.163617,0.560188,-0.236956][-0.19793,0.979828,-0.0275788][0.622112,0.186383,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][2.65827e-007,0.560426,0.0160691][3.76922e-007,0.999,-0.0447062][0.687473,0.226972,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][0.180833,0.436038,-0.937216][0.252656,0.466912,-0.847442][0.098815,0.805734,0][0.126965,0.324207,-1.00708][0.212482,0.444987,-0.869964][0.08118,0.765767,0][0.126965,0.324207,-1.00708][0.212482,0.444987,-0.869964][0.08118,0.765767,0][2.44075e-007,0.320048,-1.04623][2.42099e-007,0.427924,-0.903815][0.046177,0.76428,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][0.356212,0.00637001,-1.12741][0.285207,0.441385,-0.850786][0.131317,0.652178,0][0,-0.000837807,-1.18476][1.73264e-007,0.363554,-0.931573][0.046177,0.649602,0][0,-0.000837807,-1.18476][1.73264e-007,0.363554,-0.931573][0.046177,0.649602,0][1.61628e-007,0.132282,-1.12729][2.14034e-007,0.415122,-0.909766][0.046177,0.697176,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][0.378747,0.397432,-0.806556][0.656242,-0.010342,-0.754479][0.166127,0.791937,0][0.555984,0.449002,-0.653911][0.671623,-0.0904006,-0.735357][0.224896,0.810367,0][0.572981,0.281684,-0.688148][0.542835,0.415613,-0.729792][0.224814,0.75057,0][0.572981,0.281684,-0.688148][0.542835,0.415613,-0.729792][0.224814,0.75057,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.378747,0.397432,-0.806556][0.656242,-0.010342,-0.754479][0.166127,0.791937,0][0.555984,0.449002,-0.653911][0.671623,-0.0904006,-0.735357][0.224896,0.810367,0][0.762701,0.499891,-0.471397][0.671489,-0.0816205,-0.736506][0.307877,0.828554,0][0.783955,0.321947,-0.498098][0.560174,0.400223,-0.725277][0.30811,0.764959,0][0.783955,0.321947,-0.498098][0.560174,0.400223,-0.725277][0.30811,0.764959,0][0.572981,0.281684,-0.688148][0.542835,0.415613,-0.729792][0.224814,0.75057,0][0.555984,0.449002,-0.653911][0.671623,-0.0904006,-0.735357][0.224896,0.810367,0][0.762701,0.499891,-0.471397][0.671489,-0.0816205,-0.736506][0.307877,0.828554,0][0.883103,0.516508,-0.361904][0.661921,0.0844491,-0.744801][0.372753,0.834492,0][0.945696,0.381638,-0.354573][0.5244,0.360338,-0.771467][0.376825,0.793634,0][0.945696,0.381638,-0.354573][0.5244,0.360338,-0.771467][0.376825,0.793634,0][0.783955,0.321947,-0.498098][0.560174,0.400223,-0.725277][0.30811,0.764959,0][0.762701,0.499891,-0.471397][0.671489,-0.0816205,-0.736506][0.307877,0.828554,0][0.702001,0.742541,0.753559][-0.318222,0.948011,-0.00314032][0.877981,0.053174,0][0.823886,0.782313,0.437464][-0.350653,0.936501,0.00277404][0.796328,0.023014,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][0.193497,0.608524,0.675266][-0.171393,0.983085,-0.0645627][0.857757,0.179063,0][0.702001,0.742541,0.753559][-0.318222,0.948011,-0.00314032][0.877981,0.053174,0][2.19507e-007,0.583506,0.671799][4.78642e-007,0.996272,-0.0862719][0.856861,0.227016,0][0.193497,0.608524,0.675266][-0.171393,0.983085,-0.0645627][0.857757,0.179063,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][2.35262e-007,0.576585,0.453827][4.95509e-007,0.999578,-0.0290418][0.800555,0.227003,0][2.19507e-007,0.583506,0.671799][4.78642e-007,0.996272,-0.0862719][0.856861,0.227016,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.704849,0.016444,0][0.788395,0.76363,-0.133][-0.331802,0.942943,-0.027686][0.648965,0.031783,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][0.180334,0.587348,0.24833][-0.196053,0.980142,-0.0297618][0.747471,0.182288,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.704849,0.016444,0][0.180334,0.587348,0.24833][-0.196053,0.980142,-0.0297618][0.747471,0.182288,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][2.65827e-007,0.560426,0.0160691][3.76922e-007,0.999,-0.0447062][0.687473,0.226972,0][2.65827e-007,0.560426,0.0160691][3.76922e-007,0.999,-0.0447062][0.687473,0.226972,0][2.49967e-007,0.571379,0.257224][4.90324e-007,0.999334,-0.0364884][0.749768,0.226993,0][0.180334,0.587348,0.24833][-0.196053,0.980142,-0.0297618][0.747471,0.182288,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][1.10197,0.16344,-0.383777][0.743109,0.427418,-0.514881][0.388417,0.708312,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][1.00542,-0.00567637,-0.697061][0.718021,0.398175,-0.570879][0.308711,0.647873,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][1.10197,0.16344,-0.383777][0.743109,0.427418,-0.514881][0.388417,0.708312,0][1.05003,0.445643,-0.243942][0.737868,0.352026,-0.575872][0.414971,0.804529,0][1.05003,0.445643,-0.243942][0.737868,0.352026,-0.575872][0.414971,0.804529,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][0.711746,-0.0168912,-0.948529][0.420755,0.680747,-0.599624][0.224421,0.643865,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][1.00542,-0.00567637,-0.697061][0.718021,0.398175,-0.570879][0.308711,0.647873,0][1.00542,-0.00567637,-0.697061][0.718021,0.398175,-0.570879][0.308711,0.647873,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][0.711746,-0.0168912,-0.948529][0.420755,0.680747,-0.599624][0.224421,0.643865,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.711746,-0.0168912,-0.948529][0.420755,0.680747,-0.599624][0.224421,0.643865,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][0.356212,0.00637001,-1.12741][0.285207,0.441385,-0.850786][0.131317,0.652178,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][0.242697,0.173053,-1.06097][0.398461,0.540581,-0.740946][0.108695,0.711747,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.356212,0.00637001,-1.12741][0.285207,0.441385,-0.850786][0.131317,0.652178,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][0.180833,0.436038,-0.937216][0.252656,0.466912,-0.847442][0.098815,0.805734,0][0.210948,0.419694,-0.937207][0.368153,0.39759,-0.840468][0.107202,0.799893,0][0.165042,0.316492,-1.00231][0.313994,0.454592,-0.833519][0.091511,0.76301,0][0.165042,0.316492,-1.00231][0.313994,0.454592,-0.833519][0.091511,0.76301,0][0.126965,0.324207,-1.00708][0.212482,0.444987,-0.869964][0.08118,0.765767,0][0.180833,0.436038,-0.937216][0.252656,0.466912,-0.847442][0.098815,0.805734,0][0.576397,0.559414,-0.675105][0.595818,0.17434,-0.783969][0.224931,0.849826,0][0.340709,0.48659,-0.844386][0.499852,0.269225,-0.823205][0.151121,0.8238,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.569796,0.588453,-0.663266][0.509353,0.429862,-0.745505][0.224954,0.860204,0][0.576397,0.559414,-0.675105][0.595818,0.17434,-0.783969][0.224931,0.849826,0][0.798896,0.600146,-0.465418][0.694476,0.187624,-0.694623][0.307251,0.864383,0][0.576397,0.559414,-0.675105][0.595818,0.17434,-0.783969][0.224931,0.849826,0][0.569796,0.588453,-0.663266][0.509353,0.429862,-0.745505][0.224954,0.860204,0][0.569796,0.588453,-0.663266][0.509353,0.429862,-0.745505][0.224954,0.860204,0][0.790876,0.629613,-0.454907][0.632714,0.406469,-0.659133][0.307145,0.874914,0][0.798896,0.600146,-0.465418][0.694476,0.187624,-0.694623][0.307251,0.864383,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][1.05003,0.445643,-0.243942][0.737868,0.352026,-0.575872][0.414971,0.804529,0][0.95447,0.622986,-0.278692][0.725754,0.331199,-0.602983][0.403198,0.872546,0][0.95447,0.622986,-0.278692][0.725754,0.331199,-0.602983][0.403198,0.872546,0][0.961506,0.654289,-0.247349][0.786463,0.341188,-0.514846][0.412345,0.883733,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][0.95447,0.622986,-0.278692][0.725754,0.331199,-0.602983][0.403198,0.872546,0][0.798896,0.600146,-0.465418][0.694476,0.187624,-0.694623][0.307251,0.864383,0][0.790876,0.629613,-0.454907][0.632714,0.406469,-0.659133][0.307145,0.874914,0][0.790876,0.629613,-0.454907][0.632714,0.406469,-0.659133][0.307145,0.874914,0][0.961506,0.654289,-0.247349][0.786463,0.341188,-0.514846][0.412345,0.883733,0][0.95447,0.622986,-0.278692][0.725754,0.331199,-0.602983][0.403198,0.872546,0][0.165042,0.316492,-1.00231][0.313994,0.454592,-0.833519][0.091511,0.76301,0][0.242697,0.173053,-1.06097][0.398461,0.540581,-0.740946][0.108695,0.711747,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][0.126965,0.324207,-1.00708][0.212482,0.444987,-0.869964][0.08118,0.765767,0][0.165042,0.316492,-1.00231][0.313994,0.454592,-0.833519][0.091511,0.76301,0][0.126965,0.324207,-1.00708][0.212482,0.444987,-0.869964][0.08118,0.765767,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][1.61628e-007,0.132282,-1.12729][2.14034e-007,0.415122,-0.909766][0.046177,0.697176,0][1.61628e-007,0.132282,-1.12729][2.14034e-007,0.415122,-0.909766][0.046177,0.697176,0][2.44075e-007,0.320048,-1.04623][2.42099e-007,0.427924,-0.903815][0.046177,0.76428,0][0.126965,0.324207,-1.00708][0.212482,0.444987,-0.869964][0.08118,0.765767,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.340709,0.48659,-0.844386][0.499852,0.269225,-0.823205][0.151121,0.8238,0][0.210948,0.419694,-0.937207][0.368153,0.39759,-0.840468][0.107202,0.799893,0][0.210948,0.419694,-0.937207][0.368153,0.39759,-0.840468][0.107202,0.799893,0][0.180833,0.436038,-0.937216][0.252656,0.466912,-0.847442][0.098815,0.805734,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][0.180833,0.436038,-0.937216][0.252656,0.466912,-0.847442][0.098815,0.805734,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][3.29103e-007,0.517404,-0.942382][4.03419e-007,0.718743,-0.695276][0.046177,0.823984,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][1.86438e-007,0.630872,1.30841][2.85123e-007,0.661243,0.750171][0.960103,0.864535,0][1.53952e-007,0.565717,1.32463][0,0.241187,0.970479][0.960103,0.852079,0][1.53952e-007,0.565717,1.32463][0,0.241187,0.970479][0.960103,0.852079,0][0.362761,0.567049,1.28196][0.254904,0.235442,0.937865][0.887841,0.852555,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][0.674653,0.607751,1.1357][0.622414,0.234287,0.7468][0.813748,0.867101,0][0.66307,0.681122,1.12268][0.463178,0.608976,0.643905][0.814415,0.882494,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][0.362761,0.567049,1.28196][0.254904,0.235442,0.937865][0.887841,0.852555,0][0.674653,0.607751,1.1357][0.622414,0.234287,0.7468][0.813748,0.867101,0][0.880986,0.666894,0.79795][0.850927,0.253571,0.460028][0.720763,0.888238,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.66307,0.681122,1.12268][0.463178,0.608976,0.643905][0.814415,0.882494,0][0.66307,0.681122,1.12268][0.463178,0.608976,0.643905][0.814415,0.882494,0][0.674653,0.607751,1.1357][0.622414,0.234287,0.7468][0.813748,0.867101,0][0.880986,0.666894,0.79795][0.850927,0.253571,0.460028][0.720763,0.888238,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][0.999599,0.804655,0.435201][0.700725,0.681393,0.211394][0.610419,0.925504,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.880986,0.666894,0.79795][0.850927,0.253571,0.460028][0.720763,0.888238,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][1.04236,0.80489,0.0434642][0.723668,0.676751,-0.135324][0.50229,0.926726,0][0.999599,0.804655,0.435201][0.700725,0.681393,0.211394][0.610419,0.925504,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][1.07226,0.706524,0.0408702][0.944587,0.301964,-0.128739][0.497106,0.902401,0][1.04236,0.80489,0.0434642][0.723668,0.676751,-0.135324][0.50229,0.926726,0][0.942867,0.765968,-0.216007][0.604144,0.6483,-0.463375][0.419162,0.912816,0][1.04236,0.80489,0.0434642][0.723668,0.676751,-0.135324][0.50229,0.926726,0][1.07226,0.706524,0.0408702][0.944587,0.301964,-0.128739][0.497106,0.902401,0][1.07226,0.706524,0.0408702][0.944587,0.301964,-0.128739][0.497106,0.902401,0][0.961506,0.654289,-0.247349][0.786463,0.341188,-0.514846][0.412345,0.883733,0][0.942867,0.765968,-0.216007][0.604144,0.6483,-0.463375][0.419162,0.912816,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][0.303384,0.579897,-0.816149][0.169652,0.74009,-0.650757][0.14334,0.846318,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.180833,0.436038,-0.937216][0.252656,0.466912,-0.847442][0.098815,0.805734,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][0.163617,0.560188,-0.236956][-0.19793,0.979828,-0.0275788][0.622112,0.186383,0][0.601713,0.710126,-0.367336][-0.291576,0.956344,-0.019738][0.588432,0.077991,0][0.445699,0.656427,-0.514359][-0.301001,0.953122,-0.0309438][0.550453,0.116591,0][0.445699,0.656427,-0.514359][-0.301001,0.953122,-0.0309438][0.550453,0.116591,0][0.258774,0.593068,-0.640187][-0.289874,0.956923,0.0164961][0.517949,0.162841,0][0.163617,0.560188,-0.236956][-0.19793,0.979828,-0.0275788][0.622112,0.186383,0][0.333722,0.657891,1.20607][-0.036171,0.980434,0.193495][0.889346,0.870651,0][2.03953e-007,0.654293,1.23581][4.28964e-007,0.993915,0.110151][0.960103,0.869366,0][1.86438e-007,0.630872,1.30841][2.85123e-007,0.661243,0.750171][0.960103,0.864535,0][1.86438e-007,0.630872,1.30841][2.85123e-007,0.661243,0.750171][0.960103,0.864535,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][0.333722,0.657891,1.20607][-0.036171,0.980434,0.193495][0.889346,0.870651,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.333722,0.657891,1.20607][-0.036171,0.980434,0.193495][0.889346,0.870651,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][0.66307,0.681122,1.12268][0.463178,0.608976,0.643905][0.814415,0.882494,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.792197,0.77945,0.769662][-0.071648,0.986339,0.148329][0.722039,0.913866,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.66307,0.681122,1.12268][0.463178,0.608976,0.643905][0.814415,0.882494,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.923251,0.825983,0.434919][-0.037246,0.995943,0.0819218][0.610793,0.930941,0][0.792197,0.77945,0.769662][-0.071648,0.986339,0.148329][0.722039,0.913866,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.999599,0.804655,0.435201][0.700725,0.681393,0.211394][0.610419,0.925504,0][0.923251,0.825983,0.434919][-0.037246,0.995943,0.0819218][0.610793,0.930941,0][0.958798,0.83246,0.0597722][0.0456166,0.996747,-0.0664451][0.503377,0.93304,0][0.923251,0.825983,0.434919][-0.037246,0.995943,0.0819218][0.610793,0.930941,0][0.999599,0.804655,0.435201][0.700725,0.681393,0.211394][0.610419,0.925504,0][0.999599,0.804655,0.435201][0.700725,0.681393,0.211394][0.610419,0.925504,0][1.04236,0.80489,0.0434642][0.723668,0.676751,-0.135324][0.50229,0.926726,0][0.958798,0.83246,0.0597722][0.0456166,0.996747,-0.0664451][0.503377,0.93304,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.958798,0.83246,0.0597722][0.0456166,0.996747,-0.0664451][0.503377,0.93304,0][1.04236,0.80489,0.0434642][0.723668,0.676751,-0.135324][0.50229,0.926726,0][1.04236,0.80489,0.0434642][0.723668,0.676751,-0.135324][0.50229,0.926726,0][0.942867,0.765968,-0.216007][0.604144,0.6483,-0.463375][0.419162,0.912816,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.767809,0.713093,-0.426345][0.428359,0.702632,-0.568169][0.306858,0.89392,0][0.696287,0.736347,-0.394979][-0.0784251,0.973963,-0.212709][0.307196,0.89869,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.942867,0.765968,-0.216007][0.604144,0.6483,-0.463375][0.419162,0.912816,0][0.767809,0.713093,-0.426345][0.428359,0.702632,-0.568169][0.306858,0.89392,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.507955,0.670568,-0.581313][-0.140712,0.967292,-0.211062][0.224977,0.875182,0][0.696287,0.736347,-0.394979][-0.0784251,0.973963,-0.212709][0.307196,0.89869,0][0.696287,0.736347,-0.394979][-0.0784251,0.973963,-0.212709][0.307196,0.89869,0][0.767809,0.713093,-0.426345][0.428359,0.702632,-0.568169][0.306858,0.89392,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.279999,0.602958,-0.741726][-0.176881,0.971474,-0.157958][0.144067,0.85102,0][0.507955,0.670568,-0.581313][-0.140712,0.967292,-0.211062][0.224977,0.875182,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.303384,0.579897,-0.816149][0.169652,0.74009,-0.650757][0.14334,0.846318,0][0.279999,0.602958,-0.741726][-0.176881,0.971474,-0.157958][0.144067,0.85102,0][0.139753,0.564494,-0.80389][-0.112015,0.974367,-0.195095][0.093283,0.837273,0][0.279999,0.602958,-0.741726][-0.176881,0.971474,-0.157958][0.144067,0.85102,0][0.303384,0.579897,-0.816149][0.169652,0.74009,-0.650757][0.14334,0.846318,0][0.303384,0.579897,-0.816149][0.169652,0.74009,-0.650757][0.14334,0.846318,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][0.139753,0.564494,-0.80389][-0.112015,0.974367,-0.195095][0.093283,0.837273,0][3.36332e-007,0.548768,-0.853997][4.85551e-007,0.975208,-0.221289][0.046177,0.831653,0][0.139753,0.564494,-0.80389][-0.112015,0.974367,-0.195095][0.093283,0.837273,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][3.29103e-007,0.517404,-0.942382][4.03419e-007,0.718743,-0.695276][0.046177,0.823984,0][3.36332e-007,0.548768,-0.853997][4.85551e-007,0.975208,-0.221289][0.046177,0.831653,0][0.298124,0.649169,1.12267][-0.110627,0.991925,-0.0620266][0.892193,0.881903,0][2.06991e-007,0.642073,1.13441][4.04088e-007,0.994194,-0.107604][0.960103,0.879367,0][2.03953e-007,0.654293,1.23581][4.28964e-007,0.993915,0.110151][0.960103,0.869366,0][2.03953e-007,0.654293,1.23581][4.28964e-007,0.993915,0.110151][0.960103,0.869366,0][0.333722,0.657891,1.20607][-0.036171,0.980434,0.193495][0.889346,0.870651,0][0.298124,0.649169,1.12267][-0.110627,0.991925,-0.0620266][0.892193,0.881903,0][0.550727,0.699008,0.990038][-0.212881,0.977014,0.0112141][0.819743,0.899659,0][0.298124,0.649169,1.12267][-0.110627,0.991925,-0.0620266][0.892193,0.881903,0][0.333722,0.657891,1.20607][-0.036171,0.980434,0.193495][0.889346,0.870651,0][0.333722,0.657891,1.20607][-0.036171,0.980434,0.193495][0.889346,0.870651,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.550727,0.699008,0.990038][-0.212881,0.977014,0.0112141][0.819743,0.899659,0][0.702001,0.742541,0.753559][-0.318222,0.948011,-0.00314032][0.72392,0.920762,0][0.550727,0.699008,0.990038][-0.212881,0.977014,0.0112141][0.819743,0.899659,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.792197,0.77945,0.769662][-0.071648,0.986339,0.148329][0.722039,0.913866,0][0.702001,0.742541,0.753559][-0.318222,0.948011,-0.00314032][0.72392,0.920762,0][0.792197,0.77945,0.769662][-0.071648,0.986339,0.148329][0.722039,0.913866,0][0.923251,0.825983,0.434919][-0.037246,0.995943,0.0819218][0.610793,0.930941,0][0.823886,0.782313,0.437464][-0.350653,0.936501,0.00277404][0.611409,0.934643,0][0.823886,0.782313,0.437464][-0.350653,0.936501,0.00277404][0.611409,0.934643,0][0.702001,0.742541,0.753559][-0.318222,0.948011,-0.00314032][0.72392,0.920762,0][0.792197,0.77945,0.769662][-0.071648,0.986339,0.148329][0.722039,0.913866,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.505306,0.940479,0][0.823886,0.782313,0.437464][-0.350653,0.936501,0.00277404][0.611409,0.934643,0][0.923251,0.825983,0.434919][-0.037246,0.995943,0.0819218][0.610793,0.930941,0][0.923251,0.825983,0.434919][-0.037246,0.995943,0.0819218][0.610793,0.930941,0][0.958798,0.83246,0.0597722][0.0456166,0.996747,-0.0664451][0.503377,0.93304,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.505306,0.940479,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.505306,0.940479,0][0.958798,0.83246,0.0597722][0.0456166,0.996747,-0.0664451][0.503377,0.93304,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.788395,0.76363,-0.133][-0.331802,0.942943,-0.027686][0.418878,0.926828,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.505306,0.940479,0][0.788395,0.76363,-0.133][-0.331802,0.942943,-0.027686][0.418878,0.926828,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.696287,0.736347,-0.394979][-0.0784251,0.973963,-0.212709][0.307196,0.89869,0][0.696287,0.736347,-0.394979][-0.0784251,0.973963,-0.212709][0.307196,0.89869,0][0.601713,0.710126,-0.367336][-0.291576,0.956344,-0.019738][0.30811,0.907706,0][0.788395,0.76363,-0.133][-0.331802,0.942943,-0.027686][0.418878,0.926828,0][0.601713,0.710126,-0.367336][-0.291576,0.956344,-0.019738][0.30811,0.907706,0][0.696287,0.736347,-0.394979][-0.0784251,0.973963,-0.212709][0.307196,0.89869,0][0.507955,0.670568,-0.581313][-0.140712,0.967292,-0.211062][0.224977,0.875182,0][0.507955,0.670568,-0.581313][-0.140712,0.967292,-0.211062][0.224977,0.875182,0][0.445699,0.656427,-0.514359][-0.301001,0.953122,-0.0309438][0.224871,0.883916,0][0.601713,0.710126,-0.367336][-0.291576,0.956344,-0.019738][0.30811,0.907706,0][0.258774,0.593068,-0.640187][-0.289874,0.956923,0.0164961][0.149203,0.861853,0][0.445699,0.656427,-0.514359][-0.301001,0.953122,-0.0309438][0.224871,0.883916,0][0.507955,0.670568,-0.581313][-0.140712,0.967292,-0.211062][0.224977,0.875182,0][0.507955,0.670568,-0.581313][-0.140712,0.967292,-0.211062][0.224977,0.875182,0][0.279999,0.602958,-0.741726][-0.176881,0.971474,-0.157958][0.144067,0.85102,0][0.258774,0.593068,-0.640187][-0.289874,0.956923,0.0164961][0.149203,0.861853,0][0.140062,0.560958,-0.691163][-0.179981,0.983479,0.0193906][0.100174,0.850378,0][0.258774,0.593068,-0.640187][-0.289874,0.956923,0.0164961][0.149203,0.861853,0][0.279999,0.602958,-0.741726][-0.176881,0.971474,-0.157958][0.144067,0.85102,0][0.279999,0.602958,-0.741726][-0.176881,0.971474,-0.157958][0.144067,0.85102,0][0.139753,0.564494,-0.80389][-0.112015,0.974367,-0.195095][0.093283,0.837273,0][0.140062,0.560958,-0.691163][-0.179981,0.983479,0.0193906][0.100174,0.850378,0][3.2653e-007,0.548831,-0.741531][4.33738e-007,0.999974,0.00724544][0.046177,0.846044,0][0.140062,0.560958,-0.691163][-0.179981,0.983479,0.0193906][0.100174,0.850378,0][0.139753,0.564494,-0.80389][-0.112015,0.974367,-0.195095][0.093283,0.837273,0][0.139753,0.564494,-0.80389][-0.112015,0.974367,-0.195095][0.093283,0.837273,0][3.36332e-007,0.548768,-0.853997][4.85551e-007,0.975208,-0.221289][0.046177,0.831653,0][3.2653e-007,0.548831,-0.741531][4.33738e-007,0.999974,0.00724544][0.046177,0.846044,0][-3.5751e-007,-0.510905,1.30277][-2.50869e-007,-0.523437,-0.852064][0.376466,0.03329,0][0,-0.0472562,1.08258][-3.53014e-007,-0.722357,-0.69152][0.345855,0.033788,0][0.271839,-0.0474443,1.06155][-0.129766,-0.698352,-0.703893][0.34407,0.058924,0][0.271839,-0.0474443,1.06155][-0.129766,-0.698352,-0.703893][0.34407,0.058924,0][0.356478,-0.54748,1.21991][-0.22799,-0.573469,-0.786864][0.374428,0.067043,0][-3.5751e-007,-0.510905,1.30277][-2.50869e-007,-0.523437,-0.852064][0.376466,0.03329,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.34213,-0.316286,0.0298991][0.714138,0.699689,-0.0210278][0.505488,0.536958,0][1.36029,-0.323291,0.0239871][0.823183,0.567496,-0.0178298][0.506408,0.523675,0][1.36029,-0.323291,0.0239871][0.823183,0.567496,-0.0178298][0.506408,0.523675,0][1.27922,-0.321545,-0.443608][0.716601,0.645771,-0.263556][0.387862,0.522643,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.28028,-0.650662,-0.445207][0.634237,0.736102,-0.236424][0.387882,0.429184,0][1.37948,-0.647023,0.030102][0.629402,0.776921,-0.0157228][0.506828,0.429766,0][1.42913,-0.647023,0.030102][-0.0603532,0.997916,-0.0228221][0.506976,0.417038,0][1.42913,-0.647023,0.030102][-0.0603532,0.997916,-0.0228221][0.506976,0.417038,0][1.32512,-0.651316,-0.462713][0.0694968,0.995845,-0.0588404][0.387885,0.420196,0][1.28028,-0.650662,-0.445207][0.634237,0.736102,-0.236424][0.387882,0.429184,0][1.04595,0.197188,-0.412979][0.554855,0.557762,-0.617282][0.37598,0.720373,0][0.979383,0.218721,-0.439858][0.459888,0.596682,-0.657627][0.362558,0.728068,0][0.945696,0.381638,-0.354573][0.5244,0.360338,-0.771467][0.376825,0.793634,0][0.945696,0.381638,-0.354573][0.5244,0.360338,-0.771467][0.376825,0.793634,0][1.00364,0.416473,-0.301745][0.584451,0.349024,-0.732529][0.396,0.799564,0][1.04595,0.197188,-0.412979][0.554855,0.557762,-0.617282][0.37598,0.720373,0][0.936078,0.0860097,-0.649481][0.335216,0.774054,-0.537095][0.308795,0.68064,0][0.879661,0.122158,-0.616606][0.34019,0.738866,-0.581677][0.308959,0.693558,0][0.979383,0.218721,-0.439858][0.459888,0.596682,-0.657627][0.362558,0.728068,0][0.979383,0.218721,-0.439858][0.459888,0.596682,-0.657627][0.362558,0.728068,0][1.04595,0.197188,-0.412979][0.554855,0.557762,-0.617282][0.37598,0.720373,0][0.936078,0.0860097,-0.649481][0.335216,0.774054,-0.537095][0.308795,0.68064,0][0.648121,0.0697738,-0.82582][0.36,0.778945,-0.513464][0.224594,0.674837,0][0.879661,0.122158,-0.616606][0.34019,0.738866,-0.581677][0.308959,0.693558,0][0.936078,0.0860097,-0.649481][0.335216,0.774054,-0.537095][0.308795,0.68064,0][0.936078,0.0860097,-0.649481][0.335216,0.774054,-0.537095][0.308795,0.68064,0][0.682724,0.0307988,-0.893294][0.327134,0.831503,-0.448983][0.224494,0.660908,0][0.648121,0.0697738,-0.82582][0.36,0.778945,-0.513464][0.224594,0.674837,0][0.417833,0.114991,-0.947852][0.471548,0.725462,-0.501345][0.160685,0.690997,0][0.648121,0.0697738,-0.82582][0.36,0.778945,-0.513464][0.224594,0.674837,0][0.682724,0.0307988,-0.893294][0.327134,0.831503,-0.448983][0.224494,0.660908,0][0.682724,0.0307988,-0.893294][0.327134,0.831503,-0.448983][0.224494,0.660908,0][0.397691,0.084656,-1.02441][0.462613,0.7203,-0.516873][0.149063,0.680156,0][0.417833,0.114991,-0.947852][0.471548,0.725462,-0.501345][0.160685,0.690997,0][0.318551,0.183914,-0.97185][0.610963,0.60992,-0.5047][0.133586,0.715629,0][0.417833,0.114991,-0.947852][0.471548,0.725462,-0.501345][0.160685,0.690997,0][0.397691,0.084656,-1.02441][0.462613,0.7203,-0.516873][0.149063,0.680156,0][0.397691,0.084656,-1.02441][0.462613,0.7203,-0.516873][0.149063,0.680156,0][0.28199,0.182559,-1.02063][0.562788,0.597437,-0.571261][0.121047,0.715144,0][0.318551,0.183914,-0.97185][0.610963,0.60992,-0.5047][0.133586,0.715629,0][0.266523,0.27629,-0.94409][0.667877,0.398038,-0.628892][0.121998,0.748642,0][0.318551,0.183914,-0.97185][0.610963,0.60992,-0.5047][0.133586,0.715629,0][0.28199,0.182559,-1.02063][0.562788,0.597437,-0.571261][0.121047,0.715144,0][0.28199,0.182559,-1.02063][0.562788,0.597437,-0.571261][0.121047,0.715144,0][0.217351,0.298715,-0.979119][0.554501,0.417632,-0.7198][0.106782,0.756657,0][0.266523,0.27629,-0.94409][0.667877,0.398038,-0.628892][0.121998,0.748642,0][0.252682,0.391931,-0.920153][0.572932,0.209645,-0.792337][0.120058,0.78997,0][0.292201,0.361605,-0.890561][0.668063,0.129486,-0.732752][0.133207,0.779132,0][0.266523,0.27629,-0.94409][0.667877,0.398038,-0.628892][0.121998,0.748642,0][0.266523,0.27629,-0.94409][0.667877,0.398038,-0.628892][0.121998,0.748642,0][0.217351,0.298715,-0.979119][0.554501,0.417632,-0.7198][0.106782,0.756657,0][0.252682,0.391931,-0.920153][0.572932,0.209645,-0.792337][0.120058,0.78997,0][0.361346,0.44121,-0.833919][0.638572,-0.0278099,-0.76906][0.158149,0.807582,0][0.378747,0.397432,-0.806556][0.656242,-0.010342,-0.754479][0.166127,0.791937,0][0.292201,0.361605,-0.890561][0.668063,0.129486,-0.732752][0.133207,0.779132,0][0.292201,0.361605,-0.890561][0.668063,0.129486,-0.732752][0.133207,0.779132,0][0.252682,0.391931,-0.920153][0.572932,0.209645,-0.792337][0.120058,0.78997,0][0.361346,0.44121,-0.833919][0.638572,-0.0278099,-0.76906][0.158149,0.807582,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.555984,0.449002,-0.653911][0.671623,-0.0904006,-0.735357][0.224896,0.810367,0][0.378747,0.397432,-0.806556][0.656242,-0.010342,-0.754479][0.166127,0.791937,0][0.378747,0.397432,-0.806556][0.656242,-0.010342,-0.754479][0.166127,0.791937,0][0.361346,0.44121,-0.833919][0.638572,-0.0278099,-0.76906][0.158149,0.807582,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.762701,0.499891,-0.471397][0.671489,-0.0816205,-0.736506][0.307877,0.828554,0][0.555984,0.449002,-0.653911][0.671623,-0.0904006,-0.735357][0.224896,0.810367,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.788871,0.551726,-0.471804][0.699149,-0.184723,-0.690701][0.307522,0.847079,0][0.762701,0.499891,-0.471397][0.671489,-0.0816205,-0.736506][0.307877,0.828554,0][0.883103,0.516508,-0.361904][0.661921,0.0844491,-0.744801][0.372753,0.834492,0][0.762701,0.499891,-0.471397][0.671489,-0.0816205,-0.736506][0.307877,0.828554,0][0.788871,0.551726,-0.471804][0.699149,-0.184723,-0.690701][0.307522,0.847079,0][0.788871,0.551726,-0.471804][0.699149,-0.184723,-0.690701][0.307522,0.847079,0][0.925573,0.571558,-0.321632][0.69417,0.133903,-0.707247][0.388415,0.854166,0][0.883103,0.516508,-0.361904][0.661921,0.0844491,-0.744801][0.372753,0.834492,0][1.00364,0.416473,-0.301745][0.584451,0.349024,-0.732529][0.396,0.799564,0][0.945696,0.381638,-0.354573][0.5244,0.360338,-0.771467][0.376825,0.793634,0][0.883103,0.516508,-0.361904][0.661921,0.0844491,-0.744801][0.372753,0.834492,0][0.883103,0.516508,-0.361904][0.661921,0.0844491,-0.744801][0.372753,0.834492,0][0.925573,0.571558,-0.321632][0.69417,0.133903,-0.707247][0.388415,0.854166,0][1.00364,0.416473,-0.301745][0.584451,0.349024,-0.732529][0.396,0.799564,0][1.04595,0.197188,-0.412979][0.554855,0.557762,-0.617282][0.37598,0.720373,0][1.10197,0.16344,-0.383777][0.743109,0.427418,-0.514881][0.388417,0.708312,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][0.936078,0.0860097,-0.649481][0.335216,0.774054,-0.537095][0.308795,0.68064,0][1.04595,0.197188,-0.412979][0.554855,0.557762,-0.617282][0.37598,0.720373,0][0.682724,0.0307988,-0.893294][0.327134,0.831503,-0.448983][0.224494,0.660908,0][0.936078,0.0860097,-0.649481][0.335216,0.774054,-0.537095][0.308795,0.68064,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][0.711746,-0.0168912,-0.948529][0.420755,0.680747,-0.599624][0.224421,0.643865,0][0.682724,0.0307988,-0.893294][0.327134,0.831503,-0.448983][0.224494,0.660908,0][0.397691,0.084656,-1.02441][0.462613,0.7203,-0.516873][0.149063,0.680156,0][0.682724,0.0307988,-0.893294][0.327134,0.831503,-0.448983][0.224494,0.660908,0][0.711746,-0.0168912,-0.948529][0.420755,0.680747,-0.599624][0.224421,0.643865,0][0.711746,-0.0168912,-0.948529][0.420755,0.680747,-0.599624][0.224421,0.643865,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.397691,0.084656,-1.02441][0.462613,0.7203,-0.516873][0.149063,0.680156,0][0.28199,0.182559,-1.02063][0.562788,0.597437,-0.571261][0.121047,0.715144,0][0.397691,0.084656,-1.02441][0.462613,0.7203,-0.516873][0.149063,0.680156,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.242697,0.173053,-1.06097][0.398461,0.540581,-0.740946][0.108695,0.711747,0][0.28199,0.182559,-1.02063][0.562788,0.597437,-0.571261][0.121047,0.715144,0][0.217351,0.298715,-0.979119][0.554501,0.417632,-0.7198][0.106782,0.756657,0][0.28199,0.182559,-1.02063][0.562788,0.597437,-0.571261][0.121047,0.715144,0][0.242697,0.173053,-1.06097][0.398461,0.540581,-0.740946][0.108695,0.711747,0][0.242697,0.173053,-1.06097][0.398461,0.540581,-0.740946][0.108695,0.711747,0][0.165042,0.316492,-1.00231][0.313994,0.454592,-0.833519][0.091511,0.76301,0][0.217351,0.298715,-0.979119][0.554501,0.417632,-0.7198][0.106782,0.756657,0][0.210948,0.419694,-0.937207][0.368153,0.39759,-0.840468][0.107202,0.799893,0][0.252682,0.391931,-0.920153][0.572932,0.209645,-0.792337][0.120058,0.78997,0][0.217351,0.298715,-0.979119][0.554501,0.417632,-0.7198][0.106782,0.756657,0][0.217351,0.298715,-0.979119][0.554501,0.417632,-0.7198][0.106782,0.756657,0][0.165042,0.316492,-1.00231][0.313994,0.454592,-0.833519][0.091511,0.76301,0][0.210948,0.419694,-0.937207][0.368153,0.39759,-0.840468][0.107202,0.799893,0][0.252682,0.391931,-0.920153][0.572932,0.209645,-0.792337][0.120058,0.78997,0][0.210948,0.419694,-0.937207][0.368153,0.39759,-0.840468][0.107202,0.799893,0][0.340709,0.48659,-0.844386][0.499852,0.269225,-0.823205][0.151121,0.8238,0][0.340709,0.48659,-0.844386][0.499852,0.269225,-0.823205][0.151121,0.8238,0][0.361346,0.44121,-0.833919][0.638572,-0.0278099,-0.76906][0.158149,0.807582,0][0.252682,0.391931,-0.920153][0.572932,0.209645,-0.792337][0.120058,0.78997,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.361346,0.44121,-0.833919][0.638572,-0.0278099,-0.76906][0.158149,0.807582,0][0.340709,0.48659,-0.844386][0.499852,0.269225,-0.823205][0.151121,0.8238,0][0.340709,0.48659,-0.844386][0.499852,0.269225,-0.823205][0.151121,0.8238,0][0.576397,0.559414,-0.675105][0.595818,0.17434,-0.783969][0.224931,0.849826,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.788871,0.551726,-0.471804][0.699149,-0.184723,-0.690701][0.307522,0.847079,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.576397,0.559414,-0.675105][0.595818,0.17434,-0.783969][0.224931,0.849826,0][0.576397,0.559414,-0.675105][0.595818,0.17434,-0.783969][0.224931,0.849826,0][0.798896,0.600146,-0.465418][0.694476,0.187624,-0.694623][0.307251,0.864383,0][0.788871,0.551726,-0.471804][0.699149,-0.184723,-0.690701][0.307522,0.847079,0][0.925573,0.571558,-0.321632][0.69417,0.133903,-0.707247][0.388415,0.854166,0][0.788871,0.551726,-0.471804][0.699149,-0.184723,-0.690701][0.307522,0.847079,0][0.798896,0.600146,-0.465418][0.694476,0.187624,-0.694623][0.307251,0.864383,0][0.798896,0.600146,-0.465418][0.694476,0.187624,-0.694623][0.307251,0.864383,0][0.95447,0.622986,-0.278692][0.725754,0.331199,-0.602983][0.403198,0.872546,0][0.925573,0.571558,-0.321632][0.69417,0.133903,-0.707247][0.388415,0.854166,0][0.925573,0.571558,-0.321632][0.69417,0.133903,-0.707247][0.388415,0.854166,0][0.95447,0.622986,-0.278692][0.725754,0.331199,-0.602983][0.403198,0.872546,0][1.05003,0.445643,-0.243942][0.737868,0.352026,-0.575872][0.414971,0.804529,0][1.05003,0.445643,-0.243942][0.737868,0.352026,-0.575872][0.414971,0.804529,0][1.00364,0.416473,-0.301745][0.584451,0.349024,-0.732529][0.396,0.799564,0][0.925573,0.571558,-0.321632][0.69417,0.133903,-0.707247][0.388415,0.854166,0][1.00364,0.416473,-0.301745][0.584451,0.349024,-0.732529][0.396,0.799564,0][1.05003,0.445643,-0.243942][0.737868,0.352026,-0.575872][0.414971,0.804529,0][1.10197,0.16344,-0.383777][0.743109,0.427418,-0.514881][0.388417,0.708312,0][1.10197,0.16344,-0.383777][0.743109,0.427418,-0.514881][0.388417,0.708312,0][1.04595,0.197188,-0.412979][0.554855,0.557762,-0.617282][0.37598,0.720373,0][1.00364,0.416473,-0.301745][0.584451,0.349024,-0.732529][0.396,0.799564,0][-2.69108e-007,-0.946951,-2.0868][0,0.0206031,-0.999788][0.045183,0.304601,0][-2.48244e-007,-0.897365,-2.05499][3.48292e-007,0.759449,-0.650567][0.045197,0.326999,0][0.57699,-0.889461,-1.95562][0.164933,0.764239,-0.623487][0.11987,0.326643,0][0.57699,-0.889461,-1.95562][0.164933,0.764239,-0.623487][0.11987,0.326643,0][0.590603,-0.93771,-1.98365][0.315554,0.0191237,-0.948715][0.121109,0.304432,0][-2.69108e-007,-0.946951,-2.0868][0,0.0206031,-0.999788][0.045183,0.304601,0][0.590603,-0.93771,-1.98365][0.315554,0.0191237,-0.948715][0.121109,0.304432,0][0.57699,-0.889461,-1.95562][0.164933,0.764239,-0.623487][0.11987,0.326643,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][1.13179,-0.871783,-1.70429][0.577892,0.200707,-0.791048][0.211339,0.303629,0][0.590603,-0.93771,-1.98365][0.315554,0.0191237,-0.948715][0.121109,0.304432,0][1.53565,-0.7956,-1.23566][0.798479,0.302246,-0.520652][0.291917,0.303158,0][1.13179,-0.871783,-1.70429][0.577892,0.200707,-0.791048][0.211339,0.303629,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][1.50547,-0.758417,-1.21366][0.34696,0.890355,-0.294765][0.291929,0.325103,0][1.53565,-0.7956,-1.23566][0.798479,0.302246,-0.520652][0.291917,0.303158,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.53565,-0.7956,-1.23566][0.798479,0.302246,-0.520652][0.291917,0.303158,0][1.50547,-0.758417,-1.21366][0.34696,0.890355,-0.294765][0.291929,0.325103,0][1.50547,-0.758417,-1.21366][0.34696,0.890355,-0.294765][0.291929,0.325103,0][1.71937,-0.696388,-0.622723][0.329404,0.918116,-0.220353][0.387869,0.325023,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.81017,-0.577735,0.0219511][0.656781,0.738473,-0.152631][0.504479,0.302972,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.71937,-0.696388,-0.622723][0.329404,0.918116,-0.220353][0.387869,0.325023,0][1.71937,-0.696388,-0.622723][0.329404,0.918116,-0.220353][0.387869,0.325023,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.81017,-0.577735,0.0219511][0.656781,0.738473,-0.152631][0.504479,0.302972,0][1.7096,-0.389243,0.668842][0.661147,0.749892,0.0233808][0.623032,0.303639,0][1.81017,-0.577735,0.0219511][0.656781,0.738473,-0.152631][0.504479,0.302972,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.65825,-0.374011,0.66569][-0.113148,0.947248,-0.299866][0.623033,0.326223,0][1.7096,-0.389243,0.668842][0.661147,0.749892,0.0233808][0.623032,0.303639,0][1.46207,-0.228028,1.18065][0.672392,0.681934,0.287847][0.72058,0.303302,0][1.7096,-0.389243,0.668842][0.661147,0.749892,0.0233808][0.623032,0.303639,0][1.65825,-0.374011,0.66569][-0.113148,0.947248,-0.299866][0.623033,0.326223,0][1.65825,-0.374011,0.66569][-0.113148,0.947248,-0.299866][0.623033,0.326223,0][1.41955,-0.21751,1.16868][-0.166753,0.936193,-0.309413][0.720573,0.32611,0][1.46207,-0.228028,1.18065][0.672392,0.681934,0.287847][0.72058,0.303302,0][1.1268,-0.157682,1.57025][0.514191,0.697835,0.498631][0.809376,0.304733,0][1.46207,-0.228028,1.18065][0.672392,0.681934,0.287847][0.72058,0.303302,0][1.41955,-0.21751,1.16868][-0.166753,0.936193,-0.309413][0.720573,0.32611,0][1.41955,-0.21751,1.16868][-0.166753,0.936193,-0.309413][0.720573,0.32611,0][1.10089,-0.155304,1.54287][-0.16139,0.894252,-0.417452][0.809375,0.327138,0][1.1268,-0.157682,1.57025][0.514191,0.697835,0.498631][0.809376,0.304733,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][1.1268,-0.157682,1.57025][0.514191,0.697835,0.498631][0.809376,0.304733,0][1.10089,-0.155304,1.54287][-0.16139,0.894252,-0.417452][0.809375,0.327138,0][1.10089,-0.155304,1.54287][-0.16139,0.894252,-0.417452][0.809375,0.327138,0][0.57699,-0.0686596,1.78768][-0.0836992,0.814042,-0.574743][0.913954,0.328011,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][0.57699,-0.0686596,1.78768][-0.0836992,0.814042,-0.574743][0.913954,0.328011,0][-1.81671e-007,-0.0392693,1.86389][4.12382e-007,0.841837,-0.539732][0.971447,0.329715,0][-1.81671e-007,-0.0392693,1.86389][4.12382e-007,0.841837,-0.539732][0.971447,0.329715,0][-1.83816e-007,-0.0362533,1.90487][3.78379e-007,0.816902,0.576776][0.971127,0.307216,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][-1.72193e-007,-0.618743,-1.4052][1.47753e-007,0.266098,-0.963946][0.045398,0.439389,0][0.405707,-0.618371,-1.36357][0.274522,0.255874,-0.926912][0.113487,0.440968,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][-1.9124e-007,-0.660816,-1.41681][3.14796e-007,0.696868,-0.7172][0.045394,0.428223,0][-1.72193e-007,-0.618743,-1.4052][1.47753e-007,0.266098,-0.963946][0.045398,0.439389,0][0.405707,-0.618371,-1.36357][0.274522,0.255874,-0.926912][0.113487,0.440968,0][0.775094,-0.616679,-1.17427][0.598261,0.212023,-0.772742][0.208154,0.44055,0][0.775094,-0.658752,-1.18589][0.409878,0.726891,-0.551026][0.208158,0.428886,0][0.775094,-0.658752,-1.18589][0.409878,0.726891,-0.551026][0.208158,0.428886,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][0.405707,-0.618371,-1.36357][0.274522,0.255874,-0.926912][0.113487,0.440968,0][0.775094,-0.616679,-1.17427][0.598261,0.212023,-0.772742][0.208154,0.44055,0][1.06824,-0.613838,-0.847534][0.815072,0.0894718,-0.57241][0.291917,0.440664,0][1.06824,-0.655784,-0.853873][0.582983,0.692815,-0.424428][0.291918,0.429017,0][1.06824,-0.655784,-0.853873][0.582983,0.692815,-0.424428][0.291918,0.429017,0][0.775094,-0.658752,-1.18589][0.409878,0.726891,-0.551026][0.208158,0.428886,0][0.775094,-0.616679,-1.17427][0.598261,0.212023,-0.772742][0.208154,0.44055,0][1.06824,-0.613838,-0.847534][0.815072,0.0894718,-0.57241][0.291917,0.440664,0][1.28014,-0.608956,-0.445004][0.940032,0.00828302,-0.340984][0.387879,0.441027,0][1.28028,-0.650662,-0.445207][0.634237,0.736102,-0.236424][0.387882,0.429184,0][1.28028,-0.650662,-0.445207][0.634237,0.736102,-0.236424][0.387882,0.429184,0][1.06824,-0.655784,-0.853873][0.582983,0.692815,-0.424428][0.291918,0.429017,0][1.06824,-0.613838,-0.847534][0.815072,0.0894718,-0.57241][0.291917,0.440664,0][1.28014,-0.608956,-0.445004][0.940032,0.00828302,-0.340984][0.387879,0.441027,0][1.37705,-0.606,0.029327][0.998399,0.0564819,0.00318474][0.506775,0.441666,0][1.37948,-0.647023,0.030102][0.629402,0.776921,-0.0157228][0.506828,0.429766,0][1.37948,-0.647023,0.030102][0.629402,0.776921,-0.0157228][0.506828,0.429766,0][1.28028,-0.650662,-0.445207][0.634237,0.736102,-0.236424][0.387882,0.429184,0][1.28014,-0.608956,-0.445004][0.940032,0.00828302,-0.340984][0.387879,0.441027,0][1.37705,-0.606,0.029327][0.998399,0.0564819,0.00318474][0.506775,0.441666,0][1.28014,-0.588833,0.500128][0.943502,0.0129,0.331116][0.622964,0.440668,0][1.28028,-0.628834,0.501061][0.64343,0.739138,0.199179][0.622967,0.428731,0][1.28028,-0.628834,0.501061][0.64343,0.739138,0.199179][0.622967,0.428731,0][1.37948,-0.647023,0.030102][0.629402,0.776921,-0.0157228][0.506828,0.429766,0][1.37705,-0.606,0.029327][0.998399,0.0564819,0.00318474][0.506775,0.441666,0][1.28014,-0.588833,0.500128][0.943502,0.0129,0.331116][0.622964,0.440668,0][1.06824,-0.574787,0.908894][0.82526,0.00411238,0.564738][0.720595,0.441624,0][1.06824,-0.613287,0.909145][0.623443,0.661486,0.416839][0.72059,0.430116,0][1.06824,-0.613287,0.909145][0.623443,0.661486,0.416839][0.72059,0.430116,0][1.28028,-0.628834,0.501061][0.64343,0.739138,0.199179][0.622967,0.428731,0][1.28014,-0.588833,0.500128][0.943502,0.0129,0.331116][0.622964,0.440668,0][1.06824,-0.574787,0.908894][0.82526,0.00411238,0.564738][0.720595,0.441624,0][0.775094,-0.57182,1.24091][0.592605,0.00524981,0.805476][0.809373,0.440531,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][1.06824,-0.613287,0.909145][0.623443,0.661486,0.416839][0.72059,0.430116,0][1.06824,-0.574787,0.908894][0.82526,0.00411238,0.564738][0.720595,0.441624,0][0.775094,-0.57182,1.24091][0.592605,0.00524981,0.805476][0.809373,0.440531,0][0.405707,-0.57034,1.40633][0.268156,0.00628295,0.963355][0.912954,0.441414,0][0.405707,-0.608839,1.40659][0.199084,0.664978,0.71984][0.912957,0.429875,0][0.405707,-0.608839,1.40659][0.199084,0.664978,0.71984][0.912957,0.429875,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][0.775094,-0.57182,1.24091][0.592605,0.00524981,0.805476][0.809373,0.440531,0][0.405707,-0.57034,1.40633][0.268156,0.00628295,0.963355][0.912954,0.441414,0][-4.00306e-007,-0.572554,1.45604][0,0.00687457,0.999976][0.971679,0.441249,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][0.405707,-0.608839,1.40659][0.199084,0.664978,0.71984][0.912957,0.429875,0][0.405707,-0.57034,1.40633][0.268156,0.00628295,0.963355][0.912954,0.441414,0][0.405707,-0.326907,1.40475][0.268062,0.0062846,0.963381][0.912935,0.514375,0][-2.82917e-007,-0.326683,1.45434][0,0.00690768,0.999976][0.971543,0.514362,0][-3.45345e-007,-0.457438,1.45524][0,0.00686313,0.999976][0.971615,0.47548,0][-3.45345e-007,-0.457438,1.45524][0,0.00686313,0.999976][0.971615,0.47548,0][0.405707,-0.456366,1.40559][0.268117,0.0062924,0.963366][0.912945,0.475574,0][0.405707,-0.326907,1.40475][0.268062,0.0062846,0.963381][0.912935,0.514375,0][0.775094,-0.328386,1.23932][0.592605,0.00525795,0.805476][0.809372,0.514302,0][0.405707,-0.326907,1.40475][0.268062,0.0062846,0.963381][0.912935,0.514375,0][0.405707,-0.456366,1.40559][0.268117,0.0062924,0.963366][0.912945,0.475574,0][0.405707,-0.456366,1.40559][0.268117,0.0062924,0.963366][0.912945,0.475574,0][0.775094,-0.457846,1.24016][0.592605,0.00525015,0.805476][0.809373,0.47507,0][0.775094,-0.328386,1.23932][0.592605,0.00525795,0.805476][0.809372,0.514302,0][1.06824,-0.331354,0.907308][0.826641,0.00375573,0.562718][0.720624,0.514393,0][0.775094,-0.328386,1.23932][0.592605,0.00525795,0.805476][0.809372,0.514302,0][0.775094,-0.457846,1.24016][0.592605,0.00525015,0.805476][0.809373,0.47507,0][0.775094,-0.457846,1.24016][0.592605,0.00525015,0.805476][0.809373,0.47507,0][1.06824,-0.460813,0.908152][0.826063,0.0041569,0.563563][0.720609,0.475694,0][1.06824,-0.331354,0.907308][0.826641,0.00375573,0.562718][0.720624,0.514393,0][1.27929,-0.335903,0.494231][0.948305,0.0105389,0.317186][0.622879,0.516145,0][1.06824,-0.331354,0.907308][0.826641,0.00375573,0.562718][0.720624,0.514393,0][1.06824,-0.460813,0.908152][0.826063,0.0041569,0.563563][0.720609,0.475694,0][1.06824,-0.460813,0.908152][0.826063,0.0041569,0.563563][0.720609,0.475694,0][1.27975,-0.470413,0.497368][0.94616,0.0127617,0.323449][0.622956,0.476006,0][1.27929,-0.335903,0.494231][0.948305,0.0105389,0.317186][0.622879,0.516145,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.27929,-0.335903,0.494231][0.948305,0.0105389,0.317186][0.622879,0.516145,0][1.27975,-0.470413,0.497368][0.94616,0.0127617,0.323449][0.622956,0.476006,0][1.27975,-0.470413,0.497368][0.94616,0.0127617,0.323449][0.622956,0.476006,0][1.36985,-0.484554,0.027033][0.998366,0.0570992,0.00215572][0.506617,0.476896,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.27929,-0.34525,-0.443723][0.939024,0.00535871,-0.343811][0.387864,0.515912,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.36985,-0.484554,0.027033][0.998366,0.0570992,0.00215572][0.506617,0.476896,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.06824,-0.348605,-0.807448][0.791746,0.0885043,-0.604405][0.291908,0.514313,0][1.27929,-0.34525,-0.443723][0.939024,0.00535871,-0.343811][0.387864,0.515912,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.06824,-0.489658,-0.828766][0.803686,0.0905842,-0.588118][0.291913,0.475146,0][1.06824,-0.348605,-0.807448][0.791746,0.0885043,-0.604405][0.291908,0.514313,0][0.775094,-0.350648,-1.10083][0.580775,0.212119,-0.785943][0.208128,0.514304,0][1.06824,-0.348605,-0.807448][0.791746,0.0885043,-0.604405][0.291908,0.514313,0][1.06824,-0.489658,-0.828766][0.803686,0.0905842,-0.588118][0.291913,0.475146,0][1.06824,-0.489658,-0.828766][0.803686,0.0905842,-0.588118][0.291913,0.475146,0][0.775094,-0.492125,-1.13989][0.591785,0.210747,-0.778059][0.208142,0.475081,0][0.775094,-0.350648,-1.10083][0.580775,0.212119,-0.785943][0.208128,0.514304,0][0.405707,-0.35234,-1.29013][0.274522,0.255887,-0.926909][0.113475,0.514338,0][0.775094,-0.350648,-1.10083][0.580775,0.212119,-0.785943][0.208128,0.514304,0][0.775094,-0.492125,-1.13989][0.591785,0.210747,-0.778059][0.208142,0.475081,0][0.775094,-0.492125,-1.13989][0.591785,0.210747,-0.778059][0.208142,0.475081,0][0.405707,-0.493817,-1.32919][0.274523,0.255881,-0.92691][0.113481,0.47532,0][0.405707,-0.35234,-1.29013][0.274522,0.255887,-0.926909][0.113475,0.514338,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][0.405707,-0.35234,-1.29013][0.274522,0.255887,-0.926909][0.113475,0.514338,0][0.405707,-0.493817,-1.32919][0.274523,0.255881,-0.92691][0.113481,0.47532,0][0.405707,-0.493817,-1.32919][0.274523,0.255881,-0.92691][0.113481,0.47532,0][0,-0.494189,-1.37081][1.33454e-007,0.266105,-0.963944][0.045409,0.477042,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][-1.83816e-007,-0.0362533,1.90487][3.78379e-007,0.816902,0.576776][0.971127,0.307216,0][-2.14646e-007,-0.0970813,1.92574][0,-0.0338154,0.999428][0.967942,0.288353,0][0.589458,-0.123165,1.84729][0.286631,-0.0525619,0.956598][0.913961,0.285945,0][0.589458,-0.123165,1.84729][0.286631,-0.0525619,0.956598][0.913961,0.285945,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][-1.83816e-007,-0.0362533,1.90487][3.78379e-007,0.816902,0.576776][0.971127,0.307216,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][0.589458,-0.123165,1.84729][0.286631,-0.0525619,0.956598][0.913961,0.285945,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.809376,0.285819,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.809376,0.285819,0][1.1268,-0.157682,1.57025][0.514191,0.697835,0.498631][0.809376,0.304733,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][1.46207,-0.228028,1.18065][0.672392,0.681934,0.287847][0.72058,0.303302,0][1.1268,-0.157682,1.57025][0.514191,0.697835,0.498631][0.809376,0.304733,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.809376,0.285819,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.809376,0.285819,0][1.48044,-0.291836,1.17237][0.808413,-0.197368,0.554539][0.720493,0.28699,0][1.46207,-0.228028,1.18065][0.672392,0.681934,0.287847][0.72058,0.303302,0][1.7096,-0.389243,0.668842][0.661147,0.749892,0.0233808][0.623032,0.303639,0][1.46207,-0.228028,1.18065][0.672392,0.681934,0.287847][0.72058,0.303302,0][1.48044,-0.291836,1.17237][0.808413,-0.197368,0.554539][0.720493,0.28699,0][1.48044,-0.291836,1.17237][0.808413,-0.197368,0.554539][0.720493,0.28699,0][1.73962,-0.439892,0.655097][0.950031,-0.118763,0.288679][0.623041,0.286141,0][1.7096,-0.389243,0.668842][0.661147,0.749892,0.0233808][0.623032,0.303639,0][1.81017,-0.577735,0.0219511][0.656781,0.738473,-0.152631][0.504479,0.302972,0][1.7096,-0.389243,0.668842][0.661147,0.749892,0.0233808][0.623032,0.303639,0][1.73962,-0.439892,0.655097][0.950031,-0.118763,0.288679][0.623041,0.286141,0][1.73962,-0.439892,0.655097][0.950031,-0.118763,0.288679][0.623041,0.286141,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.506342,0.285551,0][1.81017,-0.577735,0.0219511][0.656781,0.738473,-0.152631][0.504479,0.302972,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.81017,-0.577735,0.0219511][0.656781,0.738473,-0.152631][0.504479,0.302972,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.506342,0.285551,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.506342,0.285551,0][1.76771,-0.774269,-0.637966][0.781352,-0.616468,-0.097243][0.387869,0.28711,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.76771,-0.774269,-0.637966][0.781352,-0.616468,-0.097243][0.387869,0.28711,0][1.53296,-0.838168,-1.22754][0.650296,-0.704048,-0.285362][0.291904,0.285608,0][1.53296,-0.838168,-1.22754][0.650296,-0.704048,-0.285362][0.291904,0.285608,0][1.53565,-0.7956,-1.23566][0.798479,0.302246,-0.520652][0.291917,0.303158,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.53565,-0.7956,-1.23566][0.798479,0.302246,-0.520652][0.291917,0.303158,0][1.53296,-0.838168,-1.22754][0.650296,-0.704048,-0.285362][0.291904,0.285608,0][1.13495,-0.918382,-1.68613][0.48508,-0.745553,-0.456998][0.21188,0.287379,0][1.13495,-0.918382,-1.68613][0.48508,-0.745553,-0.456998][0.21188,0.287379,0][1.13179,-0.871783,-1.70429][0.577892,0.200707,-0.791048][0.211339,0.303629,0][1.53565,-0.7956,-1.23566][0.798479,0.302246,-0.520652][0.291917,0.303158,0][1.13179,-0.871783,-1.70429][0.577892,0.200707,-0.791048][0.211339,0.303629,0][1.13495,-0.918382,-1.68613][0.48508,-0.745553,-0.456998][0.21188,0.287379,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.122086,0.286741,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.122086,0.286741,0][0.590603,-0.93771,-1.98365][0.315554,0.0191237,-0.948715][0.121109,0.304432,0][1.13179,-0.871783,-1.70429][0.577892,0.200707,-0.791048][0.211339,0.303629,0][0.590603,-0.93771,-1.98365][0.315554,0.0191237,-0.948715][0.121109,0.304432,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.122086,0.286741,0][-2.91647e-007,-0.989764,-2.06249][-4.19245e-007,-0.862658,-0.505788][0.044969,0.286108,0][-2.91647e-007,-0.989764,-2.06249][-4.19245e-007,-0.862658,-0.505788][0.044969,0.286108,0][-2.69108e-007,-0.946951,-2.0868][0,0.0206031,-0.999788][0.045183,0.304601,0][0.590603,-0.93771,-1.98365][0.315554,0.0191237,-0.948715][0.121109,0.304432,0][0.405707,-0.328426,-1.28353][0.214227,0.67137,-0.709485][0.113474,0.520934,0][0.775094,-0.326734,-1.09423][0.447442,0.659336,-0.604212][0.208126,0.520934,0][0.775094,-0.350648,-1.10083][0.580775,0.212119,-0.785943][0.208128,0.514304,0][0.775094,-0.350648,-1.10083][0.580775,0.212119,-0.785943][0.208128,0.514304,0][0.405707,-0.35234,-1.29013][0.274522,0.255887,-0.926909][0.113475,0.514338,0][0.405707,-0.328426,-1.28353][0.214227,0.67137,-0.709485][0.113474,0.520934,0][0.405707,-0.328426,-1.28353][0.214227,0.67137,-0.709485][0.113474,0.520934,0][0.405707,-0.35234,-1.29013][0.274522,0.255887,-0.926909][0.113475,0.514338,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][0,-0.328798,-1.32516][3.11974e-007,0.686666,-0.726973][0.045424,0.520934,0][0.405707,-0.328426,-1.28353][0.214227,0.67137,-0.709485][0.113474,0.520934,0][0.405707,-0.305024,1.40461][0.209844,0.629223,0.748361][0.912933,0.520934,0][-2.72365e-007,-0.304581,1.45419][3.03867e-007,0.634453,0.772961][0.971531,0.520934,0][-2.82917e-007,-0.326683,1.45434][0,0.00690768,0.999976][0.971543,0.514362,0][-2.82917e-007,-0.326683,1.45434][0,0.00690768,0.999976][0.971543,0.514362,0][0.405707,-0.326907,1.40475][0.268062,0.0062846,0.963381][0.912935,0.514375,0][0.405707,-0.305024,1.40461][0.209844,0.629223,0.748361][0.912933,0.520934,0][0.775094,-0.306504,1.23918][0.468329,0.616974,0.632464][0.809372,0.520934,0][0.405707,-0.305024,1.40461][0.209844,0.629223,0.748361][0.912933,0.520934,0][0.405707,-0.326907,1.40475][0.268062,0.0062846,0.963381][0.912935,0.514375,0][0.405707,-0.326907,1.40475][0.268062,0.0062846,0.963381][0.912935,0.514375,0][0.775094,-0.328386,1.23932][0.592605,0.00525795,0.805476][0.809372,0.514302,0][0.775094,-0.306504,1.23918][0.468329,0.616974,0.632464][0.809372,0.520934,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][0.775094,-0.306504,1.23918][0.468329,0.616974,0.632464][0.809372,0.520934,0][0.775094,-0.328386,1.23932][0.592605,0.00525795,0.805476][0.809372,0.514302,0][0.775094,-0.328386,1.23932][0.592605,0.00525795,0.805476][0.809372,0.514302,0][1.06824,-0.331354,0.907308][0.826641,0.00375573,0.562718][0.720624,0.514393,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][1.27922,-0.313167,0.493701][0.682731,0.696261,0.221582][0.622866,0.52293,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][1.06824,-0.331354,0.907308][0.826641,0.00375573,0.562718][0.720624,0.514393,0][1.06824,-0.331354,0.907308][0.826641,0.00375573,0.562718][0.720624,0.514393,0][1.27929,-0.335903,0.494231][0.948305,0.0105389,0.317186][0.622879,0.516145,0][1.27922,-0.313167,0.493701][0.682731,0.696261,0.221582][0.622866,0.52293,0][1.36029,-0.323291,0.0239871][0.823183,0.567496,-0.0178298][0.506408,0.523675,0][1.27922,-0.313167,0.493701][0.682731,0.696261,0.221582][0.622866,0.52293,0][1.27929,-0.335903,0.494231][0.948305,0.0105389,0.317186][0.622879,0.516145,0][1.27929,-0.335903,0.494231][0.948305,0.0105389,0.317186][0.622879,0.516145,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.36029,-0.323291,0.0239871][0.823183,0.567496,-0.0178298][0.506408,0.523675,0][1.27922,-0.321545,-0.443608][0.716601,0.645771,-0.263556][0.387862,0.522643,0][1.36029,-0.323291,0.0239871][0.823183,0.567496,-0.0178298][0.506408,0.523675,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.27929,-0.34525,-0.443723][0.939024,0.00535871,-0.343811][0.387864,0.515912,0][1.27922,-0.321545,-0.443608][0.716601,0.645771,-0.263556][0.387862,0.522643,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][1.27922,-0.321545,-0.443608][0.716601,0.645771,-0.263556][0.387862,0.522643,0][1.27929,-0.34525,-0.443723][0.939024,0.00535871,-0.343811][0.387864,0.515912,0][1.27929,-0.34525,-0.443723][0.939024,0.00535871,-0.343811][0.387864,0.515912,0][1.06824,-0.348605,-0.807448][0.791746,0.0885043,-0.604405][0.291908,0.514313,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][0.775094,-0.326734,-1.09423][0.447442,0.659336,-0.604212][0.208126,0.520934,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][1.06824,-0.348605,-0.807448][0.791746,0.0885043,-0.604405][0.291908,0.514313,0][1.06824,-0.348605,-0.807448][0.791746,0.0885043,-0.604405][0.291908,0.514313,0][0.775094,-0.350648,-1.10083][0.580775,0.212119,-0.785943][0.208128,0.514304,0][0.775094,-0.326734,-1.09423][0.447442,0.659336,-0.604212][0.208126,0.520934,0][0.405707,-0.493817,-1.32919][0.274523,0.255881,-0.92691][0.113481,0.47532,0][0.775094,-0.492125,-1.13989][0.591785,0.210747,-0.778059][0.208142,0.475081,0][0.775094,-0.616679,-1.17427][0.598261,0.212023,-0.772742][0.208154,0.44055,0][0.775094,-0.616679,-1.17427][0.598261,0.212023,-0.772742][0.208154,0.44055,0][0.405707,-0.618371,-1.36357][0.274522,0.255874,-0.926912][0.113487,0.440968,0][0.405707,-0.493817,-1.32919][0.274523,0.255881,-0.92691][0.113481,0.47532,0][0,-0.494189,-1.37081][1.33454e-007,0.266105,-0.963944][0.045409,0.477042,0][0.405707,-0.493817,-1.32919][0.274523,0.255881,-0.92691][0.113481,0.47532,0][0.405707,-0.618371,-1.36357][0.274522,0.255874,-0.926912][0.113487,0.440968,0][0.405707,-0.618371,-1.36357][0.274522,0.255874,-0.926912][0.113487,0.440968,0][-1.72193e-007,-0.618743,-1.4052][1.47753e-007,0.266098,-0.963946][0.045398,0.439389,0][0,-0.494189,-1.37081][1.33454e-007,0.266105,-0.963944][0.045409,0.477042,0][0.405707,-0.456366,1.40559][0.268117,0.0062924,0.963366][0.912945,0.475574,0][-3.45345e-007,-0.457438,1.45524][0,0.00686313,0.999976][0.971615,0.47548,0][-4.00306e-007,-0.572554,1.45604][0,0.00687457,0.999976][0.971679,0.441249,0][-4.00306e-007,-0.572554,1.45604][0,0.00687457,0.999976][0.971679,0.441249,0][0.405707,-0.57034,1.40633][0.268156,0.00628295,0.963355][0.912954,0.441414,0][0.405707,-0.456366,1.40559][0.268117,0.0062924,0.963366][0.912945,0.475574,0][0.775094,-0.457846,1.24016][0.592605,0.00525015,0.805476][0.809373,0.47507,0][0.405707,-0.456366,1.40559][0.268117,0.0062924,0.963366][0.912945,0.475574,0][0.405707,-0.57034,1.40633][0.268156,0.00628295,0.963355][0.912954,0.441414,0][0.405707,-0.57034,1.40633][0.268156,0.00628295,0.963355][0.912954,0.441414,0][0.775094,-0.57182,1.24091][0.592605,0.00524981,0.805476][0.809373,0.440531,0][0.775094,-0.457846,1.24016][0.592605,0.00525015,0.805476][0.809373,0.47507,0][1.06824,-0.460813,0.908152][0.826063,0.0041569,0.563563][0.720609,0.475694,0][0.775094,-0.457846,1.24016][0.592605,0.00525015,0.805476][0.809373,0.47507,0][0.775094,-0.57182,1.24091][0.592605,0.00524981,0.805476][0.809373,0.440531,0][0.775094,-0.57182,1.24091][0.592605,0.00524981,0.805476][0.809373,0.440531,0][1.06824,-0.574787,0.908894][0.82526,0.00411238,0.564738][0.720595,0.441624,0][1.06824,-0.460813,0.908152][0.826063,0.0041569,0.563563][0.720609,0.475694,0][1.27975,-0.470413,0.497368][0.94616,0.0127617,0.323449][0.622956,0.476006,0][1.06824,-0.460813,0.908152][0.826063,0.0041569,0.563563][0.720609,0.475694,0][1.06824,-0.574787,0.908894][0.82526,0.00411238,0.564738][0.720595,0.441624,0][1.06824,-0.574787,0.908894][0.82526,0.00411238,0.564738][0.720595,0.441624,0][1.28014,-0.588833,0.500128][0.943502,0.0129,0.331116][0.622964,0.440668,0][1.27975,-0.470413,0.497368][0.94616,0.0127617,0.323449][0.622956,0.476006,0][1.36985,-0.484554,0.027033][0.998366,0.0570992,0.00215572][0.506617,0.476896,0][1.27975,-0.470413,0.497368][0.94616,0.0127617,0.323449][0.622956,0.476006,0][1.28014,-0.588833,0.500128][0.943502,0.0129,0.331116][0.622964,0.440668,0][1.28014,-0.588833,0.500128][0.943502,0.0129,0.331116][0.622964,0.440668,0][1.37705,-0.606,0.029327][0.998399,0.0564819,0.00318474][0.506775,0.441666,0][1.36985,-0.484554,0.027033][0.998366,0.0570992,0.00215572][0.506617,0.476896,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.36985,-0.484554,0.027033][0.998366,0.0570992,0.00215572][0.506617,0.476896,0][1.37705,-0.606,0.029327][0.998399,0.0564819,0.00318474][0.506775,0.441666,0][1.37705,-0.606,0.029327][0.998399,0.0564819,0.00318474][0.506775,0.441666,0][1.28014,-0.608956,-0.445004][0.940032,0.00828302,-0.340984][0.387879,0.441027,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.06824,-0.489658,-0.828766][0.803686,0.0905842,-0.588118][0.291913,0.475146,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.28014,-0.608956,-0.445004][0.940032,0.00828302,-0.340984][0.387879,0.441027,0][1.28014,-0.608956,-0.445004][0.940032,0.00828302,-0.340984][0.387879,0.441027,0][1.06824,-0.613838,-0.847534][0.815072,0.0894718,-0.57241][0.291917,0.440664,0][1.06824,-0.489658,-0.828766][0.803686,0.0905842,-0.588118][0.291913,0.475146,0][0.775094,-0.492125,-1.13989][0.591785,0.210747,-0.778059][0.208142,0.475081,0][1.06824,-0.489658,-0.828766][0.803686,0.0905842,-0.588118][0.291913,0.475146,0][1.06824,-0.613838,-0.847534][0.815072,0.0894718,-0.57241][0.291917,0.440664,0][1.06824,-0.613838,-0.847534][0.815072,0.0894718,-0.57241][0.291917,0.440664,0][0.775094,-0.616679,-1.17427][0.598261,0.212023,-0.772742][0.208154,0.44055,0][0.775094,-0.492125,-1.13989][0.591785,0.210747,-0.778059][0.208142,0.475081,0] \ No newline at end of file diff --git a/charcustom/hats/fonts/EvilDuck.mesh b/charcustom/hats/fonts/EvilDuck.mesh new file mode 100644 index 0000000..2717d32 --- /dev/null +++ b/charcustom/hats/fonts/EvilDuck.mesh @@ -0,0 +1,3 @@ +version 1.00 +542 +[-0.348659,0.659819,-1.17757][-0.967017,0.150975,-0.205146][0.477403,0.711986,0][-0.327341,0.67095,-1.2617][-0.931343,0.119353,-0.344028][0.448424,0.697716,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.455098,0.686845,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.455098,0.686845,0][-0.341699,0.625833,-1.17292][-0.286804,-0.941894,-0.174872][0.485736,0.70184,0][-0.348659,0.659819,-1.17757][-0.967017,0.150975,-0.205146][0.477403,0.711986,0][-3.55952e-007,0.943441,-1.37696][0,0.999234,0.0391422][0.307344,0.781011,0][-3.47187e-007,0.955515,-1.47722][0,0.726258,-0.687422][0.283719,0.753836,0][-0.174654,0.881225,-1.45414][-0.533467,0.518757,-0.66806][0.339651,0.722533,0][-0.174654,0.881225,-1.45414][-0.533467,0.518757,-0.66806][0.339651,0.722533,0][-0.190045,0.862544,-1.34867][-0.649555,0.759658,-0.0315798][0.369535,0.741707,0][-3.55952e-007,0.943441,-1.37696][0,0.999234,0.0391422][0.307344,0.781011,0][-0.17556,0.597216,-1.2894][0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][-3.60903e-007,0.631063,-1.32033][0,-0.894386,-0.447295][0.106178,0.915713,0][-3.78136e-007,0.602192,-1.12321][0,-0.995409,-0.0957087][0.159149,0.866801,0][-3.78136e-007,0.602192,-1.12321][0,-0.995409,-0.0957087][0.159149,0.866801,0][-0.203675,0.583716,-1.08037][0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][-0.17556,0.597216,-1.2894][0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][-0.177633,0.80717,-1.4409][0.0453383,-0.604805,-0.795082][0.346879,0.699533,0][-0.250894,0.711799,-1.38142][-0.00839236,-0.758996,-0.651041][0.39417,0.684252,0][-0.262168,0.748564,-1.38197][-0.824853,0.162233,-0.54157][0.391306,0.6979,0][-0.262168,0.748564,-1.38197][-0.824853,0.162233,-0.54157][0.391306,0.6979,0][-0.174654,0.881225,-1.45414][-0.533467,0.518757,-0.66806][0.339651,0.722533,0][-0.177633,0.80717,-1.4409][0.0453383,-0.604805,-0.795082][0.346879,0.699533,0][-0.222343,0.932088,-0.991346][-0.648718,0.730804,-0.212345][0.459104,0.841016,0][-3.89664e-007,1.03146,-0.991346][1.59787e-006,0.964114,-0.26549][0.391525,0.899385,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-0.20287,0.861877,-1.26077][-0.661667,0.731091,-0.166441][0.394649,0.761286,0][-0.222343,0.932088,-0.991346][-0.648718,0.730804,-0.212345][0.459104,0.841016,0][-0.389567,0.631039,-0.953195][-0.980475,0.0959888,-0.171624][0.552042,0.753156,0][-0.348659,0.659819,-1.17757][-0.967017,0.150975,-0.205146][0.477403,0.711986,0][-0.341699,0.625833,-1.17292][-0.286804,-0.941894,-0.174872][0.485736,0.70184,0][-0.341699,0.625833,-1.17292][-0.286804,-0.941894,-0.174872][0.485736,0.70184,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.562596,0.743023,0][-0.389567,0.631039,-0.953195][-0.980475,0.0959888,-0.171624][0.552042,0.753156,0][-0.222343,0.932088,-0.991346][-0.648718,0.730804,-0.212345][0.459104,0.841016,0][-0.20287,0.861877,-1.26077][-0.661667,0.731091,-0.166441][0.394649,0.761286,0][-0.348659,0.659819,-1.17757][-0.967017,0.150975,-0.205146][0.477403,0.711986,0][-0.348659,0.659819,-1.17757][-0.967017,0.150975,-0.205146][0.477403,0.711986,0][-0.389567,0.631039,-0.953195][-0.980475,0.0959888,-0.171624][0.552042,0.753156,0][-0.222343,0.932088,-0.991346][-0.648718,0.730804,-0.212345][0.459104,0.841016,0][-0.26351,0.580873,-1.25261][-0.390454,-0.839178,-0.378585][0.1933,0.968039,0][-0.17556,0.597216,-1.2894][0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][-0.203675,0.583716,-1.08037][0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][-0.203675,0.583716,-1.08037][0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][-0.322582,0.570023,-1.06238][-0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-0.26351,0.580873,-1.25261][-0.390454,-0.839178,-0.378585][0.1933,0.968039,0][-0.209418,0.58175,-0.970713][0.101719,-0.994812,0.00169727][0.255228,0.884333,0][-0.363599,0.568341,-0.937437][-0.42367,-0.893125,-0.1511][0.302887,0.918243,0][-0.322582,0.570023,-1.06238][-0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-0.322582,0.570023,-1.06238][-0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-0.203675,0.583716,-1.08037][0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][-0.209418,0.58175,-0.970713][0.101719,-0.994812,0.00169727][0.255228,0.884333,0][-0.174654,0.881225,-1.45414][-0.533467,0.518757,-0.66806][0.339651,0.722533,0][-3.47187e-007,0.955515,-1.47722][0,0.726258,-0.687422][0.283719,0.753836,0][-3.48603e-007,0.888992,-1.46102][0,-0.638133,-0.769926][0.283719,0.729492,0][-3.48603e-007,0.888992,-1.46102][0,-0.638133,-0.769926][0.283719,0.729492,0][-0.177633,0.80717,-1.4409][0.0453383,-0.604805,-0.795082][0.346879,0.699533,0][-0.174654,0.881225,-1.45414][-0.533467,0.518757,-0.66806][0.339651,0.722533,0][-0.168874,0.641442,-1.35103][-0.171278,-0.633,-0.754966][0.140737,0.968933,0][-3.5624e-007,0.678217,-1.37367][0,-0.5905,-0.807038][0.084712,0.931287,0][-3.60903e-007,0.631063,-1.32033][0,-0.894386,-0.447295][0.106178,0.915713,0][-3.60903e-007,0.631063,-1.32033][0,-0.894386,-0.447295][0.106178,0.915713,0][-0.17556,0.597216,-1.2894][0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][-0.168874,0.641442,-1.35103][-0.171278,-0.633,-0.754966][0.140737,0.968933,0][-0.26351,0.580873,-1.25261][-0.390454,-0.839178,-0.378585][0.1933,0.968039,0][-0.168874,0.641442,-1.35103][-0.171278,-0.633,-0.754966][0.140737,0.968933,0][-0.17556,0.597216,-1.2894][0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][-0.26351,0.580873,-1.25261][-0.390454,-0.839178,-0.378585][0.1933,0.968039,0][-0.322582,0.570023,-1.06238][-0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-0.337563,0.598778,-1.0691][-0.899764,0.330921,-0.284458][0.262244,0.949752,0][-0.337563,0.598778,-1.0691][-0.899764,0.330921,-0.284458][0.262244,0.949752,0][-0.276593,0.61707,-1.26685][-0.851659,0.236835,-0.467532][0.191286,0.982369,0][-0.26351,0.580873,-1.25261][-0.390454,-0.839178,-0.378585][0.1933,0.968039,0][-0.322582,0.570023,-1.06238][-0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-0.363599,0.568341,-0.937437][-0.42367,-0.893125,-0.1511][0.302887,0.918243,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.307281,0.930221,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.307281,0.930221,0][-0.337563,0.598778,-1.0691][-0.899764,0.330921,-0.284458][0.262244,0.949752,0][-0.322582,0.570023,-1.06238][-0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-3.5624e-007,0.678217,-1.37367][0,-0.5905,-0.807038][0.084712,0.931287,0][-0.168874,0.641442,-1.35103][-0.171278,-0.633,-0.754966][0.140737,0.968933,0][-0.176716,0.68439,-1.37314][-0.483172,0.434662,-0.760009][0.12885,0.982369,0][-0.176716,0.68439,-1.37314][-0.483172,0.434662,-0.760009][0.12885,0.982369,0][-3.5416e-007,0.724529,-1.39747][0,0.595368,-0.803453][0.067901,0.941797,0][-3.5624e-007,0.678217,-1.37367][0,-0.5905,-0.807038][0.084712,0.931287,0][-0.168874,0.641442,-1.35103][-0.171278,-0.633,-0.754966][0.140737,0.968933,0][-0.26351,0.580873,-1.25261][-0.390454,-0.839178,-0.378585][0.1933,0.968039,0][-0.276593,0.61707,-1.26685][-0.851659,0.236835,-0.467532][0.191286,0.982369,0][-0.276593,0.61707,-1.26685][-0.851659,0.236835,-0.467532][0.191286,0.982369,0][-0.176716,0.68439,-1.37314][-0.483172,0.434662,-0.760009][0.12885,0.982369,0][-0.168874,0.641442,-1.35103][-0.171278,-0.633,-0.754966][0.140737,0.968933,0][-3.76288e-007,0.854014,-1.14435][0,-0.991063,-0.133394][0.162654,0.728833,0][-0.147566,0.772715,-1.1311][0.523845,-0.846723,-0.092989][0.203695,0.774415,0][-0.163189,0.790618,-1.29208][0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-0.163189,0.790618,-1.29208][0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-3.61187e-007,0.873094,-1.31708][0,-0.992724,-0.120414][0.110997,0.76449,0][-3.76288e-007,0.854014,-1.14435][0,-0.991063,-0.133394][0.162654,0.728833,0][-3.78501e-007,0.702976,-1.11904][0,0.997407,0.0719607][0.459353,0.861769,0][-3.5416e-007,0.724529,-1.39747][0,0.595368,-0.803453][0.528767,0.935062,0][-0.176716,0.68439,-1.37314][-0.483172,0.434662,-0.760009][0.471157,0.974949,0][-0.176716,0.68439,-1.37314][-0.483172,0.434662,-0.760009][0.471157,0.974949,0][-0.146649,0.672131,-1.1065][-0.311933,0.949095,0.0437685][0.412709,0.897418,0][-3.78501e-007,0.702976,-1.11904][0,0.997407,0.0719607][0.459353,0.861769,0][-0.146649,0.672131,-1.1065][-0.311933,0.949095,0.0437685][0.412709,0.897418,0][-0.176716,0.68439,-1.37314][-0.483172,0.434662,-0.760009][0.471157,0.974949,0][-0.276593,0.61707,-1.26685][-0.851659,0.236835,-0.467532][0.413091,0.974949,0][-0.276593,0.61707,-1.26685][-0.851659,0.236835,-0.467532][0.413091,0.974949,0][-0.232148,0.638993,-1.08543][-0.363603,0.931016,-0.031665][0.383008,0.913985,0][-0.146649,0.672131,-1.1065][-0.311933,0.949095,0.0437685][0.412709,0.897418,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.217925,0.865435,0][-0.245328,0.714701,-1.27329][0.678936,-0.733194,-0.0383772][0.189296,0.838732,0][-0.236003,0.719266,-1.0901][0.597623,-0.80129,0.0279436][0.238612,0.794226,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.217925,0.865435,0][-0.236003,0.719266,-1.0901][0.597623,-0.80129,0.0279436][0.238612,0.794226,0][-0.301829,0.672016,-1.04176][0.657279,-0.753321,0.022186][0.270661,0.805859,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.217925,0.865435,0][-0.301829,0.672016,-1.04176][0.657279,-0.753321,0.022186][0.270661,0.805859,0][-0.341699,0.625833,-1.17292][-0.286804,-0.941894,-0.174872][0.247419,0.852681,0][-0.232148,0.638993,-1.08543][-0.363603,0.931016,-0.031665][0.383008,0.913985,0][-0.276593,0.61707,-1.26685][-0.851659,0.236835,-0.467532][0.413091,0.974949,0][-0.337563,0.598778,-1.0691][-0.899764,0.330921,-0.284458][0.348518,0.93662,0][-0.337563,0.598778,-1.0691][-0.899764,0.330921,-0.284458][0.348518,0.93662,0][-0.319188,0.610465,-1.0196][-0.369423,0.922954,-0.108086][0.342437,0.91804,0][-0.232148,0.638993,-1.08543][-0.363603,0.931016,-0.031665][0.383008,0.913985,0][-0.301829,0.672016,-1.04176][0.657279,-0.753321,0.022186][0.270661,0.805859,0][-0.342842,0.615878,-0.95402][-0.0643933,-0.215641,-0.974347][0.311078,0.804144,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.323301,0.816375,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.323301,0.816375,0][-0.341699,0.625833,-1.17292][-0.286804,-0.941894,-0.174872][0.247419,0.852681,0][-0.301829,0.672016,-1.04176][0.657279,-0.753321,0.022186][0.270661,0.805859,0][-0.319188,0.610465,-1.0196][-0.369423,0.922954,-0.108086][0.342437,0.91804,0][-0.337563,0.598778,-1.0691][-0.899764,0.330921,-0.284458][0.348518,0.93662,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.306454,0.914462,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.306454,0.914462,0][-0.342842,0.615878,-0.95402][-0.0643933,-0.215641,-0.974347][0.320856,0.904885,0][-0.319188,0.610465,-1.0196][-0.369423,0.922954,-0.108086][0.342437,0.91804,0][-0.190045,0.862544,-1.34867][-0.649555,0.759658,-0.0315798][0.369535,0.741707,0][-0.174654,0.881225,-1.45414][-0.533467,0.518757,-0.66806][0.339651,0.722533,0][-0.262168,0.748564,-1.38197][-0.824853,0.162233,-0.54157][0.391306,0.6979,0][-0.262168,0.748564,-1.38197][-0.824853,0.162233,-0.54157][0.391306,0.6979,0][-0.327341,0.67095,-1.2617][-0.931343,0.119353,-0.344028][0.448424,0.697716,0][-0.190045,0.862544,-1.34867][-0.649555,0.759658,-0.0315798][0.369535,0.741707,0][-0.147566,0.772715,-1.1311][0.523845,-0.846723,-0.092989][0.203695,0.774415,0][-0.236003,0.719266,-1.0901][0.597623,-0.80129,0.0279436][0.238612,0.794226,0][-0.245328,0.714701,-1.27329][0.678936,-0.733194,-0.0383772][0.189296,0.838732,0][-0.245328,0.714701,-1.27329][0.678936,-0.733194,-0.0383772][0.189296,0.838732,0][-0.163189,0.790618,-1.29208][0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-0.147566,0.772715,-1.1311][0.523845,-0.846723,-0.092989][0.203695,0.774415,0][-0.250894,0.711799,-1.38142][-0.00839236,-0.758996,-0.651041][0.39417,0.684252,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.455098,0.686845,0][-0.327341,0.67095,-1.2617][-0.931343,0.119353,-0.344028][0.448424,0.697716,0][-0.327341,0.67095,-1.2617][-0.931343,0.119353,-0.344028][0.448424,0.697716,0][-0.262168,0.748564,-1.38197][-0.824853,0.162233,-0.54157][0.391306,0.6979,0][-0.250894,0.711799,-1.38142][-0.00839236,-0.758996,-0.651041][0.39417,0.684252,0][-0.245328,0.714701,-1.27329][0.678936,-0.733194,-0.0383772][0.189296,0.838732,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.217925,0.865435,0][-0.250894,0.711799,-1.38142][-0.00839236,-0.758996,-0.651041][0.160583,0.865435,0][-0.20287,0.861877,-1.26077][-0.661667,0.731091,-0.166441][0.394649,0.761286,0][-0.190045,0.862544,-1.34867][-0.649555,0.759658,-0.0315798][0.369535,0.741707,0][-0.327341,0.67095,-1.2617][-0.931343,0.119353,-0.344028][0.448424,0.697716,0][-0.327341,0.67095,-1.2617][-0.931343,0.119353,-0.344028][0.448424,0.697716,0][-0.348659,0.659819,-1.17757][-0.967017,0.150975,-0.205146][0.477403,0.711986,0][-0.20287,0.861877,-1.26077][-0.661667,0.731091,-0.166441][0.394649,0.761286,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-3.55952e-007,0.943441,-1.37696][0,0.999234,0.0391422][0.307344,0.781011,0][-0.190045,0.862544,-1.34867][-0.649555,0.759658,-0.0315798][0.369535,0.741707,0][-0.190045,0.862544,-1.34867][-0.649555,0.759658,-0.0315798][0.369535,0.741707,0][-0.20287,0.861877,-1.26077][-0.661667,0.731091,-0.166441][0.394649,0.761286,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-0.163189,0.790618,-1.29208][0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-0.245328,0.714701,-1.27329][0.678936,-0.733194,-0.0383772][0.189296,0.838732,0][-0.250894,0.711799,-1.38142][-0.00839236,-0.758996,-0.651041][0.160583,0.865435,0][-0.250894,0.711799,-1.38142][-0.00839236,-0.758996,-0.651041][0.160583,0.865435,0][-0.177633,0.80717,-1.4409][0.0453383,-0.604805,-0.795082][0.116166,0.846189,0][-0.163189,0.790618,-1.29208][0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-3.61187e-007,0.873094,-1.31708][0,-0.992724,-0.120414][0.110997,0.76449,0][-0.163189,0.790618,-1.29208][0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-0.177633,0.80717,-1.4409][0.0453383,-0.604805,-0.795082][0.116166,0.846189,0][-0.177633,0.80717,-1.4409][0.0453383,-0.604805,-0.795082][0.116166,0.846189,0][-3.48603e-007,0.888992,-1.46102][0,-0.638133,-0.769926][0.067901,0.794118,0][-3.61187e-007,0.873094,-1.31708][0,-0.992724,-0.120414][0.110997,0.76449,0][-0.384504,0.365691,-0.330469][-0.610443,-0.709328,0.352438][0.802455,0.521508,0][-0.208093,0.236979,-0.432321][-0.462599,-0.845382,0.26708][0.815984,0.448889,0][-0.120142,0.236979,-0.34437][-0.267082,-0.845382,0.462598][0.858503,0.449154,0][-0.120142,0.236979,-0.34437][-0.267082,-0.845382,0.462598][0.858503,0.449154,0][-0.221994,0.365691,-0.167958][-0.35244,-0.709328,0.610443][0.869923,0.523425,0][-0.384504,0.365691,-0.330469][-0.610443,-0.709328,0.352438][0.802455,0.521508,0][-0.221994,0.365691,-0.167958][-0.35244,-0.709328,0.610443][0.869923,0.523425,0][-0.120142,0.236979,-0.34437][-0.267082,-0.845382,0.462598][0.858503,0.449154,0][-4.49039e-007,0.236979,-0.312178][1.17432e-006,-0.845383,0.534161][0.896951,0.435719,0][-4.49039e-007,0.236979,-0.312178][1.17432e-006,-0.845383,0.534161][0.896951,0.435719,0][-4.66847e-007,0.365691,-0.108475][0,-0.709328,0.704878][0.938645,0.502704,0][-0.221994,0.365691,-0.167958][-0.35244,-0.709328,0.610443][0.869923,0.523425,0][-3.89218e-007,0.365691,-0.996451][1.93785e-006,-0.709329,-0.704878][0.623322,0.338746,0][-4.07026e-007,0.236979,-0.792747][6.22666e-006,-0.845383,-0.534161][0.702425,0.334379,0][-0.120142,0.236979,-0.760555][-0.26708,-0.845382,-0.462598][0.714303,0.375241,0][-0.120142,0.236979,-0.760555][-0.26708,-0.845382,-0.462598][0.714303,0.375241,0][-0.221994,0.365691,-0.936967][-0.35244,-0.709328,-0.610442][0.646018,0.407253,0][-3.89218e-007,0.365691,-0.996451][1.93785e-006,-0.709329,-0.704878][0.623322,0.338746,0][-0.221994,0.365691,-0.936967][-0.35244,-0.709328,-0.610442][0.646018,0.407253,0][-0.120142,0.236979,-0.760555][-0.26708,-0.845382,-0.462598][0.714303,0.375241,0][-0.208093,0.236979,-0.672605][-0.4626,-0.845381,-0.26708][0.73983,0.410089,0][-0.208093,0.236979,-0.672605][-0.4626,-0.845381,-0.26708][0.73983,0.410089,0][-0.384504,0.365691,-0.774457][-0.610443,-0.709328,-0.352439][0.686536,0.461374,0][-0.221994,0.365691,-0.936967][-0.35244,-0.709328,-0.610442][0.646018,0.407253,0][-0.384504,0.365691,-0.774457][-0.610443,-0.709328,-0.352439][0.686536,0.461374,0][-0.208093,0.236979,-0.672605][-0.4626,-0.845381,-0.26708][0.73983,0.410089,0][-0.240284,0.236979,-0.552463][-0.534163,-0.845381,-1.14281e-006][0.774996,0.435392,0][-0.240284,0.236979,-0.552463][-0.534163,-0.845381,-1.14281e-006][0.774996,0.435392,0][-0.443987,0.365691,-0.552463][-0.704878,-0.709329,-6.19105e-007][0.740018,0.500101,0][-0.384504,0.365691,-0.774457][-0.610443,-0.709328,-0.352439][0.686536,0.461374,0][-0.443987,0.365691,-0.552463][-0.704878,-0.709329,-6.19105e-007][0.740018,0.500101,0][-0.240284,0.236979,-0.552463][-0.534163,-0.845381,-1.14281e-006][0.774996,0.435392,0][-0.208093,0.236979,-0.432321][-0.462599,-0.845382,0.26708][0.815984,0.448889,0][-0.208093,0.236979,-0.432321][-0.462599,-0.845382,0.26708][0.815984,0.448889,0][-0.384504,0.365691,-0.330469][-0.610443,-0.709328,0.352438][0.802455,0.521508,0][-0.443987,0.365691,-0.552463][-0.704878,-0.709329,-6.19105e-007][0.740018,0.500101,0][-0.502379,0.558321,-0.262414][-0.798185,-0.387985,0.460833][0.789318,0.588049,0][-0.384504,0.365691,-0.330469][-0.610443,-0.709328,0.352438][0.802455,0.521508,0][-0.221994,0.365691,-0.167958][-0.35244,-0.709328,0.610443][0.869923,0.523425,0][-0.221994,0.365691,-0.167958][-0.35244,-0.709328,0.610443][0.869923,0.523425,0][-0.290049,0.558321,-0.050084][-0.460834,-0.387986,0.798185][0.876327,0.593507,0][-0.502379,0.558321,-0.262414][-0.798185,-0.387985,0.460833][0.789318,0.588049,0][-0.290049,0.558321,-0.050084][-0.460834,-0.387986,0.798185][0.876327,0.593507,0][-0.221994,0.365691,-0.167958][-0.35244,-0.709328,0.610443][0.869923,0.523425,0][-4.66847e-007,0.365691,-0.108475][0,-0.709328,0.704878][0.938645,0.502704,0][-4.66847e-007,0.365691,-0.108475][0,-0.709328,0.704878][0.938645,0.502704,0][-4.78746e-007,0.55832,0.027635][0,-0.387987,0.921665][0.968062,0.574789,0][-0.290049,0.558321,-0.050084][-0.460834,-0.387986,0.798185][0.876327,0.593507,0][-3.77318e-007,0.558321,-1.13256][2.31388e-007,-0.387986,-0.921665][0.548019,0.355783,0][-3.89218e-007,0.365691,-0.996451][1.93785e-006,-0.709329,-0.704878][0.623322,0.338746,0][-0.221994,0.365691,-0.936967][-0.35244,-0.709328,-0.610442][0.646018,0.407253,0][-0.221994,0.365691,-0.936967][-0.35244,-0.709328,-0.610442][0.646018,0.407253,0][-0.290049,0.558321,-1.05484][-0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-3.77318e-007,0.558321,-1.13256][2.31388e-007,-0.387986,-0.921665][0.548019,0.355783,0][-0.290049,0.558321,-1.05484][-0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-0.221994,0.365691,-0.936967][-0.35244,-0.709328,-0.610442][0.646018,0.407253,0][-0.384504,0.365691,-0.774457][-0.610443,-0.709328,-0.352439][0.686536,0.461374,0][-0.384504,0.365691,-0.774457][-0.610443,-0.709328,-0.352439][0.686536,0.461374,0][-0.502379,0.558321,-0.842512][-0.798185,-0.387986,-0.460833][0.639667,0.510144,0][-0.290049,0.558321,-1.05484][-0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-0.502379,0.558321,-0.842512][-0.798185,-0.387986,-0.460833][0.639667,0.510144,0][-0.384504,0.365691,-0.774457][-0.610443,-0.709328,-0.352439][0.686536,0.461374,0][-0.443987,0.365691,-0.552463][-0.704878,-0.709329,-6.19105e-007][0.740018,0.500101,0][-0.443987,0.365691,-0.552463][-0.704878,-0.709329,-6.19105e-007][0.740018,0.500101,0][-0.580098,0.558321,-0.552463][-0.921665,-0.387987,-5.50189e-007][0.709002,0.559642,0][-0.502379,0.558321,-0.842512][-0.798185,-0.387986,-0.460833][0.639667,0.510144,0][-0.580098,0.558321,-0.552463][-0.921665,-0.387987,-5.50189e-007][0.709002,0.559642,0][-0.443987,0.365691,-0.552463][-0.704878,-0.709329,-6.19105e-007][0.740018,0.500101,0][-0.384504,0.365691,-0.330469][-0.610443,-0.709328,0.352438][0.802455,0.521508,0][-0.384504,0.365691,-0.330469][-0.610443,-0.709328,0.352438][0.802455,0.521508,0][-0.502379,0.558321,-0.262414][-0.798185,-0.387985,0.460833][0.789318,0.588049,0][-0.580098,0.558321,-0.552463][-0.921665,-0.387987,-5.50189e-007][0.709002,0.559642,0][-0.543772,0.785544,-0.238516][-0.866025,3.1121e-007,0.500001][0.774857,0.656789,0][-0.502379,0.558321,-0.262414][-0.798185,-0.387985,0.460833][0.789318,0.588049,0][-0.290049,0.558321,-0.050084][-0.460834,-0.387986,0.798185][0.876327,0.593507,0][-0.290049,0.558321,-0.050084][-0.460834,-0.387986,0.798185][0.876327,0.593507,0][-0.313947,0.785544,-0.00869099][-0.500001,3.83827e-007,0.866025][0.879397,0.665468,0][-0.543772,0.785544,-0.238516][-0.866025,3.1121e-007,0.500001][0.774857,0.656789,0][-0.313947,0.785544,-0.00869099][-0.500001,3.83827e-007,0.866025][0.879397,0.665468,0][-0.290049,0.558321,-0.050084][-0.460834,-0.387986,0.798185][0.876327,0.593507,0][-4.78746e-007,0.55832,0.027635][0,-0.387987,0.921665][0.968062,0.574789,0][-4.78746e-007,0.55832,0.027635][0,-0.387987,0.921665][0.968062,0.574789,0][-4.82924e-007,0.785544,0.075431][-1.63386e-007,1.08146e-006,1][0.98482,0.649459,0][-0.313947,0.785544,-0.00869099][-0.500001,3.83827e-007,0.866025][0.879397,0.665468,0][-3.7314e-007,0.785544,-1.18036][0,8.29896e-007,-1][0.477138,0.384967,0][-3.77318e-007,0.558321,-1.13256][2.31388e-007,-0.387986,-0.921665][0.548019,0.355783,0][-0.290049,0.558321,-1.05484][-0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-0.290049,0.558321,-1.05484][-0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-0.313947,0.785544,-1.09623][-0.500001,6.32794e-007,-0.866025][0.524748,0.481021,0][-3.7314e-007,0.785544,-1.18036][0,8.29896e-007,-1][0.477138,0.384967,0][-0.313947,0.785544,-1.09623][-0.500001,6.32794e-007,-0.866025][0.524748,0.481021,0][-0.290049,0.558321,-1.05484][-0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-0.502379,0.558321,-0.842512][-0.798185,-0.387986,-0.460833][0.639667,0.510144,0][-0.502379,0.558321,-0.842512][-0.798185,-0.387986,-0.460833][0.639667,0.510144,0][-0.543771,0.785544,-0.86641][-0.866025,2.69716e-007,-0.500001][0.591998,0.561742,0][-0.313947,0.785544,-1.09623][-0.500001,6.32794e-007,-0.866025][0.524748,0.481021,0][-0.543771,0.785544,-0.86641][-0.866025,2.69716e-007,-0.500001][0.591998,0.561742,0][-0.502379,0.558321,-0.842512][-0.798185,-0.387986,-0.460833][0.639667,0.510144,0][-0.580098,0.558321,-0.552463][-0.921665,-0.387987,-5.50189e-007][0.709002,0.559642,0][-0.580098,0.558321,-0.552463][-0.921665,-0.387987,-5.50189e-007][0.709002,0.559642,0][-0.627894,0.785544,-0.552463][-1,4.20135e-007,0][0.677025,0.621617,0][-0.543771,0.785544,-0.86641][-0.866025,2.69716e-007,-0.500001][0.591998,0.561742,0][-0.627894,0.785544,-0.552463][-1,4.20135e-007,0][0.677025,0.621617,0][-0.580098,0.558321,-0.552463][-0.921665,-0.387987,-5.50189e-007][0.709002,0.559642,0][-0.502379,0.558321,-0.262414][-0.798185,-0.387985,0.460833][0.789318,0.588049,0][-0.502379,0.558321,-0.262414][-0.798185,-0.387985,0.460833][0.789318,0.588049,0][-0.543772,0.785544,-0.238516][-0.866025,3.1121e-007,0.500001][0.774857,0.656789,0][-0.627894,0.785544,-0.552463][-1,4.20135e-007,0][0.677025,0.621617,0][-0.502379,1.01277,-0.262414][-0.798186,0.387984,0.460833][0.400365,0.483857,0][-0.543772,0.785544,-0.238516][-0.866025,3.1121e-007,0.500001][0.451077,0.425801,0][-0.313947,0.785544,-0.00869099][-0.500001,3.83827e-007,0.866025][0.527316,0.512289,0][-0.313947,0.785544,-0.00869099][-0.500001,3.83827e-007,0.866025][0.527316,0.512289,0][-0.290049,1.01277,-0.050084][-0.460834,0.387984,0.798186][0.462074,0.557001,0][-0.502379,1.01277,-0.262414][-0.798186,0.387984,0.460833][0.400365,0.483857,0][-0.290049,1.01277,-0.050084][-0.460834,0.387984,0.798186][0.462074,0.557001,0][-0.313947,0.785544,-0.00869099][-0.500001,3.83827e-007,0.866025][0.527316,0.512289,0][-4.82924e-007,0.785544,0.075431][-1.63386e-007,1.08146e-006,1][0.582479,0.616197,0][-4.82924e-007,0.785544,0.075431][-1.63386e-007,1.08146e-006,1][0.582479,0.616197,0][-4.78746e-007,1.01277,0.027635][-4.57633e-007,0.387984,0.921666][0.50562,0.650379,0][-0.290049,1.01277,-0.050084][-0.460834,0.387984,0.798186][0.462074,0.557001,0][-3.77318e-007,1.01277,-1.13256][0,0.387984,-0.921666][0.038156,0.422989,0][-3.7314e-007,0.785544,-1.18036][0,8.29896e-007,-1][0.01749,0.341591,0][-0.313947,0.785544,-1.09623][-0.500001,6.32794e-007,-0.866025][0.132645,0.320807,0][-0.313947,0.785544,-1.09623][-0.500001,6.32794e-007,-0.866025][0.132645,0.320807,0][-0.290049,1.01277,-1.05484][-0.460834,0.387984,-0.798186][0.138213,0.399651,0][-3.77318e-007,1.01277,-1.13256][0,0.387984,-0.921666][0.038156,0.422989,0][-0.290049,1.01277,-1.05484][-0.460834,0.387984,-0.798186][0.138213,0.399651,0][-0.313947,0.785544,-1.09623][-0.500001,6.32794e-007,-0.866025][0.132645,0.320807,0][-0.543771,0.785544,-0.86641][-0.866025,2.69716e-007,-0.500001][0.247585,0.327131,0][-0.543771,0.785544,-0.86641][-0.866025,2.69716e-007,-0.500001][0.247585,0.327131,0][-0.502379,1.01277,-0.842512][-0.798186,0.387984,-0.460834][0.233824,0.402977,0][-0.290049,1.01277,-1.05484][-0.460834,0.387984,-0.798186][0.138213,0.399651,0][-0.502379,1.01277,-0.842512][-0.798186,0.387984,-0.460834][0.233824,0.402977,0][-0.543771,0.785544,-0.86641][-0.866025,2.69716e-007,-0.500001][0.247585,0.327131,0][-0.627894,0.785544,-0.552463][-1,4.20135e-007,0][0.355976,0.362721,0][-0.627894,0.785544,-0.552463][-1,4.20135e-007,0][0.355976,0.362721,0][-0.580098,1.01277,-0.552463][-0.921666,0.387985,3.70221e-007][0.322795,0.431682,0][-0.502379,1.01277,-0.842512][-0.798186,0.387984,-0.460834][0.233824,0.402977,0][-0.580098,1.01277,-0.552463][-0.921666,0.387985,3.70221e-007][0.322795,0.431682,0][-0.627894,0.785544,-0.552463][-1,4.20135e-007,0][0.355976,0.362721,0][-0.543772,0.785544,-0.238516][-0.866025,3.1121e-007,0.500001][0.451077,0.425801,0][-0.543772,0.785544,-0.238516][-0.866025,3.1121e-007,0.500001][0.451077,0.425801,0][-0.502379,1.01277,-0.262414][-0.798186,0.387984,0.460833][0.400365,0.483857,0][-0.580098,1.01277,-0.552463][-0.921666,0.387985,3.70221e-007][0.322795,0.431682,0][-0.384504,1.2054,-0.330469][-0.610444,0.709327,0.352439][0.350444,0.53879,0][-0.502379,1.01277,-0.262414][-0.798186,0.387984,0.460833][0.400365,0.483857,0][-0.290049,1.01277,-0.050084][-0.460834,0.387984,0.798186][0.462074,0.557001,0][-0.290049,1.01277,-0.050084][-0.460834,0.387984,0.798186][0.462074,0.557001,0][-0.221994,1.2054,-0.167958][-0.352441,0.709327,0.610443][0.396546,0.596918,0][-0.384504,1.2054,-0.330469][-0.610444,0.709327,0.352439][0.350444,0.53879,0][-0.221994,1.2054,-0.167958][-0.352441,0.709327,0.610443][0.396546,0.596918,0][-0.290049,1.01277,-0.050084][-0.460834,0.387984,0.798186][0.462074,0.557001,0][-4.78746e-007,1.01277,0.027635][-4.57633e-007,0.387984,0.921666][0.50562,0.650379,0][-4.78746e-007,1.01277,0.027635][-4.57633e-007,0.387984,0.921666][0.50562,0.650379,0][-4.66847e-007,1.2054,-0.108475][3.07037e-007,0.709328,0.704879][0.423537,0.671373,0][-0.221994,1.2054,-0.167958][-0.352441,0.709327,0.610443][0.396546,0.596918,0][-3.89218e-007,1.2054,-0.99645][0,0.709329,-0.704877][0.07263,0.501165,0][-3.77318e-007,1.01277,-1.13256][0,0.387984,-0.921666][0.038156,0.422989,0][-0.290049,1.01277,-1.05484][-0.460834,0.387984,-0.798186][0.138213,0.399651,0][-0.290049,1.01277,-1.05484][-0.460834,0.387984,-0.798186][0.138213,0.399651,0][-0.221994,1.2054,-0.936967][-0.35244,0.709328,-0.610442][0.147381,0.476332,0][-3.89218e-007,1.2054,-0.99645][0,0.709329,-0.704877][0.07263,0.501165,0][-0.221994,1.2054,-0.936967][-0.35244,0.709328,-0.610442][0.147381,0.476332,0][-0.290049,1.01277,-1.05484][-0.460834,0.387984,-0.798186][0.138213,0.399651,0][-0.502379,1.01277,-0.842512][-0.798186,0.387984,-0.460834][0.233824,0.402977,0][-0.502379,1.01277,-0.842512][-0.798186,0.387984,-0.460834][0.233824,0.402977,0][-0.384504,1.2054,-0.774457][-0.610443,0.709328,-0.35244][0.221448,0.476373,0][-0.221994,1.2054,-0.936967][-0.35244,0.709328,-0.610442][0.147381,0.476332,0][-0.384504,1.2054,-0.774457][-0.610443,0.709328,-0.35244][0.221448,0.476373,0][-0.502379,1.01277,-0.842512][-0.798186,0.387984,-0.460834][0.233824,0.402977,0][-0.580098,1.01277,-0.552463][-0.921666,0.387985,3.70221e-007][0.322795,0.431682,0][-0.580098,1.01277,-0.552463][-0.921666,0.387985,3.70221e-007][0.322795,0.431682,0][-0.443987,1.2054,-0.552463][-0.704878,0.709328,4.80688e-007][0.290593,0.497945,0][-0.384504,1.2054,-0.774457][-0.610443,0.709328,-0.35244][0.221448,0.476373,0][-0.443987,1.2054,-0.552463][-0.704878,0.709328,4.80688e-007][0.290593,0.497945,0][-0.580098,1.01277,-0.552463][-0.921666,0.387985,3.70221e-007][0.322795,0.431682,0][-0.502379,1.01277,-0.262414][-0.798186,0.387984,0.460833][0.400365,0.483857,0][-0.502379,1.01277,-0.262414][-0.798186,0.387984,0.460833][0.400365,0.483857,0][-0.384504,1.2054,-0.330469][-0.610444,0.709327,0.352439][0.350444,0.53879,0][-0.443987,1.2054,-0.552463][-0.704878,0.709328,4.80688e-007][0.290593,0.497945,0][-0.208093,1.33411,-0.432321][-0.339863,0.919778,0.196217][0.293552,0.596678,0][-0.384504,1.2054,-0.330469][-0.610444,0.709327,0.352439][0.350444,0.53879,0][-0.221994,1.2054,-0.167958][-0.352441,0.709327,0.610443][0.396546,0.596918,0][-0.221994,1.2054,-0.167958][-0.352441,0.709327,0.610443][0.396546,0.596918,0][-0.120142,1.33411,-0.34437][-0.196219,0.919779,0.339861][0.322621,0.634123,0][-0.208093,1.33411,-0.432321][-0.339863,0.919778,0.196217][0.293552,0.596678,0][-0.120142,1.33411,-0.34437][-0.196219,0.919779,0.339861][0.322621,0.634123,0][-0.221994,1.2054,-0.167958][-0.352441,0.709327,0.610443][0.396546,0.596918,0][-4.66847e-007,1.2054,-0.108475][3.07037e-007,0.709328,0.704879][0.423537,0.671373,0][-4.66847e-007,1.2054,-0.108475][3.07037e-007,0.709328,0.704879][0.423537,0.671373,0][-4.49039e-007,1.33411,-0.312178][3.51674e-006,0.919779,0.392438][0.3369,0.678582,0][-0.120142,1.33411,-0.34437][-0.196219,0.919779,0.339861][0.322621,0.634123,0][-4.07026e-007,1.33411,-0.792747][9.65811e-007,0.919779,-0.392437][0.120414,0.573369,0][-3.89218e-007,1.2054,-0.99645][0,0.709329,-0.704877][0.07263,0.501165,0][-0.221994,1.2054,-0.936967][-0.35244,0.709328,-0.610442][0.147381,0.476332,0][-0.221994,1.2054,-0.936967][-0.35244,0.709328,-0.610442][0.147381,0.476332,0][-0.120142,1.33411,-0.760555][-0.196218,0.919779,-0.339862][0.162179,0.557456,0][-4.07026e-007,1.33411,-0.792747][9.65811e-007,0.919779,-0.392437][0.120414,0.573369,0][-0.120142,1.33411,-0.760555][-0.196218,0.919779,-0.339862][0.162179,0.557456,0][-0.221994,1.2054,-0.936967][-0.35244,0.709328,-0.610442][0.147381,0.476332,0][-0.384504,1.2054,-0.774457][-0.610443,0.709328,-0.35244][0.221448,0.476373,0][-0.384504,1.2054,-0.774457][-0.610443,0.709328,-0.35244][0.221448,0.476373,0][-0.208093,1.33411,-0.672605][-0.339862,0.919778,-0.196219][0.208828,0.556445,0][-0.120142,1.33411,-0.760555][-0.196218,0.919779,-0.339862][0.162179,0.557456,0][-0.208093,1.33411,-0.672605][-0.339862,0.919778,-0.196219][0.208828,0.556445,0][-0.384504,1.2054,-0.774457][-0.610443,0.709328,-0.35244][0.221448,0.476373,0][-0.443987,1.2054,-0.552463][-0.704878,0.709328,4.80688e-007][0.290593,0.497945,0][-0.443987,1.2054,-0.552463][-0.704878,0.709328,4.80688e-007][0.290593,0.497945,0][-0.240284,1.33411,-0.552463][-0.392438,0.919779,6.73364e-007][0.254203,0.569997,0][-0.208093,1.33411,-0.672605][-0.339862,0.919778,-0.196219][0.208828,0.556445,0][-0.240284,1.33411,-0.552463][-0.392438,0.919779,6.73364e-007][0.254203,0.569997,0][-0.443987,1.2054,-0.552463][-0.704878,0.709328,4.80688e-007][0.290593,0.497945,0][-0.384504,1.2054,-0.330469][-0.610444,0.709327,0.352439][0.350444,0.53879,0][-0.384504,1.2054,-0.330469][-0.610444,0.709327,0.352439][0.350444,0.53879,0][-0.208093,1.33411,-0.432321][-0.339863,0.919778,0.196217][0.293552,0.596678,0][-0.240284,1.33411,-0.552463][-0.392438,0.919779,6.73364e-007][0.254203,0.569997,0][-0.208093,1.33411,-0.432321][-0.339863,0.919778,0.196217][0.293552,0.596678,0][-0.120142,1.33411,-0.34437][-0.196219,0.919779,0.339861][0.322621,0.634123,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.2369,0.670661,0][-0.120142,1.33411,-0.34437][-0.196219,0.919779,0.339861][0.322621,0.634123,0][-4.49039e-007,1.33411,-0.312178][3.51674e-006,0.919779,0.392438][0.3369,0.678582,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.245239,0.683499,0][-4.07026e-007,1.33411,-0.792747][9.65811e-007,0.919779,-0.392437][0.120414,0.573369,0][-0.120142,1.33411,-0.760555][-0.196218,0.919779,-0.339862][0.162179,0.557456,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.17155,0.64481,0][-0.120142,1.33411,-0.760555][-0.196218,0.919779,-0.339862][0.162179,0.557456,0][-0.208093,1.33411,-0.672605][-0.339862,0.919778,-0.196219][0.208828,0.556445,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.187424,0.645633,0][-0.208093,1.33411,-0.672605][-0.339862,0.919778,-0.196219][0.208828,0.556445,0][-0.240284,1.33411,-0.552463][-0.392438,0.919779,6.73364e-007][0.254203,0.569997,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.205753,0.649482,0][-0.240284,1.33411,-0.552463][-0.392438,0.919779,6.73364e-007][0.254203,0.569997,0][-0.208093,1.33411,-0.432321][-0.339863,0.919778,0.196217][0.293552,0.596678,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.223155,0.658145,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-3.69293e-007,-0.482685,-1.22436][0,-0.527177,-0.849755][0.019926,0.085008,0][-3.89642e-007,-0.691277,-0.991598][0,-0.917044,-0.398786][0.059946,0,0][-3.89642e-007,-0.691277,-0.991598][0,-0.917044,-0.398786][0.059946,0,0][-0.407561,-0.691277,-0.901663][-0.243813,-0.90386,-0.351558][0.18279,0.035281,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-3.62554e-007,-0.240388,-1.30145][0,-1.93712e-006,-1][0,0.160878,0][-3.69293e-007,-0.482685,-1.22436][0,-0.527177,-0.849755][0.019926,0.085008,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-0.530576,-0.240387,-1.18437][-0.523633,-4.93715e-007,-0.851944][0.148749,0.179852,0][-3.62554e-007,-0.240388,-1.30145][0,-1.93712e-006,-1][0,0.160878,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-3.62554e-007,-0.240388,-1.30145][0,-1.93712e-006,-1][0,0.160878,0][-0.530576,-0.240387,-1.18437][-0.523633,-4.93715e-007,-0.851944][0.148749,0.179852,0][-0.530576,-0.240387,-1.18437][-0.523633,-4.93715e-007,-0.851944][0.148749,0.179852,0][-0.499972,0.00191212,-1.11404][-0.483344,0.447622,-0.752338][0.147258,0.244852,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.143496,0.302722,0][-3.79668e-007,0.164783,-1.10569][-7.2928e-007,0.742707,-0.669617][0.00748,0.301032,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-0.499972,0.00191212,-1.11404][-0.483344,0.447622,-0.752338][0.147258,0.244852,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.143496,0.302722,0][-4.02028e-007,0.297866,-0.849921][-2.01354e-007,0.938436,-0.345452][0.932082,0.825226,0][-3.79668e-007,0.164783,-1.10569][-7.2928e-007,0.742707,-0.669617][0.988246,0.830177,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.964636,0.912688,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.964636,0.912688,0][-0.328856,0.284886,-0.760842][-0.216858,0.937568,-0.271918][0.912807,0.888485,0][-4.02028e-007,0.297866,-0.849921][-2.01354e-007,0.938436,-0.345452][0.932082,0.825226,0][-0.323678,0.371453,0.347832][-0.178697,0.983319,0.0339278][0.698022,0.886122,0][-5.05368e-007,0.417315,0.332154][-1.0719e-006,0.999961,0.00885577][0.699519,0.822756,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-0.347371,0.353996,-0.064479][-0.186734,0.981368,-0.0452472][0.7776,0.890066,0][-0.323678,0.371453,0.347832][-0.178697,0.983319,0.0339278][0.698022,0.886122,0][-5.05368e-007,0.417315,0.332154][-1.0719e-006,0.999961,0.00885577][0.699519,0.822756,0][-0.323678,0.371453,0.347832][-0.178697,0.983319,0.0339278][0.698022,0.886122,0][-0.379895,0.32655,0.680231][-0.352555,0.909336,0.220937][0.634145,0.900326,0][-0.379895,0.32655,0.680231][-0.352555,0.909336,0.220937][0.634145,0.900326,0][-5.49898e-007,0.409601,0.841523][5.41083e-007,0.999628,0.027274][0.600438,0.825981,0][-5.05368e-007,0.417315,0.332154][-1.0719e-006,0.999961,0.00885577][0.699519,0.822756,0][-5.83316e-007,0.453111,1.22377][2.81211e-007,0.802225,0.597022][0.984306,0.373164,0][-0.43611,0.205816,0.915824][-0.579041,0.748421,0.323383][0.807563,0.322664,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-5.92209e-007,-0.240388,1.3255][0,-0.0453881,0.998969][0.989042,0.1566,0][-5.89479e-007,0.00191212,1.29428][0,0.140633,0.990062][0.990064,0.233902,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-0.587304,-0.240387,1.11925][-0.636191,0.00210412,0.771529][0.812186,0.17617,0][-5.92209e-007,-0.240388,1.3255][0,-0.0453881,0.998969][0.989042,0.1566,0][-5.86455e-007,-0.482687,1.25968][-4.93941e-007,-0.472318,0.881428][0.969027,0.079254,0][-5.92209e-007,-0.240388,1.3255][0,-0.0453881,0.998969][0.989042,0.1566,0][-0.587304,-0.240387,1.11925][-0.636191,0.00210412,0.771529][0.812186,0.17617,0][-0.587304,-0.240387,1.11925][-0.636191,0.00210412,0.771529][0.812186,0.17617,0][-0.553428,-0.482685,1.05671][-0.57317,-0.482791,0.66211][0.802336,0.111517,0][-5.86455e-007,-0.482687,1.25968][-4.93941e-007,-0.472318,0.881428][0.969027,0.079254,0][-5.69131e-007,-0.691277,1.06151][-6.4648e-007,-0.886631,0.462478][0.928433,0,0][-5.86455e-007,-0.482687,1.25968][-4.93941e-007,-0.472318,0.881428][0.969027,0.079254,0][-0.553428,-0.482685,1.05671][-0.57317,-0.482791,0.66211][0.802336,0.111517,0][-0.553428,-0.482685,1.05671][-0.57317,-0.482791,0.66211][0.802336,0.111517,0][-0.451136,-0.691277,0.867855][-0.321447,-0.892662,0.315954][0.779464,0.029921,0][-5.69131e-007,-0.691277,1.06151][-6.4648e-007,-0.886631,0.462478][0.928433,0,0][-5.10595e-007,-0.691277,0.391946][0,-1,0][0.718633,0.812007,0][-5.69131e-007,-0.691277,1.06151][-6.4648e-007,-0.886631,0.462478][0.588979,0.812006,0][-0.451136,-0.691277,0.867855][-0.321447,-0.892662,0.315954][0.626479,0.72465,0][-0.451136,-0.691277,0.867855][-0.321447,-0.892662,0.315954][0.626479,0.72465,0][-0.679465,-0.691277,0.391946][-0.426693,-0.897443,0.111936][0.718633,0.680437,0][-5.10595e-007,-0.691277,0.391946][0,-1,0][0.718633,0.812007,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-5.10595e-007,-0.691277,0.391946][0,-1,0][0.718633,0.812007,0][-0.679465,-0.691277,0.391946][-0.426693,-0.897443,0.111936][0.718633,0.680437,0][-0.679465,-0.691277,0.391946][-0.426693,-0.897443,0.111936][0.718633,0.680437,0][-0.746653,-0.691277,-0.0648951][-0.46184,-0.886963,-0.000720518][0.807094,0.667427,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-0.407561,-0.691277,-0.901663][-0.243813,-0.90386,-0.351558][0.969123,0.733088,0][-3.89642e-007,-0.691277,-0.991598][0,-0.917044,-0.398786][0.986538,0.812007,0][-4.31193e-007,-0.691277,-0.516304][0,-1,0][0.894503,0.812007,0][-4.31193e-007,-0.691277,-0.516304][0,-1,0][0.894503,0.812007,0][-0.678594,-0.691277,-0.516304][-0.420977,-0.8964,-0.138725][0.894503,0.680606,0][-0.407561,-0.691277,-0.901663][-0.243813,-0.90386,-0.351558][0.969123,0.733088,0][-0.833528,-0.482685,0.539991][-0.842796,-0.464227,0.272374][0.642439,0.116156,0][-0.679465,-0.691277,0.391946][-0.426693,-0.897443,0.111936][0.614797,0.033746,0][-0.451136,-0.691277,0.867855][-0.321447,-0.892662,0.315954][0.779464,0.029921,0][-0.451136,-0.691277,0.867855][-0.321447,-0.892662,0.315954][0.779464,0.029921,0][-0.553428,-0.482685,1.05671][-0.57317,-0.482791,0.66211][0.802336,0.111517,0][-0.833528,-0.482685,0.539991][-0.842796,-0.464227,0.272374][0.642439,0.116156,0][-0.915951,-0.482685,-0.0658511][-0.900844,-0.434144,-0.000271027][0.469108,0.117792,0][-0.746653,-0.691277,-0.0648951][-0.46184,-0.886963,-0.000720518][0.468852,0.038255,0][-0.679465,-0.691277,0.391946][-0.426693,-0.897443,0.111936][0.614797,0.033746,0][-0.679465,-0.691277,0.391946][-0.426693,-0.897443,0.111936][0.614797,0.033746,0][-0.833528,-0.482685,0.539991][-0.842796,-0.464227,0.272374][0.642439,0.116156,0][-0.915951,-0.482685,-0.0658511][-0.900844,-0.434144,-0.000271027][0.469108,0.117792,0][-0.83246,-0.482685,-0.682342][-0.809159,-0.482456,-0.335407][0.298707,0.123146,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-0.407561,-0.691277,-0.901663][-0.243813,-0.90386,-0.351558][0.18279,0.035281,0][-0.407561,-0.691277,-0.901663][-0.243813,-0.90386,-0.351558][0.18279,0.035281,0][-0.678594,-0.691277,-0.516304][-0.420977,-0.8964,-0.138725][0.325927,0.041277,0][-0.83246,-0.482685,-0.682342][-0.809159,-0.482456,-0.335407][0.298707,0.123146,0][-0.884549,-0.240387,0.589019][-0.945986,-4.62303e-007,0.324208][0.652545,0.184563,0][-0.833528,-0.482685,0.539991][-0.842796,-0.464227,0.272374][0.642439,0.116156,0][-0.553428,-0.482685,1.05671][-0.57317,-0.482791,0.66211][0.802336,0.111517,0][-0.553428,-0.482685,1.05671][-0.57317,-0.482791,0.66211][0.802336,0.111517,0][-0.587304,-0.240387,1.11925][-0.636191,0.00210412,0.771529][0.812186,0.17617,0][-0.884549,-0.240387,0.589019][-0.945986,-4.62303e-007,0.324208][0.652545,0.184563,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.915951,-0.482685,-0.0658511][-0.900844,-0.434144,-0.000271027][0.469108,0.117792,0][-0.833528,-0.482685,0.539991][-0.842796,-0.464227,0.272374][0.642439,0.116156,0][-0.833528,-0.482685,0.539991][-0.842796,-0.464227,0.272374][0.642439,0.116156,0][-0.884549,-0.240387,0.589019][-0.945986,-4.62303e-007,0.324208][0.652545,0.184563,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.883416,-0.240387,-0.737329][-0.915259,-5.06868e-007,-0.402865][0.289458,0.187739,0][-0.530576,-0.240387,-1.18437][-0.523633,-4.93715e-007,-0.851944][0.148749,0.179852,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-0.83246,-0.482685,-0.682342][-0.809159,-0.482456,-0.335407][0.298707,0.123146,0][-0.883416,-0.240387,-0.737329][-0.915259,-5.06868e-007,-0.402865][0.289458,0.187739,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-0.833528,0.00191212,0.539991][-0.860776,0.421298,0.285608][0.647,0.254393,0][-0.884549,-0.240387,0.589019][-0.945986,-4.62303e-007,0.324208][0.652545,0.184563,0][-0.884549,-0.240387,0.589019][-0.945986,-4.62303e-007,0.324208][0.652545,0.184563,0][-0.587304,-0.240387,1.11925][-0.636191,0.00210412,0.771529][0.812186,0.17617,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-0.833528,0.00191212,0.539991][-0.860776,0.421298,0.285608][0.647,0.254393,0][-0.915951,0.00191212,-0.0658511][-0.916098,0.400947,-0.00228306][0.470082,0.258416,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.884549,-0.240387,0.589019][-0.945986,-4.62303e-007,0.324208][0.652545,0.184563,0][-0.833528,0.00191212,0.539991][-0.860776,0.421298,0.285608][0.647,0.254393,0][-0.499972,0.00191212,-1.11404][-0.483344,0.447622,-0.752338][0.147258,0.244852,0][-0.530576,-0.240387,-1.18437][-0.523633,-4.93715e-007,-0.851944][0.148749,0.179852,0][-0.883416,-0.240387,-0.737329][-0.915259,-5.06868e-007,-0.402865][0.289458,0.187739,0][-0.883416,-0.240387,-0.737329][-0.915259,-5.06868e-007,-0.402865][0.289458,0.187739,0][-0.83246,0.00191212,-0.682342][-0.833757,0.436037,-0.338706][0.294551,0.253712,0][-0.499972,0.00191212,-1.11404][-0.483344,0.447622,-0.752338][0.147258,0.244852,0][-0.43611,0.205816,0.915824][-0.579041,0.748421,0.323383][0.807563,0.322664,0][-0.718596,0.189738,0.460671][-0.683474,0.695588,0.221405][0.638082,0.323364,0][-0.833528,0.00191212,0.539991][-0.860776,0.421298,0.285608][0.647,0.254393,0][-0.833528,0.00191212,0.539991][-0.860776,0.421298,0.285608][0.647,0.254393,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-0.43611,0.205816,0.915824][-0.579041,0.748421,0.323383][0.807563,0.322664,0][-0.718596,0.189738,0.460671][-0.683474,0.695588,0.221405][0.638082,0.323364,0][-0.789654,0.181943,-0.0655121][-0.688883,0.724588,-0.0202997][0.469315,0.324285,0][-0.915951,0.00191212,-0.0658511][-0.916098,0.400947,-0.00228306][0.470082,0.258416,0][-0.915951,0.00191212,-0.0658511][-0.916098,0.400947,-0.00228306][0.470082,0.258416,0][-0.833528,0.00191212,0.539991][-0.860776,0.421298,0.285608][0.647,0.254393,0][-0.718596,0.189738,0.460671][-0.683474,0.695588,0.221405][0.638082,0.323364,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.143496,0.302722,0][-0.499972,0.00191212,-1.11404][-0.483344,0.447622,-0.752338][0.147258,0.244852,0][-0.83246,0.00191212,-0.682342][-0.833757,0.436037,-0.338706][0.294551,0.253712,0][-0.83246,0.00191212,-0.682342][-0.833757,0.436037,-0.338706][0.294551,0.253712,0][-0.717676,0.17459,-0.606862][-0.610789,0.753622,-0.242881][0.29819,0.316682,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.143496,0.302722,0][-0.717676,0.17459,-0.606862][-0.610789,0.753622,-0.242881][0.884865,0.967652,0][-0.529325,0.279366,-0.529761][-0.340625,0.926868,-0.157766][0.867963,0.926576,0][-0.328856,0.284886,-0.760842][-0.216858,0.937568,-0.271918][0.912807,0.888485,0][-0.328856,0.284886,-0.760842][-0.216858,0.937568,-0.271918][0.912807,0.888485,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.964636,0.912688,0][-0.717676,0.17459,-0.606862][-0.610789,0.753622,-0.242881][0.884865,0.967652,0][-0.789654,0.181943,-0.0655121][-0.688883,0.724588,-0.0202997][0.779396,0.982912,0][-0.718596,0.189738,0.460671][-0.683474,0.695588,0.221405][0.676461,0.971346,0][-0.554203,0.316204,0.395136][-0.4138,0.903736,0.109683][0.689958,0.931647,0][-0.554203,0.316204,0.395136][-0.4138,0.903736,0.109683][0.689958,0.931647,0][-0.595328,0.295017,-0.065042][-0.380703,0.923505,-0.046937][0.778306,0.939277,0][-0.789654,0.181943,-0.0655121][-0.688883,0.724588,-0.0202997][0.779396,0.982912,0][-0.718596,0.189738,0.460671][-0.683474,0.695588,0.221405][0.676461,0.971346,0][-0.43611,0.205816,0.915824][-0.579041,0.748421,0.323383][0.58549,0.919903,0][-0.379895,0.32655,0.680231][-0.352555,0.909336,0.220937][0.634145,0.900326,0][-0.379895,0.32655,0.680231][-0.352555,0.909336,0.220937][0.634145,0.900326,0][-0.554203,0.316204,0.395136][-0.4138,0.903736,0.109683][0.689958,0.931647,0][-0.718596,0.189738,0.460671][-0.683474,0.695588,0.221405][0.676461,0.971346,0][-0.554203,0.316204,0.395136][-0.4138,0.903736,0.109683][0.689958,0.931647,0][-0.379895,0.32655,0.680231][-0.352555,0.909336,0.220937][0.634145,0.900326,0][-0.323678,0.371453,0.347832][-0.178697,0.983319,0.0339278][0.698022,0.886122,0][-0.595328,0.295017,-0.065042][-0.380703,0.923505,-0.046937][0.778306,0.939277,0][-0.554203,0.316204,0.395136][-0.4138,0.903736,0.109683][0.689958,0.931647,0][-0.323678,0.371453,0.347832][-0.178697,0.983319,0.0339278][0.698022,0.886122,0][-0.323678,0.371453,0.347832][-0.178697,0.983319,0.0339278][0.698022,0.886122,0][-0.347371,0.353996,-0.064479][-0.186734,0.981368,-0.0452472][0.7776,0.890066,0][-0.595328,0.295017,-0.065042][-0.380703,0.923505,-0.046937][0.778306,0.939277,0][-0.308571,0.337533,-0.456515][-0.185714,0.977363,-0.101353][0.853425,0.882687,0][-0.328856,0.284886,-0.760842][-0.216858,0.937568,-0.271918][0.912807,0.888485,0][-0.529325,0.279366,-0.529761][-0.340625,0.926868,-0.157766][0.867963,0.926576,0][-4.36948e-007,0.388076,-0.450479][0,0.993618,-0.1128][0.852241,0.821973,0][-4.02028e-007,0.297866,-0.849921][-2.01354e-007,0.938436,-0.345452][0.932082,0.825226,0][-0.328856,0.284886,-0.760842][-0.216858,0.937568,-0.271918][0.912807,0.888485,0][-0.328856,0.284886,-0.760842][-0.216858,0.937568,-0.271918][0.912807,0.888485,0][-0.308571,0.337533,-0.456515][-0.185714,0.977363,-0.101353][0.853425,0.882687,0][-4.36948e-007,0.388076,-0.450479][0,0.993618,-0.1128][0.852241,0.821973,0][-0.43611,0.205816,0.915824][-0.579041,0.748421,0.323383][0.58549,0.919903,0][-5.83316e-007,0.453111,1.22377][2.81211e-007,0.802225,0.597022][0.525402,0.821973,0][-5.49898e-007,0.409601,0.841523][5.41083e-007,0.999628,0.027274][0.600438,0.825981,0][-5.49898e-007,0.409601,0.841523][5.41083e-007,0.999628,0.027274][0.600438,0.825981,0][-0.379895,0.32655,0.680231][-0.352555,0.909336,0.220937][0.634145,0.900326,0][-0.43611,0.205816,0.915824][-0.579041,0.748421,0.323383][0.58549,0.919903,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-4.36948e-007,0.388076,-0.450479][0,0.993618,-0.1128][0.852241,0.821973,0][-0.308571,0.337533,-0.456515][-0.185714,0.977363,-0.101353][0.853425,0.882687,0][-0.308571,0.337533,-0.456515][-0.185714,0.977363,-0.101353][0.853425,0.882687,0][-0.347371,0.353996,-0.064479][-0.186734,0.981368,-0.0452472][0.7776,0.890066,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-0.308571,0.337533,-0.456515][-0.185714,0.977363,-0.101353][0.853425,0.882687,0][-0.529325,0.279366,-0.529761][-0.340625,0.926868,-0.157766][0.867963,0.926576,0][-0.595328,0.295017,-0.065042][-0.380703,0.923505,-0.046937][0.778306,0.939277,0][-0.595328,0.295017,-0.065042][-0.380703,0.923505,-0.046937][0.778306,0.939277,0][-0.347371,0.353996,-0.064479][-0.186734,0.981368,-0.0452472][0.7776,0.890066,0][-0.308571,0.337533,-0.456515][-0.185714,0.977363,-0.101353][0.853425,0.882687,0][-0.529325,0.279366,-0.529761][-0.340625,0.926868,-0.157766][0.867963,0.926576,0][-0.717676,0.17459,-0.606862][-0.610789,0.753622,-0.242881][0.884865,0.967652,0][-0.789654,0.181943,-0.0655121][-0.688883,0.724588,-0.0202997][0.779396,0.982912,0][-0.789654,0.181943,-0.0655121][-0.688883,0.724588,-0.0202997][0.779396,0.982912,0][-0.595328,0.295017,-0.065042][-0.380703,0.923505,-0.046937][0.778306,0.939277,0][-0.529325,0.279366,-0.529761][-0.340625,0.926868,-0.157766][0.867963,0.926576,0][-0.717676,0.17459,-0.606862][-0.610789,0.753622,-0.242881][0.29819,0.316682,0][-0.83246,0.00191212,-0.682342][-0.833757,0.436037,-0.338706][0.294551,0.253712,0][-0.915951,0.00191212,-0.0658511][-0.916098,0.400947,-0.00228306][0.470082,0.258416,0][-0.915951,0.00191212,-0.0658511][-0.916098,0.400947,-0.00228306][0.470082,0.258416,0][-0.789654,0.181943,-0.0655121][-0.688883,0.724588,-0.0202997][0.469315,0.324285,0][-0.717676,0.17459,-0.606862][-0.610789,0.753622,-0.242881][0.29819,0.316682,0][-0.83246,0.00191212,-0.682342][-0.833757,0.436037,-0.338706][0.294551,0.253712,0][-0.883416,-0.240387,-0.737329][-0.915259,-5.06868e-007,-0.402865][0.289458,0.187739,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.915951,0.00191212,-0.0658511][-0.916098,0.400947,-0.00228306][0.470082,0.258416,0][-0.83246,0.00191212,-0.682342][-0.833757,0.436037,-0.338706][0.294551,0.253712,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.883416,-0.240387,-0.737329][-0.915259,-5.06868e-007,-0.402865][0.289458,0.187739,0][-0.83246,-0.482685,-0.682342][-0.809159,-0.482456,-0.335407][0.298707,0.123146,0][-0.83246,-0.482685,-0.682342][-0.809159,-0.482456,-0.335407][0.298707,0.123146,0][-0.915951,-0.482685,-0.0658511][-0.900844,-0.434144,-0.000271027][0.469108,0.117792,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.915951,-0.482685,-0.0658511][-0.900844,-0.434144,-0.000271027][0.469108,0.117792,0][-0.83246,-0.482685,-0.682342][-0.809159,-0.482456,-0.335407][0.298707,0.123146,0][-0.678594,-0.691277,-0.516304][-0.420977,-0.8964,-0.138725][0.325927,0.041277,0][-0.678594,-0.691277,-0.516304][-0.420977,-0.8964,-0.138725][0.325927,0.041277,0][-0.746653,-0.691277,-0.0648951][-0.46184,-0.886963,-0.000720518][0.468852,0.038255,0][-0.915951,-0.482685,-0.0658511][-0.900844,-0.434144,-0.000271027][0.469108,0.117792,0][-0.678594,-0.691277,-0.516304][-0.420977,-0.8964,-0.138725][0.894503,0.680606,0][-4.31193e-007,-0.691277,-0.516304][0,-1,0][0.894503,0.812007,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-0.746653,-0.691277,-0.0648951][-0.46184,-0.886963,-0.000720518][0.807094,0.667427,0][-0.678594,-0.691277,-0.516304][-0.420977,-0.8964,-0.138725][0.894503,0.680606,0][-5.83316e-007,0.453111,1.22377][2.81211e-007,0.802225,0.597022][0.984306,0.373164,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-5.89479e-007,0.00191212,1.29428][0,0.140633,0.990062][0.990064,0.233902,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.455098,0.686845,0][0.327341,0.67095,-1.2617][0.931343,0.119357,-0.344027][0.448424,0.697716,0][0.348659,0.659819,-1.17757][0.967017,0.150976,-0.205144][0.477403,0.711986,0][0.348659,0.659819,-1.17757][0.967017,0.150976,-0.205144][0.477403,0.711986,0][0.341699,0.625833,-1.17292][0.286809,-0.941893,-0.174866][0.485736,0.70184,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.455098,0.686845,0][0.174654,0.881225,-1.45414][0.533467,0.518757,-0.66806][0.339651,0.722533,0][-3.47187e-007,0.955515,-1.47722][0,0.726258,-0.687422][0.283719,0.753836,0][-3.55952e-007,0.943441,-1.37696][0,0.999234,0.0391422][0.307344,0.781011,0][-3.55952e-007,0.943441,-1.37696][0,0.999234,0.0391422][0.307344,0.781011,0][0.190045,0.862544,-1.34867][0.649555,0.759658,-0.0315796][0.369535,0.741707,0][0.174654,0.881225,-1.45414][0.533467,0.518757,-0.66806][0.339651,0.722533,0][-3.78136e-007,0.602192,-1.12321][0,-0.995409,-0.0957087][0.159149,0.866801,0][-3.60903e-007,0.631063,-1.32033][0,-0.894386,-0.447295][0.106178,0.915713,0][0.17556,0.597216,-1.2894][-0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][0.17556,0.597216,-1.2894][-0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][0.203675,0.583716,-1.08037][-0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][-3.78136e-007,0.602192,-1.12321][0,-0.995409,-0.0957087][0.159149,0.866801,0][0.262168,0.748564,-1.38197][0.824853,0.162232,-0.54157][0.391306,0.6979,0][0.250894,0.711799,-1.38142][0.00839223,-0.758995,-0.651042][0.39417,0.684252,0][0.177633,0.80717,-1.4409][-0.0453384,-0.604805,-0.795082][0.346879,0.699533,0][0.177633,0.80717,-1.4409][-0.0453384,-0.604805,-0.795082][0.346879,0.699533,0][0.174654,0.881225,-1.45414][0.533467,0.518757,-0.66806][0.339651,0.722533,0][0.262168,0.748564,-1.38197][0.824853,0.162232,-0.54157][0.391306,0.6979,0][0.222343,0.932087,-0.991346][0.64872,0.730803,-0.212343][0.459104,0.841016,0][0.20287,0.861877,-1.26077][0.661667,0.731092,-0.166439][0.394649,0.761286,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-3.89664e-007,1.03146,-0.991346][1.59787e-006,0.964114,-0.26549][0.391525,0.899385,0][0.222343,0.932087,-0.991346][0.64872,0.730803,-0.212343][0.459104,0.841016,0][0.341699,0.625833,-1.17292][0.286809,-0.941893,-0.174866][0.485736,0.70184,0][0.348659,0.659819,-1.17757][0.967017,0.150976,-0.205144][0.477403,0.711986,0][0.389567,0.631038,-0.953195][0.980476,0.0959854,-0.171623][0.552042,0.753156,0][0.389567,0.631038,-0.953195][0.980476,0.0959854,-0.171623][0.552042,0.753156,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.562596,0.743023,0][0.341699,0.625833,-1.17292][0.286809,-0.941893,-0.174866][0.485736,0.70184,0][0.348659,0.659819,-1.17757][0.967017,0.150976,-0.205144][0.477403,0.711986,0][0.20287,0.861877,-1.26077][0.661667,0.731092,-0.166439][0.394649,0.761286,0][0.222343,0.932087,-0.991346][0.64872,0.730803,-0.212343][0.459104,0.841016,0][0.222343,0.932087,-0.991346][0.64872,0.730803,-0.212343][0.459104,0.841016,0][0.389567,0.631038,-0.953195][0.980476,0.0959854,-0.171623][0.552042,0.753156,0][0.348659,0.659819,-1.17757][0.967017,0.150976,-0.205144][0.477403,0.711986,0][0.203675,0.583716,-1.08037][-0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][0.17556,0.597216,-1.2894][-0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][0.26351,0.580873,-1.25261][0.390454,-0.839178,-0.378585][0.1933,0.968039,0][0.26351,0.580873,-1.25261][0.390454,-0.839178,-0.378585][0.1933,0.968039,0][0.322582,0.570023,-1.06238][0.411178,-0.893772,-0.179176][0.258229,0.937961,0][0.203675,0.583716,-1.08037][-0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][0.322582,0.570023,-1.06238][0.411178,-0.893772,-0.179176][0.258229,0.937961,0][0.363599,0.568341,-0.937437][0.42367,-0.893125,-0.1511][0.302887,0.918243,0][0.209418,0.58175,-0.970713][-0.101719,-0.994812,0.00169728][0.255228,0.884333,0][0.209418,0.58175,-0.970713][-0.101719,-0.994812,0.00169728][0.255228,0.884333,0][0.203675,0.583716,-1.08037][-0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][0.322582,0.570023,-1.06238][0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-3.48603e-007,0.888992,-1.46102][0,-0.638133,-0.769926][0.283719,0.729492,0][-3.47187e-007,0.955515,-1.47722][0,0.726258,-0.687422][0.283719,0.753836,0][0.174654,0.881225,-1.45414][0.533467,0.518757,-0.66806][0.339651,0.722533,0][0.174654,0.881225,-1.45414][0.533467,0.518757,-0.66806][0.339651,0.722533,0][0.177633,0.80717,-1.4409][-0.0453384,-0.604805,-0.795082][0.346879,0.699533,0][-3.48603e-007,0.888992,-1.46102][0,-0.638133,-0.769926][0.283719,0.729492,0][-3.60903e-007,0.631063,-1.32033][0,-0.894386,-0.447295][0.106178,0.915713,0][-3.5624e-007,0.678217,-1.37367][0,-0.5905,-0.807038][0.084712,0.931287,0][0.168874,0.641442,-1.35103][0.171278,-0.633,-0.754966][0.140737,0.968933,0][0.168874,0.641442,-1.35103][0.171278,-0.633,-0.754966][0.140737,0.968933,0][0.17556,0.597216,-1.2894][-0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][-3.60903e-007,0.631063,-1.32033][0,-0.894386,-0.447295][0.106178,0.915713,0][0.26351,0.580873,-1.25261][0.390454,-0.839178,-0.378585][0.1933,0.968039,0][0.17556,0.597216,-1.2894][-0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][0.168874,0.641442,-1.35103][0.171278,-0.633,-0.754966][0.140737,0.968933,0][0.26351,0.580873,-1.25261][0.390454,-0.839178,-0.378585][0.1933,0.968039,0][0.276593,0.61707,-1.26685][0.851659,0.236835,-0.467532][0.191286,0.982369,0][0.337563,0.598778,-1.0691][0.899764,0.330921,-0.284458][0.262244,0.949752,0][0.337563,0.598778,-1.0691][0.899764,0.330921,-0.284458][0.262244,0.949752,0][0.322582,0.570023,-1.06238][0.411178,-0.893772,-0.179176][0.258229,0.937961,0][0.26351,0.580873,-1.25261][0.390454,-0.839178,-0.378585][0.1933,0.968039,0][0.322582,0.570023,-1.06238][0.411178,-0.893772,-0.179176][0.258229,0.937961,0][0.337563,0.598778,-1.0691][0.899764,0.330921,-0.284458][0.262244,0.949752,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.307281,0.930221,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.307281,0.930221,0][0.363599,0.568341,-0.937437][0.42367,-0.893125,-0.1511][0.302887,0.918243,0][0.322582,0.570023,-1.06238][0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-3.5624e-007,0.678217,-1.37367][0,-0.5905,-0.807038][0.084712,0.931287,0][-3.5416e-007,0.724529,-1.39747][0,0.595368,-0.803453][0.067901,0.941797,0][0.176716,0.68439,-1.37314][0.483172,0.434662,-0.760009][0.12885,0.982369,0][0.176716,0.68439,-1.37314][0.483172,0.434662,-0.760009][0.12885,0.982369,0][0.168874,0.641442,-1.35103][0.171278,-0.633,-0.754966][0.140737,0.968933,0][-3.5624e-007,0.678217,-1.37367][0,-0.5905,-0.807038][0.084712,0.931287,0][0.168874,0.641442,-1.35103][0.171278,-0.633,-0.754966][0.140737,0.968933,0][0.176716,0.68439,-1.37314][0.483172,0.434662,-0.760009][0.12885,0.982369,0][0.276593,0.61707,-1.26685][0.851659,0.236835,-0.467532][0.191286,0.982369,0][0.276593,0.61707,-1.26685][0.851659,0.236835,-0.467532][0.191286,0.982369,0][0.26351,0.580873,-1.25261][0.390454,-0.839178,-0.378585][0.1933,0.968039,0][0.168874,0.641442,-1.35103][0.171278,-0.633,-0.754966][0.140737,0.968933,0][-3.76288e-007,0.854014,-1.14435][0,-0.991063,-0.133394][0.162654,0.728833,0][-3.61187e-007,0.873094,-1.31708][0,-0.992724,-0.120414][0.110997,0.76449,0][0.163189,0.790618,-1.29208][-0.570563,-0.81207,-0.122475][0.158257,0.811764,0][0.163189,0.790618,-1.29208][-0.570563,-0.81207,-0.122475][0.158257,0.811764,0][0.147566,0.772715,-1.1311][-0.523845,-0.846723,-0.0929891][0.203695,0.774415,0][-3.76288e-007,0.854014,-1.14435][0,-0.991063,-0.133394][0.162654,0.728833,0][0.176716,0.68439,-1.37314][0.483172,0.434662,-0.760009][0.471157,0.974949,0][-3.5416e-007,0.724529,-1.39747][0,0.595368,-0.803453][0.528767,0.935062,0][-3.78501e-007,0.702976,-1.11904][0,0.997407,0.0719607][0.459353,0.861769,0][-3.78501e-007,0.702976,-1.11904][0,0.997407,0.0719607][0.459353,0.861769,0][0.146649,0.672131,-1.1065][0.311933,0.949095,0.0437686][0.412709,0.897418,0][0.176716,0.68439,-1.37314][0.483172,0.434662,-0.760009][0.471157,0.974949,0][0.276593,0.61707,-1.26685][0.851659,0.236835,-0.467532][0.413091,0.974949,0][0.176716,0.68439,-1.37314][0.483172,0.434662,-0.760009][0.471157,0.974949,0][0.146649,0.672131,-1.1065][0.311933,0.949095,0.0437686][0.412709,0.897418,0][0.146649,0.672131,-1.1065][0.311933,0.949095,0.0437686][0.412709,0.897418,0][0.232148,0.638993,-1.08543][0.363603,0.931016,-0.0316649][0.383008,0.913985,0][0.276593,0.61707,-1.26685][0.851659,0.236835,-0.467532][0.413091,0.974949,0][0.236003,0.719266,-1.0901][-0.597624,-0.801289,0.0279448][0.238612,0.794226,0][0.245328,0.714701,-1.27329][-0.678938,-0.733192,-0.0383776][0.189296,0.838732,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.217925,0.865435,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.217925,0.865435,0][0.341699,0.625833,-1.17292][0.286809,-0.941893,-0.174866][0.247419,0.852681,0][0.301829,0.672016,-1.04176][-0.657279,-0.753321,0.0221874][0.270661,0.805859,0][0.236003,0.719266,-1.0901][-0.597624,-0.801289,0.0279448][0.238612,0.794226,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.217925,0.865435,0][0.301829,0.672016,-1.04176][-0.657279,-0.753321,0.0221874][0.270661,0.805859,0][0.337563,0.598778,-1.0691][0.899764,0.330921,-0.284458][0.348518,0.93662,0][0.276593,0.61707,-1.26685][0.851659,0.236835,-0.467532][0.413091,0.974949,0][0.232148,0.638993,-1.08543][0.363603,0.931016,-0.0316649][0.383008,0.913985,0][0.232148,0.638993,-1.08543][0.363603,0.931016,-0.0316649][0.383008,0.913985,0][0.319188,0.610465,-1.0196][0.369423,0.922954,-0.108086][0.342437,0.91804,0][0.337563,0.598778,-1.0691][0.899764,0.330921,-0.284458][0.348518,0.93662,0][0.301829,0.672016,-1.04176][-0.657279,-0.753321,0.0221874][0.270661,0.805859,0][0.341699,0.625833,-1.17292][0.286809,-0.941893,-0.174866][0.247419,0.852681,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.323301,0.816375,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.323301,0.816375,0][0.342842,0.615878,-0.95402][0.0643929,-0.215642,-0.974347][0.311078,0.804144,0][0.301829,0.672016,-1.04176][-0.657279,-0.753321,0.0221874][0.270661,0.805859,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.306454,0.914462,0][0.337563,0.598778,-1.0691][0.899764,0.330921,-0.284458][0.348518,0.93662,0][0.319188,0.610465,-1.0196][0.369423,0.922954,-0.108086][0.342437,0.91804,0][0.319188,0.610465,-1.0196][0.369423,0.922954,-0.108086][0.342437,0.91804,0][0.342842,0.615878,-0.95402][0.0643929,-0.215642,-0.974347][0.320856,0.904885,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.306454,0.914462,0][0.190045,0.862544,-1.34867][0.649555,0.759658,-0.0315796][0.369535,0.741707,0][0.327341,0.67095,-1.2617][0.931343,0.119357,-0.344027][0.448424,0.697716,0][0.262168,0.748564,-1.38197][0.824853,0.162232,-0.54157][0.391306,0.6979,0][0.262168,0.748564,-1.38197][0.824853,0.162232,-0.54157][0.391306,0.6979,0][0.174654,0.881225,-1.45414][0.533467,0.518757,-0.66806][0.339651,0.722533,0][0.190045,0.862544,-1.34867][0.649555,0.759658,-0.0315796][0.369535,0.741707,0][0.147566,0.772715,-1.1311][-0.523845,-0.846723,-0.0929891][0.203695,0.774415,0][0.163189,0.790618,-1.29208][-0.570563,-0.81207,-0.122475][0.158257,0.811764,0][0.245328,0.714701,-1.27329][-0.678938,-0.733192,-0.0383776][0.189296,0.838732,0][0.245328,0.714701,-1.27329][-0.678938,-0.733192,-0.0383776][0.189296,0.838732,0][0.236003,0.719266,-1.0901][-0.597624,-0.801289,0.0279448][0.238612,0.794226,0][0.147566,0.772715,-1.1311][-0.523845,-0.846723,-0.0929891][0.203695,0.774415,0][0.250894,0.711799,-1.38142][0.00839223,-0.758995,-0.651042][0.39417,0.684252,0][0.262168,0.748564,-1.38197][0.824853,0.162232,-0.54157][0.391306,0.6979,0][0.327341,0.67095,-1.2617][0.931343,0.119357,-0.344027][0.448424,0.697716,0][0.327341,0.67095,-1.2617][0.931343,0.119357,-0.344027][0.448424,0.697716,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.455098,0.686845,0][0.250894,0.711799,-1.38142][0.00839223,-0.758995,-0.651042][0.39417,0.684252,0][0.245328,0.714701,-1.27329][-0.678938,-0.733192,-0.0383776][0.189296,0.838732,0][0.250894,0.711799,-1.38142][0.00839223,-0.758995,-0.651042][0.160583,0.865435,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.217925,0.865435,0][0.327341,0.67095,-1.2617][0.931343,0.119357,-0.344027][0.448424,0.697716,0][0.190045,0.862544,-1.34867][0.649555,0.759658,-0.0315796][0.369535,0.741707,0][0.20287,0.861877,-1.26077][0.661667,0.731092,-0.166439][0.394649,0.761286,0][0.20287,0.861877,-1.26077][0.661667,0.731092,-0.166439][0.394649,0.761286,0][0.348659,0.659819,-1.17757][0.967017,0.150976,-0.205144][0.477403,0.711986,0][0.327341,0.67095,-1.2617][0.931343,0.119357,-0.344027][0.448424,0.697716,0][0.190045,0.862544,-1.34867][0.649555,0.759658,-0.0315796][0.369535,0.741707,0][-3.55952e-007,0.943441,-1.37696][0,0.999234,0.0391422][0.307344,0.781011,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][0.20287,0.861877,-1.26077][0.661667,0.731092,-0.166439][0.394649,0.761286,0][0.190045,0.862544,-1.34867][0.649555,0.759658,-0.0315796][0.369535,0.741707,0][0.250894,0.711799,-1.38142][0.00839223,-0.758995,-0.651042][0.160583,0.865435,0][0.245328,0.714701,-1.27329][-0.678938,-0.733192,-0.0383776][0.189296,0.838732,0][0.163189,0.790618,-1.29208][-0.570563,-0.81207,-0.122475][0.158257,0.811764,0][0.163189,0.790618,-1.29208][-0.570563,-0.81207,-0.122475][0.158257,0.811764,0][0.177633,0.80717,-1.4409][-0.0453384,-0.604805,-0.795082][0.116166,0.846189,0][0.250894,0.711799,-1.38142][0.00839223,-0.758995,-0.651042][0.160583,0.865435,0][-3.61187e-007,0.873094,-1.31708][0,-0.992724,-0.120414][0.110997,0.76449,0][-3.48603e-007,0.888992,-1.46102][0,-0.638133,-0.769926][0.067901,0.794118,0][0.177633,0.80717,-1.4409][-0.0453384,-0.604805,-0.795082][0.116166,0.846189,0][0.177633,0.80717,-1.4409][-0.0453384,-0.604805,-0.795082][0.116166,0.846189,0][0.163189,0.790618,-1.29208][-0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-3.61187e-007,0.873094,-1.31708][0,-0.992724,-0.120414][0.110997,0.76449,0][0.120142,0.23698,-0.34437][0.267084,-0.845383,0.462594][0.858503,0.449154,0][0.208093,0.23698,-0.432321][0.462598,-0.845382,0.267081][0.815984,0.448889,0][0.384504,0.365692,-0.330469][0.610442,-0.709329,0.352438][0.802455,0.521508,0][0.384504,0.365692,-0.330469][0.610442,-0.709329,0.352438][0.802455,0.521508,0][0.221994,0.365691,-0.167958][0.35244,-0.709329,0.610441][0.869923,0.523425,0][0.120142,0.23698,-0.34437][0.267084,-0.845383,0.462594][0.858503,0.449154,0][-4.49039e-007,0.236979,-0.312178][1.17432e-006,-0.845383,0.534161][0.896951,0.435719,0][0.120142,0.23698,-0.34437][0.267084,-0.845383,0.462594][0.858503,0.449154,0][0.221994,0.365691,-0.167958][0.35244,-0.709329,0.610441][0.869923,0.523425,0][0.221994,0.365691,-0.167958][0.35244,-0.709329,0.610441][0.869923,0.523425,0][-4.66847e-007,0.365691,-0.108475][0,-0.709328,0.704878][0.938645,0.502704,0][-4.49039e-007,0.236979,-0.312178][1.17432e-006,-0.845383,0.534161][0.896951,0.435719,0][0.120142,0.236981,-0.760555][0.26708,-0.845383,-0.462597][0.714303,0.375241,0][-4.07026e-007,0.236979,-0.792747][6.22666e-006,-0.845383,-0.534161][0.702425,0.334379,0][-3.89218e-007,0.365691,-0.996451][1.93785e-006,-0.709329,-0.704878][0.623322,0.338746,0][-3.89218e-007,0.365691,-0.996451][1.93785e-006,-0.709329,-0.704878][0.623322,0.338746,0][0.221994,0.365692,-0.936967][0.352439,-0.70933,-0.610441][0.646018,0.407253,0][0.120142,0.236981,-0.760555][0.26708,-0.845383,-0.462597][0.714303,0.375241,0][0.208093,0.23698,-0.672605][0.462596,-0.845384,-0.26708][0.73983,0.410089,0][0.120142,0.236981,-0.760555][0.26708,-0.845383,-0.462597][0.714303,0.375241,0][0.221994,0.365692,-0.936967][0.352439,-0.70933,-0.610441][0.646018,0.407253,0][0.221994,0.365692,-0.936967][0.352439,-0.70933,-0.610441][0.646018,0.407253,0][0.384504,0.365691,-0.774457][0.610441,-0.70933,-0.352439][0.686536,0.461374,0][0.208093,0.23698,-0.672605][0.462596,-0.845384,-0.26708][0.73983,0.410089,0][0.240284,0.23698,-0.552463][0.53416,-0.845383,-1.19323e-006][0.774996,0.435392,0][0.208093,0.23698,-0.672605][0.462596,-0.845384,-0.26708][0.73983,0.410089,0][0.384504,0.365691,-0.774457][0.610441,-0.70933,-0.352439][0.686536,0.461374,0][0.384504,0.365691,-0.774457][0.610441,-0.70933,-0.352439][0.686536,0.461374,0][0.443987,0.365691,-0.552463][0.704877,-0.70933,6.9964e-007][0.740018,0.500101,0][0.240284,0.23698,-0.552463][0.53416,-0.845383,-1.19323e-006][0.774996,0.435392,0][0.208093,0.23698,-0.432321][0.462598,-0.845382,0.267081][0.815984,0.448889,0][0.240284,0.23698,-0.552463][0.53416,-0.845383,-1.19323e-006][0.774996,0.435392,0][0.443987,0.365691,-0.552463][0.704877,-0.70933,6.9964e-007][0.740018,0.500101,0][0.443987,0.365691,-0.552463][0.704877,-0.70933,6.9964e-007][0.740018,0.500101,0][0.384504,0.365692,-0.330469][0.610442,-0.709329,0.352438][0.802455,0.521508,0][0.208093,0.23698,-0.432321][0.462598,-0.845382,0.267081][0.815984,0.448889,0][0.221994,0.365691,-0.167958][0.35244,-0.709329,0.610441][0.869923,0.523425,0][0.384504,0.365692,-0.330469][0.610442,-0.709329,0.352438][0.802455,0.521508,0][0.502379,0.558321,-0.262414][0.798185,-0.387986,0.460833][0.789318,0.588049,0][0.502379,0.558321,-0.262414][0.798185,-0.387986,0.460833][0.789318,0.588049,0][0.290049,0.558321,-0.050084][0.460834,-0.387986,0.798185][0.876327,0.593507,0][0.221994,0.365691,-0.167958][0.35244,-0.709329,0.610441][0.869923,0.523425,0][-4.66847e-007,0.365691,-0.108475][0,-0.709328,0.704878][0.938645,0.502704,0][0.221994,0.365691,-0.167958][0.35244,-0.709329,0.610441][0.869923,0.523425,0][0.290049,0.558321,-0.050084][0.460834,-0.387986,0.798185][0.876327,0.593507,0][0.290049,0.558321,-0.050084][0.460834,-0.387986,0.798185][0.876327,0.593507,0][-4.78746e-007,0.55832,0.027635][0,-0.387987,0.921665][0.968062,0.574789,0][-4.66847e-007,0.365691,-0.108475][0,-0.709328,0.704878][0.938645,0.502704,0][0.221994,0.365692,-0.936967][0.352439,-0.70933,-0.610441][0.646018,0.407253,0][-3.89218e-007,0.365691,-0.996451][1.93785e-006,-0.709329,-0.704878][0.623322,0.338746,0][-3.77318e-007,0.558321,-1.13256][2.31388e-007,-0.387986,-0.921665][0.548019,0.355783,0][-3.77318e-007,0.558321,-1.13256][2.31388e-007,-0.387986,-0.921665][0.548019,0.355783,0][0.290049,0.558321,-1.05484][0.460833,-0.387986,-0.798185][0.585313,0.441949,0][0.221994,0.365692,-0.936967][0.352439,-0.70933,-0.610441][0.646018,0.407253,0][0.384504,0.365691,-0.774457][0.610441,-0.70933,-0.352439][0.686536,0.461374,0][0.221994,0.365692,-0.936967][0.352439,-0.70933,-0.610441][0.646018,0.407253,0][0.290049,0.558321,-1.05484][0.460833,-0.387986,-0.798185][0.585313,0.441949,0][0.290049,0.558321,-1.05484][0.460833,-0.387986,-0.798185][0.585313,0.441949,0][0.502379,0.558321,-0.842512][0.798185,-0.387986,-0.460833][0.639667,0.510144,0][0.384504,0.365691,-0.774457][0.610441,-0.70933,-0.352439][0.686536,0.461374,0][0.443987,0.365691,-0.552463][0.704877,-0.70933,6.9964e-007][0.740018,0.500101,0][0.384504,0.365691,-0.774457][0.610441,-0.70933,-0.352439][0.686536,0.461374,0][0.502379,0.558321,-0.842512][0.798185,-0.387986,-0.460833][0.639667,0.510144,0][0.502379,0.558321,-0.842512][0.798185,-0.387986,-0.460833][0.639667,0.510144,0][0.580098,0.558321,-0.552463][0.921665,-0.387987,-1.28549e-007][0.709002,0.559642,0][0.443987,0.365691,-0.552463][0.704877,-0.70933,6.9964e-007][0.740018,0.500101,0][0.384504,0.365692,-0.330469][0.610442,-0.709329,0.352438][0.802455,0.521508,0][0.443987,0.365691,-0.552463][0.704877,-0.70933,6.9964e-007][0.740018,0.500101,0][0.580098,0.558321,-0.552463][0.921665,-0.387987,-1.28549e-007][0.709002,0.559642,0][0.580098,0.558321,-0.552463][0.921665,-0.387987,-1.28549e-007][0.709002,0.559642,0][0.502379,0.558321,-0.262414][0.798185,-0.387986,0.460833][0.789318,0.588049,0][0.384504,0.365692,-0.330469][0.610442,-0.709329,0.352438][0.802455,0.521508,0][0.290049,0.558321,-0.050084][0.460834,-0.387986,0.798185][0.876327,0.593507,0][0.502379,0.558321,-0.262414][0.798185,-0.387986,0.460833][0.789318,0.588049,0][0.543771,0.785544,-0.238516][0.866025,3.24177e-007,0.500001][0.774857,0.656789,0][0.543771,0.785544,-0.238516][0.866025,3.24177e-007,0.500001][0.774857,0.656789,0][0.313947,0.785544,-0.00869094][0.500001,0,0.866025][0.879397,0.665468,0][0.290049,0.558321,-0.050084][0.460834,-0.387986,0.798185][0.876327,0.593507,0][-4.78746e-007,0.55832,0.027635][0,-0.387987,0.921665][0.968062,0.574789,0][0.290049,0.558321,-0.050084][0.460834,-0.387986,0.798185][0.876327,0.593507,0][0.313947,0.785544,-0.00869094][0.500001,0,0.866025][0.879397,0.665468,0][0.313947,0.785544,-0.00869094][0.500001,0,0.866025][0.879397,0.665468,0][-4.82924e-007,0.785544,0.075431][-1.63386e-007,1.08146e-006,1][0.98482,0.649459,0][-4.78746e-007,0.55832,0.027635][0,-0.387987,0.921665][0.968062,0.574789,0][0.290049,0.558321,-1.05484][0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-3.77318e-007,0.558321,-1.13256][2.31388e-007,-0.387986,-0.921665][0.548019,0.355783,0][-3.7314e-007,0.785544,-1.18036][0,8.29896e-007,-1][0.477138,0.384967,0][-3.7314e-007,0.785544,-1.18036][0,8.29896e-007,-1][0.477138,0.384967,0][0.313947,0.785544,-1.09623][0.500001,6.17234e-007,-0.866025][0.524748,0.481021,0][0.290049,0.558321,-1.05484][0.460833,-0.387986,-0.798185][0.585313,0.441949,0][0.502379,0.558321,-0.842512][0.798185,-0.387986,-0.460833][0.639667,0.510144,0][0.290049,0.558321,-1.05484][0.460833,-0.387986,-0.798185][0.585313,0.441949,0][0.313947,0.785544,-1.09623][0.500001,6.17234e-007,-0.866025][0.524748,0.481021,0][0.313947,0.785544,-1.09623][0.500001,6.17234e-007,-0.866025][0.524748,0.481021,0][0.543771,0.785544,-0.86641][0.866025,2.69716e-007,-0.500001][0.591998,0.561742,0][0.502379,0.558321,-0.842512][0.798185,-0.387986,-0.460833][0.639667,0.510144,0][0.580098,0.558321,-0.552463][0.921665,-0.387987,-1.28549e-007][0.709002,0.559642,0][0.502379,0.558321,-0.842512][0.798185,-0.387986,-0.460833][0.639667,0.510144,0][0.543771,0.785544,-0.86641][0.866025,2.69716e-007,-0.500001][0.591998,0.561742,0][0.543771,0.785544,-0.86641][0.866025,2.69716e-007,-0.500001][0.591998,0.561742,0][0.627894,0.785544,-0.552463][1,4.04574e-007,1.60792e-007][0.677025,0.621617,0][0.580098,0.558321,-0.552463][0.921665,-0.387987,-1.28549e-007][0.709002,0.559642,0][0.502379,0.558321,-0.262414][0.798185,-0.387986,0.460833][0.789318,0.588049,0][0.580098,0.558321,-0.552463][0.921665,-0.387987,-1.28549e-007][0.709002,0.559642,0][0.627894,0.785544,-0.552463][1,4.04574e-007,1.60792e-007][0.677025,0.621617,0][0.627894,0.785544,-0.552463][1,4.04574e-007,1.60792e-007][0.677025,0.621617,0][0.543771,0.785544,-0.238516][0.866025,3.24177e-007,0.500001][0.774857,0.656789,0][0.502379,0.558321,-0.262414][0.798185,-0.387986,0.460833][0.789318,0.588049,0][0.313947,0.785544,-0.00869094][0.500001,0,0.866025][0.527316,0.512289,0][0.543771,0.785544,-0.238516][0.866025,3.24177e-007,0.500001][0.451077,0.425801,0][0.502379,1.01277,-0.262414][0.798186,0.387984,0.460833][0.400365,0.483857,0][0.502379,1.01277,-0.262414][0.798186,0.387984,0.460833][0.400365,0.483857,0][0.290049,1.01277,-0.0500839][0.460834,0.387985,0.798185][0.462074,0.557001,0][0.313947,0.785544,-0.00869094][0.500001,0,0.866025][0.527316,0.512289,0][-4.82924e-007,0.785544,0.075431][-1.63386e-007,1.08146e-006,1][0.582479,0.616197,0][0.313947,0.785544,-0.00869094][0.500001,0,0.866025][0.527316,0.512289,0][0.290049,1.01277,-0.0500839][0.460834,0.387985,0.798185][0.462074,0.557001,0][0.290049,1.01277,-0.0500839][0.460834,0.387985,0.798185][0.462074,0.557001,0][-4.78746e-007,1.01277,0.027635][-4.57633e-007,0.387984,0.921666][0.50562,0.650379,0][-4.82924e-007,0.785544,0.075431][-1.63386e-007,1.08146e-006,1][0.582479,0.616197,0][0.313947,0.785544,-1.09623][0.500001,6.17234e-007,-0.866025][0.132645,0.320807,0][-3.7314e-007,0.785544,-1.18036][0,8.29896e-007,-1][0.01749,0.341591,0][-3.77318e-007,1.01277,-1.13256][0,0.387984,-0.921666][0.038156,0.422989,0][-3.77318e-007,1.01277,-1.13256][0,0.387984,-0.921666][0.038156,0.422989,0][0.290049,1.01277,-1.05484][0.460834,0.387984,-0.798186][0.138213,0.399651,0][0.313947,0.785544,-1.09623][0.500001,6.17234e-007,-0.866025][0.132645,0.320807,0][0.543771,0.785544,-0.86641][0.866025,2.69716e-007,-0.500001][0.247585,0.327131,0][0.313947,0.785544,-1.09623][0.500001,6.17234e-007,-0.866025][0.132645,0.320807,0][0.290049,1.01277,-1.05484][0.460834,0.387984,-0.798186][0.138213,0.399651,0][0.290049,1.01277,-1.05484][0.460834,0.387984,-0.798186][0.138213,0.399651,0][0.502379,1.01277,-0.842512][0.798186,0.387984,-0.460834][0.233824,0.402977,0][0.543771,0.785544,-0.86641][0.866025,2.69716e-007,-0.500001][0.247585,0.327131,0][0.627894,0.785544,-0.552463][1,4.04574e-007,1.60792e-007][0.355976,0.362721,0][0.543771,0.785544,-0.86641][0.866025,2.69716e-007,-0.500001][0.247585,0.327131,0][0.502379,1.01277,-0.842512][0.798186,0.387984,-0.460834][0.233824,0.402977,0][0.502379,1.01277,-0.842512][0.798186,0.387984,-0.460834][0.233824,0.402977,0][0.580098,1.01277,-0.552463][0.921666,0.387985,4.67918e-007][0.322795,0.431682,0][0.627894,0.785544,-0.552463][1,4.04574e-007,1.60792e-007][0.355976,0.362721,0][0.543771,0.785544,-0.238516][0.866025,3.24177e-007,0.500001][0.451077,0.425801,0][0.627894,0.785544,-0.552463][1,4.04574e-007,1.60792e-007][0.355976,0.362721,0][0.580098,1.01277,-0.552463][0.921666,0.387985,4.67918e-007][0.322795,0.431682,0][0.580098,1.01277,-0.552463][0.921666,0.387985,4.67918e-007][0.322795,0.431682,0][0.502379,1.01277,-0.262414][0.798186,0.387984,0.460833][0.400365,0.483857,0][0.543771,0.785544,-0.238516][0.866025,3.24177e-007,0.500001][0.451077,0.425801,0][0.290049,1.01277,-0.0500839][0.460834,0.387985,0.798185][0.462074,0.557001,0][0.502379,1.01277,-0.262414][0.798186,0.387984,0.460833][0.400365,0.483857,0][0.384504,1.2054,-0.330469][0.610443,0.709327,0.35244][0.350444,0.53879,0][0.384504,1.2054,-0.330469][0.610443,0.709327,0.35244][0.350444,0.53879,0][0.221994,1.2054,-0.167958][0.35244,0.709328,0.610442][0.396546,0.596918,0][0.290049,1.01277,-0.0500839][0.460834,0.387985,0.798185][0.462074,0.557001,0][-4.78746e-007,1.01277,0.027635][-4.57633e-007,0.387984,0.921666][0.50562,0.650379,0][0.290049,1.01277,-0.0500839][0.460834,0.387985,0.798185][0.462074,0.557001,0][0.221994,1.2054,-0.167958][0.35244,0.709328,0.610442][0.396546,0.596918,0][0.221994,1.2054,-0.167958][0.35244,0.709328,0.610442][0.396546,0.596918,0][-4.66847e-007,1.2054,-0.108475][3.07037e-007,0.709328,0.704879][0.423537,0.671373,0][-4.78746e-007,1.01277,0.027635][-4.57633e-007,0.387984,0.921666][0.50562,0.650379,0][0.290049,1.01277,-1.05484][0.460834,0.387984,-0.798186][0.138213,0.399651,0][-3.77318e-007,1.01277,-1.13256][0,0.387984,-0.921666][0.038156,0.422989,0][-3.89218e-007,1.2054,-0.99645][0,0.709329,-0.704877][0.07263,0.501165,0][-3.89218e-007,1.2054,-0.99645][0,0.709329,-0.704877][0.07263,0.501165,0][0.221994,1.2054,-0.936967][0.35244,0.709328,-0.610442][0.147381,0.476332,0][0.290049,1.01277,-1.05484][0.460834,0.387984,-0.798186][0.138213,0.399651,0][0.502379,1.01277,-0.842512][0.798186,0.387984,-0.460834][0.233824,0.402977,0][0.290049,1.01277,-1.05484][0.460834,0.387984,-0.798186][0.138213,0.399651,0][0.221994,1.2054,-0.936967][0.35244,0.709328,-0.610442][0.147381,0.476332,0][0.221994,1.2054,-0.936967][0.35244,0.709328,-0.610442][0.147381,0.476332,0][0.384504,1.2054,-0.774456][0.610443,0.709328,-0.35244][0.221448,0.476373,0][0.502379,1.01277,-0.842512][0.798186,0.387984,-0.460834][0.233824,0.402977,0][0.580098,1.01277,-0.552463][0.921666,0.387985,4.67918e-007][0.322795,0.431682,0][0.502379,1.01277,-0.842512][0.798186,0.387984,-0.460834][0.233824,0.402977,0][0.384504,1.2054,-0.774456][0.610443,0.709328,-0.35244][0.221448,0.476373,0][0.384504,1.2054,-0.774456][0.610443,0.709328,-0.35244][0.221448,0.476373,0][0.443987,1.2054,-0.552463][0.704879,0.709328,1.24073e-006][0.290593,0.497945,0][0.580098,1.01277,-0.552463][0.921666,0.387985,4.67918e-007][0.322795,0.431682,0][0.502379,1.01277,-0.262414][0.798186,0.387984,0.460833][0.400365,0.483857,0][0.580098,1.01277,-0.552463][0.921666,0.387985,4.67918e-007][0.322795,0.431682,0][0.443987,1.2054,-0.552463][0.704879,0.709328,1.24073e-006][0.290593,0.497945,0][0.443987,1.2054,-0.552463][0.704879,0.709328,1.24073e-006][0.290593,0.497945,0][0.384504,1.2054,-0.330469][0.610443,0.709327,0.35244][0.350444,0.53879,0][0.502379,1.01277,-0.262414][0.798186,0.387984,0.460833][0.400365,0.483857,0][0.221994,1.2054,-0.167958][0.35244,0.709328,0.610442][0.396546,0.596918,0][0.384504,1.2054,-0.330469][0.610443,0.709327,0.35244][0.350444,0.53879,0][0.208093,1.33411,-0.432321][0.339859,0.919778,0.196222][0.293552,0.596678,0][0.208093,1.33411,-0.432321][0.339859,0.919778,0.196222][0.293552,0.596678,0][0.120142,1.33411,-0.34437][0.196218,0.919778,0.339862][0.322621,0.634123,0][0.221994,1.2054,-0.167958][0.35244,0.709328,0.610442][0.396546,0.596918,0][-4.66847e-007,1.2054,-0.108475][3.07037e-007,0.709328,0.704879][0.423537,0.671373,0][0.221994,1.2054,-0.167958][0.35244,0.709328,0.610442][0.396546,0.596918,0][0.120142,1.33411,-0.34437][0.196218,0.919778,0.339862][0.322621,0.634123,0][0.120142,1.33411,-0.34437][0.196218,0.919778,0.339862][0.322621,0.634123,0][-4.49039e-007,1.33411,-0.312178][3.51674e-006,0.919779,0.392438][0.3369,0.678582,0][-4.66847e-007,1.2054,-0.108475][3.07037e-007,0.709328,0.704879][0.423537,0.671373,0][0.221994,1.2054,-0.936967][0.35244,0.709328,-0.610442][0.147381,0.476332,0][-3.89218e-007,1.2054,-0.99645][0,0.709329,-0.704877][0.07263,0.501165,0][-4.07026e-007,1.33411,-0.792747][9.65811e-007,0.919779,-0.392437][0.120414,0.573369,0][-4.07026e-007,1.33411,-0.792747][9.65811e-007,0.919779,-0.392437][0.120414,0.573369,0][0.120142,1.33411,-0.760554][0.196217,0.919779,-0.339862][0.162179,0.557456,0][0.221994,1.2054,-0.936967][0.35244,0.709328,-0.610442][0.147381,0.476332,0][0.384504,1.2054,-0.774456][0.610443,0.709328,-0.35244][0.221448,0.476373,0][0.221994,1.2054,-0.936967][0.35244,0.709328,-0.610442][0.147381,0.476332,0][0.120142,1.33411,-0.760554][0.196217,0.919779,-0.339862][0.162179,0.557456,0][0.120142,1.33411,-0.760554][0.196217,0.919779,-0.339862][0.162179,0.557456,0][0.208093,1.33411,-0.672605][0.339859,0.919779,-0.196223][0.208828,0.556445,0][0.384504,1.2054,-0.774456][0.610443,0.709328,-0.35244][0.221448,0.476373,0][0.443987,1.2054,-0.552463][0.704879,0.709328,1.24073e-006][0.290593,0.497945,0][0.384504,1.2054,-0.774456][0.610443,0.709328,-0.35244][0.221448,0.476373,0][0.208093,1.33411,-0.672605][0.339859,0.919779,-0.196223][0.208828,0.556445,0][0.208093,1.33411,-0.672605][0.339859,0.919779,-0.196223][0.208828,0.556445,0][0.240284,1.33411,-0.552463][0.392436,0.919779,3.70719e-006][0.254203,0.569997,0][0.443987,1.2054,-0.552463][0.704879,0.709328,1.24073e-006][0.290593,0.497945,0][0.384504,1.2054,-0.330469][0.610443,0.709327,0.35244][0.350444,0.53879,0][0.443987,1.2054,-0.552463][0.704879,0.709328,1.24073e-006][0.290593,0.497945,0][0.240284,1.33411,-0.552463][0.392436,0.919779,3.70719e-006][0.254203,0.569997,0][0.240284,1.33411,-0.552463][0.392436,0.919779,3.70719e-006][0.254203,0.569997,0][0.208093,1.33411,-0.432321][0.339859,0.919778,0.196222][0.293552,0.596678,0][0.384504,1.2054,-0.330469][0.610443,0.709327,0.35244][0.350444,0.53879,0][0.208093,1.33411,-0.432321][0.339859,0.919778,0.196222][0.293552,0.596678,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.2369,0.670661,0][0.120142,1.33411,-0.34437][0.196218,0.919778,0.339862][0.322621,0.634123,0][0.120142,1.33411,-0.34437][0.196218,0.919778,0.339862][0.322621,0.634123,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.245239,0.683499,0][-4.49039e-007,1.33411,-0.312178][3.51674e-006,0.919779,0.392438][0.3369,0.678582,0][-4.07026e-007,1.33411,-0.792747][9.65811e-007,0.919779,-0.392437][0.120414,0.573369,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.17155,0.64481,0][0.120142,1.33411,-0.760554][0.196217,0.919779,-0.339862][0.162179,0.557456,0][0.120142,1.33411,-0.760554][0.196217,0.919779,-0.339862][0.162179,0.557456,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.187424,0.645633,0][0.208093,1.33411,-0.672605][0.339859,0.919779,-0.196223][0.208828,0.556445,0][0.208093,1.33411,-0.672605][0.339859,0.919779,-0.196223][0.208828,0.556445,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.205753,0.649482,0][0.240284,1.33411,-0.552463][0.392436,0.919779,3.70719e-006][0.254203,0.569997,0][0.240284,1.33411,-0.552463][0.392436,0.919779,3.70719e-006][0.254203,0.569997,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.223155,0.658145,0][0.208093,1.33411,-0.432321][0.339859,0.919778,0.196222][0.293552,0.596678,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][0.407561,-0.691277,-0.901663][0.243813,-0.90386,-0.351557][0.18279,0.035281,0][-3.89642e-007,-0.691277,-0.991598][0,-0.917044,-0.398786][0.059946,0,0][-3.89642e-007,-0.691277,-0.991598][0,-0.917044,-0.398786][0.059946,0,0][-3.69293e-007,-0.482685,-1.22436][0,-0.527177,-0.849755][0.019926,0.085008,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-3.69293e-007,-0.482685,-1.22436][0,-0.527177,-0.849755][0.019926,0.085008,0][-3.62554e-007,-0.240388,-1.30145][0,-1.93712e-006,-1][0,0.160878,0][-3.62554e-007,-0.240388,-1.30145][0,-1.93712e-006,-1][0,0.160878,0][0.530576,-0.240387,-1.18437][0.523633,-5.27378e-007,-0.851944][0.148749,0.179852,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][0.530576,-0.240387,-1.18437][0.523633,-5.27378e-007,-0.851944][0.148749,0.179852,0][-3.62554e-007,-0.240388,-1.30145][0,-1.93712e-006,-1][0,0.160878,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][0.499972,0.00191212,-1.11404][0.483344,0.447621,-0.752339][0.147258,0.244852,0][0.530576,-0.240387,-1.18437][0.523633,-5.27378e-007,-0.851944][0.148749,0.179852,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.143496,0.302722,0][0.499972,0.00191212,-1.11404][0.483344,0.447621,-0.752339][0.147258,0.244852,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-3.79668e-007,0.164783,-1.10569][-7.2928e-007,0.742707,-0.669617][0.00748,0.301032,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.143496,0.302722,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.964636,0.912688,0][-3.79668e-007,0.164783,-1.10569][-7.2928e-007,0.742707,-0.669617][0.988246,0.830177,0][-4.02028e-007,0.297866,-0.849921][-2.01354e-007,0.938436,-0.345452][0.932082,0.825226,0][-4.02028e-007,0.297866,-0.849921][-2.01354e-007,0.938436,-0.345452][0.932082,0.825226,0][0.328856,0.284886,-0.760842][0.216858,0.937568,-0.271918][0.912807,0.888485,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.964636,0.912688,0][0.323677,0.371454,0.347832][0.178697,0.983319,0.0339288][0.698022,0.886122,0][0.347371,0.353996,-0.064479][0.186734,0.981368,-0.0452483][0.7776,0.890066,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-5.05368e-007,0.417315,0.332154][-1.0719e-006,0.999961,0.00885577][0.699519,0.822756,0][0.323677,0.371454,0.347832][0.178697,0.983319,0.0339288][0.698022,0.886122,0][-5.05368e-007,0.417315,0.332154][-1.0719e-006,0.999961,0.00885577][0.699519,0.822756,0][-5.49898e-007,0.409601,0.841523][5.41083e-007,0.999628,0.027274][0.600438,0.825981,0][0.379893,0.32655,0.680231][0.352555,0.909335,0.220939][0.634145,0.900326,0][0.379893,0.32655,0.680231][0.352555,0.909335,0.220939][0.634145,0.900326,0][0.323677,0.371454,0.347832][0.178697,0.983319,0.0339288][0.698022,0.886122,0][-5.05368e-007,0.417315,0.332154][-1.0719e-006,0.999961,0.00885577][0.699519,0.822756,0][-5.83316e-007,0.453111,1.22377][2.81211e-007,0.802225,0.597022][0.984306,0.373164,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][0.436108,0.205815,0.915824][0.579041,0.748421,0.323383][0.807563,0.322664,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][-5.89479e-007,0.00191212,1.29428][0,0.140633,0.990062][0.990064,0.233902,0][-5.92209e-007,-0.240388,1.3255][0,-0.0453881,0.998969][0.989042,0.1566,0][-5.92209e-007,-0.240388,1.3255][0,-0.0453881,0.998969][0.989042,0.1566,0][0.587302,-0.240387,1.11925][0.63619,0.00210496,0.771529][0.812186,0.17617,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][0.587302,-0.240387,1.11925][0.63619,0.00210496,0.771529][0.812186,0.17617,0][-5.92209e-007,-0.240388,1.3255][0,-0.0453881,0.998969][0.989042,0.1566,0][-5.86455e-007,-0.482687,1.25968][-4.93941e-007,-0.472318,0.881428][0.969027,0.079254,0][-5.86455e-007,-0.482687,1.25968][-4.93941e-007,-0.472318,0.881428][0.969027,0.079254,0][0.553426,-0.482687,1.05671][0.573169,-0.482792,0.66211][0.802336,0.111517,0][0.587302,-0.240387,1.11925][0.63619,0.00210496,0.771529][0.812186,0.17617,0][0.553426,-0.482687,1.05671][0.573169,-0.482792,0.66211][0.802336,0.111517,0][-5.86455e-007,-0.482687,1.25968][-4.93941e-007,-0.472318,0.881428][0.969027,0.079254,0][-5.69131e-007,-0.691277,1.06151][-6.4648e-007,-0.886631,0.462478][0.928433,0,0][-5.69131e-007,-0.691277,1.06151][-6.4648e-007,-0.886631,0.462478][0.928433,0,0][0.451134,-0.691277,0.867855][0.321446,-0.892662,0.315953][0.779464,0.029921,0][0.553426,-0.482687,1.05671][0.573169,-0.482792,0.66211][0.802336,0.111517,0][0.451134,-0.691277,0.867855][0.321446,-0.892662,0.315953][0.626479,0.72465,0][-5.69131e-007,-0.691277,1.06151][-6.4648e-007,-0.886631,0.462478][0.588979,0.812006,0][-5.10595e-007,-0.691277,0.391946][0,-1,0][0.718633,0.812007,0][-5.10595e-007,-0.691277,0.391946][0,-1,0][0.718633,0.812007,0][0.679463,-0.691277,0.391946][0.426693,-0.897443,0.111936][0.718633,0.680437,0][0.451134,-0.691277,0.867855][0.321446,-0.892662,0.315953][0.626479,0.72465,0][0.679463,-0.691277,0.391946][0.426693,-0.897443,0.111936][0.718633,0.680437,0][-5.10595e-007,-0.691277,0.391946][0,-1,0][0.718633,0.812007,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][0.746653,-0.691277,-0.064895][0.46184,-0.886963,-0.000720402][0.807094,0.667427,0][0.679463,-0.691277,0.391946][0.426693,-0.897443,0.111936][0.718633,0.680437,0][0.407561,-0.691277,-0.901663][0.243813,-0.90386,-0.351557][0.969123,0.733088,0][0.678594,-0.691277,-0.516304][0.420977,-0.8964,-0.138725][0.894503,0.680606,0][-4.31193e-007,-0.691277,-0.516304][0,-1,0][0.894503,0.812007,0][-4.31193e-007,-0.691277,-0.516304][0,-1,0][0.894503,0.812007,0][-3.89642e-007,-0.691277,-0.991598][0,-0.917044,-0.398786][0.986538,0.812007,0][0.407561,-0.691277,-0.901663][0.243813,-0.90386,-0.351557][0.969123,0.733088,0][0.451134,-0.691277,0.867855][0.321446,-0.892662,0.315953][0.779464,0.029921,0][0.679463,-0.691277,0.391946][0.426693,-0.897443,0.111936][0.614797,0.033746,0][0.833526,-0.482685,0.539991][0.842796,-0.464227,0.272374][0.642439,0.116156,0][0.833526,-0.482685,0.539991][0.842796,-0.464227,0.272374][0.642439,0.116156,0][0.553426,-0.482687,1.05671][0.573169,-0.482792,0.66211][0.802336,0.111517,0][0.451134,-0.691277,0.867855][0.321446,-0.892662,0.315953][0.779464,0.029921,0][0.679463,-0.691277,0.391946][0.426693,-0.897443,0.111936][0.614797,0.033746,0][0.746653,-0.691277,-0.064895][0.46184,-0.886963,-0.000720402][0.468852,0.038255,0][0.915951,-0.482685,-0.0658509][0.900844,-0.434144,-0.00027083][0.469108,0.117792,0][0.915951,-0.482685,-0.0658509][0.900844,-0.434144,-0.00027083][0.469108,0.117792,0][0.833526,-0.482685,0.539991][0.842796,-0.464227,0.272374][0.642439,0.116156,0][0.679463,-0.691277,0.391946][0.426693,-0.897443,0.111936][0.614797,0.033746,0][0.83246,-0.482685,-0.682342][0.809159,-0.482456,-0.335407][0.298707,0.123146,0][0.678594,-0.691277,-0.516304][0.420977,-0.8964,-0.138725][0.325927,0.041277,0][0.407561,-0.691277,-0.901663][0.243813,-0.90386,-0.351557][0.18279,0.035281,0][0.407561,-0.691277,-0.901663][0.243813,-0.90386,-0.351557][0.18279,0.035281,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][0.83246,-0.482685,-0.682342][0.809159,-0.482456,-0.335407][0.298707,0.123146,0][0.553426,-0.482687,1.05671][0.573169,-0.482792,0.66211][0.802336,0.111517,0][0.833526,-0.482685,0.539991][0.842796,-0.464227,0.272374][0.642439,0.116156,0][0.884547,-0.240387,0.589019][0.945986,-3.18476e-007,0.324208][0.652545,0.184563,0][0.884547,-0.240387,0.589019][0.945986,-3.18476e-007,0.324208][0.652545,0.184563,0][0.587302,-0.240387,1.11925][0.63619,0.00210496,0.771529][0.812186,0.17617,0][0.553426,-0.482687,1.05671][0.573169,-0.482792,0.66211][0.802336,0.111517,0][0.833526,-0.482685,0.539991][0.842796,-0.464227,0.272374][0.642439,0.116156,0][0.915951,-0.482685,-0.0658509][0.900844,-0.434144,-0.00027083][0.469108,0.117792,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.884547,-0.240387,0.589019][0.945986,-3.18476e-007,0.324208][0.652545,0.184563,0][0.833526,-0.482685,0.539991][0.842796,-0.464227,0.272374][0.642439,0.116156,0][0.883416,-0.240387,-0.737329][0.915259,-9.07026e-007,-0.402865][0.289458,0.187739,0][0.83246,-0.482685,-0.682342][0.809159,-0.482456,-0.335407][0.298707,0.123146,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][0.530576,-0.240387,-1.18437][0.523633,-5.27378e-007,-0.851944][0.148749,0.179852,0][0.883416,-0.240387,-0.737329][0.915259,-9.07026e-007,-0.402865][0.289458,0.187739,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][0.587302,-0.240387,1.11925][0.63619,0.00210496,0.771529][0.812186,0.17617,0][0.884547,-0.240387,0.589019][0.945986,-3.18476e-007,0.324208][0.652545,0.184563,0][0.884547,-0.240387,0.589019][0.945986,-3.18476e-007,0.324208][0.652545,0.184563,0][0.833526,0.00191212,0.539991][0.860776,0.421298,0.285608][0.647,0.254393,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][0.833526,0.00191212,0.539991][0.860776,0.421298,0.285608][0.647,0.254393,0][0.884547,-0.240387,0.589019][0.945986,-3.18476e-007,0.324208][0.652545,0.184563,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.915951,0.00191212,-0.0658509][0.916098,0.400947,-0.00228272][0.470082,0.258416,0][0.833526,0.00191212,0.539991][0.860776,0.421298,0.285608][0.647,0.254393,0][0.883416,-0.240387,-0.737329][0.915259,-9.07026e-007,-0.402865][0.289458,0.187739,0][0.530576,-0.240387,-1.18437][0.523633,-5.27378e-007,-0.851944][0.148749,0.179852,0][0.499972,0.00191212,-1.11404][0.483344,0.447621,-0.752339][0.147258,0.244852,0][0.499972,0.00191212,-1.11404][0.483344,0.447621,-0.752339][0.147258,0.244852,0][0.83246,0.00191307,-0.682342][0.833757,0.436037,-0.338705][0.294551,0.253712,0][0.883416,-0.240387,-0.737329][0.915259,-9.07026e-007,-0.402865][0.289458,0.187739,0][0.436108,0.205815,0.915824][0.579041,0.748421,0.323383][0.807563,0.322664,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][0.833526,0.00191212,0.539991][0.860776,0.421298,0.285608][0.647,0.254393,0][0.833526,0.00191212,0.539991][0.860776,0.421298,0.285608][0.647,0.254393,0][0.718594,0.189738,0.460671][0.683474,0.695588,0.221405][0.638082,0.323364,0][0.436108,0.205815,0.915824][0.579041,0.748421,0.323383][0.807563,0.322664,0][0.718594,0.189738,0.460671][0.683474,0.695588,0.221405][0.638082,0.323364,0][0.833526,0.00191212,0.539991][0.860776,0.421298,0.285608][0.647,0.254393,0][0.915951,0.00191212,-0.0658509][0.916098,0.400947,-0.00228272][0.470082,0.258416,0][0.915951,0.00191212,-0.0658509][0.916098,0.400947,-0.00228272][0.470082,0.258416,0][0.789654,0.181943,-0.0655119][0.688883,0.724588,-0.0202995][0.469315,0.324285,0][0.718594,0.189738,0.460671][0.683474,0.695588,0.221405][0.638082,0.323364,0][0.83246,0.00191307,-0.682342][0.833757,0.436037,-0.338705][0.294551,0.253712,0][0.499972,0.00191212,-1.11404][0.483344,0.447621,-0.752339][0.147258,0.244852,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.143496,0.302722,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.143496,0.302722,0][0.717676,0.17459,-0.606862][0.610788,0.753623,-0.24288][0.29819,0.316682,0][0.83246,0.00191307,-0.682342][0.833757,0.436037,-0.338705][0.294551,0.253712,0][0.717676,0.17459,-0.606862][0.610788,0.753623,-0.24288][0.884865,0.967652,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.964636,0.912688,0][0.328856,0.284886,-0.760842][0.216858,0.937568,-0.271918][0.912807,0.888485,0][0.328856,0.284886,-0.760842][0.216858,0.937568,-0.271918][0.912807,0.888485,0][0.529325,0.279366,-0.529761][0.340625,0.926868,-0.157765][0.867963,0.926576,0][0.717676,0.17459,-0.606862][0.610788,0.753623,-0.24288][0.884865,0.967652,0][0.789654,0.181943,-0.0655119][0.688883,0.724588,-0.0202995][0.779396,0.982912,0][0.595327,0.295017,-0.0650419][0.380703,0.923505,-0.0469372][0.778306,0.939277,0][0.554201,0.316204,0.395136][0.413802,0.903735,0.109684][0.689958,0.931647,0][0.554201,0.316204,0.395136][0.413802,0.903735,0.109684][0.689958,0.931647,0][0.718594,0.189738,0.460671][0.683474,0.695588,0.221405][0.676461,0.971346,0][0.789654,0.181943,-0.0655119][0.688883,0.724588,-0.0202995][0.779396,0.982912,0][0.379893,0.32655,0.680231][0.352555,0.909335,0.220939][0.634145,0.900326,0][0.436108,0.205815,0.915824][0.579041,0.748421,0.323383][0.58549,0.919903,0][0.718594,0.189738,0.460671][0.683474,0.695588,0.221405][0.676461,0.971346,0][0.718594,0.189738,0.460671][0.683474,0.695588,0.221405][0.676461,0.971346,0][0.554201,0.316204,0.395136][0.413802,0.903735,0.109684][0.689958,0.931647,0][0.379893,0.32655,0.680231][0.352555,0.909335,0.220939][0.634145,0.900326,0][0.554201,0.316204,0.395136][0.413802,0.903735,0.109684][0.689958,0.931647,0][0.323677,0.371454,0.347832][0.178697,0.983319,0.0339288][0.698022,0.886122,0][0.379893,0.32655,0.680231][0.352555,0.909335,0.220939][0.634145,0.900326,0][0.595327,0.295017,-0.0650419][0.380703,0.923505,-0.0469372][0.778306,0.939277,0][0.347371,0.353996,-0.064479][0.186734,0.981368,-0.0452483][0.7776,0.890066,0][0.323677,0.371454,0.347832][0.178697,0.983319,0.0339288][0.698022,0.886122,0][0.323677,0.371454,0.347832][0.178697,0.983319,0.0339288][0.698022,0.886122,0][0.554201,0.316204,0.395136][0.413802,0.903735,0.109684][0.689958,0.931647,0][0.595327,0.295017,-0.0650419][0.380703,0.923505,-0.0469372][0.778306,0.939277,0][0.308571,0.337533,-0.456515][0.185714,0.977363,-0.101353][0.853425,0.882687,0][0.529325,0.279366,-0.529761][0.340625,0.926868,-0.157765][0.867963,0.926576,0][0.328856,0.284886,-0.760842][0.216858,0.937568,-0.271918][0.912807,0.888485,0][0.328856,0.284886,-0.760842][0.216858,0.937568,-0.271918][0.912807,0.888485,0][-4.02028e-007,0.297866,-0.849921][-2.01354e-007,0.938436,-0.345452][0.932082,0.825226,0][-4.36948e-007,0.388076,-0.450479][0,0.993618,-0.1128][0.852241,0.821973,0][-4.36948e-007,0.388076,-0.450479][0,0.993618,-0.1128][0.852241,0.821973,0][0.308571,0.337533,-0.456515][0.185714,0.977363,-0.101353][0.853425,0.882687,0][0.328856,0.284886,-0.760842][0.216858,0.937568,-0.271918][0.912807,0.888485,0][0.436108,0.205815,0.915824][0.579041,0.748421,0.323383][0.58549,0.919903,0][0.379893,0.32655,0.680231][0.352555,0.909335,0.220939][0.634145,0.900326,0][-5.49898e-007,0.409601,0.841523][5.41083e-007,0.999628,0.027274][0.600438,0.825981,0][-5.49898e-007,0.409601,0.841523][5.41083e-007,0.999628,0.027274][0.600438,0.825981,0][-5.83316e-007,0.453111,1.22377][2.81211e-007,0.802225,0.597022][0.525402,0.821973,0][0.436108,0.205815,0.915824][0.579041,0.748421,0.323383][0.58549,0.919903,0][0.308571,0.337533,-0.456515][0.185714,0.977363,-0.101353][0.853425,0.882687,0][-4.36948e-007,0.388076,-0.450479][0,0.993618,-0.1128][0.852241,0.821973,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][0.347371,0.353996,-0.064479][0.186734,0.981368,-0.0452483][0.7776,0.890066,0][0.308571,0.337533,-0.456515][0.185714,0.977363,-0.101353][0.853425,0.882687,0][0.308571,0.337533,-0.456515][0.185714,0.977363,-0.101353][0.853425,0.882687,0][0.347371,0.353996,-0.064479][0.186734,0.981368,-0.0452483][0.7776,0.890066,0][0.595327,0.295017,-0.0650419][0.380703,0.923505,-0.0469372][0.778306,0.939277,0][0.595327,0.295017,-0.0650419][0.380703,0.923505,-0.0469372][0.778306,0.939277,0][0.529325,0.279366,-0.529761][0.340625,0.926868,-0.157765][0.867963,0.926576,0][0.308571,0.337533,-0.456515][0.185714,0.977363,-0.101353][0.853425,0.882687,0][0.529325,0.279366,-0.529761][0.340625,0.926868,-0.157765][0.867963,0.926576,0][0.595327,0.295017,-0.0650419][0.380703,0.923505,-0.0469372][0.778306,0.939277,0][0.789654,0.181943,-0.0655119][0.688883,0.724588,-0.0202995][0.779396,0.982912,0][0.789654,0.181943,-0.0655119][0.688883,0.724588,-0.0202995][0.779396,0.982912,0][0.717676,0.17459,-0.606862][0.610788,0.753623,-0.24288][0.884865,0.967652,0][0.529325,0.279366,-0.529761][0.340625,0.926868,-0.157765][0.867963,0.926576,0][0.915951,0.00191212,-0.0658509][0.916098,0.400947,-0.00228272][0.470082,0.258416,0][0.83246,0.00191307,-0.682342][0.833757,0.436037,-0.338705][0.294551,0.253712,0][0.717676,0.17459,-0.606862][0.610788,0.753623,-0.24288][0.29819,0.316682,0][0.717676,0.17459,-0.606862][0.610788,0.753623,-0.24288][0.29819,0.316682,0][0.789654,0.181943,-0.0655119][0.688883,0.724588,-0.0202995][0.469315,0.324285,0][0.915951,0.00191212,-0.0658509][0.916098,0.400947,-0.00228272][0.470082,0.258416,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.883416,-0.240387,-0.737329][0.915259,-9.07026e-007,-0.402865][0.289458,0.187739,0][0.83246,0.00191307,-0.682342][0.833757,0.436037,-0.338705][0.294551,0.253712,0][0.83246,0.00191307,-0.682342][0.833757,0.436037,-0.338705][0.294551,0.253712,0][0.915951,0.00191212,-0.0658509][0.916098,0.400947,-0.00228272][0.470082,0.258416,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.915951,-0.482685,-0.0658509][0.900844,-0.434144,-0.00027083][0.469108,0.117792,0][0.83246,-0.482685,-0.682342][0.809159,-0.482456,-0.335407][0.298707,0.123146,0][0.83246,-0.482685,-0.682342][0.809159,-0.482456,-0.335407][0.298707,0.123146,0][0.883416,-0.240387,-0.737329][0.915259,-9.07026e-007,-0.402865][0.289458,0.187739,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.915951,-0.482685,-0.0658509][0.900844,-0.434144,-0.00027083][0.469108,0.117792,0][0.746653,-0.691277,-0.064895][0.46184,-0.886963,-0.000720402][0.468852,0.038255,0][0.678594,-0.691277,-0.516304][0.420977,-0.8964,-0.138725][0.325927,0.041277,0][0.678594,-0.691277,-0.516304][0.420977,-0.8964,-0.138725][0.325927,0.041277,0][0.83246,-0.482685,-0.682342][0.809159,-0.482456,-0.335407][0.298707,0.123146,0][0.915951,-0.482685,-0.0658509][0.900844,-0.434144,-0.00027083][0.469108,0.117792,0][0.678594,-0.691277,-0.516304][0.420977,-0.8964,-0.138725][0.894503,0.680606,0][0.746653,-0.691277,-0.064895][0.46184,-0.886963,-0.000720402][0.807094,0.667427,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-4.31193e-007,-0.691277,-0.516304][0,-1,0][0.894503,0.812007,0][0.678594,-0.691277,-0.516304][0.420977,-0.8964,-0.138725][0.894503,0.680606,0][-5.83316e-007,0.453111,1.22377][2.81211e-007,0.802225,0.597022][0.984306,0.373164,0][-5.89479e-007,0.00191212,1.29428][0,0.140633,0.990062][0.990064,0.233902,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][-0.602579,1.1662,-0.484518][-0.570511,-0.0764799,0.817721][0.100623,0.6074,0][-0.522833,1.04635,-0.462065][-0.55001,-0.224206,0.804501][0.058461,0.543991,0][-0.458367,1.12758,-0.462065][0.190636,0.434465,0.880283][0.024378,0.586971,0][-0.458367,1.12758,-0.462065][0.190636,0.434465,0.880283][0.024378,0.586971,0][-0.532541,1.20003,-0.484518][0.277617,0.406664,0.870375][0.063594,0.625299,0][-0.602579,1.1662,-0.484518][-0.570511,-0.0764799,0.817721][0.100623,0.6074,0][-0.532541,1.20003,-0.484518][0.277617,0.406664,0.870375][0.063594,0.625299,0][-0.458367,1.12758,-0.462065][0.190636,0.434465,0.880283][0.024378,0.586971,0][-0.426134,1.1682,-0.551879][0.587607,0.809146,0][0.007337,0.608461,0][-0.426134,1.1682,-0.551879][0.587607,0.809146,0][0.007337,0.608461,0][-0.497522,1.21695,-0.551879][0.736319,0.676635,0][0.04508,0.634249,0][-0.532541,1.20003,-0.484518][0.277617,0.406664,0.870375][0.063594,0.625299,0][-0.532541,1.20003,-0.61924][0.277617,0.406663,-0.870376][0.063594,0.625299,0][-0.497522,1.21695,-0.551879][0.736319,0.676635,0][0.04508,0.634249,0][-0.426134,1.1682,-0.551879][0.587607,0.809146,0][0.007337,0.608461,0][-0.426134,1.1682,-0.551879][0.587607,0.809146,0][0.007337,0.608461,0][-0.458367,1.12758,-0.641693][0.190636,0.434465,-0.880283][0.024378,0.586971,0][-0.532541,1.20003,-0.61924][0.277617,0.406663,-0.870376][0.063594,0.625299,0][-0.602579,1.1662,-0.61924][-0.570511,-0.07648,-0.817721][0.100623,0.6074,0][-0.532541,1.20003,-0.61924][0.277617,0.406663,-0.870376][0.063594,0.625299,0][-0.458367,1.12758,-0.641693][0.190636,0.434465,-0.880283][0.024378,0.586971,0][-0.458367,1.12758,-0.641693][0.190636,0.434465,-0.880283][0.024378,0.586971,0][-0.522833,1.04635,-0.641693][-0.55001,-0.224206,-0.804501][0.058461,0.543991,0][-0.602579,1.1662,-0.61924][-0.570511,-0.07648,-0.817721][0.100623,0.6074,0][-0.637599,1.14928,-0.551879][-0.95696,-0.29022,0][0.119137,0.598451,0][-0.602579,1.1662,-0.61924][-0.570511,-0.07648,-0.817721][0.100623,0.6074,0][-0.522833,1.04635,-0.641693][-0.55001,-0.224206,-0.804501][0.058461,0.543991,0][-0.522833,1.04635,-0.641693][-0.55001,-0.224206,-0.804501][0.058461,0.543991,0][-0.555066,1.00573,-0.551879][-0.866935,-0.498421,0][0.075503,0.522501,0][-0.637599,1.14928,-0.551879][-0.95696,-0.29022,0][0.119137,0.598451,0][-0.637599,1.14928,-0.551879][-0.95696,-0.29022,0][0.119137,0.598451,0][-0.555066,1.00573,-0.551879][-0.866935,-0.498421,0][0.075503,0.522501,0][-0.522833,1.04635,-0.462065][-0.55001,-0.224206,0.804501][0.058461,0.543991,0][-0.522833,1.04635,-0.462065][-0.55001,-0.224206,0.804501][0.058461,0.543991,0][-0.602579,1.1662,-0.484518][-0.570511,-0.0764799,0.817721][0.100623,0.6074,0][-0.637599,1.14928,-0.551879][-0.95696,-0.29022,0][0.119137,0.598451,0][-0.620965,1.30317,-0.506972][-0.545562,0.186998,0.816942][0.110343,0.679865,0][-0.602579,1.1662,-0.484518][-0.570511,-0.0764799,0.817721][0.100623,0.6074,0][-0.532541,1.20003,-0.484518][0.277617,0.406664,0.870375][0.063594,0.625299,0][-0.532541,1.20003,-0.484518][0.277617,0.406664,0.870375][0.063594,0.625299,0][-0.56911,1.30317,-0.506972][0.427581,0.236126,0.872594][0.082928,0.679865,0][-0.620965,1.30317,-0.506972][-0.545562,0.186998,0.816942][0.110343,0.679865,0][-0.56911,1.30317,-0.506972][0.427581,0.236126,0.872594][0.082928,0.679865,0][-0.532541,1.20003,-0.484518][0.277617,0.406664,0.870375][0.063594,0.625299,0][-0.497522,1.21695,-0.551879][0.736319,0.676635,0][0.04508,0.634249,0][-0.497522,1.21695,-0.551879][0.736319,0.676635,0][0.04508,0.634249,0][-0.543183,1.30317,-0.551879][0.965352,0.26095,2.89384e-007][0.06922,0.679865,0][-0.56911,1.30317,-0.506972][0.427581,0.236126,0.872594][0.082928,0.679865,0][-0.56911,1.30317,-0.596786][0.427581,0.236125,-0.872593][0.082928,0.679865,0][-0.543183,1.30317,-0.551879][0.965352,0.26095,2.89384e-007][0.06922,0.679865,0][-0.497522,1.21695,-0.551879][0.736319,0.676635,0][0.04508,0.634249,0][-0.497522,1.21695,-0.551879][0.736319,0.676635,0][0.04508,0.634249,0][-0.532541,1.20003,-0.61924][0.277617,0.406663,-0.870376][0.063594,0.625299,0][-0.56911,1.30317,-0.596786][0.427581,0.236125,-0.872593][0.082928,0.679865,0][-0.620965,1.30317,-0.596786][-0.545562,0.186998,-0.816942][0.110343,0.679865,0][-0.56911,1.30317,-0.596786][0.427581,0.236125,-0.872593][0.082928,0.679865,0][-0.532541,1.20003,-0.61924][0.277617,0.406663,-0.870376][0.063594,0.625299,0][-0.532541,1.20003,-0.61924][0.277617,0.406663,-0.870376][0.063594,0.625299,0][-0.602579,1.1662,-0.61924][-0.570511,-0.07648,-0.817721][0.100623,0.6074,0][-0.620965,1.30317,-0.596786][-0.545562,0.186998,-0.816942][0.110343,0.679865,0][-0.646892,1.30317,-0.551879][-0.98614,0.165918,1.9138e-007][0.12405,0.679865,0][-0.620965,1.30317,-0.596786][-0.545562,0.186998,-0.816942][0.110343,0.679865,0][-0.602579,1.1662,-0.61924][-0.570511,-0.07648,-0.817721][0.100623,0.6074,0][-0.602579,1.1662,-0.61924][-0.570511,-0.07648,-0.817721][0.100623,0.6074,0][-0.637599,1.14928,-0.551879][-0.95696,-0.29022,0][0.119137,0.598451,0][-0.646892,1.30317,-0.551879][-0.98614,0.165918,1.9138e-007][0.12405,0.679865,0][-0.646892,1.30317,-0.551879][-0.98614,0.165918,1.9138e-007][0.12405,0.679865,0][-0.637599,1.14928,-0.551879][-0.95696,-0.29022,0][0.119137,0.598451,0][-0.602579,1.1662,-0.484518][-0.570511,-0.0764799,0.817721][0.100623,0.6074,0][-0.602579,1.1662,-0.484518][-0.570511,-0.0764799,0.817721][0.100623,0.6074,0][-0.620965,1.30317,-0.506972][-0.545562,0.186998,0.816942][0.110343,0.679865,0][-0.646892,1.30317,-0.551879][-0.98614,0.165918,1.9138e-007][0.12405,0.679865,0][-0.555887,1.41758,-0.529425][0.484951,0.0196756,0.87432][0.075937,0.740397,0][-0.56911,1.30317,-0.506972][0.427581,0.236126,0.872594][0.082928,0.679865,0][-0.543183,1.30317,-0.551879][0.965352,0.26095,2.89384e-007][0.06922,0.679865,0][-0.543183,1.30317,-0.551879][0.965352,0.26095,2.89384e-007][0.06922,0.679865,0][-0.544214,1.41194,-0.551879][0.978405,-0.206699,6.21321e-007][0.069766,0.737414,0][-0.555887,1.41758,-0.529425][0.484951,0.0196756,0.87432][0.075937,0.740397,0][-0.555887,1.41758,-0.574333][0.484952,0.0196757,-0.87432][0.075937,0.740397,0][-0.544214,1.41194,-0.551879][0.978405,-0.206699,6.21321e-007][0.069766,0.737414,0][-0.543183,1.30317,-0.551879][0.965352,0.26095,2.89384e-007][0.06922,0.679865,0][-0.543183,1.30317,-0.551879][0.965352,0.26095,2.89384e-007][0.06922,0.679865,0][-0.56911,1.30317,-0.596786][0.427581,0.236125,-0.872593][0.082928,0.679865,0][-0.555887,1.41758,-0.574333][0.484952,0.0196757,-0.87432][0.075937,0.740397,0][-0.579233,1.42886,-0.574333][-0.404582,0.412506,-0.816181][0.08828,0.746363,0][-0.555887,1.41758,-0.574333][0.484952,0.0196757,-0.87432][0.075937,0.740397,0][-0.56911,1.30317,-0.596786][0.427581,0.236125,-0.872593][0.082928,0.679865,0][-0.56911,1.30317,-0.596786][0.427581,0.236125,-0.872593][0.082928,0.679865,0][-0.620965,1.30317,-0.596786][-0.545562,0.186998,-0.816942][0.110343,0.679865,0][-0.579233,1.42886,-0.574333][-0.404582,0.412506,-0.816181][0.08828,0.746363,0][-0.590907,1.4345,-0.551879][-0.808502,0.588493,5.14738e-007][0.094451,0.749346,0][-0.579233,1.42886,-0.574333][-0.404582,0.412506,-0.816181][0.08828,0.746363,0][-0.620965,1.30317,-0.596786][-0.545562,0.186998,-0.816942][0.110343,0.679865,0][-0.620965,1.30317,-0.596786][-0.545562,0.186998,-0.816942][0.110343,0.679865,0][-0.646892,1.30317,-0.551879][-0.98614,0.165918,1.9138e-007][0.12405,0.679865,0][-0.590907,1.4345,-0.551879][-0.808502,0.588493,5.14738e-007][0.094451,0.749346,0][-0.590907,1.4345,-0.551879][-0.808502,0.588493,5.14738e-007][0.094451,0.749346,0][-0.646892,1.30317,-0.551879][-0.98614,0.165918,1.9138e-007][0.12405,0.679865,0][-0.620965,1.30317,-0.506972][-0.545562,0.186998,0.816942][0.110343,0.679865,0][-0.620965,1.30317,-0.506972][-0.545562,0.186998,0.816942][0.110343,0.679865,0][-0.579233,1.42886,-0.529425][-0.404582,0.412506,0.816181][0.08828,0.746363,0][-0.590907,1.4345,-0.551879][-0.808502,0.588493,5.14738e-007][0.094451,0.749346,0][-0.579233,1.42886,-0.529425][-0.404582,0.412506,0.816181][0.08828,0.746363,0][-0.555887,1.41758,-0.529425][0.484951,0.0196756,0.87432][0.075937,0.740397,0][-0.4906,1.51937,-0.551879][0.618816,0.785536,8.91668e-007][0.04142,0.794248,0][-0.555887,1.41758,-0.529425][0.484951,0.0196756,0.87432][0.075937,0.740397,0][-0.544214,1.41194,-0.551879][0.978405,-0.206699,6.21321e-007][0.069766,0.737414,0][-0.4906,1.51937,-0.551879][0.618816,0.785536,8.91668e-007][0.04142,0.794248,0][-0.544214,1.41194,-0.551879][0.978405,-0.206699,6.21321e-007][0.069766,0.737414,0][-0.555887,1.41758,-0.574333][0.484952,0.0196757,-0.87432][0.075937,0.740397,0][-0.4906,1.51937,-0.551879][0.618816,0.785536,8.91668e-007][0.04142,0.794248,0][-0.555887,1.41758,-0.574333][0.484952,0.0196757,-0.87432][0.075937,0.740397,0][-0.579233,1.42886,-0.574333][-0.404582,0.412506,-0.816181][0.08828,0.746363,0][-0.4906,1.51937,-0.551879][0.618816,0.785536,8.91668e-007][0.04142,0.794248,0][-0.579233,1.42886,-0.574333][-0.404582,0.412506,-0.816181][0.08828,0.746363,0][-0.590907,1.4345,-0.551879][-0.808502,0.588493,5.14738e-007][0.094451,0.749346,0][-0.4906,1.51937,-0.551879][0.618816,0.785536,8.91668e-007][0.04142,0.794248,0][-0.590907,1.4345,-0.551879][-0.808502,0.588493,5.14738e-007][0.094451,0.749346,0][-0.579233,1.42886,-0.529425][-0.404582,0.412506,0.816181][0.08828,0.746363,0][-0.4906,1.51937,-0.551879][0.618816,0.785536,8.91668e-007][0.04142,0.794248,0][-0.579233,1.42886,-0.529425][-0.404582,0.412506,0.816181][0.08828,0.746363,0][-0.620965,1.30317,-0.506972][-0.545562,0.186998,0.816942][0.110343,0.679865,0][-0.56911,1.30317,-0.506972][0.427581,0.236126,0.872594][0.082928,0.679865,0][-0.56911,1.30317,-0.506972][0.427581,0.236126,0.872594][0.082928,0.679865,0][-0.555887,1.41758,-0.529425][0.484951,0.0196756,0.87432][0.075937,0.740397,0][-0.579233,1.42886,-0.529425][-0.404582,0.412506,0.816181][0.08828,0.746363,0][-0.191806,0.835087,-1.41328][-0.838356,0.47219,-0.272389][0.640972,0.697388,0][-0.177591,0.835087,-1.36954][-0.518127,0.472189,0.71315][0.621426,0.637231,0][-0.131592,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][-0.131592,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][-0.117378,0.835086,-1.41328][0.838363,0.472172,-0.2724][0.538628,0.697388,0][-0.154592,0.835087,-1.44032][1.26804e-006,0.47219,-0.881497][0.5898,0.734566,0][-0.191806,0.835087,-1.41328][-0.838356,0.47219,-0.272389][0.640972,0.697388,0][-0.131592,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][-0.154592,0.835087,-1.44032][1.26804e-006,0.47219,-0.881497][0.5898,0.734566,0][-0.117378,0.835086,-1.41328][0.838363,0.472172,-0.2724][0.538628,0.697388,0][-0.131592,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][-0.154592,0.719719,-1.40119][-1.98644e-006,-1,-4.32867e-006][0.5898,0.680761,0][-0.131592,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][-0.177591,0.835087,-1.36954][-0.518127,0.472189,0.71315][0.621426,0.637231,0][-0.154592,0.719719,-1.40119][-1.98644e-006,-1,-4.32867e-006][0.5898,0.680761,0][-0.177591,0.835087,-1.36954][-0.518127,0.472189,0.71315][0.621426,0.637231,0][-0.191806,0.835087,-1.41328][-0.838356,0.47219,-0.272389][0.640972,0.697388,0][-0.154592,0.719719,-1.40119][-1.98644e-006,-1,-4.32867e-006][0.5898,0.680761,0][-0.191806,0.835087,-1.41328][-0.838356,0.47219,-0.272389][0.640972,0.697388,0][-0.154592,0.835087,-1.44032][1.26804e-006,0.47219,-0.881497][0.5898,0.734566,0][-0.154592,0.719719,-1.40119][-1.98644e-006,-1,-4.32867e-006][0.5898,0.680761,0][-0.154592,0.835087,-1.44032][1.26804e-006,0.47219,-0.881497][0.5898,0.734566,0][-0.117378,0.835086,-1.41328][0.838363,0.472172,-0.2724][0.538628,0.697388,0][-0.154592,0.719719,-1.40119][-1.98644e-006,-1,-4.32867e-006][0.5898,0.680761,0][0.602579,1.1662,-0.61924][0.570511,-0.07648,-0.817721][0.100623,0.6074,0][0.522833,1.04635,-0.641693][0.55001,-0.224206,-0.804501][0.058461,0.543991,0][0.458367,1.12758,-0.641693][-0.190636,0.434465,-0.880283][0.024378,0.586971,0][0.458367,1.12758,-0.641693][-0.190636,0.434465,-0.880283][0.024378,0.586971,0][0.532541,1.20003,-0.61924][-0.277617,0.406663,-0.870376][0.063594,0.625299,0][0.602579,1.1662,-0.61924][0.570511,-0.07648,-0.817721][0.100623,0.6074,0][0.532541,1.20003,-0.61924][-0.277617,0.406663,-0.870376][0.063594,0.625299,0][0.458367,1.12758,-0.641693][-0.190636,0.434465,-0.880283][0.024378,0.586971,0][0.426134,1.1682,-0.551879][-0.587606,0.809147,-1.38229e-006][0.007337,0.608461,0][0.426134,1.1682,-0.551879][-0.587606,0.809147,-1.38229e-006][0.007337,0.608461,0][0.497522,1.21695,-0.551879][-0.736319,0.676635,0][0.04508,0.634249,0][0.532541,1.20003,-0.61924][-0.277617,0.406663,-0.870376][0.063594,0.625299,0][0.532541,1.20003,-0.484518][-0.277616,0.406668,0.870374][0.063594,0.625299,0][0.497522,1.21695,-0.551879][-0.736319,0.676635,0][0.04508,0.634249,0][0.426134,1.1682,-0.551879][-0.587606,0.809147,-1.38229e-006][0.007337,0.608461,0][0.426134,1.1682,-0.551879][-0.587606,0.809147,-1.38229e-006][0.007337,0.608461,0][0.458367,1.12758,-0.462064][-0.190631,0.43447,0.880282][0.024378,0.586971,0][0.532541,1.20003,-0.484518][-0.277616,0.406668,0.870374][0.063594,0.625299,0][0.602579,1.1662,-0.484518][0.570513,-0.0764774,0.81772][0.100623,0.6074,0][0.532541,1.20003,-0.484518][-0.277616,0.406668,0.870374][0.063594,0.625299,0][0.458367,1.12758,-0.462064][-0.190631,0.43447,0.880282][0.024378,0.586971,0][0.458367,1.12758,-0.462064][-0.190631,0.43447,0.880282][0.024378,0.586971,0][0.522833,1.04635,-0.462064][0.550013,-0.224203,0.804499][0.058461,0.543991,0][0.602579,1.1662,-0.484518][0.570513,-0.0764774,0.81772][0.100623,0.6074,0][0.637599,1.14928,-0.551879][0.95696,-0.290219,-4.90214e-007][0.119137,0.598451,0][0.602579,1.1662,-0.484518][0.570513,-0.0764774,0.81772][0.100623,0.6074,0][0.522833,1.04635,-0.462064][0.550013,-0.224203,0.804499][0.058461,0.543991,0][0.522833,1.04635,-0.462064][0.550013,-0.224203,0.804499][0.058461,0.543991,0][0.555066,1.00573,-0.551879][0.866935,-0.498421,-1.97786e-006][0.075503,0.522501,0][0.637599,1.14928,-0.551879][0.95696,-0.290219,-4.90214e-007][0.119137,0.598451,0][0.637599,1.14928,-0.551879][0.95696,-0.290219,-4.90214e-007][0.119137,0.598451,0][0.555066,1.00573,-0.551879][0.866935,-0.498421,-1.97786e-006][0.075503,0.522501,0][0.522833,1.04635,-0.641693][0.55001,-0.224206,-0.804501][0.058461,0.543991,0][0.522833,1.04635,-0.641693][0.55001,-0.224206,-0.804501][0.058461,0.543991,0][0.602579,1.1662,-0.61924][0.570511,-0.07648,-0.817721][0.100623,0.6074,0][0.637599,1.14928,-0.551879][0.95696,-0.290219,-4.90214e-007][0.119137,0.598451,0][0.620965,1.30317,-0.596786][0.545562,0.186998,-0.816942][0.110343,0.679865,0][0.602579,1.1662,-0.61924][0.570511,-0.07648,-0.817721][0.100623,0.6074,0][0.532541,1.20003,-0.61924][-0.277617,0.406663,-0.870376][0.063594,0.625299,0][0.532541,1.20003,-0.61924][-0.277617,0.406663,-0.870376][0.063594,0.625299,0][0.56911,1.30317,-0.596786][-0.427581,0.236125,-0.872594][0.082928,0.679865,0][0.620965,1.30317,-0.596786][0.545562,0.186998,-0.816942][0.110343,0.679865,0][0.56911,1.30317,-0.596786][-0.427581,0.236125,-0.872594][0.082928,0.679865,0][0.532541,1.20003,-0.61924][-0.277617,0.406663,-0.870376][0.063594,0.625299,0][0.497522,1.21695,-0.551879][-0.736319,0.676635,0][0.04508,0.634249,0][0.497522,1.21695,-0.551879][-0.736319,0.676635,0][0.04508,0.634249,0][0.543183,1.30317,-0.551879][-0.965352,0.26095,3.10055e-007][0.06922,0.679865,0][0.56911,1.30317,-0.596786][-0.427581,0.236125,-0.872594][0.082928,0.679865,0][0.56911,1.30317,-0.506972][-0.427581,0.236126,0.872594][0.082928,0.679865,0][0.543183,1.30317,-0.551879][-0.965352,0.26095,3.10055e-007][0.06922,0.679865,0][0.497522,1.21695,-0.551879][-0.736319,0.676635,0][0.04508,0.634249,0][0.497522,1.21695,-0.551879][-0.736319,0.676635,0][0.04508,0.634249,0][0.532541,1.20003,-0.484518][-0.277616,0.406668,0.870374][0.063594,0.625299,0][0.56911,1.30317,-0.506972][-0.427581,0.236126,0.872594][0.082928,0.679865,0][0.620965,1.30317,-0.506972][0.545562,0.186998,0.816942][0.110343,0.679865,0][0.56911,1.30317,-0.506972][-0.427581,0.236126,0.872594][0.082928,0.679865,0][0.532541,1.20003,-0.484518][-0.277616,0.406668,0.870374][0.063594,0.625299,0][0.532541,1.20003,-0.484518][-0.277616,0.406668,0.870374][0.063594,0.625299,0][0.602579,1.1662,-0.484518][0.570513,-0.0764774,0.81772][0.100623,0.6074,0][0.620965,1.30317,-0.506972][0.545562,0.186998,0.816942][0.110343,0.679865,0][0.646892,1.30317,-0.551879][0.98614,0.165918,2.39225e-007][0.12405,0.679865,0][0.620965,1.30317,-0.506972][0.545562,0.186998,0.816942][0.110343,0.679865,0][0.602579,1.1662,-0.484518][0.570513,-0.0764774,0.81772][0.100623,0.6074,0][0.602579,1.1662,-0.484518][0.570513,-0.0764774,0.81772][0.100623,0.6074,0][0.637599,1.14928,-0.551879][0.95696,-0.290219,-4.90214e-007][0.119137,0.598451,0][0.646892,1.30317,-0.551879][0.98614,0.165918,2.39225e-007][0.12405,0.679865,0][0.646892,1.30317,-0.551879][0.98614,0.165918,2.39225e-007][0.12405,0.679865,0][0.637599,1.14928,-0.551879][0.95696,-0.290219,-4.90214e-007][0.119137,0.598451,0][0.602579,1.1662,-0.61924][0.570511,-0.07648,-0.817721][0.100623,0.6074,0][0.602579,1.1662,-0.61924][0.570511,-0.07648,-0.817721][0.100623,0.6074,0][0.620965,1.30317,-0.596786][0.545562,0.186998,-0.816942][0.110343,0.679865,0][0.646892,1.30317,-0.551879][0.98614,0.165918,2.39225e-007][0.12405,0.679865,0][0.555887,1.41758,-0.574333][-0.484952,0.0196757,-0.874319][0.075937,0.740397,0][0.56911,1.30317,-0.596786][-0.427581,0.236125,-0.872594][0.082928,0.679865,0][0.543183,1.30317,-0.551879][-0.965352,0.26095,3.10055e-007][0.06922,0.679865,0][0.543183,1.30317,-0.551879][-0.965352,0.26095,3.10055e-007][0.06922,0.679865,0][0.544214,1.41194,-0.551879][-0.978405,-0.206699,6.42032e-007][0.069766,0.737414,0][0.555887,1.41758,-0.574333][-0.484952,0.0196757,-0.874319][0.075937,0.740397,0][0.555887,1.41758,-0.529425][-0.484951,0.0196756,0.87432][0.075937,0.740397,0][0.544214,1.41194,-0.551879][-0.978405,-0.206699,6.42032e-007][0.069766,0.737414,0][0.543183,1.30317,-0.551879][-0.965352,0.26095,3.10055e-007][0.06922,0.679865,0][0.543183,1.30317,-0.551879][-0.965352,0.26095,3.10055e-007][0.06922,0.679865,0][0.56911,1.30317,-0.506972][-0.427581,0.236126,0.872594][0.082928,0.679865,0][0.555887,1.41758,-0.529425][-0.484951,0.0196756,0.87432][0.075937,0.740397,0][0.579233,1.42886,-0.529425][0.404582,0.412506,0.816181][0.08828,0.746363,0][0.555887,1.41758,-0.529425][-0.484951,0.0196756,0.87432][0.075937,0.740397,0][0.56911,1.30317,-0.506972][-0.427581,0.236126,0.872594][0.082928,0.679865,0][0.56911,1.30317,-0.506972][-0.427581,0.236126,0.872594][0.082928,0.679865,0][0.620965,1.30317,-0.506972][0.545562,0.186998,0.816942][0.110343,0.679865,0][0.579233,1.42886,-0.529425][0.404582,0.412506,0.816181][0.08828,0.746363,0][0.590907,1.4345,-0.551879][0.808502,0.588493,4.30944e-007][0.094451,0.749346,0][0.579233,1.42886,-0.529425][0.404582,0.412506,0.816181][0.08828,0.746363,0][0.620965,1.30317,-0.506972][0.545562,0.186998,0.816942][0.110343,0.679865,0][0.620965,1.30317,-0.506972][0.545562,0.186998,0.816942][0.110343,0.679865,0][0.646892,1.30317,-0.551879][0.98614,0.165918,2.39225e-007][0.12405,0.679865,0][0.590907,1.4345,-0.551879][0.808502,0.588493,4.30944e-007][0.094451,0.749346,0][0.590907,1.4345,-0.551879][0.808502,0.588493,4.30944e-007][0.094451,0.749346,0][0.646892,1.30317,-0.551879][0.98614,0.165918,2.39225e-007][0.12405,0.679865,0][0.620965,1.30317,-0.596786][0.545562,0.186998,-0.816942][0.110343,0.679865,0][0.620965,1.30317,-0.596786][0.545562,0.186998,-0.816942][0.110343,0.679865,0][0.579233,1.42886,-0.574333][0.404582,0.412506,-0.816181][0.08828,0.746363,0][0.590907,1.4345,-0.551879][0.808502,0.588493,4.30944e-007][0.094451,0.749346,0][0.579233,1.42886,-0.574333][0.404582,0.412506,-0.816181][0.08828,0.746363,0][0.555887,1.41758,-0.574333][-0.484952,0.0196757,-0.874319][0.075937,0.740397,0][0.4906,1.51937,-0.551879][-0.618817,0.785535,-7.20194e-007][0.04142,0.794248,0][0.555887,1.41758,-0.574333][-0.484952,0.0196757,-0.874319][0.075937,0.740397,0][0.544214,1.41194,-0.551879][-0.978405,-0.206699,6.42032e-007][0.069766,0.737414,0][0.4906,1.51937,-0.551879][-0.618817,0.785535,-7.20194e-007][0.04142,0.794248,0][0.544214,1.41194,-0.551879][-0.978405,-0.206699,6.42032e-007][0.069766,0.737414,0][0.555887,1.41758,-0.529425][-0.484951,0.0196756,0.87432][0.075937,0.740397,0][0.4906,1.51937,-0.551879][-0.618817,0.785535,-7.20194e-007][0.04142,0.794248,0][0.555887,1.41758,-0.529425][-0.484951,0.0196756,0.87432][0.075937,0.740397,0][0.579233,1.42886,-0.529425][0.404582,0.412506,0.816181][0.08828,0.746363,0][0.4906,1.51937,-0.551879][-0.618817,0.785535,-7.20194e-007][0.04142,0.794248,0][0.579233,1.42886,-0.529425][0.404582,0.412506,0.816181][0.08828,0.746363,0][0.590907,1.4345,-0.551879][0.808502,0.588493,4.30944e-007][0.094451,0.749346,0][0.4906,1.51937,-0.551879][-0.618817,0.785535,-7.20194e-007][0.04142,0.794248,0][0.590907,1.4345,-0.551879][0.808502,0.588493,4.30944e-007][0.094451,0.749346,0][0.579233,1.42886,-0.574333][0.404582,0.412506,-0.816181][0.08828,0.746363,0][0.4906,1.51937,-0.551879][-0.618817,0.785535,-7.20194e-007][0.04142,0.794248,0][0.579233,1.42886,-0.574333][0.404582,0.412506,-0.816181][0.08828,0.746363,0][0.620965,1.30317,-0.596786][0.545562,0.186998,-0.816942][0.110343,0.679865,0][0.56911,1.30317,-0.596786][-0.427581,0.236125,-0.872594][0.082928,0.679865,0][0.56911,1.30317,-0.596786][-0.427581,0.236125,-0.872594][0.082928,0.679865,0][0.555887,1.41758,-0.574333][-0.484952,0.0196757,-0.874319][0.075937,0.740397,0][0.579233,1.42886,-0.574333][0.404582,0.412506,-0.816181][0.08828,0.746363,0][0.117786,0.835087,-1.41328][-0.838353,0.472191,-0.272397][0.640972,0.697388,0][0.132,0.835087,-1.36954][-0.518136,0.472186,0.713145][0.621426,0.637231,0][0.178,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][0.178,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][0.192214,0.835086,-1.41328][0.838362,0.472172,-0.2724][0.538628,0.697388,0][0.155,0.835087,-1.44032][1.36558e-006,0.47219,-0.881497][0.5898,0.734566,0][0.117786,0.835087,-1.41328][-0.838353,0.472191,-0.272397][0.640972,0.697388,0][0.178,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][0.155,0.835087,-1.44032][1.36558e-006,0.47219,-0.881497][0.5898,0.734566,0][0.192214,0.835086,-1.41328][0.838362,0.472172,-0.2724][0.538628,0.697388,0][0.178,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][0.155,0.719719,-1.40119][-6.52262e-007,-1,-5.0995e-006][0.5898,0.680761,0][0.178,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][0.132,0.835087,-1.36954][-0.518136,0.472186,0.713145][0.621426,0.637231,0][0.155,0.719719,-1.40119][-6.52262e-007,-1,-5.0995e-006][0.5898,0.680761,0][0.132,0.835087,-1.36954][-0.518136,0.472186,0.713145][0.621426,0.637231,0][0.117786,0.835087,-1.41328][-0.838353,0.472191,-0.272397][0.640972,0.697388,0][0.155,0.719719,-1.40119][-6.52262e-007,-1,-5.0995e-006][0.5898,0.680761,0][0.117786,0.835087,-1.41328][-0.838353,0.472191,-0.272397][0.640972,0.697388,0][0.155,0.835087,-1.44032][1.36558e-006,0.47219,-0.881497][0.5898,0.734566,0][0.155,0.719719,-1.40119][-6.52262e-007,-1,-5.0995e-006][0.5898,0.680761,0][0.155,0.835087,-1.44032][1.36558e-006,0.47219,-0.881497][0.5898,0.734566,0][0.192214,0.835086,-1.41328][0.838362,0.472172,-0.2724][0.538628,0.697388,0][0.155,0.719719,-1.40119][-6.52262e-007,-1,-5.0995e-006][0.5898,0.680761,0] \ No newline at end of file diff --git a/charcustom/hats/fonts/Eye.mesh b/charcustom/hats/fonts/Eye.mesh new file mode 100644 index 0000000..eab0481 --- /dev/null +++ b/charcustom/hats/fonts/Eye.mesh @@ -0,0 +1,3 @@ +version 1.00 +500 +[0,0,-0.7][0,0,-1][0.5,0.5,0.9995][-0.0525812,0.144466,-0.682909][-0.0745604,0.204853,-0.975949][0.610224,0.5,0.987305][0.121147,0.09465,-0.682909][0.171787,0.134214,-0.975949][0.534061,0.604976,0.987305][-0.0525812,0.144466,-0.682909][-0.0745604,0.204853,-0.975949][0.610224,0.5,0.987305][-0.102595,0.281877,-0.632471][-0.146191,0.401656,-0.904047][0.715065,0.5,0.951314][0.0691199,0.241049,-0.653542][0.0990741,0.345512,-0.93317][0.645451,0.605825,0.966349][-0.0525812,0.144466,-0.682909][-0.0745604,0.204853,-0.975949][0.610224,0.5,0.987305][0.0691199,0.241049,-0.653542][0.0990741,0.345512,-0.93317][0.645451,0.605825,0.966349][0.121147,0.09465,-0.682909][0.171787,0.134214,-0.975949][0.534061,0.604976,0.987305][0.121147,0.09465,-0.682909][0.171787,0.134214,-0.975949][0.534061,0.604976,0.987305][0.0691199,0.241049,-0.653542][0.0990741,0.345512,-0.93317][0.645451,0.605825,0.966349][0.236378,0.184678,-0.632471][0.336822,0.263154,-0.904047][0.566459,0.704826,0.951314][-0.102595,0.281877,-0.632471][-0.146191,0.401656,-0.904047][0.715065,0.5,0.951314][-0.147599,0.405524,-0.551149][-0.210831,0.579254,-0.78741][0.809404,0.5,0.893284][0.0195046,0.38112,-0.586828][0.0292396,0.546076,-0.837225][0.751987,0.606747,0.918744][-0.102595,0.281877,-0.632471][-0.146191,0.401656,-0.904047][0.715065,0.5,0.951314][0.0195046,0.38112,-0.586828][0.0292396,0.546076,-0.837225][0.751987,0.606747,0.918744][0.0691199,0.241049,-0.653542][0.0990741,0.345512,-0.93317][0.645451,0.605825,0.966349][0.0691199,0.241049,-0.653542][0.0990741,0.345512,-0.93317][0.645451,0.605825,0.966349][0.0195046,0.38112,-0.586828][0.0292396,0.546076,-0.837225][0.751987,0.606747,0.918744][0.185422,0.333544,-0.586828][0.26458,0.478593,-0.837225][0.679248,0.707003,0.918744][0.0691199,0.241049,-0.653542][0.0990741,0.345512,-0.93317][0.645451,0.605825,0.966349][0.185422,0.333544,-0.586828][0.26458,0.478593,-0.837225][0.679248,0.707003,0.918744][0.236378,0.184678,-0.632471][0.336822,0.263154,-0.904047][0.566459,0.704826,0.951314][0.236378,0.184678,-0.632471][0.336822,0.263154,-0.904047][0.566459,0.704826,0.951314][0.185422,0.333544,-0.586828][0.26458,0.478593,-0.837225][0.679248,0.707003,0.918744][0.340066,0.265688,-0.551149][0.485753,0.379512,-0.78741][0.595611,0.794674,0.893284][-0.147599,0.405524,-0.551149][-0.210831,0.579254,-0.78741][0.809404,0.5,0.893284][-0.185395,0.509369,-0.442913][-0.265208,0.728653,-0.63145][0.888635,0.5,0.81605][-0.0255298,0.505443,-0.483607][-0.0342952,0.723899,-0.689053][0.846789,0.606892,0.845088][-0.147599,0.405524,-0.551149][-0.210831,0.579254,-0.78741][0.809404,0.5,0.893284][-0.0255298,0.505443,-0.483607][-0.0342952,0.723899,-0.689053][0.846789,0.606892,0.845088][0.0195046,0.38112,-0.586828][0.0292396,0.546076,-0.837225][0.751987,0.606747,0.918744][0.0195046,0.38112,-0.586828][0.0292396,0.546076,-0.837225][0.751987,0.606747,0.918744][-0.0255298,0.505443,-0.483607][-0.0342952,0.723899,-0.689053][0.846789,0.606892,0.845088][0.135754,0.473431,-0.497427][0.19455,0.678477,-0.708392][0.785673,0.707845,0.85495][0.0195046,0.38112,-0.586828][0.0292396,0.546076,-0.837225][0.751987,0.606747,0.918744][0.135754,0.473431,-0.497427][0.19455,0.678477,-0.708392][0.785673,0.707845,0.85495][0.185422,0.333544,-0.586828][0.26458,0.478593,-0.837225][0.679248,0.707003,0.918744][0.185422,0.333544,-0.586828][0.26458,0.478593,-0.837225][0.679248,0.707003,0.918744][0.135754,0.473431,-0.497427][0.19455,0.678477,-0.708392][0.785673,0.707845,0.85495][0.289495,0.415111,-0.483607][0.412692,0.595728,-0.689053][0.708682,0.797248,0.845088][0.185422,0.333544,-0.586828][0.26458,0.478593,-0.837225][0.679248,0.707003,0.918744][0.289495,0.415111,-0.483607][0.412692,0.595728,-0.689053][0.708682,0.797248,0.845088][0.340066,0.265688,-0.551149][0.485753,0.379512,-0.78741][0.595611,0.794674,0.893284][0.340066,0.265688,-0.551149][0.485753,0.379512,-0.78741][0.595611,0.794674,0.893284][0.289495,0.415111,-0.483607][0.412692,0.595728,-0.689053][0.708682,0.797248,0.845088][0.427148,0.333725,-0.442913][0.611036,0.477394,-0.63145][0.620095,0.870133,0.81605][-0.185395,0.509369,-0.442913][-0.265208,0.728653,-0.63145][0.888635,0.5,0.81605][-0.214138,0.588341,-0.31305][-0.305912,0.840487,-0.447214][0.948889,0.5,0.723383][-0.0642485,0.604019,-0.347898][-0.0906117,0.862891,-0.497201][0.922696,0.604976,0.74825][-0.185395,0.509369,-0.442913][-0.265208,0.728653,-0.63145][0.888635,0.5,0.81605][-0.0642485,0.604019,-0.347898][-0.0906117,0.862891,-0.497201][0.922696,0.604976,0.74825][-0.0255298,0.505443,-0.483607][-0.0342952,0.723899,-0.689053][0.846789,0.606892,0.845088][-0.0255298,0.505443,-0.483607][-0.0342952,0.723899,-0.689053][0.846789,0.606892,0.845088][-0.0642485,0.604019,-0.347898][-0.0906117,0.862891,-0.497201][0.922696,0.604976,0.74825][0.0887788,0.590202,-0.365759][0.127267,0.843064,-0.522538][0.875863,0.704826,0.760995][-0.0255298,0.505443,-0.483607][-0.0342952,0.723899,-0.689053][0.846789,0.606892,0.845088][0.0887788,0.590202,-0.365759][0.127267,0.843064,-0.522538][0.875863,0.704826,0.760995][0.135754,0.473431,-0.497427][0.19455,0.678477,-0.708392][0.785673,0.707845,0.85495][0.135754,0.473431,-0.497427][0.19455,0.678477,-0.708392][0.785673,0.707845,0.85495][0.0887788,0.590202,-0.365759][0.127267,0.843064,-0.522538][0.875863,0.704826,0.760995][0.237471,0.547566,-0.365759][0.338827,0.7824,-0.522538][0.810676,0.794674,0.760995][0.135754,0.473431,-0.497427][0.19455,0.678477,-0.708392][0.785673,0.707845,0.85495][0.237471,0.547566,-0.365759][0.338827,0.7824,-0.522538][0.810676,0.794674,0.760995][0.289495,0.415111,-0.483607][0.412692,0.595728,-0.689053][0.708682,0.797248,0.845088][0.289495,0.415111,-0.483607][0.412692,0.595728,-0.689053][0.708682,0.797248,0.845088][0.237471,0.547566,-0.365759][0.338827,0.7824,-0.522538][0.810676,0.794674,0.760995][0.374567,0.478191,-0.347898][0.534106,0.683756,-0.497201][0.730319,0.870133,0.74825][0.289495,0.415111,-0.483607][0.412692,0.595728,-0.689053][0.708682,0.797248,0.845088][0.374567,0.478191,-0.347898][0.534106,0.683756,-0.497201][0.730319,0.870133,0.74825][0.427148,0.333725,-0.442913][0.611036,0.477394,-0.63145][0.620095,0.870133,0.81605][0.427148,0.333725,-0.442913][0.611036,0.477394,-0.63145][0.620095,0.870133,0.81605][0.374567,0.478191,-0.347898][0.534106,0.683756,-0.497201][0.730319,0.870133,0.74825][0.493373,0.385465,-0.31305][0.704818,0.550664,-0.447214][0.638714,0.927518,0.723383][0,0,-0.7][0,0,-1][0.5,0.5,0.9995][0.121147,0.09465,-0.682909][0.171787,0.134214,-0.975949][0.534061,0.604976,0.987305][0.127454,-0.0859689,-0.682909][0.180731,-0.121904,-0.975949][0.410827,0.564879,0.987305][0.121147,0.09465,-0.682909][0.171787,0.134214,-0.975949][0.534061,0.604976,0.987305][0.236378,0.184678,-0.632471][0.336822,0.263154,-0.904047][0.566459,0.704826,0.951314][0.250611,0.00875143,-0.653542][0.359217,0.012544,-0.93317][0.444442,0.671229,0.966349][0.121147,0.09465,-0.682909][0.171787,0.134214,-0.975949][0.534061,0.604976,0.987305][0.250611,0.00875143,-0.653542][0.359217,0.012544,-0.93317][0.444442,0.671229,0.966349][0.127454,-0.0859689,-0.682909][0.180731,-0.121904,-0.975949][0.410827,0.564879,0.987305][0.127454,-0.0859689,-0.682909][0.180731,-0.121904,-0.975949][0.410827,0.564879,0.987305][0.250611,0.00875143,-0.653542][0.359217,0.012544,-0.93317][0.444442,0.671229,0.966349][0.248684,-0.16774,-0.632471][0.354358,-0.239018,-0.904047][0.326009,0.62659,0.951314][0.236378,0.184678,-0.632471][0.336822,0.263154,-0.904047][0.566459,0.704826,0.951314][0.340066,0.265688,-0.551149][0.485753,0.379512,-0.78741][0.595611,0.794674,0.893284][0.368494,0.0992225,-0.586828][0.528385,0.140938,-0.837225][0.476488,0.772977,0.918744][0.236378,0.184678,-0.632471][0.336822,0.263154,-0.904047][0.566459,0.704826,0.951314][0.368494,0.0992225,-0.586828][0.528385,0.140938,-0.837225][0.476488,0.772977,0.918744][0.250611,0.00875143,-0.653542][0.359217,0.012544,-0.93317][0.444442,0.671229,0.966349][0.250611,0.00875143,-0.653542][0.359217,0.012544,-0.93317][0.444442,0.671229,0.966349][0.368494,0.0992225,-0.586828][0.528385,0.140938,-0.837225][0.476488,0.772977,0.918744][0.374518,-0.0732762,-0.586828][0.536929,-0.103737,-0.837225][0.358795,0.734682,0.918744][0.250611,0.00875143,-0.653542][0.359217,0.012544,-0.93317][0.444442,0.671229,0.966349][0.374518,-0.0732762,-0.586828][0.536929,-0.103737,-0.837225][0.358795,0.734682,0.918744][0.248684,-0.16774,-0.632471][0.354358,-0.239018,-0.904047][0.326009,0.62659,0.951314][0.248684,-0.16774,-0.632471][0.354358,-0.239018,-0.904047][0.326009,0.62659,0.951314][0.374518,-0.0732762,-0.586828][0.536929,-0.103737,-0.837225][0.358795,0.734682,0.918744][0.357771,-0.24132,-0.551148][0.511043,-0.344703,-0.78741][0.249687,0.682119,0.893284][0.340066,0.265688,-0.551149][0.485753,0.379512,-0.78741][0.595611,0.794674,0.893284][0.427148,0.333725,-0.442913][0.611036,0.477394,-0.63145][0.620095,0.870133,0.81605][0.472816,0.180471,-0.483607][0.677871,0.256314,-0.689053][0.505646,0.863311,0.845088][0.340066,0.265688,-0.551149][0.485753,0.379512,-0.78741][0.595611,0.794674,0.893284][0.472816,0.180471,-0.483607][0.677871,0.256314,-0.689053][0.505646,0.863311,0.845088][0.368494,0.0992225,-0.586828][0.528385,0.140938,-0.837225][0.476488,0.772977,0.918744][0.368494,0.0992225,-0.586828][0.528385,0.140938,-0.837225][0.476488,0.772977,0.918744][0.472816,0.180471,-0.483607][0.677871,0.256314,-0.689053][0.505646,0.863311,0.845088][0.49221,0.0171883,-0.497427][0.705389,0.0246326,-0.708392][0.390883,0.8363,0.85495][0.368494,0.0992225,-0.586828][0.528385,0.140938,-0.837225][0.476488,0.772977,0.918744][0.49221,0.0171883,-0.497427][0.705389,0.0246326,-0.708392][0.390883,0.8363,0.85495][0.374518,-0.0732762,-0.586828][0.536929,-0.103737,-0.837225][0.358795,0.734682,0.918744][0.374518,-0.0732762,-0.586828][0.536929,-0.103737,-0.837225][0.358795,0.734682,0.918744][0.49221,0.0171883,-0.497427][0.705389,0.0246326,-0.708392][0.390883,0.8363,0.85495][0.484253,-0.147049,-0.483606][0.6941,-0.208404,-0.689053][0.282183,0.790601,0.845088][0.374518,-0.0732762,-0.586828][0.536929,-0.103737,-0.837225][0.358795,0.734682,0.918744][0.484253,-0.147049,-0.483606][0.6941,-0.208404,-0.689053][0.282183,0.790601,0.845088][0.357771,-0.24132,-0.551148][0.511043,-0.344703,-0.78741][0.249687,0.682119,0.893284][0.357771,-0.24132,-0.551148][0.511043,-0.344703,-0.78741][0.249687,0.682119,0.893284][0.484253,-0.147049,-0.483606][0.6941,-0.208404,-0.689053][0.282183,0.790601,0.845088][0.449387,-0.303116,-0.442913][0.642849,-0.433607,-0.63145][0.185587,0.728755,0.81605][0.427148,0.333725,-0.442913][0.611036,0.477394,-0.63145][0.620095,0.870133,0.81605][0.493373,0.385465,-0.31305][0.704818,0.550664,-0.447214][0.638714,0.927518,0.723383][0.554602,0.247756,-0.347898][0.792657,0.352825,-0.497201][0.530922,0.935012,0.74825][0.427148,0.333725,-0.442913][0.611036,0.477394,-0.63145][0.620095,0.870133,0.81605][0.554602,0.247756,-0.347898][0.792657,0.352825,-0.497201][0.530922,0.935012,0.74825][0.472816,0.180471,-0.483607][0.677871,0.256314,-0.689053][0.505646,0.863311,0.845088][0.472816,0.180471,-0.483607][0.677871,0.256314,-0.689053][0.505646,0.863311,0.845088][0.554602,0.247756,-0.347898][0.792657,0.352825,-0.497201][0.530922,0.935012,0.74825][0.58875,0.0979488,-0.365759][0.841129,0.139483,-0.522538][0.42162,0.921264,0.760995][0.472816,0.180471,-0.483607][0.677871,0.256314,-0.689053][0.505646,0.863311,0.845088][0.58875,0.0979488,-0.365759][0.841129,0.139483,-0.522538][0.42162,0.921264,0.760995][0.49221,0.0171883,-0.497427][0.705389,0.0246326,-0.708392][0.390883,0.8363,0.85495][0.49221,0.0171883,-0.497427][0.705389,0.0246326,-0.708392][0.390883,0.8363,0.85495][0.58875,0.0979488,-0.365759][0.841129,0.139483,-0.522538][0.42162,0.921264,0.760995][0.594148,-0.0566413,-0.365759][0.84881,-0.0804689,-0.522538][0.316145,0.886945,0.760995][0.49221,0.0171883,-0.497427][0.705389,0.0246326,-0.708392][0.390883,0.8363,0.85495][0.594148,-0.0566413,-0.365759][0.84881,-0.0804689,-0.522538][0.316145,0.886945,0.760995][0.484253,-0.147049,-0.483606][0.6941,-0.208404,-0.689053][0.282183,0.790601,0.845088][0.484253,-0.147049,-0.483606][0.6941,-0.208404,-0.689053][0.282183,0.790601,0.845088][0.594148,-0.0566413,-0.365759][0.84881,-0.0804689,-0.522538][0.316145,0.886945,0.760995][0.570534,-0.208466,-0.347898][0.815338,-0.296673,-0.497201][0.219648,0.833731,0.74825][0.484253,-0.147049,-0.483606][0.6941,-0.208404,-0.689053][0.282183,0.790601,0.845088][0.570534,-0.208466,-0.347898][0.815338,-0.296673,-0.497201][0.219648,0.833731,0.74825][0.449387,-0.303116,-0.442913][0.642849,-0.433607,-0.63145][0.185587,0.728755,0.81605][0.449387,-0.303116,-0.442913][0.642849,-0.433607,-0.63145][0.185587,0.728755,0.81605][0.570534,-0.208466,-0.347898][0.815338,-0.296673,-0.497201][0.219648,0.833731,0.74825][0.51906,-0.35011,-0.313049][0.741514,-0.500158,-0.447213][0.136841,0.764221,0.723383][0,0,-0.7][0,0,-1][0.5,0.5,0.9995][0.127454,-0.0859689,-0.682909][0.180731,-0.121904,-0.975949][0.410827,0.564879,0.987305][-0.0423757,-0.147782,-0.682909][-0.060089,-0.209556,-0.975949][0.410827,0.435121,0.987305][0.127454,-0.0859689,-0.682909][0.180731,-0.121904,-0.975949][0.410827,0.564879,0.987305][0.248684,-0.16774,-0.632471][0.354358,-0.239018,-0.904047][0.326009,0.62659,0.951314][0.0857663,-0.235641,-0.653542][0.122935,-0.33776,-0.93317][0.320212,0.5,0.966349][0.127454,-0.0859689,-0.682909][0.180731,-0.121904,-0.975949][0.410827,0.564879,0.987305][0.0857663,-0.235641,-0.653542][0.122935,-0.33776,-0.93317][0.320212,0.5,0.966349][-0.0423757,-0.147782,-0.682909][-0.060089,-0.209556,-0.975949][0.410827,0.435121,0.987305][-0.0423757,-0.147782,-0.682909][-0.060089,-0.209556,-0.975949][0.410827,0.435121,0.987305][0.0857663,-0.235641,-0.653542][0.122935,-0.33776,-0.93317][0.320212,0.5,0.966349][-0.0826822,-0.288347,-0.632471][-0.117816,-0.410875,-0.904047][0.326009,0.37341,0.951314][0.248684,-0.16774,-0.632471][0.354358,-0.239018,-0.904047][0.326009,0.62659,0.951314][0.357771,-0.24132,-0.551148][0.511043,-0.344703,-0.78741][0.249687,0.682119,0.893284][0.208237,-0.319797,-0.586828][0.29732,-0.458971,-0.837225][0.233482,0.561962,0.918744][0.248684,-0.16774,-0.632471][0.354358,-0.239018,-0.904047][0.326009,0.62659,0.951314][0.208237,-0.319797,-0.586828][0.29732,-0.458971,-0.837225][0.233482,0.561962,0.918744][0.0857663,-0.235641,-0.653542][0.122935,-0.33776,-0.93317][0.320212,0.5,0.966349][0.0857663,-0.235641,-0.653542][0.122935,-0.33776,-0.93317][0.320212,0.5,0.966349][0.208237,-0.319797,-0.586828][0.29732,-0.458971,-0.837225][0.233482,0.561962,0.918744][0.0460427,-0.378831,-0.586828][0.0672607,-0.542706,-0.837225][0.233482,0.438038,0.918744][0.0857663,-0.235641,-0.653542][0.122935,-0.33776,-0.93317][0.320212,0.5,0.966349][0.0460427,-0.378831,-0.586828][0.0672607,-0.542706,-0.837225][0.233482,0.438038,0.918744][-0.0826822,-0.288347,-0.632471][-0.117816,-0.410875,-0.904047][0.326009,0.37341,0.951314][-0.0826822,-0.288347,-0.632471][-0.117816,-0.410875,-0.904047][0.326009,0.37341,0.951314][0.0460427,-0.378831,-0.586828][0.0672607,-0.542706,-0.837225][0.233482,0.438038,0.918744][-0.118951,-0.414832,-0.551148][-0.169911,-0.59255,-0.78741][0.249686,0.317881,0.893284][0.357771,-0.24132,-0.551148][0.511043,-0.344703,-0.78741][0.249687,0.682119,0.893284][0.449387,-0.303116,-0.442913][0.642849,-0.433607,-0.63145][0.185587,0.728755,0.81605][0.317746,-0.393906,-0.483606][0.453243,-0.565489,-0.689053][0.1567,0.617646,0.845088][0.357771,-0.24132,-0.551148][0.511043,-0.344703,-0.78741][0.249687,0.682119,0.893284][0.317746,-0.393906,-0.483606][0.453243,-0.565489,-0.689053][0.1567,0.617646,0.845088][0.208237,-0.319797,-0.586828][0.29732,-0.458971,-0.837225][0.233482,0.561962,0.918744][0.208237,-0.319797,-0.586828][0.29732,-0.458971,-0.837225][0.233482,0.561962,0.918744][0.317746,-0.393906,-0.483606][0.453243,-0.565489,-0.689053][0.1567,0.617646,0.845088][0.168448,-0.462808,-0.497427][0.241404,-0.663253,-0.708392][0.146889,0.5,0.85495][0.208237,-0.319797,-0.586828][0.29732,-0.458971,-0.837225][0.233482,0.561962,0.918744][0.168448,-0.462808,-0.497427][0.241404,-0.663253,-0.708392][0.146889,0.5,0.85495][0.0460427,-0.378831,-0.586828][0.0672607,-0.542706,-0.837225][0.233482,0.438038,0.918744][0.0460427,-0.378831,-0.586828][0.0672607,-0.542706,-0.837225][0.233482,0.438038,0.918744][0.168448,-0.462808,-0.497427][0.241404,-0.663253,-0.708392][0.146889,0.5,0.85495][0.0097903,-0.505993,-0.483606][0.0162847,-0.724528,-0.689053][0.1567,0.382354,0.845088][0.0460427,-0.378831,-0.586828][0.0672607,-0.542706,-0.837225][0.233482,0.438038,0.918744][0.0097903,-0.505993,-0.483606][0.0162847,-0.724528,-0.689053][0.1567,0.382354,0.845088][-0.118951,-0.414832,-0.551148][-0.169911,-0.59255,-0.78741][0.249686,0.317881,0.893284][-0.118951,-0.414832,-0.551148][-0.169911,-0.59255,-0.78741][0.249686,0.317881,0.893284][0.0097903,-0.505993,-0.483606][0.0162847,-0.724528,-0.689053][0.1567,0.382354,0.845088][-0.149412,-0.521061,-0.442913][-0.213734,-0.745378,-0.63145][0.185587,0.271245,0.81605][0.449387,-0.303116,-0.442913][0.642849,-0.433607,-0.63145][0.185587,0.728755,0.81605][0.51906,-0.35011,-0.313049][0.741514,-0.500158,-0.447213][0.136841,0.764221,0.723383][0.407012,-0.450897,-0.347898][0.580501,-0.644833,-0.497201][0.0964145,0.663876,0.74825][0.449387,-0.303116,-0.442913][0.642849,-0.433607,-0.63145][0.185587,0.728755,0.81605][0.407012,-0.450897,-0.347898][0.580501,-0.644833,-0.497201][0.0964145,0.663876,0.74825][0.317746,-0.393906,-0.483606][0.453243,-0.565489,-0.689053][0.1567,0.617646,0.845088][0.317746,-0.393906,-0.483606][0.453243,-0.565489,-0.689053][0.1567,0.617646,0.845088][0.407012,-0.450897,-0.347898][0.580501,-0.644833,-0.497201][0.0964145,0.663876,0.74825][0.275089,-0.529667,-0.365758][0.392579,-0.756859,-0.522538][0.0756952,0.555529,0.760995][0.317746,-0.393906,-0.483606][0.453243,-0.565489,-0.689053][0.1567,0.617646,0.845088][0.275089,-0.529667,-0.365758][0.392579,-0.756859,-0.522538][0.0756952,0.555529,0.760995][0.168448,-0.462808,-0.497427][0.241404,-0.663253,-0.708392][0.146889,0.5,0.85495][0.168448,-0.462808,-0.497427][0.241404,-0.663253,-0.708392][0.146889,0.5,0.85495][0.275089,-0.529667,-0.365758][0.392579,-0.756859,-0.522538][0.0756952,0.555529,0.760995][0.129733,-0.582572,-0.365758][0.185766,-0.832133,-0.522538][0.0756952,0.444471,0.760995][0.168448,-0.462808,-0.497427][0.241404,-0.663253,-0.708392][0.146889,0.5,0.85495][0.129733,-0.582572,-0.365758][0.185766,-0.832133,-0.522538][0.0756952,0.444471,0.760995][0.0097903,-0.505993,-0.483606][0.0162847,-0.724528,-0.689053][0.1567,0.382354,0.845088][0.0097903,-0.505993,-0.483606][0.0162847,-0.724528,-0.689053][0.1567,0.382354,0.845088][0.129733,-0.582572,-0.365758][0.185766,-0.832133,-0.522538][0.0756952,0.444471,0.760995][-0.0219578,-0.607029,-0.347898][-0.030199,-0.86711,-0.497201][0.0964144,0.336124,0.74825][0.0097903,-0.505993,-0.483606][0.0162847,-0.724528,-0.689053][0.1567,0.382354,0.845088][-0.0219578,-0.607029,-0.347898][-0.030199,-0.86711,-0.497201][0.0964144,0.336124,0.74825][-0.149412,-0.521061,-0.442913][-0.213734,-0.745378,-0.63145][0.185587,0.271245,0.81605][-0.149412,-0.521061,-0.442913][-0.213734,-0.745378,-0.63145][0.185587,0.271245,0.81605][-0.0219578,-0.607029,-0.347898][-0.030199,-0.86711,-0.497201][0.0964144,0.336124,0.74825][-0.172576,-0.601845,-0.313049][-0.246537,-0.859779,-0.447214][0.136841,0.235779,0.723383][0,0,-0.7][0,0,-1][0.5,0.5,0.9995][-0.0423757,-0.147782,-0.682909][-0.060089,-0.209556,-0.975949][0.410827,0.435121,0.987305][-0.153644,-0.00536543,-0.682909][-0.217867,-0.00760819,-0.975949][0.534061,0.395024,0.987305][-0.0423757,-0.147782,-0.682909][-0.060089,-0.209556,-0.975949][0.410827,0.435121,0.987305][-0.0826822,-0.288347,-0.632471][-0.117816,-0.410875,-0.904047][0.326009,0.37341,0.951314][-0.197605,-0.154386,-0.653542][-0.28324,-0.221291,-0.93317][0.444442,0.328771,0.966349][-0.0423757,-0.147782,-0.682909][-0.060089,-0.209556,-0.975949][0.410827,0.435121,0.987305][-0.197605,-0.154386,-0.653542][-0.28324,-0.221291,-0.93317][0.444442,0.328771,0.966349][-0.153644,-0.00536543,-0.682909][-0.217867,-0.00760819,-0.975949][0.534061,0.395024,0.987305][-0.153644,-0.00536543,-0.682909][-0.217867,-0.00760819,-0.975949][0.534061,0.395024,0.987305][-0.197605,-0.154386,-0.653542][-0.28324,-0.221291,-0.93317][0.444442,0.328771,0.966349][-0.299785,-0.0104688,-0.632471][-0.427173,-0.0149172,-0.904047][0.566459,0.295174,0.951314][-0.0826822,-0.288347,-0.632471][-0.117816,-0.410875,-0.904047][0.326009,0.37341,0.951314][-0.118951,-0.414832,-0.551148][-0.169911,-0.59255,-0.78741][0.249686,0.317881,0.893284][-0.239796,-0.296868,-0.586828][-0.344631,-0.424598,-0.837225][0.358795,0.265318,0.918744][-0.0826822,-0.288347,-0.632471][-0.117816,-0.410875,-0.904047][0.326009,0.37341,0.951314][-0.239796,-0.296868,-0.586828][-0.344631,-0.424598,-0.837225][0.358795,0.265318,0.918744][-0.197605,-0.154386,-0.653542][-0.28324,-0.221291,-0.93317][0.444442,0.328771,0.966349][-0.197605,-0.154386,-0.653542][-0.28324,-0.221291,-0.93317][0.444442,0.328771,0.966349][-0.239796,-0.296868,-0.586828][-0.344631,-0.424598,-0.837225][0.358795,0.265318,0.918744][-0.346062,-0.160855,-0.586828][-0.495359,-0.231674,-0.837225][0.476488,0.227023,0.918744][-0.197605,-0.154386,-0.653542][-0.28324,-0.221291,-0.93317][0.444442,0.328771,0.966349][-0.346062,-0.160855,-0.586828][-0.495359,-0.231674,-0.837225][0.476488,0.227023,0.918744][-0.299785,-0.0104688,-0.632471][-0.427173,-0.0149172,-0.904047][0.566459,0.295174,0.951314][-0.299785,-0.0104688,-0.632471][-0.427173,-0.0149172,-0.904047][0.566459,0.295174,0.951314][-0.346062,-0.160855,-0.586828][-0.495359,-0.231674,-0.837225][0.476488,0.227023,0.918744][-0.431287,-0.0150609,-0.551149][-0.616054,-0.021513,-0.78741][0.595611,0.205326,0.893284][-0.118951,-0.414832,-0.551148][-0.169911,-0.59255,-0.78741][0.249686,0.317881,0.893284][-0.149412,-0.521061,-0.442913][-0.213734,-0.745378,-0.63145][0.185587,0.271245,0.81605][-0.276438,-0.423918,-0.483606][-0.397752,-0.605805,-0.689053][0.282183,0.209399,0.845088][-0.118951,-0.414832,-0.551148][-0.169911,-0.59255,-0.78741][0.249686,0.317881,0.893284][-0.276438,-0.423918,-0.483606][-0.397752,-0.605805,-0.689053][0.282183,0.209399,0.845088][-0.239796,-0.296868,-0.586828][-0.344631,-0.424598,-0.837225][0.358795,0.265318,0.918744][-0.239796,-0.296868,-0.586828][-0.344631,-0.424598,-0.837225][0.358795,0.265318,0.918744][-0.276438,-0.423918,-0.483606][-0.397752,-0.605805,-0.689053][0.282183,0.209399,0.845088][-0.388103,-0.30322,-0.497427][-0.556193,-0.434546,-0.708392][0.390883,0.1637,0.85495][-0.239796,-0.296868,-0.586828][-0.344631,-0.424598,-0.837225][0.358795,0.265318,0.918744][-0.388103,-0.30322,-0.497427][-0.556193,-0.434546,-0.708392][0.390883,0.1637,0.85495][-0.346062,-0.160855,-0.586828][-0.495359,-0.231674,-0.837225][0.476488,0.227023,0.918744][-0.346062,-0.160855,-0.586828][-0.495359,-0.231674,-0.837225][0.476488,0.227023,0.918744][-0.388103,-0.30322,-0.497427][-0.556193,-0.434546,-0.708392][0.390883,0.1637,0.85495][-0.478202,-0.165672,-0.483607][-0.684035,-0.239379,-0.689053][0.505646,0.136689,0.845088][-0.346062,-0.160855,-0.586828][-0.495359,-0.231674,-0.837225][0.476488,0.227023,0.918744][-0.478202,-0.165672,-0.483607][-0.684035,-0.239379,-0.689053][0.505646,0.136689,0.845088][-0.431287,-0.0150609,-0.551149][-0.616054,-0.021513,-0.78741][0.595611,0.205326,0.893284][-0.431287,-0.0150609,-0.551149][-0.616054,-0.021513,-0.78741][0.595611,0.205326,0.893284][-0.478202,-0.165672,-0.483607][-0.684035,-0.239379,-0.689053][0.505646,0.136689,0.845088][-0.541729,-0.0189176,-0.442913][-0.774944,-0.0270617,-0.63145][0.620095,0.129867,0.81605][-0.149412,-0.521061,-0.442913][-0.213734,-0.745378,-0.63145][0.185587,0.271245,0.81605][-0.172576,-0.601845,-0.313049][-0.246537,-0.859779,-0.447214][0.136841,0.235779,0.723383][-0.303055,-0.526426,-0.347898][-0.433888,-0.751354,-0.497201][0.219648,0.166269,0.74825][-0.149412,-0.521061,-0.442913][-0.213734,-0.745378,-0.63145][0.185587,0.271245,0.81605][-0.303055,-0.526426,-0.347898][-0.433888,-0.751354,-0.497201][0.219648,0.166269,0.74825][-0.276438,-0.423918,-0.483606][-0.397752,-0.605805,-0.689053][0.282183,0.209399,0.845088][-0.276438,-0.423918,-0.483606][-0.397752,-0.605805,-0.689053][0.282183,0.209399,0.845088][-0.303055,-0.526426,-0.347898][-0.433888,-0.751354,-0.497201][0.219648,0.166269,0.74825][-0.418736,-0.425301,-0.365759][-0.598502,-0.607247,-0.522538][0.316145,0.113055,0.760995][-0.276438,-0.423918,-0.483606][-0.397752,-0.605805,-0.689053][0.282183,0.209399,0.845088][-0.418736,-0.425301,-0.365759][-0.598502,-0.607247,-0.522538][0.316145,0.113055,0.760995][-0.388103,-0.30322,-0.497427][-0.556193,-0.434546,-0.708392][0.390883,0.1637,0.85495][-0.388103,-0.30322,-0.497427][-0.556193,-0.434546,-0.708392][0.390883,0.1637,0.85495][-0.418736,-0.425301,-0.365759][-0.598502,-0.607247,-0.522538][0.316145,0.113055,0.760995][-0.513969,-0.303408,-0.365759][-0.734,-0.433817,-0.522538][0.42162,0.0787361,0.760995][-0.388103,-0.30322,-0.497427][-0.556193,-0.434546,-0.708392][0.390883,0.1637,0.85495][-0.513969,-0.303408,-0.365759][-0.734,-0.433817,-0.522538][0.42162,0.0787361,0.760995][-0.478202,-0.165672,-0.483607][-0.684035,-0.239379,-0.689053][0.505646,0.136689,0.845088][-0.478202,-0.165672,-0.483607][-0.684035,-0.239379,-0.689053][0.505646,0.136689,0.845088][-0.513969,-0.303408,-0.365759][-0.734,-0.433817,-0.522538][0.42162,0.0787361,0.760995][-0.584105,-0.166699,-0.347898][-0.834002,-0.239231,-0.497201][0.530922,0.064988,0.74825][-0.478202,-0.165672,-0.483607][-0.684035,-0.239379,-0.689053][0.505646,0.136689,0.845088][-0.584105,-0.166699,-0.347898][-0.834002,-0.239231,-0.497201][0.530922,0.064988,0.74825][-0.541729,-0.0189176,-0.442913][-0.774944,-0.0270617,-0.63145][0.620095,0.129867,0.81605][-0.541729,-0.0189176,-0.442913][-0.774944,-0.0270617,-0.63145][0.620095,0.129867,0.81605][-0.584105,-0.166699,-0.347898][-0.834002,-0.239231,-0.497201][0.530922,0.064988,0.74825][-0.625718,-0.0218505,-0.31305][-0.893882,-0.0312152,-0.447214][0.638714,0.0724819,0.723383][0,0,-0.7][0,0,-1][0.5,0.5,0.9995][-0.153644,-0.00536543,-0.682909][-0.217867,-0.00760819,-0.975949][0.534061,0.395024,0.987305][-0.0525812,0.144466,-0.682909][-0.0745604,0.204853,-0.975949][0.610224,0.5,0.987305][-0.153644,-0.00536543,-0.682909][-0.217867,-0.00760819,-0.975949][0.534061,0.395024,0.987305][-0.299785,-0.0104688,-0.632471][-0.427173,-0.0149172,-0.904047][0.566459,0.295174,0.951314][-0.207893,0.140225,-0.653542][-0.297986,0.200994,-0.93317][0.645451,0.394175,0.966349][-0.153644,-0.00536543,-0.682909][-0.217867,-0.00760819,-0.975949][0.534061,0.395024,0.987305][-0.207893,0.140225,-0.653542][-0.297986,0.200994,-0.93317][0.645451,0.394175,0.966349][-0.0525812,0.144466,-0.682909][-0.0745604,0.204853,-0.975949][0.610224,0.5,0.987305][-0.0525812,0.144466,-0.682909][-0.0745604,0.204853,-0.975949][0.610224,0.5,0.987305][-0.207893,0.140225,-0.653542][-0.297986,0.200994,-0.93317][0.645451,0.394175,0.966349][-0.102595,0.281877,-0.632471][-0.146191,0.401656,-0.904047][0.715065,0.5,0.951314][-0.299785,-0.0104688,-0.632471][-0.427173,-0.0149172,-0.904047][0.566459,0.295174,0.951314][-0.431287,-0.0150609,-0.551149][-0.616054,-0.021513,-0.78741][0.595611,0.205326,0.893284][-0.35644,0.136323,-0.586828][-0.510314,0.196555,-0.837225][0.679248,0.292996,0.918744][-0.299785,-0.0104688,-0.632471][-0.427173,-0.0149172,-0.904047][0.566459,0.295174,0.951314][-0.35644,0.136323,-0.586828][-0.510314,0.196555,-0.837225][0.679248,0.292996,0.918744][-0.207893,0.140225,-0.653542][-0.297986,0.200994,-0.93317][0.645451,0.394175,0.966349][-0.207893,0.140225,-0.653542][-0.297986,0.200994,-0.93317][0.645451,0.394175,0.966349][-0.35644,0.136323,-0.586828][-0.510314,0.196555,-0.837225][0.679248,0.292996,0.918744][-0.259921,0.279418,-0.586828][-0.37341,0.399523,-0.837225][0.751987,0.393253,0.918744][-0.207893,0.140225,-0.653542][-0.297986,0.200994,-0.93317][0.645451,0.394175,0.966349][-0.259921,0.279418,-0.586828][-0.37341,0.399523,-0.837225][0.751987,0.393253,0.918744][-0.102595,0.281877,-0.632471][-0.146191,0.401656,-0.904047][0.715065,0.5,0.951314][-0.102595,0.281877,-0.632471][-0.146191,0.401656,-0.904047][0.715065,0.5,0.951314][-0.259921,0.279418,-0.586828][-0.37341,0.399523,-0.837225][0.751987,0.393253,0.918744][-0.147599,0.405524,-0.551149][-0.210831,0.579254,-0.78741][0.809404,0.5,0.893284][-0.431287,-0.0150609,-0.551149][-0.616054,-0.021513,-0.78741][0.595611,0.205326,0.893284][-0.541729,-0.0189176,-0.442913][-0.774944,-0.0270617,-0.63145][0.620095,0.129867,0.81605][-0.488594,0.13191,-0.483607][-0.699067,0.19108,-0.689053][0.708682,0.202752,0.845088][-0.431287,-0.0150609,-0.551149][-0.616054,-0.021513,-0.78741][0.595611,0.205326,0.893284][-0.488594,0.13191,-0.483607][-0.699067,0.19108,-0.689053][0.708682,0.202752,0.845088][-0.35644,0.136323,-0.586828][-0.510314,0.196555,-0.837225][0.679248,0.292996,0.918744][-0.35644,0.136323,-0.586828][-0.510314,0.196555,-0.837225][0.679248,0.292996,0.918744][-0.488594,0.13191,-0.483607][-0.699067,0.19108,-0.689053][0.708682,0.202752,0.845088][-0.408309,0.275408,-0.497427][-0.58515,0.394689,-0.708392][0.785673,0.292155,0.85495][-0.35644,0.136323,-0.586828][-0.510314,0.196555,-0.837225][0.679248,0.292996,0.918744][-0.408309,0.275408,-0.497427][-0.58515,0.394689,-0.708392][0.785673,0.292155,0.85495][-0.259921,0.279418,-0.586828][-0.37341,0.399523,-0.837225][0.751987,0.393253,0.918744][-0.259921,0.279418,-0.586828][-0.37341,0.399523,-0.837225][0.751987,0.393253,0.918744][-0.408309,0.275408,-0.497427][-0.58515,0.394689,-0.708392][0.785673,0.292155,0.85495][-0.305336,0.403602,-0.483607][-0.439042,0.576583,-0.689053][0.846789,0.393108,0.845088][-0.259921,0.279418,-0.586828][-0.37341,0.399523,-0.837225][0.751987,0.393253,0.918744][-0.305336,0.403602,-0.483607][-0.439042,0.576583,-0.689053][0.846789,0.393108,0.845088][-0.147599,0.405524,-0.551149][-0.210831,0.579254,-0.78741][0.809404,0.5,0.893284][-0.147599,0.405524,-0.551149][-0.210831,0.579254,-0.78741][0.809404,0.5,0.893284][-0.305336,0.403602,-0.483607][-0.439042,0.576583,-0.689053][0.846789,0.393108,0.845088][-0.185395,0.509369,-0.442913][-0.265208,0.728653,-0.63145][0.888635,0.5,0.81605][-0.541729,-0.0189176,-0.442913][-0.774944,-0.0270617,-0.63145][0.620095,0.129867,0.81605][-0.625718,-0.0218505,-0.31305][-0.893882,-0.0312152,-0.447214][0.638714,0.0724819,0.723383][-0.59431,0.125548,-0.347898][-0.848659,0.180471,-0.497201][0.730319,0.129867,0.74825][-0.541729,-0.0189176,-0.442913][-0.774944,-0.0270617,-0.63145][0.620095,0.129867,0.81605][-0.59431,0.125548,-0.347898][-0.848659,0.180471,-0.497201][0.730319,0.129867,0.74825][-0.488594,0.13191,-0.483607][-0.699067,0.19108,-0.689053][0.708682,0.202752,0.845088][-0.488594,0.13191,-0.483607][-0.699067,0.19108,-0.689053][0.708682,0.202752,0.845088][-0.59431,0.125548,-0.347898][-0.848659,0.180471,-0.497201][0.730319,0.129867,0.74825][-0.533882,0.266816,-0.365759][-0.762474,0.381559,-0.522538][0.810676,0.205326,0.760995][-0.488594,0.13191,-0.483607][-0.699067,0.19108,-0.689053][0.708682,0.202752,0.845088][-0.533882,0.266816,-0.365759][-0.762474,0.381559,-0.522538][0.810676,0.205326,0.760995][-0.408309,0.275408,-0.497427][-0.58515,0.394689,-0.708392][0.785673,0.292155,0.85495][-0.408309,0.275408,-0.497427][-0.58515,0.394689,-0.708392][0.785673,0.292155,0.85495][-0.533882,0.266816,-0.365759][-0.762474,0.381559,-0.522538][0.810676,0.205326,0.760995][-0.447383,0.395055,-0.365759][-0.639403,0.564019,-0.522538][0.875863,0.295174,0.760995][-0.408309,0.275408,-0.497427][-0.58515,0.394689,-0.708392][0.785673,0.292155,0.85495][-0.447383,0.395055,-0.365759][-0.639403,0.564019,-0.522538][0.875863,0.295174,0.760995][-0.305336,0.403602,-0.483607][-0.439042,0.576583,-0.689053][0.846789,0.393108,0.845088][-0.305336,0.403602,-0.483607][-0.439042,0.576583,-0.689053][0.846789,0.393108,0.845088][-0.447383,0.395055,-0.365759][-0.639403,0.564019,-0.522538][0.875863,0.295174,0.760995][-0.339039,0.504003,-0.347898][-0.485243,0.719257,-0.497201][0.922696,0.395024,0.74825][-0.305336,0.403602,-0.483607][-0.439042,0.576583,-0.689053][0.846789,0.393108,0.845088][-0.339039,0.504003,-0.347898][-0.485243,0.719257,-0.497201][0.922696,0.395024,0.74825][-0.185395,0.509369,-0.442913][-0.265208,0.728653,-0.63145][0.888635,0.5,0.81605][-0.185395,0.509369,-0.442913][-0.265208,0.728653,-0.63145][0.888635,0.5,0.81605][-0.339039,0.504003,-0.347898][-0.485243,0.719257,-0.497201][0.922696,0.395024,0.74825][-0.214138,0.588341,-0.31305][-0.305912,0.840487,-0.447214][0.948889,0.5,0.723383][-0.214138,0.588341,-0.31305][-0.305912,0.840487,-0.447214][0.948889,0.5,0.723383][-0.312849,0.595338,-0.194161][-0.447154,0.849615,-0.279657][0.977808,0.435121,0.638548][-0.143019,0.657151,-0.194161][-0.203582,0.938268,-0.279657][0.977808,0.564879,0.638548][-0.312849,0.595338,-0.194161][-0.447154,0.849615,-0.279657][0.977808,0.435121,0.638548][-0.396283,0.573264,-0.0657913][-0.566331,0.818703,-0.0948377][0.983396,0.37341,0.546947][-0.238282,0.654675,-0.0679832][-0.340446,0.935367,-0.0958365][0.999501,0.5,0.548511][-0.312849,0.595338,-0.194161][-0.447154,0.849615,-0.279657][0.977808,0.435121,0.638548][-0.238282,0.654675,-0.0679832][-0.340446,0.935367,-0.0958365][0.999501,0.5,0.548511][-0.143019,0.657151,-0.194161][-0.203582,0.938268,-0.279657][0.977808,0.564879,0.638548][-0.143019,0.657151,-0.194161][-0.203582,0.938268,-0.279657][0.977808,0.564879,0.638548][-0.238282,0.654675,-0.0679832][-0.340446,0.935367,-0.0958365][0.999501,0.5,0.548511][-0.0649165,0.693871,-0.0657913][-0.0924176,0.991194,-0.0948378][0.983396,0.626589,0.546947][-0.396283,0.573264,-0.0657913][-0.566331,0.818703,-0.0948377][0.983396,0.37341,0.546947][-0.460366,0.523197,0.0657911][-0.657376,0.747571,0.0948372][0.965379,0.317881,0.453053][-0.317474,0.619922,0.0700501][-0.452669,0.885791,0.102294][0.995505,0.438038,0.450014][-0.396283,0.573264,-0.0657913][-0.566331,0.818703,-0.0948377][0.983396,0.37341,0.546947][-0.317474,0.619922,0.0700501][-0.452669,0.885791,0.102294][0.995505,0.438038,0.450014][-0.238282,0.654675,-0.0679832][-0.340446,0.935367,-0.0958365][0.999501,0.5,0.548511][-0.238282,0.654675,-0.0679832][-0.340446,0.935367,-0.0958365][0.999501,0.5,0.548511][-0.317474,0.619922,0.0700501][-0.452669,0.885791,0.102294][0.995505,0.438038,0.450014][-0.155279,0.678956,0.0700501][-0.222611,0.969526,0.102294][0.995505,0.561962,0.450014][-0.238282,0.654675,-0.0679832][-0.340446,0.935367,-0.0958365][0.999501,0.5,0.548511][-0.155279,0.678956,0.0700501][-0.222611,0.969526,0.102294][0.995505,0.561962,0.450014][-0.0649165,0.693871,-0.0657913][-0.0924176,0.991194,-0.0948378][0.983396,0.626589,0.546947][-0.0649165,0.693871,-0.0657913][-0.0924176,0.991194,-0.0948378][0.983396,0.626589,0.546947][-0.155279,0.678956,0.0700501][-0.222611,0.969526,0.102294][0.995505,0.561962,0.450014][0.0163563,0.696709,0.0657911][0.0230505,0.995226,0.0948372][0.965379,0.682119,0.453053][-0.460366,0.523197,0.0657911][-0.657376,0.747571,0.0948372][0.965379,0.317881,0.453053][-0.501968,0.447582,0.194161][-0.716201,0.639412,0.279657][0.924636,0.271245,0.361452][-0.375158,0.551645,0.212][-0.534258,0.788077,0.305784][0.963651,0.382354,0.348723][-0.460366,0.523197,0.0657911][-0.657376,0.747571,0.0948372][0.965379,0.317881,0.453053][-0.375158,0.551645,0.212][-0.534258,0.788077,0.305784][0.963651,0.382354,0.348723][-0.317474,0.619922,0.0700501][-0.452669,0.885791,0.102294][0.995505,0.438038,0.450014][-0.317474,0.619922,0.0700501][-0.452669,0.885791,0.102294][0.995505,0.438038,0.450014][-0.375158,0.551645,0.212][-0.534258,0.788077,0.305784][0.963651,0.382354,0.348723][-0.227501,0.625055,0.218058][-0.324665,0.89201,0.314501][0.976901,0.5,0.3444][-0.317474,0.619922,0.0700501][-0.452669,0.885791,0.102294][0.995505,0.438038,0.450014][-0.227501,0.625055,0.218058][-0.324665,0.89201,0.314501][0.976901,0.5,0.3444][-0.155279,0.678956,0.0700501][-0.222611,0.969526,0.102294][0.995505,0.561962,0.450014][-0.155279,0.678956,0.0700501][-0.222611,0.969526,0.102294][0.995505,0.561962,0.450014][-0.227501,0.625055,0.218058][-0.324665,0.89201,0.314501][0.976901,0.5,0.3444][-0.0672026,0.663732,0.212][-0.0973004,0.947116,0.305784][0.963651,0.617646,0.348723][-0.155279,0.678956,0.0700501][-0.222611,0.969526,0.102294][0.995505,0.561962,0.450014][-0.0672026,0.663732,0.212][-0.0973004,0.947116,0.305784][0.963651,0.617646,0.348723][0.0163563,0.696709,0.0657911][0.0230505,0.995226,0.0948372][0.965379,0.682119,0.453053][0.0163563,0.696709,0.0657911][0.0230505,0.995226,0.0948372][0.965379,0.682119,0.453053][-0.0672026,0.663732,0.212][-0.0973004,0.947116,0.305784][0.963651,0.617646,0.348723][0.0968305,0.665526,0.194161][0.137636,0.950183,0.279657][0.924636,0.728755,0.361452][-0.501968,0.447582,0.194161][-0.716201,0.639412,0.279657][0.924636,0.271245,0.361452][-0.519059,0.35011,0.313049][-0.741513,0.500158,0.447214][0.863159,0.235779,0.276617][-0.407011,0.450897,0.347898][-0.580501,0.644833,0.497201][0.903585,0.336124,0.25175][-0.501968,0.447582,0.194161][-0.716201,0.639412,0.279657][0.924636,0.271245,0.361452][-0.407011,0.450897,0.347898][-0.580501,0.644833,0.497201][0.903585,0.336124,0.25175][-0.375158,0.551645,0.212][-0.534258,0.788077,0.305784][0.963651,0.382354,0.348723][-0.375158,0.551645,0.212][-0.534258,0.788077,0.305784][0.963651,0.382354,0.348723][-0.407011,0.450897,0.347898][-0.580501,0.644833,0.497201][0.903585,0.336124,0.25175][-0.275089,0.529667,0.365758][-0.392579,0.756859,0.522538][0.924305,0.444471,0.239005][-0.375158,0.551645,0.212][-0.534258,0.788077,0.305784][0.963651,0.382354,0.348723][-0.275089,0.529667,0.365758][-0.392579,0.756859,0.522538][0.924305,0.444471,0.239005][-0.227501,0.625055,0.218058][-0.324665,0.89201,0.314501][0.976901,0.5,0.3444][-0.227501,0.625055,0.218058][-0.324665,0.89201,0.314501][0.976901,0.5,0.3444][-0.275089,0.529667,0.365758][-0.392579,0.756859,0.522538][0.924305,0.444471,0.239005][-0.129733,0.582572,0.365758][-0.185766,0.832133,0.522538][0.924305,0.555529,0.239005][-0.227501,0.625055,0.218058][-0.324665,0.89201,0.314501][0.976901,0.5,0.3444][-0.129733,0.582572,0.365758][-0.185766,0.832133,0.522538][0.924305,0.555529,0.239005][-0.0672026,0.663732,0.212][-0.0973004,0.947116,0.305784][0.963651,0.617646,0.348723][-0.0672026,0.663732,0.212][-0.0973004,0.947116,0.305784][0.963651,0.617646,0.348723][-0.129733,0.582572,0.365758][-0.185766,0.832133,0.522538][0.924305,0.555529,0.239005][0.0219577,0.607029,0.347898][0.0301991,0.86711,0.497201][0.903585,0.663876,0.25175][-0.0672026,0.663732,0.212][-0.0973004,0.947116,0.305784][0.963651,0.617646,0.348723][0.0219577,0.607029,0.347898][0.0301991,0.86711,0.497201][0.903585,0.663876,0.25175][0.0968305,0.665526,0.194161][0.137636,0.950183,0.279657][0.924636,0.728755,0.361452][0.0968305,0.665526,0.194161][0.137636,0.950183,0.279657][0.924636,0.728755,0.361452][0.0219577,0.607029,0.347898][0.0301991,0.86711,0.497201][0.903585,0.663876,0.25175][0.172576,0.601845,0.313049][0.246538,0.859779,0.447214][0.863159,0.764221,0.276617][0.493373,0.385465,-0.31305][0.704818,0.550664,-0.447214][0.638714,0.927518,0.723383][0.469524,0.481507,-0.194161][0.669853,0.687814,-0.279657][0.709268,0.935012,0.638548][0.580792,0.33909,-0.194161][0.829435,0.483558,-0.279657][0.586034,0.975109,0.638548][0.469524,0.481507,-0.194161][0.669853,0.687814,-0.279657][0.709268,0.935012,0.638548][0.422748,0.554036,-0.0657912][0.603627,0.791606,-0.0948376][0.769603,0.921264,0.546947][0.549,0.428926,-0.0679831][0.784384,0.612828,-0.0958365][0.654354,0.97572,0.548511][0.469524,0.481507,-0.194161][0.669853,0.687814,-0.279657][0.709268,0.935012,0.638548][0.549,0.428926,-0.0679831][0.784384,0.612828,-0.0958365][0.654354,0.97572,0.548511][0.580792,0.33909,-0.194161][0.829435,0.483558,-0.279657][0.586034,0.975109,0.638548][0.580792,0.33909,-0.194161][0.829435,0.483558,-0.279657][0.586034,0.975109,0.638548][0.549,0.428926,-0.0679831][0.784384,0.612828,-0.0958365][0.654354,0.97572,0.548511][0.63985,0.276157,-0.0657912][0.914123,0.39419,-0.0948374][0.529153,0.9995,0.546947][0.422748,0.554036,-0.0657912][0.603627,0.791606,-0.0948376][0.769603,0.921264,0.546947][0.355329,0.599511,0.0657911][0.507841,0.856214,0.0948371][0.816772,0.886945,0.453053][0.491476,0.493502,0.0700502][0.702555,0.704239,0.102294][0.711966,0.952768,0.450014][0.422748,0.554036,-0.0657912][0.603627,0.791606,-0.0948376][0.769603,0.921264,0.546947][0.491476,0.493502,0.0700502][0.702555,0.704239,0.102294][0.711966,0.952768,0.450014][0.549,0.428926,-0.0679831][0.784384,0.612828,-0.0958365][0.654354,0.97572,0.548511][0.549,0.428926,-0.0679831][0.784384,0.612828,-0.0958365][0.654354,0.97572,0.548511][0.491476,0.493502,0.0700502][0.702555,0.704239,0.102294][0.711966,0.952768,0.450014][0.597742,0.357488,0.0700502][0.853284,0.511315,0.102294][0.594273,0.991063,0.450014][0.549,0.428926,-0.0679831][0.784384,0.612828,-0.0958365][0.654354,0.97572,0.548511][0.597742,0.357488,0.0700502][0.853284,0.511315,0.102294][0.594273,0.991063,0.450014][0.63985,0.276157,-0.0657912][0.914123,0.39419,-0.0948374][0.529153,0.9995,0.546947][0.63985,0.276157,-0.0657912][0.914123,0.39419,-0.0948374][0.529153,0.9995,0.546947][0.597742,0.357488,0.0700502][0.853284,0.511315,0.102294][0.594273,0.991063,0.450014][0.667664,0.199739,0.0657912][0.953639,0.285619,0.0948374][0.470848,0.999501,0.453053][0.355329,0.599511,0.0657911][0.507841,0.856214,0.0948371][0.816772,0.886945,0.453053][0.270558,0.615711,0.194161][0.386799,0.878737,0.279657][0.848474,0.833731,0.361452][0.408715,0.527265,0.212][0.58441,0.751639,0.305784][0.755007,0.905222,0.348723][0.355329,0.599511,0.0657911][0.507841,0.856214,0.0948371][0.816772,0.886945,0.453053][0.408715,0.527265,0.212][0.58441,0.751639,0.305784][0.755007,0.905222,0.348723][0.491476,0.493502,0.0700502][0.702555,0.704239,0.102294][0.711966,0.952768,0.450014][0.491476,0.493502,0.0700502][0.702555,0.704239,0.102294][0.711966,0.952768,0.450014][0.408715,0.527265,0.212][0.58441,0.751639,0.305784][0.755007,0.905222,0.348723][0.524161,0.409519,0.218058][0.748025,0.584421,0.314501][0.647371,0.954196,0.3444][0.491476,0.493502,0.0700502][0.702555,0.704239,0.102294][0.711966,0.952768,0.450014][0.524161,0.409519,0.218058][0.748025,0.584421,0.314501][0.647371,0.954196,0.3444][0.597742,0.357488,0.0700502][0.853284,0.511315,0.102294][0.594273,0.991063,0.450014][0.597742,0.357488,0.0700502][0.853284,0.511315,0.102294][0.594273,0.991063,0.450014][0.524161,0.409519,0.218058][0.748025,0.584421,0.314501][0.647371,0.954196,0.3444][0.61048,0.269018,0.212][0.870693,0.385213,0.305784][0.531545,0.977932,0.348723][0.597742,0.357488,0.0700502][0.853284,0.511315,0.102294][0.594273,0.991063,0.450014][0.61048,0.269018,0.212][0.870693,0.385213,0.305784][0.531545,0.977932,0.348723][0.667664,0.199739,0.0657912][0.953639,0.285619,0.0948374][0.470848,0.999501,0.453053][0.667664,0.199739,0.0657912][0.953639,0.285619,0.0948374][0.470848,0.999501,0.453053][0.61048,0.269018,0.212][0.870693,0.385213,0.305784][0.531545,0.977932,0.348723][0.662875,0.113568,0.194161][0.94621,0.162724,0.279657][0.413966,0.975109,0.361452][0.270558,0.615711,0.194161][0.386799,0.878737,0.279657][0.848474,0.833731,0.361452][0.172576,0.601845,0.313049][0.246538,0.859779,0.447214][0.863159,0.764221,0.276617][0.303055,0.526426,0.347898][0.433888,0.751354,0.497201][0.780352,0.833731,0.25175][0.270558,0.615711,0.194161][0.386799,0.878737,0.279657][0.848474,0.833731,0.361452][0.303055,0.526426,0.347898][0.433888,0.751354,0.497201][0.780352,0.833731,0.25175][0.408715,0.527265,0.212][0.58441,0.751639,0.305784][0.755007,0.905222,0.348723][0.408715,0.527265,0.212][0.58441,0.751639,0.305784][0.755007,0.905222,0.348723][0.303055,0.526426,0.347898][0.433888,0.751354,0.497201][0.780352,0.833731,0.25175][0.418736,0.425301,0.365759][0.598502,0.607247,0.522538][0.683855,0.886945,0.239005][0.408715,0.527265,0.212][0.58441,0.751639,0.305784][0.755007,0.905222,0.348723][0.418736,0.425301,0.365759][0.598502,0.607247,0.522538][0.683855,0.886945,0.239005][0.524161,0.409519,0.218058][0.748025,0.584421,0.314501][0.647371,0.954196,0.3444][0.524161,0.409519,0.218058][0.748025,0.584421,0.314501][0.647371,0.954196,0.3444][0.418736,0.425301,0.365759][0.598502,0.607247,0.522538][0.683855,0.886945,0.239005][0.513969,0.303408,0.365759][0.734,0.433817,0.522538][0.57838,0.921264,0.239005][0.524161,0.409519,0.218058][0.748025,0.584421,0.314501][0.647371,0.954196,0.3444][0.513969,0.303408,0.365759][0.734,0.433817,0.522538][0.57838,0.921264,0.239005][0.61048,0.269018,0.212][0.870693,0.385213,0.305784][0.531545,0.977932,0.348723][0.61048,0.269018,0.212][0.870693,0.385213,0.305784][0.531545,0.977932,0.348723][0.513969,0.303408,0.365759][0.734,0.433817,0.522538][0.57838,0.921264,0.239005][0.584105,0.166699,0.347898][0.834002,0.239231,0.497201][0.469078,0.935012,0.25175][0.61048,0.269018,0.212][0.870693,0.385213,0.305784][0.531545,0.977932,0.348723][0.584105,0.166699,0.347898][0.834002,0.239231,0.497201][0.469078,0.935012,0.25175][0.662875,0.113568,0.194161][0.94621,0.162724,0.279657][0.413966,0.975109,0.361452][0.662875,0.113568,0.194161][0.94621,0.162724,0.279657][0.413966,0.975109,0.361452][0.584105,0.166699,0.347898][0.834002,0.239231,0.497201][0.469078,0.935012,0.25175][0.625718,0.0218506,0.31305][0.893882,0.0312151,0.447214][0.361286,0.927518,0.276617][0.51906,-0.35011,-0.313049][0.741514,-0.500158,-0.447213][0.136841,0.764221,0.723383][0.603031,-0.29775,-0.194161][0.861146,-0.424522,-0.279657][0.151526,0.833731,0.638548][0.501969,-0.447581,-0.194161][0.716201,-0.639412,-0.279657][0.0753637,0.728755,0.638548][0.603031,-0.29775,-0.194161][0.861146,-0.424522,-0.279657][0.151526,0.833731,0.638548][0.657556,-0.230851,-0.0657911][0.939393,-0.329464,-0.0948373][0.183228,0.886945,0.546947][0.577583,-0.389585,-0.067983][0.825222,-0.556619,-0.0958363][0.0958956,0.794011,0.548511][0.603031,-0.29775,-0.194161][0.861146,-0.424522,-0.279657][0.151526,0.833731,0.638548][0.577583,-0.389585,-0.067983][0.825222,-0.556619,-0.0958363][0.0958956,0.794011,0.548511][0.501969,-0.447581,-0.194161][0.716201,-0.639412,-0.279657][0.0753637,0.728755,0.638548][0.501969,-0.447581,-0.194161][0.716201,-0.639412,-0.279657][0.0753637,0.728755,0.638548][0.577583,-0.389585,-0.067983][0.825222,-0.556619,-0.0958363][0.0958956,0.794011,0.548511][0.460366,-0.523197,-0.0657911][0.657376,-0.747571,-0.0948373][0.0346215,0.682119,0.546947][0.657556,-0.230851,-0.0657911][0.939393,-0.329464,-0.0948373][0.183228,0.886945,0.546947][0.679971,-0.152679,0.0657912][0.97124,-0.218401,0.0948376][0.230398,0.921264,0.453053][0.621223,-0.314921,0.0700503][0.886872,-0.450547,0.102295][0.135497,0.841788,0.450014][0.657556,-0.230851,-0.0657911][0.939393,-0.329464,-0.0948373][0.183228,0.886945,0.546947][0.621223,-0.314921,0.0700503][0.886872,-0.450547,0.102295][0.135497,0.841788,0.450014][0.577583,-0.389585,-0.067983][0.825222,-0.556619,-0.0958363][0.0958956,0.794011,0.548511][0.577583,-0.389585,-0.067983][0.825222,-0.556619,-0.0958363][0.0958956,0.794011,0.548511][0.621223,-0.314921,0.0700503][0.886872,-0.450547,0.102295][0.135497,0.841788,0.450014][0.524704,-0.458016,0.0700503][0.749969,-0.653516,0.102295][0.0627584,0.741531,0.450014][0.577583,-0.389585,-0.067983][0.825222,-0.556619,-0.0958363][0.0958956,0.794011,0.548511][0.524704,-0.458016,0.0700503][0.749969,-0.653516,0.102295][0.0627584,0.741531,0.450014][0.460366,-0.523197,-0.0657911][0.657376,-0.747571,-0.0948373][0.0346215,0.682119,0.546947][0.460366,-0.523197,-0.0657911][0.657376,-0.747571,-0.0948373][0.0346215,0.682119,0.546947][0.524704,-0.458016,0.0700503][0.749969,-0.653516,0.102295][0.0627584,0.741531,0.450014][0.396283,-0.573264,0.0657913][0.566331,-0.818703,0.0948375][0.0166042,0.62659,0.453053][0.679971,-0.152679,0.0657912][0.97124,-0.218401,0.0948376][0.230398,0.921264,0.453053][0.669183,-0.0670512,0.194161][0.955256,-0.0963231,0.279657][0.290732,0.935012,0.361452][0.627758,-0.225778,0.212][0.895444,-0.323538,0.305784][0.193952,0.868087,0.348723][0.679971,-0.152679,0.0657912][0.97124,-0.218401,0.0948376][0.230398,0.921264,0.453053][0.627758,-0.225778,0.212][0.895444,-0.323538,0.305784][0.193952,0.868087,0.348723][0.621223,-0.314921,0.0700503][0.886872,-0.450547,0.102295][0.135497,0.841788,0.450014][0.621223,-0.314921,0.0700503][0.886872,-0.450547,0.102295][0.135497,0.841788,0.450014][0.627758,-0.225778,0.212][0.895444,-0.323538,0.305784][0.193952,0.868087,0.348723][0.55145,-0.371958,0.218058][0.78697,-0.530818,0.314501][0.114179,0.780709,0.3444][0.621223,-0.314921,0.0700503][0.886872,-0.450547,0.102295][0.135497,0.841788,0.450014][0.55145,-0.371958,0.218058][0.78697,-0.530818,0.314501][0.114179,0.780709,0.3444][0.524704,-0.458016,0.0700503][0.749969,-0.653516,0.102295][0.0627584,0.741531,0.450014][0.524704,-0.458016,0.0700503][0.749969,-0.653516,0.102295][0.0627584,0.741531,0.450014][0.55145,-0.371958,0.218058][0.78697,-0.530818,0.314501][0.114179,0.780709,0.3444][0.4445,-0.497469,0.212][0.635418,-0.709041,0.305784][0.0558451,0.677732,0.348723][0.524704,-0.458016,0.0700503][0.749969,-0.653516,0.102295][0.0627584,0.741531,0.450014][0.4445,-0.497469,0.212][0.635418,-0.709041,0.305784][0.0558451,0.677732,0.348723][0.396283,-0.573264,0.0657913][0.566331,-0.818703,0.0948375][0.0166042,0.62659,0.453053][0.396283,-0.573264,0.0657913][0.566331,-0.818703,0.0948375][0.0166042,0.62659,0.453053][0.4445,-0.497469,0.212][0.635418,-0.709041,0.305784][0.0558451,0.677732,0.348723][0.312849,-0.595338,0.194161][0.447154,-0.849615,0.279657][0.0221917,0.564879,0.361452][0.669183,-0.0670512,0.194161][0.955256,-0.0963231,0.279657][0.290732,0.935012,0.361452][0.625718,0.0218506,0.31305][0.893882,0.0312151,0.447214][0.361286,0.927518,0.276617][0.59431,-0.125548,0.347898][0.848659,-0.180471,0.497201][0.269681,0.870133,0.25175][0.669183,-0.0670512,0.194161][0.955256,-0.0963231,0.279657][0.290732,0.935012,0.361452][0.59431,-0.125548,0.347898][0.848659,-0.180471,0.497201][0.269681,0.870133,0.25175][0.627758,-0.225778,0.212][0.895444,-0.323538,0.305784][0.193952,0.868087,0.348723][0.627758,-0.225778,0.212][0.895444,-0.323538,0.305784][0.193952,0.868087,0.348723][0.59431,-0.125548,0.347898][0.848659,-0.180471,0.497201][0.269681,0.870133,0.25175][0.533882,-0.266816,0.365759][0.762474,-0.381559,0.522538][0.189324,0.794674,0.239005][0.627758,-0.225778,0.212][0.895444,-0.323538,0.305784][0.193952,0.868087,0.348723][0.533882,-0.266816,0.365759][0.762474,-0.381559,0.522538][0.189324,0.794674,0.239005][0.55145,-0.371958,0.218058][0.78697,-0.530818,0.314501][0.114179,0.780709,0.3444][0.55145,-0.371958,0.218058][0.78697,-0.530818,0.314501][0.114179,0.780709,0.3444][0.533882,-0.266816,0.365759][0.762474,-0.381559,0.522538][0.189324,0.794674,0.239005][0.447383,-0.395055,0.365759][0.639403,-0.564019,0.522538][0.124137,0.704826,0.239005][0.55145,-0.371958,0.218058][0.78697,-0.530818,0.314501][0.114179,0.780709,0.3444][0.447383,-0.395055,0.365759][0.639403,-0.564019,0.522538][0.124137,0.704826,0.239005][0.4445,-0.497469,0.212][0.635418,-0.709041,0.305784][0.0558451,0.677732,0.348723][0.4445,-0.497469,0.212][0.635418,-0.709041,0.305784][0.0558451,0.677732,0.348723][0.447383,-0.395055,0.365759][0.639403,-0.564019,0.522538][0.124137,0.704826,0.239005][0.339039,-0.504003,0.347898][0.485243,-0.719257,0.497201][0.0773036,0.604976,0.25175][0.4445,-0.497469,0.212][0.635418,-0.709041,0.305784][0.0558451,0.677732,0.348723][0.339039,-0.504003,0.347898][0.485243,-0.719257,0.497201][0.0773036,0.604976,0.25175][0.312849,-0.595338,0.194161][0.447154,-0.849615,0.279657][0.0221917,0.564879,0.361452][0.312849,-0.595338,0.194161][0.447154,-0.849615,0.279657][0.0221917,0.564879,0.361452][0.339039,-0.504003,0.347898][0.485243,-0.719257,0.497201][0.0773036,0.604976,0.25175][0.214138,-0.588341,0.31305][0.305912,-0.840487,0.447214][0.0511111,0.5,0.276617][-0.172576,-0.601845,-0.313049][-0.246537,-0.859779,-0.447214][0.136841,0.235779,0.723383][-0.0968305,-0.665526,-0.194161][-0.137636,-0.950183,-0.279657][0.0753636,0.271245,0.638548][-0.270558,-0.615711,-0.194161][-0.386799,-0.878737,-0.279657][0.151526,0.166269,0.638548][-0.0968305,-0.665526,-0.194161][-0.137636,-0.950183,-0.279657][0.0753636,0.271245,0.638548][-0.0163564,-0.696709,-0.0657911][-0.0230503,-0.995226,-0.0948372][0.0346214,0.317881,0.546947][-0.192034,-0.669702,-0.067983][-0.274369,-0.956837,-0.0958361][0.0958955,0.205989,0.548511][-0.0968305,-0.665526,-0.194161][-0.137636,-0.950183,-0.279657][0.0753636,0.271245,0.638548][-0.192034,-0.669702,-0.067983][-0.274369,-0.956837,-0.0958361][0.0958955,0.205989,0.548511][-0.270558,-0.615711,-0.194161][-0.386799,-0.878737,-0.279657][0.151526,0.166269,0.638548][-0.270558,-0.615711,-0.194161][-0.386799,-0.878737,-0.279657][0.151526,0.166269,0.638548][-0.192034,-0.669702,-0.067983][-0.274369,-0.956837,-0.0958361][0.0958955,0.205989,0.548511][-0.355329,-0.599511,-0.0657911][-0.507842,-0.856214,-0.0948373][0.183228,0.113055,0.546947][-0.0163564,-0.696709,-0.0657911][-0.0230503,-0.995226,-0.0948372][0.0346214,0.317881,0.546947][0.0649164,-0.693871,0.0657913][0.0924179,-0.991194,0.0948375][0.0166042,0.373411,0.453053][-0.107539,-0.688134,0.0700503][-0.154438,-0.982693,0.102295][0.0627584,0.258469,0.450014][-0.0163564,-0.696709,-0.0657911][-0.0230503,-0.995226,-0.0948372][0.0346214,0.317881,0.546947][-0.107539,-0.688134,0.0700503][-0.154438,-0.982693,0.102295][0.0627584,0.258469,0.450014][-0.192034,-0.669702,-0.067983][-0.274369,-0.956837,-0.0958361][0.0958955,0.205989,0.548511][-0.192034,-0.669702,-0.067983][-0.274369,-0.956837,-0.0958361][0.0958955,0.205989,0.548511][-0.107539,-0.688134,0.0700503][-0.154438,-0.982693,0.102295][0.0627584,0.258469,0.450014][-0.273457,-0.640558,0.0700503][-0.389777,-0.91521,0.102295][0.135497,0.158212,0.450014][-0.192034,-0.669702,-0.067983][-0.274369,-0.956837,-0.0958361][0.0958955,0.205989,0.548511][-0.273457,-0.640558,0.0700503][-0.389777,-0.91521,0.102295][0.135497,0.158212,0.450014][-0.355329,-0.599511,-0.0657911][-0.507842,-0.856214,-0.0948373][0.183228,0.113055,0.546947][-0.355329,-0.599511,-0.0657911][-0.507842,-0.856214,-0.0948373][0.183228,0.113055,0.546947][-0.273457,-0.640558,0.0700503][-0.389777,-0.91521,0.102295][0.135497,0.158212,0.450014][-0.422748,-0.554036,0.0657912][-0.603627,-0.791606,0.0948373][0.230397,0.0787362,0.453053][0.0649164,-0.693871,0.0657913][0.0924179,-0.991194,0.0948375][0.0166042,0.373411,0.453053][0.143019,-0.657151,0.194161][0.203582,-0.938268,0.279657][0.0221917,0.435121,0.361452][-0.0207394,-0.666803,0.212][-0.0309958,-0.951596,0.305784][0.0558449,0.322268,0.348723][0.0649164,-0.693871,0.0657913][0.0924179,-0.991194,0.0948375][0.0166042,0.373411,0.453053][-0.0207394,-0.666803,0.212][-0.0309958,-0.951596,0.305784][0.0558449,0.322268,0.348723][-0.107539,-0.688134,0.0700503][-0.154438,-0.982693,0.102295][0.0627584,0.258469,0.450014][-0.107539,-0.688134,0.0700503][-0.154438,-0.982693,0.102295][0.0627584,0.258469,0.450014][-0.0207394,-0.666803,0.212][-0.0309958,-0.951596,0.305784][0.0558449,0.322268,0.348723][-0.183346,-0.639402,0.218058][-0.261651,-0.912485,0.314501][0.114179,0.219291,0.3444][-0.107539,-0.688134,0.0700503][-0.154438,-0.982693,0.102295][0.0627584,0.258469,0.450014][-0.183346,-0.639402,0.218058][-0.261651,-0.912485,0.314501][0.114179,0.219291,0.3444][-0.273457,-0.640558,0.0700503][-0.389777,-0.91521,0.102295][0.135497,0.158212,0.450014][-0.273457,-0.640558,0.0700503][-0.389777,-0.91521,0.102295][0.135497,0.158212,0.450014][-0.183346,-0.639402,0.218058][-0.261651,-0.912485,0.314501][0.114179,0.219291,0.3444][-0.335764,-0.576471,0.212][-0.477983,-0.823425,0.305784][0.193952,0.131913,0.348723][-0.273457,-0.640558,0.0700503][-0.389777,-0.91521,0.102295][0.135497,0.158212,0.450014][-0.335764,-0.576471,0.212][-0.477983,-0.823425,0.305784][0.193952,0.131913,0.348723][-0.422748,-0.554036,0.0657912][-0.603627,-0.791606,0.0948373][0.230397,0.0787362,0.453053][-0.422748,-0.554036,0.0657912][-0.603627,-0.791606,0.0948373][0.230397,0.0787362,0.453053][-0.335764,-0.576471,0.212][-0.477983,-0.823425,0.305784][0.193952,0.131913,0.348723][-0.469524,-0.481507,0.194161][-0.669853,-0.687814,0.279657][0.290732,0.064988,0.361452][0.143019,-0.657151,0.194161][0.203582,-0.938268,0.279657][0.0221917,0.435121,0.361452][0.214138,-0.588341,0.31305][0.305912,-0.840487,0.447214][0.0511111,0.5,0.276617][0.0642485,-0.604019,0.347898][0.0906121,-0.862891,0.497201][0.0773035,0.395024,0.25175][0.143019,-0.657151,0.194161][0.203582,-0.938268,0.279657][0.0221917,0.435121,0.361452][0.0642485,-0.604019,0.347898][0.0906121,-0.862891,0.497201][0.0773035,0.395024,0.25175][-0.0207394,-0.666803,0.212][-0.0309958,-0.951596,0.305784][0.0558449,0.322268,0.348723][-0.0207394,-0.666803,0.212][-0.0309958,-0.951596,0.305784][0.0558449,0.322268,0.348723][0.0642485,-0.604019,0.347898][0.0906121,-0.862891,0.497201][0.0773035,0.395024,0.25175][-0.0887788,-0.590202,0.365759][-0.127267,-0.843064,0.522538][0.124137,0.295174,0.239005][-0.0207394,-0.666803,0.212][-0.0309958,-0.951596,0.305784][0.0558449,0.322268,0.348723][-0.0887788,-0.590202,0.365759][-0.127267,-0.843064,0.522538][0.124137,0.295174,0.239005][-0.183346,-0.639402,0.218058][-0.261651,-0.912485,0.314501][0.114179,0.219291,0.3444][-0.183346,-0.639402,0.218058][-0.261651,-0.912485,0.314501][0.114179,0.219291,0.3444][-0.0887788,-0.590202,0.365759][-0.127267,-0.843064,0.522538][0.124137,0.295174,0.239005][-0.237471,-0.547566,0.365759][-0.338827,-0.7824,0.522538][0.189324,0.205326,0.239005][-0.183346,-0.639402,0.218058][-0.261651,-0.912485,0.314501][0.114179,0.219291,0.3444][-0.237471,-0.547566,0.365759][-0.338827,-0.7824,0.522538][0.189324,0.205326,0.239005][-0.335764,-0.576471,0.212][-0.477983,-0.823425,0.305784][0.193952,0.131913,0.348723][-0.335764,-0.576471,0.212][-0.477983,-0.823425,0.305784][0.193952,0.131913,0.348723][-0.237471,-0.547566,0.365759][-0.338827,-0.7824,0.522538][0.189324,0.205326,0.239005][-0.374567,-0.478191,0.347898][-0.534106,-0.683756,0.497201][0.269681,0.129867,0.25175][-0.335764,-0.576471,0.212][-0.477983,-0.823425,0.305784][0.193952,0.131913,0.348723][-0.374567,-0.478191,0.347898][-0.534106,-0.683756,0.497201][0.269681,0.129867,0.25175][-0.469524,-0.481507,0.194161][-0.669853,-0.687814,0.279657][0.290732,0.064988,0.361452][-0.469524,-0.481507,0.194161][-0.669853,-0.687814,0.279657][0.290732,0.064988,0.361452][-0.374567,-0.478191,0.347898][-0.534106,-0.683756,0.497201][0.269681,0.129867,0.25175][-0.493373,-0.385465,0.31305][-0.704818,-0.550664,0.447214][0.361286,0.072482,0.276617][-0.625718,-0.0218505,-0.31305][-0.893882,-0.0312152,-0.447214][0.638714,0.0724819,0.723383][-0.662875,-0.113568,-0.194161][-0.94621,-0.162724,-0.279657][0.586034,0.0248907,0.638548][-0.669183,0.0670513,-0.194161][-0.955256,0.0963227,-0.279657][0.709268,0.064988,0.638548][-0.662875,-0.113568,-0.194161][-0.94621,-0.162724,-0.279657][0.586034,0.0248907,0.638548][-0.667664,-0.199739,-0.0657912][-0.953639,-0.285619,-0.0948373][0.529152,0.000499517,0.546947][-0.696266,-0.0243141,-0.0679831][-0.994791,-0.0347391,-0.0958361][0.654354,0.0242798,0.548511][-0.662875,-0.113568,-0.194161][-0.94621,-0.162724,-0.279657][0.586034,0.0248907,0.638548][-0.696266,-0.0243141,-0.0679831][-0.994791,-0.0347391,-0.0958361][0.654354,0.0242798,0.548511][-0.669183,0.0670513,-0.194161][-0.955256,0.0963227,-0.279657][0.709268,0.064988,0.638548][-0.669183,0.0670513,-0.194161][-0.955256,0.0963227,-0.279657][0.709268,0.064988,0.638548][-0.696266,-0.0243141,-0.0679831][-0.994791,-0.0347391,-0.0958361][0.654354,0.0242798,0.548511][-0.679971,0.152679,-0.0657913][-0.97124,0.218401,-0.0948375][0.769603,0.0787361,0.546947][-0.667664,-0.199739,-0.0657912][-0.953639,-0.285619,-0.0948373][0.529152,0.000499517,0.546947][-0.63985,-0.276157,0.0657912][-0.914123,-0.39419,0.0948375][0.470847,0.000499547,0.453053][-0.687686,-0.110369,0.0700502][-0.98232,-0.15679,0.102294][0.594273,0.00893751,0.450014][-0.667664,-0.199739,-0.0657912][-0.953639,-0.285619,-0.0948373][0.529152,0.000499517,0.546947][-0.687686,-0.110369,0.0700502][-0.98232,-0.15679,0.102294][0.594273,0.00893751,0.450014][-0.696266,-0.0243141,-0.0679831][-0.994791,-0.0347391,-0.0958361][0.654354,0.0242798,0.548511][-0.696266,-0.0243141,-0.0679831][-0.994791,-0.0347391,-0.0958361][0.654354,0.0242798,0.548511][-0.687686,-0.110369,0.0700502][-0.98232,-0.15679,0.102294][0.594273,0.00893751,0.450014][-0.693709,0.0621298,0.0700502][-0.990864,0.0878845,0.102295][0.711966,0.0472321,0.450014][-0.696266,-0.0243141,-0.0679831][-0.994791,-0.0347391,-0.0958361][0.654354,0.0242798,0.548511][-0.693709,0.0621298,0.0700502][-0.990864,0.0878845,0.102295][0.711966,0.0472321,0.450014][-0.679971,0.152679,-0.0657913][-0.97124,0.218401,-0.0948375][0.769603,0.0787361,0.546947][-0.679971,0.152679,-0.0657913][-0.97124,0.218401,-0.0948375][0.769603,0.0787361,0.546947][-0.693709,0.0621298,0.0700502][-0.990864,0.0878845,0.102295][0.711966,0.0472321,0.450014][-0.657556,0.230851,0.0657911][-0.939393,0.329464,0.0948377][0.816772,0.113055,0.453053][-0.63985,-0.276157,0.0657912][-0.914123,-0.39419,0.0948375][0.470847,0.000499547,0.453053][-0.580792,-0.33909,0.194161][-0.829436,-0.483558,0.279657][0.413966,0.0248907,0.361452][-0.640576,-0.186329,0.212][-0.9146,-0.264581,0.305784][0.531545,0.0220683,0.348723][-0.63985,-0.276157,0.0657912][-0.914123,-0.39419,0.0948375][0.470847,0.000499547,0.453053][-0.640576,-0.186329,0.212][-0.9146,-0.264581,0.305784][0.531545,0.0220683,0.348723][-0.687686,-0.110369,0.0700502][-0.98232,-0.15679,0.102294][0.594273,0.00893751,0.450014][-0.687686,-0.110369,0.0700502][-0.98232,-0.15679,0.102294][0.594273,0.00893751,0.450014][-0.640576,-0.186329,0.212][-0.9146,-0.264581,0.305784][0.531545,0.0220683,0.348723][-0.664764,-0.023214,0.218058][-0.948679,-0.0331285,0.314501][0.64737,0.0458035,0.3444][-0.687686,-0.110369,0.0700502][-0.98232,-0.15679,0.102294][0.594273,0.00893751,0.450014][-0.664764,-0.023214,0.218058][-0.948679,-0.0331285,0.314501][0.64737,0.0458035,0.3444][-0.693709,0.0621298,0.0700502][-0.990864,0.0878845,0.102295][0.711966,0.0472321,0.450014][-0.693709,0.0621298,0.0700502][-0.990864,0.0878845,0.102295][0.711966,0.0472321,0.450014][-0.664764,-0.023214,0.218058][-0.948679,-0.0331285,0.314501][0.64737,0.0458035,0.3444][-0.652013,0.141191,0.212][-0.930828,0.200137,0.305784][0.755007,0.0947776,0.348723][-0.693709,0.0621298,0.0700502][-0.990864,0.0878845,0.102295][0.711966,0.0472321,0.450014][-0.652013,0.141191,0.212][-0.930828,0.200137,0.305784][0.755007,0.0947776,0.348723][-0.657556,0.230851,0.0657911][-0.939393,0.329464,0.0948377][0.816772,0.113055,0.453053][-0.657556,0.230851,0.0657911][-0.939393,0.329464,0.0948377][0.816772,0.113055,0.453053][-0.652013,0.141191,0.212][-0.930828,0.200137,0.305784][0.755007,0.0947776,0.348723][-0.603031,0.29775,0.194161][-0.861146,0.424522,0.279657][0.848474,0.166269,0.361452][-0.580792,-0.33909,0.194161][-0.829436,-0.483558,0.279657][0.413966,0.0248907,0.361452][-0.493373,-0.385465,0.31305][-0.704818,-0.550664,0.447214][0.361286,0.072482,0.276617][-0.554602,-0.247756,0.347898][-0.792657,-0.352825,0.497201][0.469078,0.064988,0.25175][-0.580792,-0.33909,0.194161][-0.829436,-0.483558,0.279657][0.413966,0.0248907,0.361452][-0.554602,-0.247756,0.347898][-0.792657,-0.352825,0.497201][0.469078,0.064988,0.25175][-0.640576,-0.186329,0.212][-0.9146,-0.264581,0.305784][0.531545,0.0220683,0.348723][-0.640576,-0.186329,0.212][-0.9146,-0.264581,0.305784][0.531545,0.0220683,0.348723][-0.554602,-0.247756,0.347898][-0.792657,-0.352825,0.497201][0.469078,0.064988,0.25175][-0.58875,-0.0979488,0.365759][-0.841129,-0.139483,0.522538][0.57838,0.0787362,0.239005][-0.640576,-0.186329,0.212][-0.9146,-0.264581,0.305784][0.531545,0.0220683,0.348723][-0.58875,-0.0979488,0.365759][-0.841129,-0.139483,0.522538][0.57838,0.0787362,0.239005][-0.664764,-0.023214,0.218058][-0.948679,-0.0331285,0.314501][0.64737,0.0458035,0.3444][-0.664764,-0.023214,0.218058][-0.948679,-0.0331285,0.314501][0.64737,0.0458035,0.3444][-0.58875,-0.0979488,0.365759][-0.841129,-0.139483,0.522538][0.57838,0.0787362,0.239005][-0.594148,0.0566413,0.365759][-0.84881,0.0804692,0.522538][0.683855,0.113055,0.239005][-0.664764,-0.023214,0.218058][-0.948679,-0.0331285,0.314501][0.64737,0.0458035,0.3444][-0.594148,0.0566413,0.365759][-0.84881,0.0804692,0.522538][0.683855,0.113055,0.239005][-0.652013,0.141191,0.212][-0.930828,0.200137,0.305784][0.755007,0.0947776,0.348723][-0.652013,0.141191,0.212][-0.930828,0.200137,0.305784][0.755007,0.0947776,0.348723][-0.594148,0.0566413,0.365759][-0.84881,0.0804692,0.522538][0.683855,0.113055,0.239005][-0.570534,0.208466,0.347898][-0.815338,0.296673,0.497201][0.780352,0.166269,0.25175][-0.652013,0.141191,0.212][-0.930828,0.200137,0.305784][0.755007,0.0947776,0.348723][-0.570534,0.208466,0.347898][-0.815338,0.296673,0.497201][0.780352,0.166269,0.25175][-0.603031,0.29775,0.194161][-0.861146,0.424522,0.279657][0.848474,0.166269,0.361452][-0.603031,0.29775,0.194161][-0.861146,0.424522,0.279657][0.848474,0.166269,0.361452][-0.570534,0.208466,0.347898][-0.815338,0.296673,0.497201][0.780352,0.166269,0.25175][-0.519059,0.35011,0.313049][-0.741513,0.500158,0.447214][0.863159,0.235779,0.276617][0.172576,0.601845,0.313049][0.246538,0.859779,0.447214][0.863159,0.764221,0.276617][0.270558,0.615711,0.194161][0.386799,0.878737,0.279657][0.848474,0.833731,0.361452][0.0968305,0.665526,0.194161][0.137636,0.950183,0.279657][0.924636,0.728755,0.361452][0.270558,0.615711,0.194161][0.386799,0.878737,0.279657][0.848474,0.833731,0.361452][0.355329,0.599511,0.0657911][0.507841,0.856214,0.0948371][0.816772,0.886945,0.453053][0.192034,0.669702,0.067983][0.274369,0.956837,0.095836][0.904104,0.794011,0.451489][0.270558,0.615711,0.194161][0.386799,0.878737,0.279657][0.848474,0.833731,0.361452][0.192034,0.669702,0.067983][0.274369,0.956837,0.095836][0.904104,0.794011,0.451489][0.0968305,0.665526,0.194161][0.137636,0.950183,0.279657][0.924636,0.728755,0.361452][0.0968305,0.665526,0.194161][0.137636,0.950183,0.279657][0.924636,0.728755,0.361452][0.192034,0.669702,0.067983][0.274369,0.956837,0.095836][0.904104,0.794011,0.451489][0.0163563,0.696709,0.0657911][0.0230505,0.995226,0.0948372][0.965379,0.682119,0.453053][0.355329,0.599511,0.0657911][0.507841,0.856214,0.0948371][0.816772,0.886945,0.453053][0.422748,0.554036,-0.0657912][0.603627,0.791606,-0.0948376][0.769603,0.921264,0.546947][0.273457,0.640558,-0.0700503][0.389777,0.91521,-0.102295][0.864503,0.841788,0.549986][0.355329,0.599511,0.0657911][0.507841,0.856214,0.0948371][0.816772,0.886945,0.453053][0.273457,0.640558,-0.0700503][0.389777,0.91521,-0.102295][0.864503,0.841788,0.549986][0.192034,0.669702,0.067983][0.274369,0.956837,0.095836][0.904104,0.794011,0.451489][0.192034,0.669702,0.067983][0.274369,0.956837,0.095836][0.904104,0.794011,0.451489][0.273457,0.640558,-0.0700503][0.389777,0.91521,-0.102295][0.864503,0.841788,0.549986][0.107539,0.688134,-0.0700503][0.154438,0.982693,-0.102295][0.937242,0.741531,0.549986][0.192034,0.669702,0.067983][0.274369,0.956837,0.095836][0.904104,0.794011,0.451489][0.107539,0.688134,-0.0700503][0.154438,0.982693,-0.102295][0.937242,0.741531,0.549986][0.0163563,0.696709,0.0657911][0.0230505,0.995226,0.0948372][0.965379,0.682119,0.453053][0.0163563,0.696709,0.0657911][0.0230505,0.995226,0.0948372][0.965379,0.682119,0.453053][0.107539,0.688134,-0.0700503][0.154438,0.982693,-0.102295][0.937242,0.741531,0.549986][-0.0649165,0.693871,-0.0657913][-0.0924176,0.991194,-0.0948378][0.983396,0.626589,0.546947][0.422748,0.554036,-0.0657912][0.603627,0.791606,-0.0948376][0.769603,0.921264,0.546947][0.469524,0.481507,-0.194161][0.669853,0.687814,-0.279657][0.709268,0.935012,0.638548][0.335764,0.576471,-0.212][0.477983,0.823425,-0.305784][0.806048,0.868087,0.651277][0.422748,0.554036,-0.0657912][0.603627,0.791606,-0.0948376][0.769603,0.921264,0.546947][0.335764,0.576471,-0.212][0.477983,0.823425,-0.305784][0.806048,0.868087,0.651277][0.273457,0.640558,-0.0700503][0.389777,0.91521,-0.102295][0.864503,0.841788,0.549986][0.273457,0.640558,-0.0700503][0.389777,0.91521,-0.102295][0.864503,0.841788,0.549986][0.335764,0.576471,-0.212][0.477983,0.823425,-0.305784][0.806048,0.868087,0.651277][0.183346,0.639402,-0.218058][0.261651,0.912484,-0.314501][0.885821,0.780709,0.6556][0.273457,0.640558,-0.0700503][0.389777,0.91521,-0.102295][0.864503,0.841788,0.549986][0.183346,0.639402,-0.218058][0.261651,0.912484,-0.314501][0.885821,0.780709,0.6556][0.107539,0.688134,-0.0700503][0.154438,0.982693,-0.102295][0.937242,0.741531,0.549986][0.107539,0.688134,-0.0700503][0.154438,0.982693,-0.102295][0.937242,0.741531,0.549986][0.183346,0.639402,-0.218058][0.261651,0.912484,-0.314501][0.885821,0.780709,0.6556][0.0207393,0.666803,-0.212][0.0309959,0.951596,-0.305784][0.944155,0.677732,0.651277][0.107539,0.688134,-0.0700503][0.154438,0.982693,-0.102295][0.937242,0.741531,0.549986][0.0207393,0.666803,-0.212][0.0309959,0.951596,-0.305784][0.944155,0.677732,0.651277][-0.0649165,0.693871,-0.0657913][-0.0924176,0.991194,-0.0948378][0.983396,0.626589,0.546947][-0.0649165,0.693871,-0.0657913][-0.0924176,0.991194,-0.0948378][0.983396,0.626589,0.546947][0.0207393,0.666803,-0.212][0.0309959,0.951596,-0.305784][0.944155,0.677732,0.651277][-0.143019,0.657151,-0.194161][-0.203582,0.938268,-0.279657][0.977808,0.564879,0.638548][0.469524,0.481507,-0.194161][0.669853,0.687814,-0.279657][0.709268,0.935012,0.638548][0.493373,0.385465,-0.31305][0.704818,0.550664,-0.447214][0.638714,0.927518,0.723383][0.374567,0.478191,-0.347898][0.534106,0.683756,-0.497201][0.730319,0.870133,0.74825][0.469524,0.481507,-0.194161][0.669853,0.687814,-0.279657][0.709268,0.935012,0.638548][0.374567,0.478191,-0.347898][0.534106,0.683756,-0.497201][0.730319,0.870133,0.74825][0.335764,0.576471,-0.212][0.477983,0.823425,-0.305784][0.806048,0.868087,0.651277][0.335764,0.576471,-0.212][0.477983,0.823425,-0.305784][0.806048,0.868087,0.651277][0.374567,0.478191,-0.347898][0.534106,0.683756,-0.497201][0.730319,0.870133,0.74825][0.237471,0.547566,-0.365759][0.338827,0.7824,-0.522538][0.810676,0.794674,0.760995][0.335764,0.576471,-0.212][0.477983,0.823425,-0.305784][0.806048,0.868087,0.651277][0.237471,0.547566,-0.365759][0.338827,0.7824,-0.522538][0.810676,0.794674,0.760995][0.183346,0.639402,-0.218058][0.261651,0.912484,-0.314501][0.885821,0.780709,0.6556][0.183346,0.639402,-0.218058][0.261651,0.912484,-0.314501][0.885821,0.780709,0.6556][0.237471,0.547566,-0.365759][0.338827,0.7824,-0.522538][0.810676,0.794674,0.760995][0.0887788,0.590202,-0.365759][0.127267,0.843064,-0.522538][0.875863,0.704826,0.760995][0.183346,0.639402,-0.218058][0.261651,0.912484,-0.314501][0.885821,0.780709,0.6556][0.0887788,0.590202,-0.365759][0.127267,0.843064,-0.522538][0.875863,0.704826,0.760995][0.0207393,0.666803,-0.212][0.0309959,0.951596,-0.305784][0.944155,0.677732,0.651277][0.0207393,0.666803,-0.212][0.0309959,0.951596,-0.305784][0.944155,0.677732,0.651277][0.0887788,0.590202,-0.365759][0.127267,0.843064,-0.522538][0.875863,0.704826,0.760995][-0.0642485,0.604019,-0.347898][-0.0906117,0.862891,-0.497201][0.922696,0.604976,0.74825][0.0207393,0.666803,-0.212][0.0309959,0.951596,-0.305784][0.944155,0.677732,0.651277][-0.0642485,0.604019,-0.347898][-0.0906117,0.862891,-0.497201][0.922696,0.604976,0.74825][-0.143019,0.657151,-0.194161][-0.203582,0.938268,-0.279657][0.977808,0.564879,0.638548][-0.143019,0.657151,-0.194161][-0.203582,0.938268,-0.279657][0.977808,0.564879,0.638548][-0.0642485,0.604019,-0.347898][-0.0906117,0.862891,-0.497201][0.922696,0.604976,0.74825][-0.214138,0.588341,-0.31305][-0.305912,0.840487,-0.447214][0.948889,0.5,0.723383][0.625718,0.0218506,0.31305][0.893882,0.0312151,0.447214][0.361286,0.927518,0.276617][0.669183,-0.0670512,0.194161][0.955256,-0.0963231,0.279657][0.290732,0.935012,0.361452][0.662875,0.113568,0.194161][0.94621,0.162724,0.279657][0.413966,0.975109,0.361452][0.669183,-0.0670512,0.194161][0.955256,-0.0963231,0.279657][0.290732,0.935012,0.361452][0.679971,-0.152679,0.0657912][0.97124,-0.218401,0.0948376][0.230398,0.921264,0.453053][0.696266,0.0243142,0.0679831][0.994791,0.0347388,0.0958363][0.345646,0.97572,0.451489][0.669183,-0.0670512,0.194161][0.955256,-0.0963231,0.279657][0.290732,0.935012,0.361452][0.696266,0.0243142,0.0679831][0.994791,0.0347388,0.0958363][0.345646,0.97572,0.451489][0.662875,0.113568,0.194161][0.94621,0.162724,0.279657][0.413966,0.975109,0.361452][0.662875,0.113568,0.194161][0.94621,0.162724,0.279657][0.413966,0.975109,0.361452][0.696266,0.0243142,0.0679831][0.994791,0.0347388,0.0958363][0.345646,0.97572,0.451489][0.667664,0.199739,0.0657912][0.953639,0.285619,0.0948374][0.470848,0.999501,0.453053][0.679971,-0.152679,0.0657912][0.97124,-0.218401,0.0948376][0.230398,0.921264,0.453053][0.657556,-0.230851,-0.0657911][0.939393,-0.329464,-0.0948373][0.183228,0.886945,0.546947][0.693709,-0.0621297,-0.0700502][0.990864,-0.0878847,-0.102294][0.288034,0.952768,0.549986][0.679971,-0.152679,0.0657912][0.97124,-0.218401,0.0948376][0.230398,0.921264,0.453053][0.693709,-0.0621297,-0.0700502][0.990864,-0.0878847,-0.102294][0.288034,0.952768,0.549986][0.696266,0.0243142,0.0679831][0.994791,0.0347388,0.0958363][0.345646,0.97572,0.451489][0.696266,0.0243142,0.0679831][0.994791,0.0347388,0.0958363][0.345646,0.97572,0.451489][0.693709,-0.0621297,-0.0700502][0.990864,-0.0878847,-0.102294][0.288034,0.952768,0.549986][0.687686,0.110369,-0.0700502][0.98232,0.15679,-0.102294][0.405727,0.991063,0.549986][0.696266,0.0243142,0.0679831][0.994791,0.0347388,0.0958363][0.345646,0.97572,0.451489][0.687686,0.110369,-0.0700502][0.98232,0.15679,-0.102294][0.405727,0.991063,0.549986][0.667664,0.199739,0.0657912][0.953639,0.285619,0.0948374][0.470848,0.999501,0.453053][0.667664,0.199739,0.0657912][0.953639,0.285619,0.0948374][0.470848,0.999501,0.453053][0.687686,0.110369,-0.0700502][0.98232,0.15679,-0.102294][0.405727,0.991063,0.549986][0.63985,0.276157,-0.0657912][0.914123,0.39419,-0.0948374][0.529153,0.9995,0.546947][0.657556,-0.230851,-0.0657911][0.939393,-0.329464,-0.0948373][0.183228,0.886945,0.546947][0.603031,-0.29775,-0.194161][0.861146,-0.424522,-0.279657][0.151526,0.833731,0.638548][0.652013,-0.141191,-0.212][0.930828,-0.200137,-0.305784][0.244993,0.905222,0.651277][0.657556,-0.230851,-0.0657911][0.939393,-0.329464,-0.0948373][0.183228,0.886945,0.546947][0.652013,-0.141191,-0.212][0.930828,-0.200137,-0.305784][0.244993,0.905222,0.651277][0.693709,-0.0621297,-0.0700502][0.990864,-0.0878847,-0.102294][0.288034,0.952768,0.549986][0.693709,-0.0621297,-0.0700502][0.990864,-0.0878847,-0.102294][0.288034,0.952768,0.549986][0.652013,-0.141191,-0.212][0.930828,-0.200137,-0.305784][0.244993,0.905222,0.651277][0.664764,0.023214,-0.218058][0.948679,0.0331285,-0.314501][0.35263,0.954197,0.6556][0.693709,-0.0621297,-0.0700502][0.990864,-0.0878847,-0.102294][0.288034,0.952768,0.549986][0.664764,0.023214,-0.218058][0.948679,0.0331285,-0.314501][0.35263,0.954197,0.6556][0.687686,0.110369,-0.0700502][0.98232,0.15679,-0.102294][0.405727,0.991063,0.549986][0.687686,0.110369,-0.0700502][0.98232,0.15679,-0.102294][0.405727,0.991063,0.549986][0.664764,0.023214,-0.218058][0.948679,0.0331285,-0.314501][0.35263,0.954197,0.6556][0.640576,0.186329,-0.212][0.9146,0.264581,-0.305784][0.468455,0.977932,0.651277][0.687686,0.110369,-0.0700502][0.98232,0.15679,-0.102294][0.405727,0.991063,0.549986][0.640576,0.186329,-0.212][0.9146,0.264581,-0.305784][0.468455,0.977932,0.651277][0.63985,0.276157,-0.0657912][0.914123,0.39419,-0.0948374][0.529153,0.9995,0.546947][0.63985,0.276157,-0.0657912][0.914123,0.39419,-0.0948374][0.529153,0.9995,0.546947][0.640576,0.186329,-0.212][0.9146,0.264581,-0.305784][0.468455,0.977932,0.651277][0.580792,0.33909,-0.194161][0.829435,0.483558,-0.279657][0.586034,0.975109,0.638548][0.603031,-0.29775,-0.194161][0.861146,-0.424522,-0.279657][0.151526,0.833731,0.638548][0.51906,-0.35011,-0.313049][0.741514,-0.500158,-0.447213][0.136841,0.764221,0.723383][0.570534,-0.208466,-0.347898][0.815338,-0.296673,-0.497201][0.219648,0.833731,0.74825][0.603031,-0.29775,-0.194161][0.861146,-0.424522,-0.279657][0.151526,0.833731,0.638548][0.570534,-0.208466,-0.347898][0.815338,-0.296673,-0.497201][0.219648,0.833731,0.74825][0.652013,-0.141191,-0.212][0.930828,-0.200137,-0.305784][0.244993,0.905222,0.651277][0.652013,-0.141191,-0.212][0.930828,-0.200137,-0.305784][0.244993,0.905222,0.651277][0.570534,-0.208466,-0.347898][0.815338,-0.296673,-0.497201][0.219648,0.833731,0.74825][0.594148,-0.0566413,-0.365759][0.84881,-0.0804689,-0.522538][0.316145,0.886945,0.760995][0.652013,-0.141191,-0.212][0.930828,-0.200137,-0.305784][0.244993,0.905222,0.651277][0.594148,-0.0566413,-0.365759][0.84881,-0.0804689,-0.522538][0.316145,0.886945,0.760995][0.664764,0.023214,-0.218058][0.948679,0.0331285,-0.314501][0.35263,0.954197,0.6556][0.664764,0.023214,-0.218058][0.948679,0.0331285,-0.314501][0.35263,0.954197,0.6556][0.594148,-0.0566413,-0.365759][0.84881,-0.0804689,-0.522538][0.316145,0.886945,0.760995][0.58875,0.0979488,-0.365759][0.841129,0.139483,-0.522538][0.42162,0.921264,0.760995][0.664764,0.023214,-0.218058][0.948679,0.0331285,-0.314501][0.35263,0.954197,0.6556][0.58875,0.0979488,-0.365759][0.841129,0.139483,-0.522538][0.42162,0.921264,0.760995][0.640576,0.186329,-0.212][0.9146,0.264581,-0.305784][0.468455,0.977932,0.651277][0.640576,0.186329,-0.212][0.9146,0.264581,-0.305784][0.468455,0.977932,0.651277][0.58875,0.0979488,-0.365759][0.841129,0.139483,-0.522538][0.42162,0.921264,0.760995][0.554602,0.247756,-0.347898][0.792657,0.352825,-0.497201][0.530922,0.935012,0.74825][0.640576,0.186329,-0.212][0.9146,0.264581,-0.305784][0.468455,0.977932,0.651277][0.554602,0.247756,-0.347898][0.792657,0.352825,-0.497201][0.530922,0.935012,0.74825][0.580792,0.33909,-0.194161][0.829435,0.483558,-0.279657][0.586034,0.975109,0.638548][0.580792,0.33909,-0.194161][0.829435,0.483558,-0.279657][0.586034,0.975109,0.638548][0.554602,0.247756,-0.347898][0.792657,0.352825,-0.497201][0.530922,0.935012,0.74825][0.493373,0.385465,-0.31305][0.704818,0.550664,-0.447214][0.638714,0.927518,0.723383][0.214138,-0.588341,0.31305][0.305912,-0.840487,0.447214][0.0511111,0.5,0.276617][0.143019,-0.657151,0.194161][0.203582,-0.938268,0.279657][0.0221917,0.435121,0.361452][0.312849,-0.595338,0.194161][0.447154,-0.849615,0.279657][0.0221917,0.564879,0.361452][0.143019,-0.657151,0.194161][0.203582,-0.938268,0.279657][0.0221917,0.435121,0.361452][0.0649164,-0.693871,0.0657913][0.0924179,-0.991194,0.0948375][0.0166042,0.373411,0.453053][0.238282,-0.654675,0.0679832][0.340446,-0.935367,0.0958363][0.000499517,0.5,0.451489][0.143019,-0.657151,0.194161][0.203582,-0.938268,0.279657][0.0221917,0.435121,0.361452][0.238282,-0.654675,0.0679832][0.340446,-0.935367,0.0958363][0.000499517,0.5,0.451489][0.312849,-0.595338,0.194161][0.447154,-0.849615,0.279657][0.0221917,0.564879,0.361452][0.312849,-0.595338,0.194161][0.447154,-0.849615,0.279657][0.0221917,0.564879,0.361452][0.238282,-0.654675,0.0679832][0.340446,-0.935367,0.0958363][0.000499517,0.5,0.451489][0.396283,-0.573264,0.0657913][0.566331,-0.818703,0.0948375][0.0166042,0.62659,0.453053][0.0649164,-0.693871,0.0657913][0.0924179,-0.991194,0.0948375][0.0166042,0.373411,0.453053][-0.0163564,-0.696709,-0.0657911][-0.0230503,-0.995226,-0.0948372][0.0346214,0.317881,0.546947][0.155279,-0.678956,-0.0700501][0.222611,-0.969526,-0.102294][0.00449464,0.438038,0.549986][0.0649164,-0.693871,0.0657913][0.0924179,-0.991194,0.0948375][0.0166042,0.373411,0.453053][0.155279,-0.678956,-0.0700501][0.222611,-0.969526,-0.102294][0.00449464,0.438038,0.549986][0.238282,-0.654675,0.0679832][0.340446,-0.935367,0.0958363][0.000499517,0.5,0.451489][0.238282,-0.654675,0.0679832][0.340446,-0.935367,0.0958363][0.000499517,0.5,0.451489][0.155279,-0.678956,-0.0700501][0.222611,-0.969526,-0.102294][0.00449464,0.438038,0.549986][0.317474,-0.619922,-0.0700501][0.452669,-0.885791,-0.102294][0.00449467,0.561962,0.549986][0.238282,-0.654675,0.0679832][0.340446,-0.935367,0.0958363][0.000499517,0.5,0.451489][0.317474,-0.619922,-0.0700501][0.452669,-0.885791,-0.102294][0.00449467,0.561962,0.549986][0.396283,-0.573264,0.0657913][0.566331,-0.818703,0.0948375][0.0166042,0.62659,0.453053][0.396283,-0.573264,0.0657913][0.566331,-0.818703,0.0948375][0.0166042,0.62659,0.453053][0.317474,-0.619922,-0.0700501][0.452669,-0.885791,-0.102294][0.00449467,0.561962,0.549986][0.460366,-0.523197,-0.0657911][0.657376,-0.747571,-0.0948373][0.0346215,0.682119,0.546947][-0.0163564,-0.696709,-0.0657911][-0.0230503,-0.995226,-0.0948372][0.0346214,0.317881,0.546947][-0.0968305,-0.665526,-0.194161][-0.137636,-0.950183,-0.279657][0.0753636,0.271245,0.638548][0.0672025,-0.663732,-0.212][0.0973002,-0.947116,-0.305784][0.0363493,0.382354,0.651277][-0.0163564,-0.696709,-0.0657911][-0.0230503,-0.995226,-0.0948372][0.0346214,0.317881,0.546947][0.0672025,-0.663732,-0.212][0.0973002,-0.947116,-0.305784][0.0363493,0.382354,0.651277][0.155279,-0.678956,-0.0700501][0.222611,-0.969526,-0.102294][0.00449464,0.438038,0.549986][0.155279,-0.678956,-0.0700501][0.222611,-0.969526,-0.102294][0.00449464,0.438038,0.549986][0.0672025,-0.663732,-0.212][0.0973002,-0.947116,-0.305784][0.0363493,0.382354,0.651277][0.227501,-0.625055,-0.218058][0.324665,-0.89201,-0.314501][0.0230991,0.5,0.6556][0.155279,-0.678956,-0.0700501][0.222611,-0.969526,-0.102294][0.00449464,0.438038,0.549986][0.227501,-0.625055,-0.218058][0.324665,-0.89201,-0.314501][0.0230991,0.5,0.6556][0.317474,-0.619922,-0.0700501][0.452669,-0.885791,-0.102294][0.00449467,0.561962,0.549986][0.317474,-0.619922,-0.0700501][0.452669,-0.885791,-0.102294][0.00449467,0.561962,0.549986][0.227501,-0.625055,-0.218058][0.324665,-0.89201,-0.314501][0.0230991,0.5,0.6556][0.375158,-0.551645,-0.212][0.534258,-0.788077,-0.305784][0.0363493,0.617646,0.651277][0.317474,-0.619922,-0.0700501][0.452669,-0.885791,-0.102294][0.00449467,0.561962,0.549986][0.375158,-0.551645,-0.212][0.534258,-0.788077,-0.305784][0.0363493,0.617646,0.651277][0.460366,-0.523197,-0.0657911][0.657376,-0.747571,-0.0948373][0.0346215,0.682119,0.546947][0.460366,-0.523197,-0.0657911][0.657376,-0.747571,-0.0948373][0.0346215,0.682119,0.546947][0.375158,-0.551645,-0.212][0.534258,-0.788077,-0.305784][0.0363493,0.617646,0.651277][0.501969,-0.447581,-0.194161][0.716201,-0.639412,-0.279657][0.0753637,0.728755,0.638548][-0.0968305,-0.665526,-0.194161][-0.137636,-0.950183,-0.279657][0.0753636,0.271245,0.638548][-0.172576,-0.601845,-0.313049][-0.246537,-0.859779,-0.447214][0.136841,0.235779,0.723383][-0.0219578,-0.607029,-0.347898][-0.030199,-0.86711,-0.497201][0.0964144,0.336124,0.74825][-0.0968305,-0.665526,-0.194161][-0.137636,-0.950183,-0.279657][0.0753636,0.271245,0.638548][-0.0219578,-0.607029,-0.347898][-0.030199,-0.86711,-0.497201][0.0964144,0.336124,0.74825][0.0672025,-0.663732,-0.212][0.0973002,-0.947116,-0.305784][0.0363493,0.382354,0.651277][0.0672025,-0.663732,-0.212][0.0973002,-0.947116,-0.305784][0.0363493,0.382354,0.651277][-0.0219578,-0.607029,-0.347898][-0.030199,-0.86711,-0.497201][0.0964144,0.336124,0.74825][0.129733,-0.582572,-0.365758][0.185766,-0.832133,-0.522538][0.0756952,0.444471,0.760995][0.0672025,-0.663732,-0.212][0.0973002,-0.947116,-0.305784][0.0363493,0.382354,0.651277][0.129733,-0.582572,-0.365758][0.185766,-0.832133,-0.522538][0.0756952,0.444471,0.760995][0.227501,-0.625055,-0.218058][0.324665,-0.89201,-0.314501][0.0230991,0.5,0.6556][0.227501,-0.625055,-0.218058][0.324665,-0.89201,-0.314501][0.0230991,0.5,0.6556][0.129733,-0.582572,-0.365758][0.185766,-0.832133,-0.522538][0.0756952,0.444471,0.760995][0.275089,-0.529667,-0.365758][0.392579,-0.756859,-0.522538][0.0756952,0.555529,0.760995][0.227501,-0.625055,-0.218058][0.324665,-0.89201,-0.314501][0.0230991,0.5,0.6556][0.275089,-0.529667,-0.365758][0.392579,-0.756859,-0.522538][0.0756952,0.555529,0.760995][0.375158,-0.551645,-0.212][0.534258,-0.788077,-0.305784][0.0363493,0.617646,0.651277][0.375158,-0.551645,-0.212][0.534258,-0.788077,-0.305784][0.0363493,0.617646,0.651277][0.275089,-0.529667,-0.365758][0.392579,-0.756859,-0.522538][0.0756952,0.555529,0.760995][0.407012,-0.450897,-0.347898][0.580501,-0.644833,-0.497201][0.0964145,0.663876,0.74825][0.375158,-0.551645,-0.212][0.534258,-0.788077,-0.305784][0.0363493,0.617646,0.651277][0.407012,-0.450897,-0.347898][0.580501,-0.644833,-0.497201][0.0964145,0.663876,0.74825][0.501969,-0.447581,-0.194161][0.716201,-0.639412,-0.279657][0.0753637,0.728755,0.638548][0.501969,-0.447581,-0.194161][0.716201,-0.639412,-0.279657][0.0753637,0.728755,0.638548][0.407012,-0.450897,-0.347898][0.580501,-0.644833,-0.497201][0.0964145,0.663876,0.74825][0.51906,-0.35011,-0.313049][0.741514,-0.500158,-0.447213][0.136841,0.764221,0.723383][-0.493373,-0.385465,0.31305][-0.704818,-0.550664,0.447214][0.361286,0.072482,0.276617][-0.580792,-0.33909,0.194161][-0.829436,-0.483558,0.279657][0.413966,0.0248907,0.361452][-0.469524,-0.481507,0.194161][-0.669853,-0.687814,0.279657][0.290732,0.064988,0.361452][-0.580792,-0.33909,0.194161][-0.829436,-0.483558,0.279657][0.413966,0.0248907,0.361452][-0.63985,-0.276157,0.0657912][-0.914123,-0.39419,0.0948375][0.470847,0.000499547,0.453053][-0.549,-0.428926,0.0679831][-0.784384,-0.612827,0.0958363][0.345646,0.0242799,0.451489][-0.580792,-0.33909,0.194161][-0.829436,-0.483558,0.279657][0.413966,0.0248907,0.361452][-0.549,-0.428926,0.0679831][-0.784384,-0.612827,0.0958363][0.345646,0.0242799,0.451489][-0.469524,-0.481507,0.194161][-0.669853,-0.687814,0.279657][0.290732,0.064988,0.361452][-0.469524,-0.481507,0.194161][-0.669853,-0.687814,0.279657][0.290732,0.064988,0.361452][-0.549,-0.428926,0.0679831][-0.784384,-0.612827,0.0958363][0.345646,0.0242799,0.451489][-0.422748,-0.554036,0.0657912][-0.603627,-0.791606,0.0948373][0.230397,0.0787362,0.453053][-0.63985,-0.276157,0.0657912][-0.914123,-0.39419,0.0948375][0.470847,0.000499547,0.453053][-0.667664,-0.199739,-0.0657912][-0.953639,-0.285619,-0.0948373][0.529152,0.000499517,0.546947][-0.597742,-0.357488,-0.0700502][-0.853283,-0.511315,-0.102295][0.405727,0.00893748,0.549986][-0.63985,-0.276157,0.0657912][-0.914123,-0.39419,0.0948375][0.470847,0.000499547,0.453053][-0.597742,-0.357488,-0.0700502][-0.853283,-0.511315,-0.102295][0.405727,0.00893748,0.549986][-0.549,-0.428926,0.0679831][-0.784384,-0.612827,0.0958363][0.345646,0.0242799,0.451489][-0.549,-0.428926,0.0679831][-0.784384,-0.612827,0.0958363][0.345646,0.0242799,0.451489][-0.597742,-0.357488,-0.0700502][-0.853283,-0.511315,-0.102295][0.405727,0.00893748,0.549986][-0.491476,-0.493502,-0.0700502][-0.702555,-0.704239,-0.102295][0.288034,0.0472321,0.549986][-0.549,-0.428926,0.0679831][-0.784384,-0.612827,0.0958363][0.345646,0.0242799,0.451489][-0.491476,-0.493502,-0.0700502][-0.702555,-0.704239,-0.102295][0.288034,0.0472321,0.549986][-0.422748,-0.554036,0.0657912][-0.603627,-0.791606,0.0948373][0.230397,0.0787362,0.453053][-0.422748,-0.554036,0.0657912][-0.603627,-0.791606,0.0948373][0.230397,0.0787362,0.453053][-0.491476,-0.493502,-0.0700502][-0.702555,-0.704239,-0.102295][0.288034,0.0472321,0.549986][-0.355329,-0.599511,-0.0657911][-0.507842,-0.856214,-0.0948373][0.183228,0.113055,0.546947][-0.667664,-0.199739,-0.0657912][-0.953639,-0.285619,-0.0948373][0.529152,0.000499517,0.546947][-0.662875,-0.113568,-0.194161][-0.94621,-0.162724,-0.279657][0.586034,0.0248907,0.638548][-0.61048,-0.269018,-0.212][-0.870693,-0.385213,-0.305784][0.468455,0.0220683,0.651277][-0.667664,-0.199739,-0.0657912][-0.953639,-0.285619,-0.0948373][0.529152,0.000499517,0.546947][-0.61048,-0.269018,-0.212][-0.870693,-0.385213,-0.305784][0.468455,0.0220683,0.651277][-0.597742,-0.357488,-0.0700502][-0.853283,-0.511315,-0.102295][0.405727,0.00893748,0.549986][-0.597742,-0.357488,-0.0700502][-0.853283,-0.511315,-0.102295][0.405727,0.00893748,0.549986][-0.61048,-0.269018,-0.212][-0.870693,-0.385213,-0.305784][0.468455,0.0220683,0.651277][-0.524161,-0.409519,-0.218058][-0.748025,-0.584421,-0.314501][0.352629,0.0458035,0.6556][-0.597742,-0.357488,-0.0700502][-0.853283,-0.511315,-0.102295][0.405727,0.00893748,0.549986][-0.524161,-0.409519,-0.218058][-0.748025,-0.584421,-0.314501][0.352629,0.0458035,0.6556][-0.491476,-0.493502,-0.0700502][-0.702555,-0.704239,-0.102295][0.288034,0.0472321,0.549986][-0.491476,-0.493502,-0.0700502][-0.702555,-0.704239,-0.102295][0.288034,0.0472321,0.549986][-0.524161,-0.409519,-0.218058][-0.748025,-0.584421,-0.314501][0.352629,0.0458035,0.6556][-0.408715,-0.527264,-0.212][-0.58441,-0.751639,-0.305784][0.244993,0.0947776,0.651277][-0.491476,-0.493502,-0.0700502][-0.702555,-0.704239,-0.102295][0.288034,0.0472321,0.549986][-0.408715,-0.527264,-0.212][-0.58441,-0.751639,-0.305784][0.244993,0.0947776,0.651277][-0.355329,-0.599511,-0.0657911][-0.507842,-0.856214,-0.0948373][0.183228,0.113055,0.546947][-0.355329,-0.599511,-0.0657911][-0.507842,-0.856214,-0.0948373][0.183228,0.113055,0.546947][-0.408715,-0.527264,-0.212][-0.58441,-0.751639,-0.305784][0.244993,0.0947776,0.651277][-0.270558,-0.615711,-0.194161][-0.386799,-0.878737,-0.279657][0.151526,0.166269,0.638548][-0.662875,-0.113568,-0.194161][-0.94621,-0.162724,-0.279657][0.586034,0.0248907,0.638548][-0.625718,-0.0218505,-0.31305][-0.893882,-0.0312152,-0.447214][0.638714,0.0724819,0.723383][-0.584105,-0.166699,-0.347898][-0.834002,-0.239231,-0.497201][0.530922,0.064988,0.74825][-0.662875,-0.113568,-0.194161][-0.94621,-0.162724,-0.279657][0.586034,0.0248907,0.638548][-0.584105,-0.166699,-0.347898][-0.834002,-0.239231,-0.497201][0.530922,0.064988,0.74825][-0.61048,-0.269018,-0.212][-0.870693,-0.385213,-0.305784][0.468455,0.0220683,0.651277][-0.61048,-0.269018,-0.212][-0.870693,-0.385213,-0.305784][0.468455,0.0220683,0.651277][-0.584105,-0.166699,-0.347898][-0.834002,-0.239231,-0.497201][0.530922,0.064988,0.74825][-0.513969,-0.303408,-0.365759][-0.734,-0.433817,-0.522538][0.42162,0.0787361,0.760995][-0.61048,-0.269018,-0.212][-0.870693,-0.385213,-0.305784][0.468455,0.0220683,0.651277][-0.513969,-0.303408,-0.365759][-0.734,-0.433817,-0.522538][0.42162,0.0787361,0.760995][-0.524161,-0.409519,-0.218058][-0.748025,-0.584421,-0.314501][0.352629,0.0458035,0.6556][-0.524161,-0.409519,-0.218058][-0.748025,-0.584421,-0.314501][0.352629,0.0458035,0.6556][-0.513969,-0.303408,-0.365759][-0.734,-0.433817,-0.522538][0.42162,0.0787361,0.760995][-0.418736,-0.425301,-0.365759][-0.598502,-0.607247,-0.522538][0.316145,0.113055,0.760995][-0.524161,-0.409519,-0.218058][-0.748025,-0.584421,-0.314501][0.352629,0.0458035,0.6556][-0.418736,-0.425301,-0.365759][-0.598502,-0.607247,-0.522538][0.316145,0.113055,0.760995][-0.408715,-0.527264,-0.212][-0.58441,-0.751639,-0.305784][0.244993,0.0947776,0.651277][-0.408715,-0.527264,-0.212][-0.58441,-0.751639,-0.305784][0.244993,0.0947776,0.651277][-0.418736,-0.425301,-0.365759][-0.598502,-0.607247,-0.522538][0.316145,0.113055,0.760995][-0.303055,-0.526426,-0.347898][-0.433888,-0.751354,-0.497201][0.219648,0.166269,0.74825][-0.408715,-0.527264,-0.212][-0.58441,-0.751639,-0.305784][0.244993,0.0947776,0.651277][-0.303055,-0.526426,-0.347898][-0.433888,-0.751354,-0.497201][0.219648,0.166269,0.74825][-0.270558,-0.615711,-0.194161][-0.386799,-0.878737,-0.279657][0.151526,0.166269,0.638548][-0.270558,-0.615711,-0.194161][-0.386799,-0.878737,-0.279657][0.151526,0.166269,0.638548][-0.303055,-0.526426,-0.347898][-0.433888,-0.751354,-0.497201][0.219648,0.166269,0.74825][-0.172576,-0.601845,-0.313049][-0.246537,-0.859779,-0.447214][0.136841,0.235779,0.723383][-0.519059,0.35011,0.313049][-0.741513,0.500158,0.447214][0.863159,0.235779,0.276617][-0.501968,0.447582,0.194161][-0.716201,0.639412,0.279657][0.924636,0.271245,0.361452][-0.603031,0.29775,0.194161][-0.861146,0.424522,0.279657][0.848474,0.166269,0.361452][-0.501968,0.447582,0.194161][-0.716201,0.639412,0.279657][0.924636,0.271245,0.361452][-0.460366,0.523197,0.0657911][-0.657376,0.747571,0.0948372][0.965379,0.317881,0.453053][-0.577583,0.389585,0.067983][-0.825221,0.556619,0.0958364][0.904104,0.205989,0.451489][-0.501968,0.447582,0.194161][-0.716201,0.639412,0.279657][0.924636,0.271245,0.361452][-0.577583,0.389585,0.067983][-0.825221,0.556619,0.0958364][0.904104,0.205989,0.451489][-0.603031,0.29775,0.194161][-0.861146,0.424522,0.279657][0.848474,0.166269,0.361452][-0.603031,0.29775,0.194161][-0.861146,0.424522,0.279657][0.848474,0.166269,0.361452][-0.577583,0.389585,0.067983][-0.825221,0.556619,0.0958364][0.904104,0.205989,0.451489][-0.657556,0.230851,0.0657911][-0.939393,0.329464,0.0948377][0.816772,0.113055,0.453053][-0.460366,0.523197,0.0657911][-0.657376,0.747571,0.0948372][0.965379,0.317881,0.453053][-0.396283,0.573264,-0.0657913][-0.566331,0.818703,-0.0948377][0.983396,0.37341,0.546947][-0.524704,0.458016,-0.0700503][-0.749968,0.653516,-0.102295][0.937242,0.258469,0.549986][-0.460366,0.523197,0.0657911][-0.657376,0.747571,0.0948372][0.965379,0.317881,0.453053][-0.524704,0.458016,-0.0700503][-0.749968,0.653516,-0.102295][0.937242,0.258469,0.549986][-0.577583,0.389585,0.067983][-0.825221,0.556619,0.0958364][0.904104,0.205989,0.451489][-0.577583,0.389585,0.067983][-0.825221,0.556619,0.0958364][0.904104,0.205989,0.451489][-0.524704,0.458016,-0.0700503][-0.749968,0.653516,-0.102295][0.937242,0.258469,0.549986][-0.621223,0.314921,-0.0700503][-0.886872,0.450548,-0.102295][0.864503,0.158212,0.549986][-0.577583,0.389585,0.067983][-0.825221,0.556619,0.0958364][0.904104,0.205989,0.451489][-0.621223,0.314921,-0.0700503][-0.886872,0.450548,-0.102295][0.864503,0.158212,0.549986][-0.657556,0.230851,0.0657911][-0.939393,0.329464,0.0948377][0.816772,0.113055,0.453053][-0.657556,0.230851,0.0657911][-0.939393,0.329464,0.0948377][0.816772,0.113055,0.453053][-0.621223,0.314921,-0.0700503][-0.886872,0.450548,-0.102295][0.864503,0.158212,0.549986][-0.679971,0.152679,-0.0657913][-0.97124,0.218401,-0.0948375][0.769603,0.0787361,0.546947][-0.396283,0.573264,-0.0657913][-0.566331,0.818703,-0.0948377][0.983396,0.37341,0.546947][-0.312849,0.595338,-0.194161][-0.447154,0.849615,-0.279657][0.977808,0.435121,0.638548][-0.4445,0.49747,-0.212][-0.635418,0.709041,-0.305784][0.944155,0.322268,0.651277][-0.396283,0.573264,-0.0657913][-0.566331,0.818703,-0.0948377][0.983396,0.37341,0.546947][-0.4445,0.49747,-0.212][-0.635418,0.709041,-0.305784][0.944155,0.322268,0.651277][-0.524704,0.458016,-0.0700503][-0.749968,0.653516,-0.102295][0.937242,0.258469,0.549986][-0.524704,0.458016,-0.0700503][-0.749968,0.653516,-0.102295][0.937242,0.258469,0.549986][-0.4445,0.49747,-0.212][-0.635418,0.709041,-0.305784][0.944155,0.322268,0.651277][-0.55145,0.371958,-0.218058][-0.78697,0.530818,-0.314502][0.885821,0.219291,0.6556][-0.524704,0.458016,-0.0700503][-0.749968,0.653516,-0.102295][0.937242,0.258469,0.549986][-0.55145,0.371958,-0.218058][-0.78697,0.530818,-0.314502][0.885821,0.219291,0.6556][-0.621223,0.314921,-0.0700503][-0.886872,0.450548,-0.102295][0.864503,0.158212,0.549986][-0.621223,0.314921,-0.0700503][-0.886872,0.450548,-0.102295][0.864503,0.158212,0.549986][-0.55145,0.371958,-0.218058][-0.78697,0.530818,-0.314502][0.885821,0.219291,0.6556][-0.627758,0.225778,-0.212][-0.895443,0.323538,-0.305784][0.806047,0.131913,0.651277][-0.621223,0.314921,-0.0700503][-0.886872,0.450548,-0.102295][0.864503,0.158212,0.549986][-0.627758,0.225778,-0.212][-0.895443,0.323538,-0.305784][0.806047,0.131913,0.651277][-0.679971,0.152679,-0.0657913][-0.97124,0.218401,-0.0948375][0.769603,0.0787361,0.546947][-0.679971,0.152679,-0.0657913][-0.97124,0.218401,-0.0948375][0.769603,0.0787361,0.546947][-0.627758,0.225778,-0.212][-0.895443,0.323538,-0.305784][0.806047,0.131913,0.651277][-0.669183,0.0670513,-0.194161][-0.955256,0.0963227,-0.279657][0.709268,0.064988,0.638548][-0.312849,0.595338,-0.194161][-0.447154,0.849615,-0.279657][0.977808,0.435121,0.638548][-0.214138,0.588341,-0.31305][-0.305912,0.840487,-0.447214][0.948889,0.5,0.723383][-0.339039,0.504003,-0.347898][-0.485243,0.719257,-0.497201][0.922696,0.395024,0.74825][-0.312849,0.595338,-0.194161][-0.447154,0.849615,-0.279657][0.977808,0.435121,0.638548][-0.339039,0.504003,-0.347898][-0.485243,0.719257,-0.497201][0.922696,0.395024,0.74825][-0.4445,0.49747,-0.212][-0.635418,0.709041,-0.305784][0.944155,0.322268,0.651277][-0.4445,0.49747,-0.212][-0.635418,0.709041,-0.305784][0.944155,0.322268,0.651277][-0.339039,0.504003,-0.347898][-0.485243,0.719257,-0.497201][0.922696,0.395024,0.74825][-0.447383,0.395055,-0.365759][-0.639403,0.564019,-0.522538][0.875863,0.295174,0.760995][-0.4445,0.49747,-0.212][-0.635418,0.709041,-0.305784][0.944155,0.322268,0.651277][-0.447383,0.395055,-0.365759][-0.639403,0.564019,-0.522538][0.875863,0.295174,0.760995][-0.55145,0.371958,-0.218058][-0.78697,0.530818,-0.314502][0.885821,0.219291,0.6556][-0.55145,0.371958,-0.218058][-0.78697,0.530818,-0.314502][0.885821,0.219291,0.6556][-0.447383,0.395055,-0.365759][-0.639403,0.564019,-0.522538][0.875863,0.295174,0.760995][-0.533882,0.266816,-0.365759][-0.762474,0.381559,-0.522538][0.810676,0.205326,0.760995][-0.55145,0.371958,-0.218058][-0.78697,0.530818,-0.314502][0.885821,0.219291,0.6556][-0.533882,0.266816,-0.365759][-0.762474,0.381559,-0.522538][0.810676,0.205326,0.760995][-0.627758,0.225778,-0.212][-0.895443,0.323538,-0.305784][0.806047,0.131913,0.651277][-0.627758,0.225778,-0.212][-0.895443,0.323538,-0.305784][0.806047,0.131913,0.651277][-0.533882,0.266816,-0.365759][-0.762474,0.381559,-0.522538][0.810676,0.205326,0.760995][-0.59431,0.125548,-0.347898][-0.848659,0.180471,-0.497201][0.730319,0.129867,0.74825][-0.627758,0.225778,-0.212][-0.895443,0.323538,-0.305784][0.806047,0.131913,0.651277][-0.59431,0.125548,-0.347898][-0.848659,0.180471,-0.497201][0.730319,0.129867,0.74825][-0.669183,0.0670513,-0.194161][-0.955256,0.0963227,-0.279657][0.709268,0.064988,0.638548][-0.669183,0.0670513,-0.194161][-0.955256,0.0963227,-0.279657][0.709268,0.064988,0.638548][-0.59431,0.125548,-0.347898][-0.848659,0.180471,-0.497201][0.730319,0.129867,0.74825][-0.625718,-0.0218505,-0.31305][-0.893882,-0.0312152,-0.447214][0.638714,0.0724819,0.723383][0,0,0.7][0,0,1][0.0782798,0.0782798,0.000499547][0.153644,0.00536545,0.682909][0.217867,0.00760821,0.975949][0.0725552,0.0959229,0.0126952][0.0423757,0.147782,0.682909][0.060089,0.209556,0.975949][0.0932668,0.0891838,0.0126952][0.153644,0.00536545,0.682909][0.217867,0.00760821,0.975949][0.0725552,0.0959229,0.0126952][0.299785,0.0104688,0.632471][0.427173,0.0149174,0.904047][0.0671102,0.112704,0.0486864][0.197604,0.154386,0.653542][0.28324,0.221291,0.93317][0.0876172,0.107058,0.0336505][0.153644,0.00536545,0.682909][0.217867,0.00760821,0.975949][0.0725552,0.0959229,0.0126952][0.197604,0.154386,0.653542][0.28324,0.221291,0.93317][0.0876172,0.107058,0.0336505][0.0423757,0.147782,0.682909][0.060089,0.209556,0.975949][0.0932668,0.0891838,0.0126952][0.0423757,0.147782,0.682909][0.060089,0.209556,0.975949][0.0932668,0.0891838,0.0126952][0.197604,0.154386,0.653542][0.28324,0.221291,0.93317][0.0876172,0.107058,0.0336505][0.0826822,0.288347,0.632471][0.117816,0.410875,0.904047][0.107522,0.0995554,0.0486864][0.299785,0.0104688,0.632471][0.427173,0.0149174,0.904047][0.0671102,0.112704,0.0486864][0.431287,0.0150609,0.551149][0.616054,0.0215132,0.78741][0.0622106,0.127805,0.106716][0.346062,0.160855,0.586828][0.495359,0.231674,0.837225][0.0822313,0.124158,0.0812561][0.299785,0.0104688,0.632471][0.427173,0.0149174,0.904047][0.0671102,0.112704,0.0486864][0.346062,0.160855,0.586828][0.495359,0.231674,0.837225][0.0822313,0.124158,0.0812561][0.197604,0.154386,0.653542][0.28324,0.221291,0.93317][0.0876172,0.107058,0.0336505][0.197604,0.154386,0.653542][0.28324,0.221291,0.93317][0.0876172,0.107058,0.0336505][0.346062,0.160855,0.586828][0.495359,0.231674,0.837225][0.0822313,0.124158,0.0812561][0.239796,0.296868,0.586828][0.344631,0.424598,0.837225][0.102012,0.117722,0.0812561][0.197604,0.154386,0.653542][0.28324,0.221291,0.93317][0.0876172,0.107058,0.0336505][0.239796,0.296868,0.586828][0.344631,0.424598,0.837225][0.102012,0.117722,0.0812561][0.0826822,0.288347,0.632471][0.117816,0.410875,0.904047][0.107522,0.0995554,0.0486864][0.0826822,0.288347,0.632471][0.117816,0.410875,0.904047][0.107522,0.0995554,0.0486864][0.239796,0.296868,0.586828][0.344631,0.424598,0.837225][0.102012,0.117722,0.0812561][0.118951,0.414832,0.551148][0.169911,0.59255,0.78741][0.120349,0.108888,0.106716][0.431287,0.0150609,0.551149][0.616054,0.0215132,0.78741][0.404389,0.794674,0.106716][0.541729,0.0189176,0.442913][0.774944,0.0270617,0.63145][0.379905,0.870133,0.18395][0.478202,0.165672,0.483607][0.684035,0.239379,0.689053][0.494354,0.863311,0.154912][0.431287,0.0150609,0.551149][0.616054,0.0215132,0.78741][0.0622106,0.127805,0.106716][0.478202,0.165672,0.483607][0.684035,0.239379,0.689053][0.0773309,0.13934,0.154912][0.346062,0.160855,0.586828][0.495359,0.231674,0.837225][0.0822313,0.124158,0.0812561][0.346062,0.160855,0.586828][0.495359,0.231674,0.837225][0.0822313,0.124158,0.0812561][0.478202,0.165672,0.483607][0.684035,0.239379,0.689053][0.0773309,0.13934,0.154912][0.388103,0.30322,0.497427][0.556193,0.434546,0.708392][0.0966188,0.134801,0.14505][0.346062,0.160855,0.586828][0.495359,0.231674,0.837225][0.0822313,0.124158,0.0812561][0.388103,0.30322,0.497427][0.556193,0.434546,0.708392][0.0966188,0.134801,0.14505][0.239796,0.296868,0.586828][0.344631,0.424598,0.837225][0.102012,0.117722,0.0812561][0.239796,0.296868,0.586828][0.344631,0.424598,0.837225][0.102012,0.117722,0.0812561][0.388103,0.30322,0.497427][0.556193,0.434546,0.708392][0.0966188,0.134801,0.14505][0.276438,0.423918,0.483606][0.397752,0.605805,0.689053][0.114888,0.12712,0.154912][0.239796,0.296868,0.586828][0.344631,0.424598,0.837225][0.102012,0.117722,0.0812561][0.276438,0.423918,0.483606][0.397752,0.605805,0.689053][0.114888,0.12712,0.154912][0.118951,0.414832,0.551148][0.169911,0.59255,0.78741][0.120349,0.108888,0.106716][0.118951,0.414832,0.551148][0.169911,0.59255,0.78741][0.750314,0.682119,0.106716][0.276438,0.423918,0.483606][0.397752,0.605805,0.689053][0.717817,0.790601,0.154912][0.149412,0.521061,0.442913][0.213734,0.745378,0.63145][0.814413,0.728755,0.18395][0.541729,0.0189176,0.442913][0.774944,0.0270617,0.63145][0.379905,0.870133,0.18395][0.625718,0.0218506,0.31305][0.893882,0.0312151,0.447214][0.361286,0.927518,0.276617][0.584105,0.166699,0.347898][0.834002,0.239231,0.497201][0.469078,0.935012,0.25175][0.541729,0.0189176,0.442913][0.774944,0.0270617,0.63145][0.379905,0.870133,0.18395][0.584105,0.166699,0.347898][0.834002,0.239231,0.497201][0.469078,0.935012,0.25175][0.478202,0.165672,0.483607][0.684035,0.239379,0.689053][0.494354,0.863311,0.154912][0.478202,0.165672,0.483607][0.684035,0.239379,0.689053][0.494354,0.863311,0.154912][0.584105,0.166699,0.347898][0.834002,0.239231,0.497201][0.469078,0.935012,0.25175][0.513969,0.303408,0.365759][0.734,0.433817,0.522538][0.57838,0.921264,0.239005][0.478202,0.165672,0.483607][0.684035,0.239379,0.689053][0.494354,0.863311,0.154912][0.513969,0.303408,0.365759][0.734,0.433817,0.522538][0.57838,0.921264,0.239005][0.388103,0.30322,0.497427][0.556193,0.434546,0.708392][0.609117,0.8363,0.14505][0.388103,0.30322,0.497427][0.556193,0.434546,0.708392][0.609117,0.8363,0.14505][0.513969,0.303408,0.365759][0.734,0.433817,0.522538][0.57838,0.921264,0.239005][0.418736,0.425301,0.365759][0.598502,0.607247,0.522538][0.683855,0.886945,0.239005][0.388103,0.30322,0.497427][0.556193,0.434546,0.708392][0.609117,0.8363,0.14505][0.418736,0.425301,0.365759][0.598502,0.607247,0.522538][0.683855,0.886945,0.239005][0.276438,0.423918,0.483606][0.397752,0.605805,0.689053][0.717817,0.790601,0.154912][0.276438,0.423918,0.483606][0.397752,0.605805,0.689053][0.717817,0.790601,0.154912][0.418736,0.425301,0.365759][0.598502,0.607247,0.522538][0.683855,0.886945,0.239005][0.303055,0.526426,0.347898][0.433888,0.751354,0.497201][0.780352,0.833731,0.25175][0.276438,0.423918,0.483606][0.397752,0.605805,0.689053][0.717817,0.790601,0.154912][0.303055,0.526426,0.347898][0.433888,0.751354,0.497201][0.780352,0.833731,0.25175][0.149412,0.521061,0.442913][0.213734,0.745378,0.63145][0.814413,0.728755,0.18395][0.149412,0.521061,0.442913][0.213734,0.745378,0.63145][0.814413,0.728755,0.18395][0.303055,0.526426,0.347898][0.433888,0.751354,0.497201][0.780352,0.833731,0.25175][0.172576,0.601845,0.313049][0.246538,0.859779,0.447214][0.863159,0.764221,0.276617][0,0,0.7][0,0,1][0.0782798,0.0782798,0.000499547][0.0525812,-0.144466,0.682909][0.0745604,-0.204853,0.975949][0.0597548,0.0782798,0.0126952][0.153644,0.00536545,0.682909][0.217867,0.00760821,0.975949][0.0725552,0.0959229,0.0126952][0.0525812,-0.144466,0.682909][0.0745604,-0.204853,0.975949][0.0597548,0.0782798,0.0126952][0.102595,-0.281877,0.632471][0.146191,-0.401656,0.904047][0.0421344,0.0782798,0.0486864][0.207893,-0.140225,0.653542][0.297986,-0.200994,0.93317][0.0538341,0.0960655,0.0336505][0.0525812,-0.144466,0.682909][0.0745604,-0.204853,0.975949][0.0597548,0.0782798,0.0126952][0.207893,-0.140225,0.653542][0.297986,-0.200994,0.93317][0.0538341,0.0960655,0.0336505][0.153644,0.00536545,0.682909][0.217867,0.00760821,0.975949][0.0725552,0.0959229,0.0126952][0.153644,0.00536545,0.682909][0.217867,0.00760821,0.975949][0.0725552,0.0959229,0.0126952][0.207893,-0.140225,0.653542][0.297986,-0.200994,0.93317][0.0538341,0.0960655,0.0336505][0.299785,0.0104688,0.632471][0.427173,0.0149174,0.904047][0.0671102,0.112704,0.0486864][0.102595,-0.281877,0.632471][0.146191,-0.401656,0.904047][0.0421344,0.0782798,0.0486864][0.147599,-0.405524,0.551149][0.210831,-0.579254,0.78741][0.026279,0.0782798,0.106716][0.259921,-0.279418,0.586828][0.373409,-0.399523,0.837225][0.0359291,0.0962205,0.0812561][0.102595,-0.281877,0.632471][0.146191,-0.401656,0.904047][0.0421344,0.0782798,0.0486864][0.259921,-0.279418,0.586828][0.373409,-0.399523,0.837225][0.0359291,0.0962205,0.0812561][0.207893,-0.140225,0.653542][0.297986,-0.200994,0.93317][0.0538341,0.0960655,0.0336505][0.207893,-0.140225,0.653542][0.297986,-0.200994,0.93317][0.0538341,0.0960655,0.0336505][0.259921,-0.279418,0.586828][0.373409,-0.399523,0.837225][0.0359291,0.0962205,0.0812561][0.35644,-0.136323,0.586828][0.510313,-0.196555,0.837225][0.048154,0.11307,0.0812561][0.207893,-0.140225,0.653542][0.297986,-0.200994,0.93317][0.0538341,0.0960655,0.0336505][0.35644,-0.136323,0.586828][0.510313,-0.196555,0.837225][0.048154,0.11307,0.0812561][0.299785,0.0104688,0.632471][0.427173,0.0149174,0.904047][0.0671102,0.112704,0.0486864][0.299785,0.0104688,0.632471][0.427173,0.0149174,0.904047][0.0671102,0.112704,0.0486864][0.35644,-0.136323,0.586828][0.510313,-0.196555,0.837225][0.048154,0.11307,0.0812561][0.431287,0.0150609,0.551149][0.616054,0.0215132,0.78741][0.0622106,0.127805,0.106716][0.147599,-0.405524,0.551149][0.210831,-0.579254,0.78741][0.190595,0.5,0.106716][0.185395,-0.509369,0.442913][0.265208,-0.728653,0.63145][0.111365,0.5,0.18395][0.305336,-0.403602,0.483607][0.439042,-0.576584,0.689053][0.153211,0.606892,0.154912][0.147599,-0.405524,0.551149][0.210831,-0.579254,0.78741][0.026279,0.0782798,0.106716][0.305336,-0.403602,0.483607][0.439042,-0.576584,0.689053][0.0199959,0.0962449,0.154912][0.259921,-0.279418,0.586828][0.373409,-0.399523,0.837225][0.0359291,0.0962205,0.0812561][0.259921,-0.279418,0.586828][0.373409,-0.399523,0.837225][0.0359291,0.0962205,0.0812561][0.305336,-0.403602,0.483607][0.439042,-0.576584,0.689053][0.0199959,0.0962449,0.154912][0.408309,-0.275408,0.497427][0.585151,-0.394689,0.708392][0.0302676,0.113212,0.14505][0.259921,-0.279418,0.586828][0.373409,-0.399523,0.837225][0.0359291,0.0962205,0.0812561][0.408309,-0.275408,0.497427][0.585151,-0.394689,0.708392][0.0302676,0.113212,0.14505][0.35644,-0.136323,0.586828][0.510313,-0.196555,0.837225][0.048154,0.11307,0.0812561][0.35644,-0.136323,0.586828][0.510313,-0.196555,0.837225][0.048154,0.11307,0.0812561][0.408309,-0.275408,0.497427][0.585151,-0.394689,0.708392][0.0302676,0.113212,0.14505][0.488594,-0.13191,0.483607][0.699067,-0.19108,0.689053][0.0432072,0.128237,0.154912][0.35644,-0.136323,0.586828][0.510313,-0.196555,0.837225][0.048154,0.11307,0.0812561][0.488594,-0.13191,0.483607][0.699067,-0.19108,0.689053][0.0432072,0.128237,0.154912][0.431287,0.0150609,0.551149][0.616054,0.0215132,0.78741][0.0622106,0.127805,0.106716][0.431287,0.0150609,0.551149][0.616054,0.0215132,0.78741][0.404389,0.794674,0.106716][0.488594,-0.13191,0.483607][0.699067,-0.19108,0.689053][0.291318,0.797248,0.154912][0.541729,0.0189176,0.442913][0.774944,0.0270617,0.63145][0.379905,0.870133,0.18395][0.185395,-0.509369,0.442913][0.265208,-0.728653,0.63145][0.111365,0.5,0.18395][0.214138,-0.588341,0.31305][0.305912,-0.840487,0.447214][0.0511111,0.5,0.276617][0.339039,-0.504003,0.347898][0.485243,-0.719257,0.497201][0.0773036,0.604976,0.25175][0.185395,-0.509369,0.442913][0.265208,-0.728653,0.63145][0.111365,0.5,0.18395][0.339039,-0.504003,0.347898][0.485243,-0.719257,0.497201][0.0773036,0.604976,0.25175][0.305336,-0.403602,0.483607][0.439042,-0.576584,0.689053][0.153211,0.606892,0.154912][0.305336,-0.403602,0.483607][0.439042,-0.576584,0.689053][0.153211,0.606892,0.154912][0.339039,-0.504003,0.347898][0.485243,-0.719257,0.497201][0.0773036,0.604976,0.25175][0.447383,-0.395055,0.365759][0.639403,-0.564019,0.522538][0.124137,0.704826,0.239005][0.305336,-0.403602,0.483607][0.439042,-0.576584,0.689053][0.153211,0.606892,0.154912][0.447383,-0.395055,0.365759][0.639403,-0.564019,0.522538][0.124137,0.704826,0.239005][0.408309,-0.275408,0.497427][0.585151,-0.394689,0.708392][0.214327,0.707845,0.14505][0.408309,-0.275408,0.497427][0.585151,-0.394689,0.708392][0.214327,0.707845,0.14505][0.447383,-0.395055,0.365759][0.639403,-0.564019,0.522538][0.124137,0.704826,0.239005][0.533882,-0.266816,0.365759][0.762474,-0.381559,0.522538][0.189324,0.794674,0.239005][0.408309,-0.275408,0.497427][0.585151,-0.394689,0.708392][0.214327,0.707845,0.14505][0.533882,-0.266816,0.365759][0.762474,-0.381559,0.522538][0.189324,0.794674,0.239005][0.488594,-0.13191,0.483607][0.699067,-0.19108,0.689053][0.291318,0.797248,0.154912][0.488594,-0.13191,0.483607][0.699067,-0.19108,0.689053][0.291318,0.797248,0.154912][0.533882,-0.266816,0.365759][0.762474,-0.381559,0.522538][0.189324,0.794674,0.239005][0.59431,-0.125548,0.347898][0.848659,-0.180471,0.497201][0.269681,0.870133,0.25175][0.488594,-0.13191,0.483607][0.699067,-0.19108,0.689053][0.291318,0.797248,0.154912][0.59431,-0.125548,0.347898][0.848659,-0.180471,0.497201][0.269681,0.870133,0.25175][0.541729,0.0189176,0.442913][0.774944,0.0270617,0.63145][0.379905,0.870133,0.18395][0.541729,0.0189176,0.442913][0.774944,0.0270617,0.63145][0.379905,0.870133,0.18395][0.59431,-0.125548,0.347898][0.848659,-0.180471,0.497201][0.269681,0.870133,0.25175][0.625718,0.0218506,0.31305][0.893882,0.0312151,0.447214][0.361286,0.927518,0.276617][0,0,0.7][0,0,1][0.0782798,0.0782798,0.000499547][-0.121147,-0.09465,0.682909][-0.171786,-0.134214,0.975949][0.0725552,0.0606368,0.0126952][0.0525812,-0.144466,0.682909][0.0745604,-0.204853,0.975949][0.0597548,0.0782798,0.0126952][-0.121147,-0.09465,0.682909][-0.171786,-0.134214,0.975949][0.0725552,0.0606368,0.0126952][-0.236378,-0.184678,0.632471][-0.336822,-0.263154,0.904047][0.0671102,0.0438553,0.0486864][-0.0691199,-0.241049,0.653542][-0.0990741,-0.345512,0.93317][0.0538341,0.0604941,0.0336505][-0.121147,-0.09465,0.682909][-0.171786,-0.134214,0.975949][0.0725552,0.0606368,0.0126952][-0.0691199,-0.241049,0.653542][-0.0990741,-0.345512,0.93317][0.0538341,0.0604941,0.0336505][0.0525812,-0.144466,0.682909][0.0745604,-0.204853,0.975949][0.0597548,0.0782798,0.0126952][0.0525812,-0.144466,0.682909][0.0745604,-0.204853,0.975949][0.0597548,0.0782798,0.0126952][-0.0691199,-0.241049,0.653542][-0.0990741,-0.345512,0.93317][0.0538341,0.0604941,0.0336505][0.102595,-0.281877,0.632471][0.146191,-0.401656,0.904047][0.0421344,0.0782798,0.0486864][-0.236378,-0.184678,0.632471][-0.336822,-0.263154,0.904047][0.0671102,0.0438553,0.0486864][-0.340066,-0.265688,0.551149][-0.485753,-0.379512,0.78741][0.0622106,0.0287547,0.106716][-0.185422,-0.333544,0.586828][-0.264579,-0.478593,0.837225][0.048154,0.0434893,0.0812561][-0.236378,-0.184678,0.632471][-0.336822,-0.263154,0.904047][0.0671102,0.0438553,0.0486864][-0.185422,-0.333544,0.586828][-0.264579,-0.478593,0.837225][0.048154,0.0434893,0.0812561][-0.0691199,-0.241049,0.653542][-0.0990741,-0.345512,0.93317][0.0538341,0.0604941,0.0336505][-0.0691199,-0.241049,0.653542][-0.0990741,-0.345512,0.93317][0.0538341,0.0604941,0.0336505][-0.185422,-0.333544,0.586828][-0.264579,-0.478593,0.837225][0.048154,0.0434893,0.0812561][-0.0195047,-0.38112,0.586828][-0.0292398,-0.546076,0.837225][0.0359291,0.0603392,0.0812561][-0.0691199,-0.241049,0.653542][-0.0990741,-0.345512,0.93317][0.0538341,0.0604941,0.0336505][-0.0195047,-0.38112,0.586828][-0.0292398,-0.546076,0.837225][0.0359291,0.0603392,0.0812561][0.102595,-0.281877,0.632471][0.146191,-0.401656,0.904047][0.0421344,0.0782798,0.0486864][0.102595,-0.281877,0.632471][0.146191,-0.401656,0.904047][0.0421344,0.0782798,0.0486864][-0.0195047,-0.38112,0.586828][-0.0292398,-0.546076,0.837225][0.0359291,0.0603392,0.0812561][0.147599,-0.405524,0.551149][0.210831,-0.579254,0.78741][0.026279,0.0782798,0.106716][-0.340066,-0.265688,0.551149][-0.485753,-0.379512,0.78741][0.404389,0.205326,0.106716][-0.427148,-0.333725,0.442913][-0.611036,-0.477394,0.63145][0.379905,0.129867,0.18395][-0.289495,-0.415111,0.483607][-0.412692,-0.595727,0.689053][0.291318,0.202752,0.154912][-0.340066,-0.265688,0.551149][-0.485753,-0.379512,0.78741][0.0622106,0.0287547,0.106716][-0.289495,-0.415111,0.483607][-0.412692,-0.595727,0.689053][0.0432072,0.0283222,0.154912][-0.185422,-0.333544,0.586828][-0.264579,-0.478593,0.837225][0.048154,0.0434893,0.0812561][-0.185422,-0.333544,0.586828][-0.264579,-0.478593,0.837225][0.048154,0.0434893,0.0812561][-0.289495,-0.415111,0.483607][-0.412692,-0.595727,0.689053][0.0432072,0.0283222,0.154912][-0.135754,-0.473431,0.497427][-0.19455,-0.678477,0.708392][0.0302675,0.0433479,0.14505][-0.185422,-0.333544,0.586828][-0.264579,-0.478593,0.837225][0.048154,0.0434893,0.0812561][-0.135754,-0.473431,0.497427][-0.19455,-0.678477,0.708392][0.0302675,0.0433479,0.14505][-0.0195047,-0.38112,0.586828][-0.0292398,-0.546076,0.837225][0.0359291,0.0603392,0.0812561][-0.0195047,-0.38112,0.586828][-0.0292398,-0.546076,0.837225][0.0359291,0.0603392,0.0812561][-0.135754,-0.473431,0.497427][-0.19455,-0.678477,0.708392][0.0302675,0.0433479,0.14505][0.0255297,-0.505443,0.483607][0.0342952,-0.723899,0.689053][0.0199958,0.0603147,0.154912][-0.0195047,-0.38112,0.586828][-0.0292398,-0.546076,0.837225][0.0359291,0.0603392,0.0812561][0.0255297,-0.505443,0.483607][0.0342952,-0.723899,0.689053][0.0199958,0.0603147,0.154912][0.147599,-0.405524,0.551149][0.210831,-0.579254,0.78741][0.026279,0.0782798,0.106716][0.147599,-0.405524,0.551149][0.210831,-0.579254,0.78741][0.190595,0.5,0.106716][0.0255297,-0.505443,0.483607][0.0342952,-0.723899,0.689053][0.153211,0.393108,0.154912][0.185395,-0.509369,0.442913][0.265208,-0.728653,0.63145][0.111365,0.5,0.18395][-0.427148,-0.333725,0.442913][-0.611036,-0.477394,0.63145][0.379905,0.129867,0.18395][-0.493373,-0.385465,0.31305][-0.704818,-0.550664,0.447214][0.361286,0.072482,0.276617][-0.374567,-0.478191,0.347898][-0.534106,-0.683756,0.497201][0.269681,0.129867,0.25175][-0.427148,-0.333725,0.442913][-0.611036,-0.477394,0.63145][0.379905,0.129867,0.18395][-0.374567,-0.478191,0.347898][-0.534106,-0.683756,0.497201][0.269681,0.129867,0.25175][-0.289495,-0.415111,0.483607][-0.412692,-0.595727,0.689053][0.291318,0.202752,0.154912][-0.289495,-0.415111,0.483607][-0.412692,-0.595727,0.689053][0.291318,0.202752,0.154912][-0.374567,-0.478191,0.347898][-0.534106,-0.683756,0.497201][0.269681,0.129867,0.25175][-0.237471,-0.547566,0.365759][-0.338827,-0.7824,0.522538][0.189324,0.205326,0.239005][-0.289495,-0.415111,0.483607][-0.412692,-0.595727,0.689053][0.291318,0.202752,0.154912][-0.237471,-0.547566,0.365759][-0.338827,-0.7824,0.522538][0.189324,0.205326,0.239005][-0.135754,-0.473431,0.497427][-0.19455,-0.678477,0.708392][0.214327,0.292155,0.14505][-0.135754,-0.473431,0.497427][-0.19455,-0.678477,0.708392][0.214327,0.292155,0.14505][-0.237471,-0.547566,0.365759][-0.338827,-0.7824,0.522538][0.189324,0.205326,0.239005][-0.0887788,-0.590202,0.365759][-0.127267,-0.843064,0.522538][0.124137,0.295174,0.239005][-0.135754,-0.473431,0.497427][-0.19455,-0.678477,0.708392][0.214327,0.292155,0.14505][-0.0887788,-0.590202,0.365759][-0.127267,-0.843064,0.522538][0.124137,0.295174,0.239005][0.0255297,-0.505443,0.483607][0.0342952,-0.723899,0.689053][0.153211,0.393108,0.154912][0.0255297,-0.505443,0.483607][0.0342952,-0.723899,0.689053][0.153211,0.393108,0.154912][-0.0887788,-0.590202,0.365759][-0.127267,-0.843064,0.522538][0.124137,0.295174,0.239005][0.0642485,-0.604019,0.347898][0.0906121,-0.862891,0.497201][0.0773035,0.395024,0.25175][0.0255297,-0.505443,0.483607][0.0342952,-0.723899,0.689053][0.153211,0.393108,0.154912][0.0642485,-0.604019,0.347898][0.0906121,-0.862891,0.497201][0.0773035,0.395024,0.25175][0.185395,-0.509369,0.442913][0.265208,-0.728653,0.63145][0.111365,0.5,0.18395][0.185395,-0.509369,0.442913][0.265208,-0.728653,0.63145][0.111365,0.5,0.18395][0.0642485,-0.604019,0.347898][0.0906121,-0.862891,0.497201][0.0773035,0.395024,0.25175][0.214138,-0.588341,0.31305][0.305912,-0.840487,0.447214][0.0511111,0.5,0.276617][0,0,0.7][0,0,1][0.0782798,0.0782798,0.000499547][-0.127454,0.0859689,0.682909][-0.18073,0.121904,0.975949][0.0932668,0.0673758,0.0126952][-0.121147,-0.09465,0.682909][-0.171786,-0.134214,0.975949][0.0725552,0.0606368,0.0126952][-0.127454,0.0859689,0.682909][-0.18073,0.121904,0.975949][0.0932668,0.0673758,0.0126952][-0.248684,0.16774,0.632471][-0.354358,0.239018,0.904047][0.107522,0.0570043,0.0486864][-0.250611,-0.00875141,0.653542][-0.359217,-0.012544,0.93317][0.0876172,0.0495019,0.0336505][-0.127454,0.0859689,0.682909][-0.18073,0.121904,0.975949][0.0932668,0.0673758,0.0126952][-0.250611,-0.00875141,0.653542][-0.359217,-0.012544,0.93317][0.0876172,0.0495019,0.0336505][-0.121147,-0.09465,0.682909][-0.171786,-0.134214,0.975949][0.0725552,0.0606368,0.0126952][-0.121147,-0.09465,0.682909][-0.171786,-0.134214,0.975949][0.0725552,0.0606368,0.0126952][-0.250611,-0.00875141,0.653542][-0.359217,-0.012544,0.93317][0.0876172,0.0495019,0.0336505][-0.236378,-0.184678,0.632471][-0.336822,-0.263154,0.904047][0.0671102,0.0438553,0.0486864][-0.248684,0.16774,0.632471][-0.354358,0.239018,0.904047][0.107522,0.0570043,0.0486864][-0.357771,0.24132,0.551148][-0.511043,0.344703,0.78741][0.120349,0.0476716,0.106716][-0.374518,0.0732762,0.586828][-0.536929,0.103737,0.837225][0.102012,0.0388375,0.0812561][-0.248684,0.16774,0.632471][-0.354358,0.239018,0.904047][0.107522,0.0570043,0.0486864][-0.374518,0.0732762,0.586828][-0.536929,0.103737,0.837225][0.102012,0.0388375,0.0812561][-0.250611,-0.00875141,0.653542][-0.359217,-0.012544,0.93317][0.0876172,0.0495019,0.0336505][-0.250611,-0.00875141,0.653542][-0.359217,-0.012544,0.93317][0.0876172,0.0495019,0.0336505][-0.374518,0.0732762,0.586828][-0.536929,0.103737,0.837225][0.102012,0.0388375,0.0812561][-0.368494,-0.0992225,0.586828][-0.528385,-0.140938,0.837225][0.0822313,0.0324014,0.0812561][-0.250611,-0.00875141,0.653542][-0.359217,-0.012544,0.93317][0.0876172,0.0495019,0.0336505][-0.368494,-0.0992225,0.586828][-0.528385,-0.140938,0.837225][0.0822313,0.0324014,0.0812561][-0.236378,-0.184678,0.632471][-0.336822,-0.263154,0.904047][0.0671102,0.0438553,0.0486864][-0.236378,-0.184678,0.632471][-0.336822,-0.263154,0.904047][0.0671102,0.0438553,0.0486864][-0.368494,-0.0992225,0.586828][-0.528385,-0.140938,0.837225][0.0822313,0.0324014,0.0812561][-0.340066,-0.265688,0.551149][-0.485753,-0.379512,0.78741][0.0622106,0.0287547,0.106716][-0.357771,0.24132,0.551148][-0.511043,0.344703,0.78741][0.750314,0.317881,0.106716][-0.449387,0.303116,0.442913][-0.642849,0.433608,0.63145][0.814413,0.271245,0.18395][-0.484253,0.147049,0.483606][-0.694099,0.208404,0.689053][0.717817,0.209399,0.154912][-0.357771,0.24132,0.551148][-0.511043,0.344703,0.78741][0.120349,0.0476716,0.106716][-0.484253,0.147049,0.483606][-0.694099,0.208404,0.689053][0.114888,0.0294392,0.154912][-0.374518,0.0732762,0.586828][-0.536929,0.103737,0.837225][0.102012,0.0388375,0.0812561][-0.374518,0.0732762,0.586828][-0.536929,0.103737,0.837225][0.102012,0.0388375,0.0812561][-0.484253,0.147049,0.483606][-0.694099,0.208404,0.689053][0.114888,0.0294392,0.154912][-0.49221,-0.0171882,0.497427][-0.705389,-0.0246325,0.708392][0.0966188,0.0217588,0.14505][-0.374518,0.0732762,0.586828][-0.536929,0.103737,0.837225][0.102012,0.0388375,0.0812561][-0.49221,-0.0171882,0.497427][-0.705389,-0.0246325,0.708392][0.0966188,0.0217588,0.14505][-0.368494,-0.0992225,0.586828][-0.528385,-0.140938,0.837225][0.0822313,0.0324014,0.0812561][-0.368494,-0.0992225,0.586828][-0.528385,-0.140938,0.837225][0.0822313,0.0324014,0.0812561][-0.49221,-0.0171882,0.497427][-0.705389,-0.0246325,0.708392][0.0966188,0.0217588,0.14505][-0.472816,-0.180471,0.483607][-0.677871,-0.256314,0.689053][0.0773309,0.0172192,0.154912][-0.368494,-0.0992225,0.586828][-0.528385,-0.140938,0.837225][0.0822313,0.0324014,0.0812561][-0.472816,-0.180471,0.483607][-0.677871,-0.256314,0.689053][0.0773309,0.0172192,0.154912][-0.340066,-0.265688,0.551149][-0.485753,-0.379512,0.78741][0.0622106,0.0287547,0.106716][-0.340066,-0.265688,0.551149][-0.485753,-0.379512,0.78741][0.404389,0.205326,0.106716][-0.472816,-0.180471,0.483607][-0.677871,-0.256314,0.689053][0.494354,0.136689,0.154912][-0.427148,-0.333725,0.442913][-0.611036,-0.477394,0.63145][0.379905,0.129867,0.18395][-0.449387,0.303116,0.442913][-0.642849,0.433608,0.63145][0.814413,0.271245,0.18395][-0.519059,0.35011,0.313049][-0.741513,0.500158,0.447214][0.863159,0.235779,0.276617][-0.570534,0.208466,0.347898][-0.815338,0.296673,0.497201][0.780352,0.166269,0.25175][-0.449387,0.303116,0.442913][-0.642849,0.433608,0.63145][0.814413,0.271245,0.18395][-0.570534,0.208466,0.347898][-0.815338,0.296673,0.497201][0.780352,0.166269,0.25175][-0.484253,0.147049,0.483606][-0.694099,0.208404,0.689053][0.717817,0.209399,0.154912][-0.484253,0.147049,0.483606][-0.694099,0.208404,0.689053][0.717817,0.209399,0.154912][-0.570534,0.208466,0.347898][-0.815338,0.296673,0.497201][0.780352,0.166269,0.25175][-0.594148,0.0566413,0.365759][-0.84881,0.0804692,0.522538][0.683855,0.113055,0.239005][-0.484253,0.147049,0.483606][-0.694099,0.208404,0.689053][0.717817,0.209399,0.154912][-0.594148,0.0566413,0.365759][-0.84881,0.0804692,0.522538][0.683855,0.113055,0.239005][-0.49221,-0.0171882,0.497427][-0.705389,-0.0246325,0.708392][0.609117,0.1637,0.14505][-0.49221,-0.0171882,0.497427][-0.705389,-0.0246325,0.708392][0.609117,0.1637,0.14505][-0.594148,0.0566413,0.365759][-0.84881,0.0804692,0.522538][0.683855,0.113055,0.239005][-0.58875,-0.0979488,0.365759][-0.841129,-0.139483,0.522538][0.57838,0.0787362,0.239005][-0.49221,-0.0171882,0.497427][-0.705389,-0.0246325,0.708392][0.609117,0.1637,0.14505][-0.58875,-0.0979488,0.365759][-0.841129,-0.139483,0.522538][0.57838,0.0787362,0.239005][-0.472816,-0.180471,0.483607][-0.677871,-0.256314,0.689053][0.494354,0.136689,0.154912][-0.472816,-0.180471,0.483607][-0.677871,-0.256314,0.689053][0.494354,0.136689,0.154912][-0.58875,-0.0979488,0.365759][-0.841129,-0.139483,0.522538][0.57838,0.0787362,0.239005][-0.554602,-0.247756,0.347898][-0.792657,-0.352825,0.497201][0.469078,0.064988,0.25175][-0.472816,-0.180471,0.483607][-0.677871,-0.256314,0.689053][0.494354,0.136689,0.154912][-0.554602,-0.247756,0.347898][-0.792657,-0.352825,0.497201][0.469078,0.064988,0.25175][-0.427148,-0.333725,0.442913][-0.611036,-0.477394,0.63145][0.379905,0.129867,0.18395][-0.427148,-0.333725,0.442913][-0.611036,-0.477394,0.63145][0.379905,0.129867,0.18395][-0.554602,-0.247756,0.347898][-0.792657,-0.352825,0.497201][0.469078,0.064988,0.25175][-0.493373,-0.385465,0.31305][-0.704818,-0.550664,0.447214][0.361286,0.072482,0.276617][0,0,0.7][0,0,1][0.0782798,0.0782798,0.000499547][0.0423757,0.147782,0.682909][0.060089,0.209556,0.975949][0.0932668,0.0891838,0.0126952][-0.127454,0.0859689,0.682909][-0.18073,0.121904,0.975949][0.0932668,0.0673758,0.0126952][0.0423757,0.147782,0.682909][0.060089,0.209556,0.975949][0.0932668,0.0891838,0.0126952][0.0826822,0.288347,0.632471][0.117816,0.410875,0.904047][0.107522,0.0995554,0.0486864][-0.0857662,0.235641,0.653542][-0.122935,0.33776,0.933169][0.108496,0.0782798,0.0336505][0.0423757,0.147782,0.682909][0.060089,0.209556,0.975949][0.0932668,0.0891838,0.0126952][-0.0857662,0.235641,0.653542][-0.122935,0.33776,0.933169][0.108496,0.0782798,0.0336505][-0.127454,0.0859689,0.682909][-0.18073,0.121904,0.975949][0.0932668,0.0673758,0.0126952][-0.127454,0.0859689,0.682909][-0.18073,0.121904,0.975949][0.0932668,0.0673758,0.0126952][-0.0857662,0.235641,0.653542][-0.122935,0.33776,0.933169][0.108496,0.0782798,0.0336505][-0.248684,0.16774,0.632471][-0.354358,0.239018,0.904047][0.107522,0.0570043,0.0486864][0.0826822,0.288347,0.632471][0.117816,0.410875,0.904047][0.107522,0.0995554,0.0486864][0.118951,0.414832,0.551148][0.169911,0.59255,0.78741][0.120349,0.108888,0.106716][-0.0460427,0.378831,0.586828][-0.0672608,0.542706,0.837225][0.123073,0.0886936,0.0812561][0.0826822,0.288347,0.632471][0.117816,0.410875,0.904047][0.107522,0.0995554,0.0486864][-0.0460427,0.378831,0.586828][-0.0672608,0.542706,0.837225][0.123073,0.0886936,0.0812561][-0.0857662,0.235641,0.653542][-0.122935,0.33776,0.933169][0.108496,0.0782798,0.0336505][-0.0857662,0.235641,0.653542][-0.122935,0.33776,0.933169][0.108496,0.0782798,0.0336505][-0.0460427,0.378831,0.586828][-0.0672608,0.542706,0.837225][0.123073,0.0886936,0.0812561][-0.208237,0.319797,0.586828][-0.29732,0.458971,0.837225][0.123073,0.067866,0.0812561][-0.0857662,0.235641,0.653542][-0.122935,0.33776,0.933169][0.108496,0.0782798,0.0336505][-0.208237,0.319797,0.586828][-0.29732,0.458971,0.837225][0.123073,0.067866,0.0812561][-0.248684,0.16774,0.632471][-0.354358,0.239018,0.904047][0.107522,0.0570043,0.0486864][-0.248684,0.16774,0.632471][-0.354358,0.239018,0.904047][0.107522,0.0570043,0.0486864][-0.208237,0.319797,0.586828][-0.29732,0.458971,0.837225][0.123073,0.067866,0.0812561][-0.357771,0.24132,0.551148][-0.511043,0.344703,0.78741][0.120349,0.0476716,0.106716][0.118951,0.414832,0.551148][0.169911,0.59255,0.78741][0.750314,0.682119,0.106716][0.149412,0.521061,0.442913][0.213734,0.745378,0.63145][0.814413,0.728755,0.18395][-0.00979034,0.505993,0.483606][-0.0162848,0.724528,0.689053][0.8433,0.617646,0.154912][0.118951,0.414832,0.551148][0.169911,0.59255,0.78741][0.120349,0.108888,0.106716][-0.00979034,0.505993,0.483606][-0.0162848,0.724528,0.689053][0.135977,0.0980523,0.154912][-0.0460427,0.378831,0.586828][-0.0672608,0.542706,0.837225][0.123073,0.0886936,0.0812561][-0.0460427,0.378831,0.586828][-0.0672608,0.542706,0.837225][0.123073,0.0886936,0.0812561][-0.00979034,0.505993,0.483606][-0.0162848,0.724528,0.689053][0.135977,0.0980523,0.154912][-0.168448,0.462808,0.497427][-0.241404,0.663253,0.708392][0.137626,0.0782798,0.14505][-0.0460427,0.378831,0.586828][-0.0672608,0.542706,0.837225][0.123073,0.0886936,0.0812561][-0.168448,0.462808,0.497427][-0.241404,0.663253,0.708392][0.137626,0.0782798,0.14505][-0.208237,0.319797,0.586828][-0.29732,0.458971,0.837225][0.123073,0.067866,0.0812561][-0.208237,0.319797,0.586828][-0.29732,0.458971,0.837225][0.123073,0.067866,0.0812561][-0.168448,0.462808,0.497427][-0.241404,0.663253,0.708392][0.137626,0.0782798,0.14505][-0.317746,0.393906,0.483606][-0.453243,0.565489,0.689053][0.135977,0.0585074,0.154912][-0.208237,0.319797,0.586828][-0.29732,0.458971,0.837225][0.123073,0.067866,0.0812561][-0.317746,0.393906,0.483606][-0.453243,0.565489,0.689053][0.135977,0.0585074,0.154912][-0.357771,0.24132,0.551148][-0.511043,0.344703,0.78741][0.120349,0.0476716,0.106716][-0.357771,0.24132,0.551148][-0.511043,0.344703,0.78741][0.750314,0.317881,0.106716][-0.317746,0.393906,0.483606][-0.453243,0.565489,0.689053][0.8433,0.382354,0.154912][-0.449387,0.303116,0.442913][-0.642849,0.433608,0.63145][0.814413,0.271245,0.18395][0.149412,0.521061,0.442913][0.213734,0.745378,0.63145][0.814413,0.728755,0.18395][0.172576,0.601845,0.313049][0.246538,0.859779,0.447214][0.863159,0.764221,0.276617][0.0219577,0.607029,0.347898][0.0301991,0.86711,0.497201][0.903585,0.663876,0.25175][0.149412,0.521061,0.442913][0.213734,0.745378,0.63145][0.814413,0.728755,0.18395][0.0219577,0.607029,0.347898][0.0301991,0.86711,0.497201][0.903585,0.663876,0.25175][-0.00979034,0.505993,0.483606][-0.0162848,0.724528,0.689053][0.8433,0.617646,0.154912][-0.00979034,0.505993,0.483606][-0.0162848,0.724528,0.689053][0.8433,0.617646,0.154912][0.0219577,0.607029,0.347898][0.0301991,0.86711,0.497201][0.903585,0.663876,0.25175][-0.129733,0.582572,0.365758][-0.185766,0.832133,0.522538][0.924305,0.555529,0.239005][-0.00979034,0.505993,0.483606][-0.0162848,0.724528,0.689053][0.8433,0.617646,0.154912][-0.129733,0.582572,0.365758][-0.185766,0.832133,0.522538][0.924305,0.555529,0.239005][-0.168448,0.462808,0.497427][-0.241404,0.663253,0.708392][0.853111,0.5,0.14505][-0.168448,0.462808,0.497427][-0.241404,0.663253,0.708392][0.853111,0.5,0.14505][-0.129733,0.582572,0.365758][-0.185766,0.832133,0.522538][0.924305,0.555529,0.239005][-0.275089,0.529667,0.365758][-0.392579,0.756859,0.522538][0.924305,0.444471,0.239005][-0.168448,0.462808,0.497427][-0.241404,0.663253,0.708392][0.853111,0.5,0.14505][-0.275089,0.529667,0.365758][-0.392579,0.756859,0.522538][0.924305,0.444471,0.239005][-0.317746,0.393906,0.483606][-0.453243,0.565489,0.689053][0.8433,0.382354,0.154912][-0.317746,0.393906,0.483606][-0.453243,0.565489,0.689053][0.8433,0.382354,0.154912][-0.275089,0.529667,0.365758][-0.392579,0.756859,0.522538][0.924305,0.444471,0.239005][-0.407011,0.450897,0.347898][-0.580501,0.644833,0.497201][0.903585,0.336124,0.25175][-0.317746,0.393906,0.483606][-0.453243,0.565489,0.689053][0.8433,0.382354,0.154912][-0.407011,0.450897,0.347898][-0.580501,0.644833,0.497201][0.903585,0.336124,0.25175][-0.449387,0.303116,0.442913][-0.642849,0.433608,0.63145][0.814413,0.271245,0.18395][-0.449387,0.303116,0.442913][-0.642849,0.433608,0.63145][0.814413,0.271245,0.18395][-0.407011,0.450897,0.347898][-0.580501,0.644833,0.497201][0.903585,0.336124,0.25175][-0.519059,0.35011,0.313049][-0.741513,0.500158,0.447214][0.863159,0.235779,0.276617] \ No newline at end of file diff --git a/charcustom/hats/fonts/FirefighterHat.mesh b/charcustom/hats/fonts/FirefighterHat.mesh new file mode 100644 index 0000000..1938211 --- /dev/null +++ b/charcustom/hats/fonts/FirefighterHat.mesh @@ -0,0 +1,3 @@ +version 1.00 +660 +[0.0213532,-0.529763,0.76127][0.0043116,-2.42605,-0.127112][0.84938,0.0335213,0][-0.952135,-0.513685,0.421393][0.00392745,-2.20981,-0.115782][0.869963,0.00851604,0][-1.22634,-0.468727,-0.445984][0.00177479,-0.998629,-0.0523226][0.900908,0.00812945,0][-1.22634,-0.468727,-0.445984][0.00177479,-0.998629,-0.0523226][0.900908,0.00812945,0][-0.991806,-0.422263,-1.32484][0.00392732,-2.20981,-0.115782][0.927259,0.0224415,0][-0.0347509,-0.400472,-1.70828][0.00177478,-0.998629,-0.0523226][0.930407,0.053215,0][-0.0347509,-0.400472,-1.70828][0.00177478,-0.998629,-0.0523226][0.930407,0.053215,0][0.955561,-0.4165,-1.36878][0.00380249,-2.13956,-0.112101][0.909671,0.0787064,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.879271,0.0773505,0][-1.22634,-0.468727,-0.445984][0.00177479,-0.998629,-0.0523226][0.900908,0.00812945,0][-0.0347509,-0.400472,-1.70828][0.00177478,-0.998629,-0.0523226][0.930407,0.053215,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.879271,0.0773505,0][0.0213532,-0.529763,0.76127][0.0043116,-2.42605,-0.127112][0.84938,0.0335213,0][-1.22634,-0.468727,-0.445984][0.00177479,-0.998629,-0.0523226][0.900908,0.00812945,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.879271,0.0773505,0][0.0213532,-0.529763,0.76127][0.0043116,-2.42605,-0.127112][0.84938,0.0335213,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.879271,0.0773505,0][0.995233,-0.507922,0.377454][0.00380226,-2.13956,-0.112101][0.852376,0.0647809,0][-1.22634,-0.468727,-0.445984][-0.90243,0.30801,0.301248][0.972738,0.028392,0][-0.952135,-0.513685,0.421393][-0.90243,0.30801,0.301248][0.942854,0.028392,0][-0.794075,0.0931939,0.274383][-0.90243,0.30801,0.301248][0.946869,0.00812945,0][-0.794075,0.0931939,0.274383][-0.839613,0.413426,0.352319][0.985049,0.036166,0][-1.06711,0.129002,-0.418308][-0.923549,0.379035,0.0582275][0.962247,0.0335761,0][-1.22634,-0.468727,-0.445984][-0.90281,0.223483,0.36741][0.964514,0.0145414,0][0.0146811,0.0804204,0.545609][0.0143854,0.406921,0.91335][0.887138,0.0545083,0][-0.794075,0.0931939,0.274383][-0.299327,0.297565,0.906564][0.913846,0.046328,0][-0.952135,-0.513685,0.421393][0.00392745,-2.20981,-0.115782][0.923047,0.064907,0][-0.952135,-0.513685,0.421393][0.00392745,-2.20981,-0.115782][0.923047,0.064907,0][0.0213532,-0.529763,0.76127][0.0043116,-2.42605,-0.127112][0.890807,0.0749329,0][0.0146811,0.0804204,0.545609][0.0143854,0.406921,0.91335][0.887138,0.0545083,0][0.821058,0.0979736,0.23794][0.636006,0.42284,0.645525][0.864471,0.0549288,0][0.0146811,0.0804204,0.545609][0.0143854,0.406921,0.91335][0.887138,0.0545083,0][0.0213532,-0.529763,0.76127][0.0043116,-2.42605,-0.127112][0.890807,0.0749329,0][0.0213532,-0.529763,0.76127][0.0043116,-2.42605,-0.127112][0.890807,0.0749329,0][0.995233,-0.507922,0.377454][0.00380226,-2.13956,-0.112101][0.863515,0.075277,0][0.821058,0.0979736,0.23794][0.636006,0.42284,0.645525][0.864471,0.0549288,0][1.07312,0.135336,-0.466598][0.934618,0.354088,-0.0333288][0.889177,0.0409936,0][0.821058,0.0979736,0.23794][0.636006,0.42284,0.645525][0.912133,0.0409936,0][0.995233,-0.507922,0.377454][0.00380226,-2.13956,-0.112101][0.917871,0.0601565,0][0.995233,-0.507922,0.377454][0.00380226,-2.13956,-0.112101][0.917871,0.0601565,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.889177,0.0601565,0][1.07312,0.135336,-0.466598][0.934618,0.354088,-0.0333288][0.889177,0.0409936,0][0.789321,0.171112,-1.15905][0.872652,0.397544,-0.283615][0.866222,0.0409936,0][1.07312,0.135336,-0.466598][0.934618,0.354088,-0.0333288][0.889177,0.0409936,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.889177,0.0601565,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.889177,0.0601565,0][0.955561,-0.4165,-1.36878][0.00380249,-2.13956,-0.112101][0.860483,0.0601565,0][0.789321,0.171112,-1.15905][0.872652,0.397544,-0.283615][0.866222,0.0409936,0][-0.0369482,0.56333,-1.67925][-0.0131884,0.257844,-0.966097][0.580434,0.493305,0][0.779922,0.556968,-1.52501][0.18126,0.223082,-0.957799][0.580593,0.991507,0][0.609603,-0.400051,-1.69446][0.236809,0.174019,-0.955845][0.00867818,0.887791,0][0.609603,-0.400051,-1.69446][0.236809,0.174019,-0.955845][0.00867818,0.887791,0][-0.0387321,-0.391297,-1.88351][-0.00892207,0.181368,-0.983375][0.00867818,0.493305,0][-0.0369482,0.56333,-1.67925][-0.0131884,0.257844,-0.966097][0.580434,0.493305,0][-0.835211,0.552189,-1.48856][-0.251099,0.236854,-0.938536][0.580593,0.00170216,0][-0.0369482,0.56333,-1.67925][-0.0131884,0.257844,-0.966097][0.580434,0.493305,0][-0.0387321,-0.391297,-1.88351][-0.00892207,0.181368,-0.983375][0.00867818,0.493305,0][-0.0387321,-0.391297,-1.88351][-0.00892207,0.181368,-0.983375][0.00867818,0.493305,0][-0.629452,-0.403718,-1.6665][-0.344972,0.0994759,-0.933327][0.00867818,0.128459,0][-0.835211,0.552189,-1.48856][-0.251099,0.236854,-0.938536][0.580593,0.00170216,0][-1.06711,0.129002,-0.418308][-0.923549,0.379035,0.0582275][0.962247,0.0335761,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][-0.991806,-0.422263,-1.32484][0.00392732,-2.20981,-0.115782][0.936012,0.0113041,0][-0.991806,-0.422263,-1.32484][0.00392732,-2.20981,-0.115782][0.936012,0.0113041,0][-1.22634,-0.468727,-0.445984][-0.936216,0.260324,-0.236074][0.964514,0.0145414,0][-1.06711,0.129002,-0.418308][-0.923549,0.379035,0.0582275][0.962247,0.0335761,0][-0.615879,0.485125,0.115662][-0.723258,0.600275,0.341421][0.977898,0.0477008,0][-0.85219,0.511888,-0.403145][-0.781163,0.621152,0.0628843][0.960796,0.0457584,0][-1.06711,0.129002,-0.418308][-0.923549,0.379035,0.0582275][0.962247,0.0335761,0][-1.06711,0.129002,-0.418308][-0.923549,0.379035,0.0582275][0.962247,0.0335761,0][-0.794075,0.0931939,0.274383][-0.839613,0.413426,0.352319][0.985049,0.036166,0][-0.615879,0.485125,0.115662][-0.723258,0.600275,0.341421][0.977898,0.0477008,0][-0.794075,0.0931939,0.274383][-0.272896,0.475806,0.836144][0.913846,0.046328,0][0.0146811,0.0804204,0.545609][0.0143854,0.406921,0.91335][0.887138,0.0545083,0][0.00839163,0.475598,0.318681][0.040106,0.607481,0.793321][0.885461,0.0402354,0][0.00839163,0.475598,0.318681][-0.267599,0.46371,0.844609][0.888671,0.026063,0][-0.615879,0.485125,0.115662][-0.267599,0.46371,0.844609][0.907191,0.015319,0][-0.794075,0.0931939,0.274383][-0.267599,0.46371,0.844609][0.917871,0.0256816,0][0.628859,0.488809,0.0875766][0.523475,0.624666,0.579454][0.867981,0.0406343,0][0.00839163,0.475598,0.318681][0.040106,0.607481,0.793321][0.885461,0.0402354,0][0.0146811,0.0804204,0.545609][0.0143854,0.406921,0.91335][0.887138,0.0545083,0][0.0146811,0.0804204,0.545609][0.0143854,0.406921,0.91335][0.887138,0.0545083,0][0.821058,0.0979736,0.23794][0.636006,0.42284,0.645525][0.864471,0.0549288,0][0.628859,0.488809,0.0875766][0.523475,0.624666,0.579454][0.867981,0.0406343,0][0.847425,0.516918,-0.441494][0.770129,0.637874,0.0042579][0.889177,0.0287291,0][0.628859,0.488809,0.0875766][0.523475,0.624666,0.579454][0.906394,0.0287291,0][0.821058,0.0979736,0.23794][0.636006,0.42284,0.645525][0.912133,0.0409936,0][0.821058,0.0979736,0.23794][0.636006,0.42284,0.645525][0.912133,0.0409936,0][1.07312,0.135336,-0.466598][0.934618,0.354088,-0.0333288][0.889177,0.0409936,0][0.847425,0.516918,-0.441494][0.770129,0.637874,0.0042579][0.889177,0.0287291,0][0.605057,0.543663,-0.960163][0.710826,0.644576,-0.281509][0.87196,0.0287291,0][0.847425,0.516918,-0.441494][0.770129,0.637874,0.0042579][0.889177,0.0287291,0][1.07312,0.135336,-0.466598][0.934618,0.354088,-0.0333288][0.889177,0.0409936,0][1.07312,0.135336,-0.466598][0.934618,0.354088,-0.0333288][0.889177,0.0409936,0][0.789321,0.171112,-1.15905][0.872652,0.397544,-0.283615][0.866222,0.0409936,0][0.605057,0.543663,-0.960163][0.710826,0.644576,-0.281509][0.87196,0.0287291,0][-0.035082,0.939977,-1.54713][-0.0129956,0.38104,-0.924467][0.807618,0.493305,0][0.593259,0.935046,-1.43168][0.158542,0.331331,-0.930099][0.807618,0.876569,0][0.779922,0.556968,-1.52501][0.18126,0.223082,-0.957799][0.580593,0.991507,0][0.779922,0.556968,-1.52501][0.18126,0.223082,-0.957799][0.580593,0.991507,0][-0.0369482,0.56333,-1.67925][-0.0131884,0.257844,-0.966097][0.580434,0.493305,0][-0.035082,0.939977,-1.54713][-0.0129956,0.38104,-0.924467][0.807618,0.493305,0][-0.65148,0.931362,-1.4036][-0.221404,0.324971,-0.919442][0.807618,0.113753,0][-0.035082,0.939977,-1.54713][-0.0129956,0.38104,-0.924467][0.807618,0.493305,0][-0.0369482,0.56333,-1.67925][-0.0131884,0.257844,-0.966097][0.580434,0.493305,0][-0.0369482,0.56333,-1.67925][-0.0131884,0.257844,-0.966097][0.580434,0.493305,0][-0.835211,0.552189,-1.48856][-0.251099,0.236854,-0.938536][0.580593,0.00170216,0][-0.65148,0.931362,-1.4036][-0.221404,0.324971,-0.919442][0.807618,0.113753,0][-0.85219,0.511888,-0.403145][-0.781163,0.621152,0.0628843][0.960796,0.0457584,0][-0.639682,0.539979,-0.932078][-0.720276,0.642605,-0.26127][0.943695,0.0438159,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][-1.06711,0.129002,-0.418308][-0.923549,0.379035,0.0582275][0.962247,0.0335761,0][-0.85219,0.511888,-0.403145][-0.781163,0.621152,0.0628843][0.960796,0.0457584,0][-0.422406,0.710767,-0.0521126][-0.486892,0.828843,0.275599][0.973967,0.05447,0][-0.595156,0.728564,-0.39764][-0.526406,0.847855,0.0635443][0.968525,0.0432783,0][-0.85219,0.511888,-0.403145][-0.781163,0.621152,0.0628843][0.976395,0.0357318,0][-0.85219,0.511888,-0.403145][-0.781163,0.621152,0.0628843][0.976395,0.0357318,0][-0.615879,0.485125,0.115662][-0.723258,0.600275,0.341421][0.984882,0.0520313,0][-0.422406,0.710767,-0.0521126][-0.486892,0.828843,0.275599][0.973967,0.05447,0][-0.615879,0.485125,0.115662][-0.211674,0.698428,0.683661][0.906033,0.0340059,0][0.00839163,0.475598,0.318681][0.040106,0.607481,0.793321][0.885461,0.0402354,0][0.00239767,0.704441,0.0830391][0.0290109,0.815141,0.578536][0.885325,0.0307216,0][0.00239767,0.704441,0.0830391][-0.209283,0.692663,0.690231][0.945158,0.0174599,0][-0.422406,0.710767,-0.0521126][-0.209283,0.692663,0.690231][0.955012,0.0114863,0][-0.615879,0.485125,0.115662][-0.209283,0.692663,0.690231][0.961342,0.0182834,0][0.42332,0.71327,-0.0711946][0.349853,0.829712,0.434949][0.873449,0.0310263,0][0.00239767,0.704441,0.0830391][0.0290109,0.815141,0.578536][0.885325,0.0307216,0][0.00839163,0.475598,0.318681][0.040106,0.607481,0.793321][0.885461,0.0402354,0][0.00839163,0.475598,0.318681][0.040106,0.607481,0.793321][0.885461,0.0402354,0][0.628859,0.488809,0.0875766][0.523475,0.624666,0.579454][0.867981,0.0406343,0][0.42332,0.71327,-0.0711946][0.349853,0.829712,0.434949][0.873449,0.0310263,0][0.582892,0.732051,-0.424221][0.516475,0.855889,0.0266127][0.958388,0.0510101,0][0.42332,0.71327,-0.0711946][0.349853,0.829712,0.434949][0.971096,0.0503632,0][0.628859,0.488809,0.0875766][0.523475,0.624666,0.579454][0.973993,0.060991,0][0.628859,0.488809,0.0875766][0.523475,0.624666,0.579454][0.973993,0.060991,0][0.847425,0.516918,-0.441494][0.770129,0.637874,0.0042579][0.955196,0.0614942,0][0.582892,0.732051,-0.424221][0.516475,0.855889,0.0266127][0.958388,0.0510101,0][0.407451,0.749839,-0.769688][0.476401,0.85882,-0.188337][0.94995,0.0441295,0][0.582892,0.732051,-0.424221][0.516475,0.855889,0.0266127][0.958388,0.0510101,0][0.847425,0.516918,-0.441494][0.770129,0.637874,0.0042579][0.955196,0.0614942,0][0.847425,0.516918,-0.441494][0.770129,0.637874,0.0042579][0.955196,0.0614942,0][0.605057,0.543663,-0.960163][0.710826,0.644576,-0.281509][0.942274,0.0516404,0][0.407451,0.749839,-0.769688][0.476401,0.85882,-0.188337][0.94995,0.0441295,0][-0.0324872,1.24688,-1.39189][-0.00170157,0.434227,-0.900802][0.994208,0.493305,0][0.392282,1.14899,-1.38962][0.0624714,0.248705,-0.966563][0.935854,0.753273,0][0.593259,0.935046,-1.43168][0.158542,0.331331,-0.930099][0.807618,0.876569,0][0.593259,0.935046,-1.43168][0.158542,0.331331,-0.930099][0.807618,0.876569,0][-0.035082,0.939977,-1.54713][-0.0129956,0.38104,-0.924467][0.807618,0.493305,0][-0.0324872,1.24688,-1.39189][-0.00170157,0.434227,-0.900802][0.994208,0.493305,0][-0.453443,1.14649,-1.37054][-0.198625,0.372706,-0.906443][0.935854,0.234986,0][-0.0324872,1.24688,-1.39189][-0.00170157,0.434227,-0.900802][0.994208,0.493305,0][-0.035082,0.939977,-1.54713][-0.0129956,0.38104,-0.924467][0.807618,0.493305,0][-0.035082,0.939977,-1.54713][-0.0129956,0.38104,-0.924467][0.807618,0.493305,0][-0.65148,0.931362,-1.4036][-0.221404,0.324971,-0.919442][0.807618,0.113753,0][-0.453443,1.14649,-1.37054][-0.198625,0.372706,-0.906443][0.935854,0.234986,0][-0.595156,0.728564,-0.39764][-0.526406,0.847855,0.0635443][0.968525,0.0432783,0][-0.438274,0.747336,-0.750605][-0.485873,0.856981,-0.171786][0.958409,0.0391385,0][-0.639682,0.539979,-0.932078][-0.720276,0.642605,-0.26127][0.961545,0.029034,0][-0.639682,0.539979,-0.932078][-0.720276,0.642605,-0.26127][0.961545,0.029034,0][-0.85219,0.511888,-0.403145][-0.781163,0.621152,0.0628843][0.976395,0.0357318,0][-0.595156,0.728564,-0.39764][-0.526406,0.847855,0.0635443][0.968525,0.0432783,0][-0.218511,0.818778,-0.226282][-0.224515,0.960429,0.164829][0.965207,0.0560158,0][-0.309583,0.827662,-0.39894][-0.245344,0.967672,0.058455][0.962553,0.0503195,0][-0.595156,0.728564,-0.39764][-0.526406,0.847855,0.0635443][0.968525,0.0432783,0][-0.595156,0.728564,-0.39764][-0.526406,0.847855,0.0635443][0.968525,0.0432783,0][-0.422406,0.710767,-0.0521126][-0.486892,0.828843,0.275599][0.973967,0.05447,0][-0.218511,0.818778,-0.226282][-0.224515,0.960429,0.164829][0.965207,0.0560158,0][-0.422406,0.710767,-0.0521126][-0.119291,0.900987,0.417124][0.981876,0.0313602,0][0.00239767,0.704441,0.0830391][0.0290109,0.815141,0.578536][0.980883,0.0421225,0][-0.00338761,0.815623,-0.158767][0.0171385,0.950687,0.309679][0.973327,0.0378486,0][-0.00338761,0.815623,-0.158767][-0.118448,0.900007,0.419474][0.92895,0.0297378,0][-0.218511,0.818778,-0.226282][-0.118448,0.900007,0.419474][0.935003,0.0255833,0][-0.422406,0.710767,-0.0521126][-0.118448,0.900007,0.419474][0.943547,0.0296058,0][0.209122,0.820043,-0.235931][0.162815,0.955425,0.246279][0.968408,0.042015,0][-0.00338761,0.815623,-0.158767][0.0171385,0.950687,0.309679][0.973327,0.0378486,0][0.00239767,0.704441,0.0830391][0.0290109,0.815141,0.578536][0.980883,0.0421225,0][0.00239767,0.704441,0.0830391][0.0290109,0.815141,0.578536][0.980883,0.0421225,0][0.42332,0.71327,-0.0711946][0.349853,0.829712,0.434949][0.971096,0.0503632,0][0.209122,0.820043,-0.235931][0.162815,0.955425,0.246279][0.968408,0.042015,0][0.292933,0.829445,-0.412535][0.239515,0.96992,0.043458][0.962003,0.0424289,0][0.209122,0.820043,-0.235931][0.162815,0.955425,0.246279][0.968408,0.042015,0][0.42332,0.71327,-0.0711946][0.349853,0.829712,0.434949][0.971096,0.0503632,0][0.42332,0.71327,-0.0711946][0.349853,0.829712,0.434949][0.971096,0.0503632,0][0.582892,0.732051,-0.424221][0.516475,0.855889,0.0266127][0.958388,0.0510101,0][0.292933,0.829445,-0.412535][0.239515,0.96992,0.043458][0.962003,0.0424289,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.957835,0.0388981,0][0.292933,0.829445,-0.412535][0.239515,0.96992,0.043458][0.962003,0.0424289,0][0.582892,0.732051,-0.424221][0.516475,0.855889,0.0266127][0.958388,0.0510101,0][0.582892,0.732051,-0.424221][0.516475,0.855889,0.0266127][0.958388,0.0510101,0][0.407451,0.749839,-0.769688][0.476401,0.85882,-0.188337][0.94995,0.0441295,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.957835,0.0388981,0][-0.309583,0.827662,-0.39894][-0.245344,0.967672,0.058455][0.962553,0.0503195,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.438274,0.747336,-0.750605][-0.485873,0.856981,-0.171786][0.958409,0.0391385,0][-0.438274,0.747336,-0.750605][-0.485873,0.856981,-0.171786][0.958409,0.0391385,0][-0.595156,0.728564,-0.39764][-0.526406,0.847855,0.0635443][0.968525,0.0432783,0][-0.309583,0.827662,-0.39894][-0.245344,0.967672,0.058455][0.962553,0.0503195,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.957719,0.0570264,0][-0.00904985,0.857814,-0.404189][-0.0680768,0.679245,0.00410662][0.957719,0.0570264,0][-0.309583,0.827662,-0.39894][-0.245344,0.967672,0.058455][0.962553,0.0503195,0][-0.309583,0.827662,-0.39894][-0.245344,0.967672,0.058455][0.962553,0.0503195,0][-0.218511,0.818778,-0.226282][-0.224515,0.960429,0.164829][0.965207,0.0560158,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.957719,0.0570264,0][-0.218511,0.818778,-0.226282][-0.0389661,0.984643,0.170175][0.973859,0.0324063,0][-0.00338761,0.815623,-0.158767][0.0171385,0.950687,0.309679][0.973327,0.0378486,0][-0.00904985,0.857814,-0.404189][-0.0342388,0.865186,0.149529][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][-0.0342388,0.865186,0.149529][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.955215,0.0458295,0][-0.218511,0.818778,-0.226282][1,0,0][0.961031,0.0459794,0][-0.00904985,0.857814,-0.404189][0.0357819,0.866919,0.148211][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][-0.0342388,0.865186,0.149529][0.965828,0.0350282,0][-0.00338761,0.815623,-0.158767][0.0171385,0.950687,0.309679][0.973327,0.0378486,0][-0.00338761,0.815623,-0.158767][0.0171385,0.950687,0.309679][0.973327,0.0378486,0][0.209122,0.820043,-0.235931][0.162815,0.955425,0.246279][0.968408,0.042015,0][-0.00904985,0.857814,-0.404189][0.0357819,0.866919,0.148211][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][0.0652334,0.674716,0.0668769][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][0.0357819,0.866919,0.148211][0.965828,0.0350282,0][0.209122,0.820043,-0.235931][0.162815,0.955425,0.246279][0.968408,0.042015,0][0.209122,0.820043,-0.235931][0.162815,0.955425,0.246279][0.968408,0.042015,0][0.292933,0.829445,-0.412535][0.239515,0.96992,0.043458][0.962003,0.0424289,0][-0.00904985,0.857814,-0.404189][0.0652334,0.674716,0.0668769][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][0.0652334,0.674716,0.0668769][0.965828,0.0350282,0][0.292933,0.829445,-0.412535][0.239515,0.96992,0.043458][0.962003,0.0424289,0][0.292933,0.829445,-0.412535][0.239515,0.96992,0.043458][0.962003,0.0424289,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.957835,0.0388981,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][0.0310893,0.877734,-0.0583912][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.965828,0.0350282,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.957835,0.0388981,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.957835,0.0388981,0][-0.0146082,0.841481,-0.652677][-0.00447813,0.997843,-0.0654907][0.958375,0.0334407,0][-0.00904985,0.857814,-0.404189][0.0310893,0.877734,-0.0583912][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][-0.0389249,0.875984,-0.05671][0.957719,0.0570264,0][-0.00904985,0.857814,-0.404189][0.0310893,0.877734,-0.0583912][0.957719,0.0570264,0][-0.0146082,0.841481,-0.652677][-0.00447813,0.997843,-0.0654907][0.95279,0.0513295,0][-0.0146082,0.841481,-0.652677][-0.00447813,0.997843,-0.0654907][0.95279,0.0513295,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.00904985,0.857814,-0.404189][-0.0389249,0.875984,-0.05671][0.957719,0.0570264,0][-0.00904985,0.857814,-0.404189][-0.0680768,0.679245,0.00410662][0.957719,0.0570264,0][-0.00904985,0.857814,-0.404189][-0.0389249,0.875984,-0.05671][0.957719,0.0570264,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.309583,0.827662,-0.39894][-0.245344,0.967672,0.058455][0.962553,0.0503195,0][-0.00904985,0.857814,-0.404189][-0.0680768,0.679245,0.00410662][0.957719,0.0570264,0][-0.00904985,0.857814,-0.404189][0.0357819,0.866919,0.148211][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0652334,0.674716,0.0668769][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0310893,0.877734,-0.0583912][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0389249,0.875984,-0.05671][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0389249,0.875984,-0.05671][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0680768,0.679245,0.00410662][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0389249,0.875984,-0.05671][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0357819,0.866919,0.148211][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0357819,0.866919,0.148211][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0342388,0.865186,0.149529][0.955215,0.0458295,0][0.955561,-0.4165,-1.36878][0.00380249,-2.13956,-0.112101][0.909671,0.0787064,0][-0.0347509,-0.400472,-1.70828][0.00177478,-0.998629,-0.0523226][0.930407,0.053215,0][-0.0387321,-0.391297,-1.88351][-0.00892207,0.181368,-0.983375][0.933174,0.0578371,0][-0.0387321,-0.391297,-1.88351][-0.00892207,0.181368,-0.983375][0.933174,0.0578371,0][0.609603,-0.400051,-1.69446][0.236809,0.174019,-0.955845][0.92111,0.0759899,0][0.955561,-0.4165,-1.36878][0.00380249,-2.13956,-0.112101][0.909671,0.0787064,0][-0.0347509,-0.400472,-1.70828][0.00177478,-0.998629,-0.0523226][0.930407,0.053215,0][-0.991806,-0.422263,-1.32484][0.00392732,-2.20981,-0.115782][0.927259,0.0224415,0][-0.629452,-0.403718,-1.6665][-0.344972,0.0994759,-0.933327][0.931916,0.0377065,0][-0.629452,-0.403718,-1.6665][-0.344972,0.0994759,-0.933327][0.931916,0.0377065,0][-0.0387321,-0.391297,-1.88351][-0.00892207,0.181368,-0.983375][0.933174,0.0578371,0][-0.0347509,-0.400472,-1.70828][0.00177478,-0.998629,-0.0523226][0.930407,0.053215,0][0.789321,0.171112,-1.15905][0.872652,0.397544,-0.283615][0.866222,0.0409936,0][0.955561,-0.4165,-1.36878][0.00380249,-2.13956,-0.112101][0.860483,0.0601565,0][0.609603,-0.400051,-1.69446][0.236809,0.174019,-0.955845][0.849529,0.0601565,0][0.609603,-0.400051,-1.69446][0.236809,0.174019,-0.955845][0.849529,0.0601565,0][0.779922,0.556968,-1.52501][0.18126,0.223082,-0.957799][0.853565,0.0292603,0][0.789321,0.171112,-1.15905][0.872652,0.397544,-0.283615][0.866222,0.0409936,0][0.605057,0.543663,-0.960163][0.710826,0.644576,-0.281509][0.87196,0.0287291,0][0.789321,0.171112,-1.15905][0.872652,0.397544,-0.283615][0.866222,0.0409936,0][0.779922,0.556968,-1.52501][0.18126,0.223082,-0.957799][0.853565,0.0292603,0][0.779922,0.556968,-1.52501][0.18126,0.223082,-0.957799][0.853565,0.0292603,0][0.593259,0.935046,-1.43168][0.158542,0.331331,-0.930099][0.855835,0.0169958,0][0.605057,0.543663,-0.960163][0.710826,0.644576,-0.281509][0.87196,0.0287291,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][-0.639682,0.539979,-0.932078][-0.720276,0.642605,-0.26127][0.943695,0.0438159,0][-0.65148,0.931362,-1.4036][-0.221404,0.324971,-0.919442][0.926289,0.0536513,0][-0.65148,0.931362,-1.4036][-0.221404,0.324971,-0.919442][0.926289,0.0536513,0][-0.835211,0.552189,-1.48856][-0.251099,0.236854,-0.938536][0.925485,0.0412129,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][0.407451,0.749839,-0.769688][0.476401,0.85882,-0.188337][0.877699,0.0218015,0][0.605057,0.543663,-0.960163][0.710826,0.644576,-0.281509][0.87196,0.0287291,0][0.593259,0.935046,-1.43168][0.158542,0.331331,-0.930099][0.855835,0.0169958,0][0.593259,0.935046,-1.43168][0.158542,0.331331,-0.930099][0.855835,0.0169958,0][0.392282,1.14899,-1.38962][0.0624714,0.248705,-0.966563][0.856696,0.0100682,0][0.407451,0.749839,-0.769688][0.476401,0.85882,-0.188337][0.877699,0.0218015,0][-0.639682,0.539979,-0.932078][-0.720276,0.642605,-0.26127][0.943695,0.0438159,0][-0.438274,0.747336,-0.750605][-0.485873,0.856981,-0.171786][0.948576,0.0513446,0][-0.453443,1.14649,-1.37054][-0.198625,0.372706,-0.906443][0.926325,0.0606297,0][-0.453443,1.14649,-1.37054][-0.198625,0.372706,-0.906443][0.926325,0.0606297,0][-0.65148,0.931362,-1.4036][-0.221404,0.324971,-0.919442][0.926289,0.0536513,0][-0.639682,0.539979,-0.932078][-0.720276,0.642605,-0.26127][0.943695,0.0438159,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.957835,0.0388981,0][0.407451,0.749839,-0.769688][0.476401,0.85882,-0.188337][0.94995,0.0441295,0][0.392282,1.14899,-1.38962][0.0624714,0.248705,-0.966563][0.930308,0.0307216,0][-0.0146082,0.841481,-0.652677][-0.00447813,0.997843,-0.0654907][0.95279,0.0513295,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.951365,0.0574985,0][0.392282,1.14899,-1.38962][0.0624714,0.248705,-0.966563][0.925034,0.0466579,0][0.392282,1.14899,-1.38962][0.0624714,0.248705,-0.966563][0.925034,0.0466579,0][-0.0324872,1.24688,-1.39189][-0.00170157,0.434227,-0.900802][0.92875,0.038138,0][-0.0146082,0.841481,-0.652677][-0.00447813,0.997843,-0.0654907][0.95279,0.0513295,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.0146082,0.841481,-0.652677][-0.00447813,0.997843,-0.0654907][0.95279,0.0513295,0][-0.0324872,1.24688,-1.39189][-0.00170157,0.434227,-0.900802][0.92875,0.038138,0][-0.0324872,1.24688,-1.39189][-0.00170157,0.434227,-0.900802][0.92875,0.038138,0][-0.453443,1.14649,-1.37054][-0.198625,0.372706,-0.906443][0.937025,0.0285651,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.438274,0.747336,-0.750605][-0.485873,0.856981,-0.171786][0.958409,0.0391385,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.453443,1.14649,-1.37054][-0.198625,0.372706,-0.906443][0.937025,0.0285651,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][-0.835211,0.552189,-1.48856][-0.251099,0.236854,-0.938536][0.925485,0.0412129,0][-0.629452,-0.403718,-1.6665][-0.344972,0.0994759,-0.933327][0.925132,0.0100682,0][-0.629452,-0.403718,-1.6665][-0.344972,0.0994759,-0.933327][0.925132,0.0100682,0][-0.991806,-0.422263,-1.32484][0.00392732,-2.20981,-0.115782][0.936012,0.0113041,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][-0.0516727,-0.46132,-2.3506][-0.00848451,0.894042,-0.447903][0.852314,0.0214731,0][-0.0504337,-0.431872,-2.29184][-0.00631918,0.951486,-0.307627][0.853819,0.0214731,0][0.0419397,-0.432052,-2.29395][-0.000419272,0.948882,-0.315631][0.853819,0.024062,0][-0.0516727,-0.46132,-2.3506][0.00108804,0.88769,-0.46044][0.852314,0.0214731,0][0.0419397,-0.432052,-2.29395][-0.000419272,0.948882,-0.315631][0.853819,0.024062,0][0.128511,-0.433209,-2.29598][0.0121611,0.939529,-0.342254][0.853819,0.0264883,0][-0.0516727,-0.46132,-2.3506][0.0143612,0.868999,-0.494605][0.852314,0.0214731,0][0.128511,-0.433209,-2.29598][0.0121611,0.939529,-0.342254][0.853819,0.0264883,0][0.203841,-0.435496,-2.29781][0.0314938,0.916798,-0.398107][0.853819,0.0285994,0][-0.0516727,-0.46132,-2.3506][0.034736,0.821067,-0.569774][0.852314,0.0214731,0][0.203841,-0.435496,-2.29781][0.0314938,0.916798,-0.398107][0.853819,0.0285994,0][0.263196,-0.439073,-2.29934][0.0643805,0.861231,-0.504119][0.853819,0.0302628,0][-0.0516727,-0.46132,-2.3506][0.0664258,0.699397,-0.71164][0.952369,0.0277032,0][0.263196,-0.439073,-2.29934][0.0643805,0.861231,-0.504119][0.962841,0.0270643,0][0.302849,-0.444019,-2.3005][0.127993,0.71994,-0.682132][0.964124,0.0273301,0][-0.0516727,-0.46132,-2.3506][0.108166,0.408198,-0.906463][0.952369,0.0277032,0][0.302849,-0.444019,-2.3005][0.127993,0.71994,-0.682132][0.964124,0.0273301,0][0.320306,-0.450246,-2.30122][0.344047,0.248649,-0.905431][0.964685,0.0275445,0][-0.0516727,-0.46132,-2.3506][0.133387,-0.0741504,-0.988286][0.853488,0.0590466,0][0.320306,-0.450246,-2.30122][0.344047,0.248649,-0.905431][0.865661,0.0590968,0][0.314473,-0.457453,-2.30147][0.25315,-0.550583,-0.795471][0.86546,0.0593199,0][-0.0516727,-0.46132,-2.3506][0.121427,-0.483414,-0.866929][0.908204,0.04716,0][0.314473,-0.457453,-2.30147][0.25315,-0.550583,-0.795471][0.896188,0.0487225,0][0.285714,-0.465128,-2.30122][0.151129,-0.790635,-0.593344][0.897081,0.0483341,0][-0.0516727,-0.46132,-2.3506][0.095018,-0.704295,-0.70352][0.966365,0.0501755,0][0.285714,-0.465128,-2.30122][0.151129,-0.790635,-0.593344][0.963227,0.0566091,0][0.235838,-0.472599,-2.30048][0.102743,-0.886158,-0.451849][0.963516,0.0556071,0][-0.0516727,-0.46132,-2.3506][0.068311,-0.815112,-0.575262][0.966365,0.0501755,0][0.235838,-0.472599,-2.30048][0.102743,-0.886158,-0.451849][0.963516,0.0556071,0][0.167977,-0.479132,-2.29928][0.068684,-0.929757,-0.361711][0.963907,0.054244,0][-0.0516727,-0.46132,-2.3506][0.0429385,-0.872564,-0.486609][0.966365,0.0501755,0][0.167977,-0.479132,-2.29928][0.068684,-0.929757,-0.361711][0.963907,0.054244,0][0.0863952,-0.484037,-2.29768][0.039814,-0.951553,-0.304897][0.964379,0.0526053,0][-0.0516727,-0.46132,-2.3506][0.01819,-0.900678,-0.434106][0.966365,0.0501755,0][0.0863952,-0.484037,-2.29768][0.039814,-0.951553,-0.304897][0.964379,0.0526053,0][-0.00378224,-0.486777,-2.29578][0.0116132,-0.961679,-0.273933][0.964899,0.0507942,0][-0.0516727,-0.46132,-2.3506][-0.00670308,-0.909195,-0.416316][0.966365,0.0501755,0][-0.00378224,-0.486777,-2.29578][0.0116132,-0.961679,-0.273933][0.964899,0.0507942,0][-0.0968897,-0.487052,-2.29368][-0.019012,-0.961919,-0.272672][0.965437,0.0489242,0][-0.0516727,-0.46132,-2.3506][-0.0324255,-0.900827,-0.432965][0.966365,0.0501755,0][-0.0968897,-0.487052,-2.29368][-0.019012,-0.961919,-0.272672][0.965437,0.0489242,0][-0.187076,-0.484846,-2.29151][-0.0477235,-0.952623,-0.300385][0.965958,0.047113,0][-0.0516727,-0.46132,-2.3506][-0.0596784,-0.872872,-0.484286][0.966365,0.0501755,0][-0.187076,-0.484846,-2.29151][-0.0477235,-0.952623,-0.300385][0.965958,0.047113,0][-0.268675,-0.480424,-2.28943][-0.0787987,-0.932153,-0.353387][0.966429,0.0454744,0][-0.0516727,-0.46132,-2.3506][-0.0893452,-0.815622,-0.571645][0.966365,0.0501755,0][-0.268675,-0.480424,-2.28943][-0.0787987,-0.932153,-0.353387][0.966429,0.0454744,0][-0.336559,-0.474293,-2.28756][-0.117415,-0.88981,-0.440967][0.966821,0.0441113,0][-0.0516727,-0.46132,-2.3506][-0.122511,-0.704815,-0.698732][0.966365,0.0501755,0][-0.336559,-0.474293,-2.28756][-0.117415,-0.88981,-0.440967][0.966821,0.0441113,0][-0.386461,-0.467117,-2.28605][-0.173152,-0.79529,-0.580975][0.967109,0.0431093,0][-0.0516727,-0.46132,-2.3506][-0.157539,-0.484287,-0.860609][0.946845,0.0487654,0][-0.386461,-0.467117,-2.28605][-0.173152,-0.79529,-0.580975][0.935723,0.0475712,0][-0.415246,-0.459613,-2.28501][-0.286086,-0.555177,-0.780982][0.934832,0.0471812,0][-0.0516727,-0.46132,-2.3506][-0.177385,-0.0751389,-0.981269][0.879518,0.0593199,0][-0.415246,-0.459613,-2.28501][-0.286086,-0.555177,-0.780982][0.891471,0.0586101,0][-0.421105,-0.45244,-2.2845][-0.386734,0.247799,-0.888275][0.891681,0.0588257,0][-0.0516727,-0.46132,-2.3506][-0.151352,0.407433,-0.900606][0.964685,0.0246975,0][-0.421105,-0.45244,-2.2845][-0.386734,0.247799,-0.888275][0.952368,0.024701,0][-0.403669,-0.44611,-2.28456][-0.163019,0.722797,-0.671557][0.952926,0.0244645,0][-0.0516727,-0.46132,-2.3506][-0.102584,0.698929,-0.707796][0.92738,0.0374501,0][-0.403669,-0.44611,-2.28456][-0.163019,0.722797,-0.671557][0.939141,0.0373942,0][-0.364035,-0.44093,-2.28519][-0.091753,0.864668,-0.493894][0.937869,0.0377066,0][-0.0516727,-0.46132,-2.3506][-0.0652582,0.820765,-0.567526][0.858999,0.0555618,0][-0.364035,-0.44093,-2.28519][-0.091753,0.864668,-0.493894][0.860409,0.0460841,0][-0.304693,-0.437001,-2.28633][-0.054057,0.919572,-0.389186][0.860409,0.0478776,0][-0.0516727,-0.46132,-2.3506][-0.0417933,0.868837,-0.493332][0.858999,0.0555618,0][-0.304693,-0.437001,-2.28633][-0.054057,0.919572,-0.389186][0.860409,0.0478776,0][-0.229372,-0.434268,-2.2879][-0.0325103,0.941109,-0.336538][0.860409,0.050154,0][-0.0516727,-0.46132,-2.3506][-0.0271038,0.88761,-0.459798][0.858999,0.0555618,0][-0.229372,-0.434268,-2.2879][-0.0325103,0.941109,-0.336538][0.860409,0.050154,0][-0.142806,-0.432599,-2.28978][-0.0222203,0.943149,-0.331627][0.860409,0.0527702,0][-0.0516727,-0.46132,-2.3506][-0.017018,0.894017,-0.447711][0.979208,0.031373,0][-0.142806,-0.432599,-2.28978][-0.017018,0.894017,-0.447711][0.982924,0.0313607,0][-0.0504337,-0.431872,-2.29184][-0.017018,0.894017,-0.447711][0.980461,0.0330871,0][0.132528,-0.402169,-2.11388][-0.00499623,0.992458,-0.122486][0.858567,0.0264883,0][0.0419397,-0.432052,-2.29395][-0.000419272,0.948882,-0.315631][0.853819,0.024062,0][-0.0504337,-0.431872,-2.29184][-0.00631918,0.951486,-0.307627][0.853819,0.0214731,0][-0.0504337,-0.431872,-2.29184][-0.00631918,0.951486,-0.307627][0.853819,0.0214731,0][-0.0464136,-0.402666,-2.10984][-0.00620151,0.992791,-0.119702][0.858567,0.0214731,0][0.132528,-0.402169,-2.11388][-0.00499623,0.992458,-0.122486][0.858567,0.0264883,0][0.300227,-0.402081,-2.11768][0.000561251,0.991044,-0.133536][0.858567,0.0311883,0][0.128511,-0.433209,-2.29598][0.0121611,0.939529,-0.342254][0.853819,0.0264883,0][0.0419397,-0.432052,-2.29395][-0.000419272,0.948882,-0.315631][0.853819,0.024062,0][0.0419397,-0.432052,-2.29395][-0.000419272,0.948882,-0.315631][0.853819,0.024062,0][0.132528,-0.402169,-2.11388][-0.00499623,0.992458,-0.122486][0.858567,0.0264883,0][0.300227,-0.402081,-2.11768][0.000561251,0.991044,-0.133536][0.858567,0.0311883,0][0.446147,-0.403305,-2.12106][0.016832,0.986973,-0.160002][0.858567,0.0352779,0][0.203841,-0.435496,-2.29781][0.0314938,0.916798,-0.398107][0.853819,0.0285994,0][0.128511,-0.433209,-2.29598][0.0121611,0.939529,-0.342254][0.853819,0.0264883,0][0.128511,-0.433209,-2.29598][0.0121611,0.939529,-0.342254][0.853819,0.0264883,0][0.300227,-0.402081,-2.11768][0.000561251,0.991044,-0.133536][0.858567,0.0311883,0][0.446147,-0.403305,-2.12106][0.016832,0.986973,-0.160002][0.858567,0.0352779,0][0.561123,-0.40703,-2.12387][0.0574774,0.973628,-0.220782][0.858567,0.0385001,0][0.263196,-0.439073,-2.29934][0.0643805,0.861231,-0.504119][0.853819,0.0302628,0][0.203841,-0.435496,-2.29781][0.0314938,0.916798,-0.398107][0.853819,0.0285994,0][0.203841,-0.435496,-2.29781][0.0314938,0.916798,-0.398107][0.853819,0.0285994,0][0.446147,-0.403305,-2.12106][0.016832,0.986973,-0.160002][0.858567,0.0352779,0][0.561123,-0.40703,-2.12387][0.0574774,0.973628,-0.220782][0.858567,0.0385001,0][0.637932,-0.41418,-2.12599][0.174851,0.904661,-0.388606][0.858567,0.0406525,0][0.302849,-0.444019,-2.3005][0.127993,0.71994,-0.682132][0.853819,0.0313738,0][0.263196,-0.439073,-2.29934][0.0643805,0.861231,-0.504119][0.853819,0.0302628,0][0.263196,-0.439073,-2.29934][0.0643805,0.861231,-0.504119][0.853819,0.0302628,0][0.561123,-0.40703,-2.12387][0.0574774,0.973628,-0.220782][0.858567,0.0385001,0][0.637932,-0.41418,-2.12599][0.174851,0.904661,-0.388606][0.858567,0.0406525,0][0.671748,-0.425123,-2.12733][0.593928,0.278049,-0.754942][0.858567,0.0415997,0][0.320306,-0.450246,-2.30122][0.344047,0.248649,-0.905431][0.853819,0.0318628,0][0.302849,-0.444019,-2.3005][0.127993,0.71994,-0.682132][0.853819,0.0313738,0][0.302849,-0.444019,-2.3005][0.127993,0.71994,-0.682132][0.853819,0.0313738,0][0.637932,-0.41418,-2.12599][0.174851,0.904661,-0.388606][0.858567,0.0406525,0][0.671748,-0.425123,-2.12733][0.593928,0.278049,-0.754942][0.858567,0.0415997,0][0.660448,-0.439442,-2.12782][0.436605,-0.693357,-0.573264][0.876708,0.0589025,0][0.314473,-0.457453,-2.30147][0.25315,-0.550583,-0.795471][0.86546,0.0593199,0][0.320306,-0.450246,-2.30122][0.344047,0.248649,-0.905431][0.865661,0.0590968,0][0.320306,-0.450246,-2.30122][0.344047,0.248649,-0.905431][0.865661,0.0590968,0][0.671748,-0.425123,-2.12733][0.593928,0.278049,-0.754942][0.877097,0.0584587,0][0.660448,-0.439442,-2.12782][0.436605,-0.693357,-0.573264][0.876708,0.0589025,0][0.604741,-0.455934,-2.12742][0.222214,-0.938075,-0.265773][0.957633,0.0619371,0][0.285714,-0.465128,-2.30122][0.151129,-0.790635,-0.593344][0.963227,0.0566091,0][0.314473,-0.457453,-2.30147][0.25315,-0.550583,-0.795471][0.963061,0.0571869,0][0.314473,-0.457453,-2.30147][0.25315,-0.550583,-0.795471][0.963061,0.0571869,0][0.660448,-0.439442,-2.12782][0.436605,-0.693357,-0.573264][0.957311,0.0630565,0][0.604741,-0.455934,-2.12742][0.222214,-0.938075,-0.265773][0.957633,0.0619371,0][0.508127,-0.472808,-2.12611][0.14306,-0.976339,-0.162161][0.958191,0.0599962,0][0.235838,-0.472599,-2.30048][0.102743,-0.886158,-0.451849][0.963516,0.0556071,0][0.285714,-0.465128,-2.30122][0.151129,-0.790635,-0.593344][0.963227,0.0566091,0][0.285714,-0.465128,-2.30122][0.151129,-0.790635,-0.593344][0.963227,0.0566091,0][0.604741,-0.455934,-2.12742][0.222214,-0.938075,-0.265773][0.957633,0.0619371,0][0.508127,-0.472808,-2.12611][0.14306,-0.976339,-0.162161][0.958191,0.0599962,0][0.376674,-0.488046,-2.12392][0.0945861,-0.988723,-0.116107][0.958951,0.0573556,0][0.167977,-0.479132,-2.29928][0.068684,-0.929757,-0.361711][0.963907,0.054244,0][0.235838,-0.472599,-2.30048][0.102743,-0.886158,-0.451849][0.963516,0.0556071,0][0.235838,-0.472599,-2.30048][0.102743,-0.886158,-0.451849][0.963516,0.0556071,0][0.508127,-0.472808,-2.12611][0.14306,-0.976339,-0.162161][0.958191,0.0599962,0][0.376674,-0.488046,-2.12392][0.0945861,-0.988723,-0.116107][0.958951,0.0573556,0][0.218639,-0.499751,-2.12094][0.0551833,-0.994168,-0.0926552][0.959863,0.0541813,0][0.0863952,-0.484037,-2.29768][0.039814,-0.951553,-0.304897][0.964379,0.0526053,0][0.167977,-0.479132,-2.29928][0.068684,-0.929757,-0.361711][0.963907,0.054244,0][0.167977,-0.479132,-2.29928][0.068684,-0.929757,-0.361711][0.963907,0.054244,0][0.376674,-0.488046,-2.12392][0.0945861,-0.988723,-0.116107][0.958951,0.0573556,0][0.218639,-0.499751,-2.12094][0.0551833,-0.994168,-0.0926552][0.959863,0.0541813,0][0.0439528,-0.506327,-2.11732][0.0185149,-0.996445,-0.0821876][0.960872,0.0506727,0][-0.00378224,-0.486777,-2.29578][0.0116132,-0.961679,-0.273933][0.964899,0.0507942,0][0.0863952,-0.484037,-2.29768][0.039814,-0.951553,-0.304897][0.964379,0.0526053,0][0.0863952,-0.484037,-2.29768][0.039814,-0.951553,-0.304897][0.964379,0.0526053,0][0.218639,-0.499751,-2.12094][0.0551833,-0.994168,-0.0926552][0.959863,0.0541813,0][0.0439528,-0.506327,-2.11732][0.0185149,-0.996445,-0.0821876][0.960872,0.0506727,0][-0.136411,-0.506861,-2.11325][-0.017492,-0.996504,-0.0816911][0.961913,0.0470503,0][-0.0968897,-0.487052,-2.29368][-0.019012,-0.961919,-0.272672][0.965437,0.0489242,0][-0.00378224,-0.486777,-2.29578][0.0116132,-0.961679,-0.273933][0.964899,0.0507942,0][-0.00378224,-0.486777,-2.29578][0.0116132,-0.961679,-0.273933][0.964899,0.0507942,0][0.0439528,-0.506327,-2.11732][0.0185149,-0.996445,-0.0821876][0.960872,0.0506727,0][-0.136411,-0.506861,-2.11325][-0.017492,-0.996504,-0.0816911][0.961913,0.0470503,0][-0.311119,-0.501319,-2.10899][-0.0540982,-0.994391,-0.0908824][0.962922,0.0435418,0][-0.187076,-0.484846,-2.29151][-0.0477235,-0.952623,-0.300385][0.965958,0.047113,0][-0.0968897,-0.487052,-2.29368][-0.019012,-0.961919,-0.272672][0.965437,0.0489242,0][-0.0968897,-0.487052,-2.29368][-0.019012,-0.961919,-0.272672][0.965437,0.0489242,0][-0.136411,-0.506861,-2.11325][-0.017492,-0.996504,-0.0816911][0.961913,0.0470503,0][-0.311119,-0.501319,-2.10899][-0.0540982,-0.994391,-0.0908824][0.962922,0.0435418,0][-0.469194,-0.49055,-2.10484][-0.0937869,-0.989269,-0.112031][0.963835,0.0403674,0][-0.268675,-0.480424,-2.28943][-0.0787987,-0.932153,-0.353387][0.966429,0.0454744,0][-0.187076,-0.484846,-2.29151][-0.0477235,-0.952623,-0.300385][0.965958,0.047113,0][-0.187076,-0.484846,-2.29151][-0.0477235,-0.952623,-0.300385][0.965958,0.047113,0][-0.311119,-0.501319,-2.10899][-0.0540982,-0.994391,-0.0908824][0.962922,0.0435418,0][-0.469194,-0.49055,-2.10484][-0.0937869,-0.989269,-0.112031][0.963835,0.0403674,0][-0.6007,-0.476089,-2.10109][-0.143857,-0.977406,-0.154863][0.964594,0.0377269,0][-0.336559,-0.474293,-2.28756][-0.117415,-0.88981,-0.440967][0.966821,0.0441113,0][-0.268675,-0.480424,-2.28943][-0.0787987,-0.932153,-0.353387][0.966429,0.0454744,0][-0.268675,-0.480424,-2.28943][-0.0787987,-0.932153,-0.353387][0.966429,0.0454744,0][-0.469194,-0.49055,-2.10484][-0.0937869,-0.989269,-0.112031][0.963835,0.0403674,0][-0.6007,-0.476089,-2.10109][-0.143857,-0.977406,-0.154863][0.964594,0.0377269,0][-0.697373,-0.459787,-2.09804][-0.227888,-0.93992,-0.254198][0.965152,0.0357859,0][-0.386461,-0.467117,-2.28605][-0.173152,-0.79529,-0.580975][0.967109,0.0431093,0][-0.336559,-0.474293,-2.28756][-0.117415,-0.88981,-0.440967][0.966821,0.0441113,0][-0.336559,-0.474293,-2.28756][-0.117415,-0.88981,-0.440967][0.966821,0.0441113,0][-0.6007,-0.476089,-2.10109][-0.143857,-0.977406,-0.154863][0.964594,0.0377269,0][-0.697373,-0.459787,-2.09804][-0.227888,-0.93992,-0.254198][0.965152,0.0357859,0][-0.753137,-0.443625,-2.09593][-0.457833,-0.697287,-0.551525][0.965474,0.0346665,0][-0.415246,-0.459613,-2.28501][-0.286086,-0.555177,-0.780982][0.967275,0.0425315,0][-0.386461,-0.467117,-2.28605][-0.173152,-0.79529,-0.580975][0.967109,0.0431093,0][-0.386461,-0.467117,-2.28605][-0.173152,-0.79529,-0.580975][0.967109,0.0431093,0][-0.697373,-0.459787,-2.09804][-0.227888,-0.93992,-0.254198][0.965152,0.0357859,0][-0.753137,-0.443625,-2.09593][-0.457833,-0.697287,-0.551525][0.965474,0.0346665,0][-0.764488,-0.429373,-2.09493][-0.629611,0.275469,-0.726434][0.903134,0.0590462,0][-0.421105,-0.45244,-2.2845][-0.386734,0.247799,-0.888275][0.891681,0.0588257,0][-0.415246,-0.459613,-2.28501][-0.286086,-0.555177,-0.780982][0.891471,0.0586101,0][-0.415246,-0.459613,-2.28501][-0.286086,-0.555177,-0.780982][0.891471,0.0586101,0][-0.753137,-0.443625,-2.09593][-0.457833,-0.697287,-0.551525][0.902727,0.0586169,0][-0.764488,-0.429373,-2.09493][-0.629611,0.275469,-0.726434][0.903134,0.0590462,0][-0.730711,-0.41823,-2.09511][-0.196911,0.904673,-0.37788][0.864854,0.034881,0][-0.403669,-0.44611,-2.28456][-0.163019,0.722797,-0.671557][0.860409,0.044886,0][-0.421105,-0.45244,-2.2845][-0.386734,0.247799,-0.888275][0.860409,0.0443587,0][-0.421105,-0.45244,-2.2845][-0.386734,0.247799,-0.888275][0.860409,0.0443587,0][-0.764488,-0.429373,-2.09493][-0.629611,0.275469,-0.726434][0.864854,0.0338596,0][-0.730711,-0.41823,-2.09511][-0.196911,0.904673,-0.37788][0.864854,0.034881,0][-0.653928,-0.410626,-2.09646][-0.0722487,0.973762,-0.215794][0.864854,0.0372018,0][-0.364035,-0.44093,-2.28519][-0.091753,0.864668,-0.493894][0.860409,0.0460841,0][-0.403669,-0.44611,-2.28456][-0.163019,0.722797,-0.671557][0.860409,0.044886,0][-0.403669,-0.44611,-2.28456][-0.163019,0.722797,-0.671557][0.860409,0.044886,0][-0.730711,-0.41823,-2.09511][-0.196911,0.904673,-0.37788][0.864854,0.034881,0][-0.653928,-0.410626,-2.09646][-0.0722487,0.973762,-0.215794][0.864854,0.0372018,0][-0.538967,-0.406221,-2.09884][-0.0294941,0.986913,-0.158534][0.864854,0.0406763,0][-0.304693,-0.437001,-2.28633][-0.054057,0.919572,-0.389186][0.860409,0.0478776,0][-0.364035,-0.44093,-2.28519][-0.091753,0.864668,-0.493894][0.860409,0.0460841,0][-0.364035,-0.44093,-2.28519][-0.091753,0.864668,-0.493894][0.860409,0.0460841,0][-0.653928,-0.410626,-2.09646][-0.0722487,0.973762,-0.215794][0.864854,0.0372018,0][-0.538967,-0.406221,-2.09884][-0.0294941,0.986913,-0.158534][0.864854,0.0406763,0][-0.393053,-0.404133,-2.10204][-0.0129022,0.990874,-0.134176][0.864854,0.045086,0][-0.229372,-0.434268,-2.2879][-0.0325103,0.941109,-0.336538][0.860409,0.050154,0][-0.304693,-0.437001,-2.28633][-0.054057,0.919572,-0.389186][0.860409,0.0478776,0][-0.304693,-0.437001,-2.28633][-0.054057,0.919572,-0.389186][0.860409,0.0478776,0][-0.538967,-0.406221,-2.09884][-0.0294941,0.986913,-0.158534][0.864854,0.0406763,0][-0.393053,-0.404133,-2.10204][-0.0129022,0.990874,-0.134176][0.864854,0.045086,0][-0.225355,-0.403228,-2.10581][-0.00816386,0.991194,-0.132168][0.864854,0.050154,0][-0.142806,-0.432599,-2.28978][-0.0222203,0.943149,-0.331627][0.860409,0.0527702,0][-0.229372,-0.434268,-2.2879][-0.0325103,0.941109,-0.336538][0.860409,0.050154,0][-0.229372,-0.434268,-2.2879][-0.0325103,0.941109,-0.336538][0.860409,0.050154,0][-0.393053,-0.404133,-2.10204][-0.0129022,0.990874,-0.134176][0.864854,0.045086,0][-0.225355,-0.403228,-2.10581][-0.00816386,0.991194,-0.132168][0.864854,0.050154,0][-0.142806,-0.432599,-2.28978][-0.0222203,0.943149,-0.331627][0.860409,0.0527702,0][-0.225355,-0.403228,-2.10581][-0.00816386,0.991194,-0.132168][0.864854,0.050154,0][-0.0464136,-0.402666,-2.10984][-0.00672002,0.986999,-0.160583][0.864854,0.0555618,0][-0.142806,-0.432599,-2.28978][-0.011295,0.987344,-0.15819][0.978845,0.0614942,0][-0.0464136,-0.402666,-2.10984][-0.011295,0.987344,-0.15819][0.981741,0.0555189,0][-0.0504337,-0.431872,-2.29184][-0.011295,0.987344,-0.15819][0.981876,0.0614249,0][0.214898,-0.375915,-1.79996][-0.0101746,0.998124,-0.0603816][0.866835,0.0285994,0][0.132528,-0.402169,-2.11388][-0.00499623,0.992458,-0.122486][0.858567,0.0264883,0][-0.0464136,-0.402666,-2.10984][-0.00620151,0.992791,-0.119702][0.858567,0.0214731,0][-0.0464136,-0.402666,-2.10984][-0.00620151,0.992791,-0.119702][0.858567,0.0214731,0][-0.0393674,-0.377501,-1.79426][-0.00786594,0.998196,-0.0595259][0.866835,0.0214731,0][0.214898,-0.375915,-1.79996][-0.0101746,0.998124,-0.0603816][0.866835,0.0285994,0][0.453185,-0.373304,-1.80523][-0.011249,0.99786,-0.0644152][0.866835,0.0352779,0][0.300227,-0.402081,-2.11768][0.000561251,0.991044,-0.133536][0.858567,0.0311883,0][0.132528,-0.402169,-2.11388][-0.00499623,0.992458,-0.122486][0.858567,0.0264883,0][0.132528,-0.402169,-2.11388][-0.00499623,0.992458,-0.122486][0.858567,0.0264883,0][0.214898,-0.375915,-1.79996][-0.0101746,0.998124,-0.0603816][0.866835,0.0285994,0][0.453185,-0.373304,-1.80523][-0.011249,0.99786,-0.0644152][0.866835,0.0352779,0][0.660524,-0.371402,-1.80984][0.00111391,0.997264,-0.073916][0.866835,0.0410891,0][0.446147,-0.403305,-2.12106][0.016832,0.986973,-0.160002][0.858567,0.0352779,0][0.300227,-0.402081,-2.11768][0.000561251,0.991044,-0.133536][0.858567,0.0311883,0][0.300227,-0.402081,-2.11768][0.000561251,0.991044,-0.133536][0.858567,0.0311883,0][0.453185,-0.373304,-1.80523][-0.011249,0.99786,-0.0644152][0.866835,0.0352779,0][0.660524,-0.371402,-1.80984][0.00111391,0.997264,-0.073916][0.866835,0.0410891,0][0.823891,-0.372783,-1.81363][0.0317826,0.994145,-0.103279][0.866835,0.0456676,0][0.561123,-0.40703,-2.12387][0.0574774,0.973628,-0.220782][0.858567,0.0385001,0][0.446147,-0.403305,-2.12106][0.016832,0.986973,-0.160002][0.858567,0.0352779,0][0.446147,-0.403305,-2.12106][0.016832,0.986973,-0.160002][0.858567,0.0352779,0][0.660524,-0.371402,-1.80984][0.00111391,0.997264,-0.073916][0.866835,0.0410891,0][0.823891,-0.372783,-1.81363][0.0317826,0.994145,-0.103279][0.866835,0.0456676,0][0.933027,-0.380292,-1.8165][0.163423,0.957643,-0.237091][0.866835,0.048726,0][0.637932,-0.41418,-2.12599][0.174851,0.904661,-0.388606][0.858567,0.0406525,0][0.561123,-0.40703,-2.12387][0.0574774,0.973628,-0.220782][0.858567,0.0385001,0][0.561123,-0.40703,-2.12387][0.0574774,0.973628,-0.220782][0.858567,0.0385001,0][0.823891,-0.372783,-1.81363][0.0317826,0.994145,-0.103279][0.866835,0.0456676,0][0.933027,-0.380292,-1.8165][0.163423,0.957643,-0.237091][0.866835,0.048726,0][0.981076,-0.39462,-1.81834][0.754041,0.268871,-0.599275][0.866835,0.0500719,0][0.671748,-0.425123,-2.12733][0.593928,0.278049,-0.754942][0.858567,0.0415997,0][0.637932,-0.41418,-2.12599][0.174851,0.904661,-0.388606][0.858567,0.0406525,0][0.637932,-0.41418,-2.12599][0.174851,0.904661,-0.388606][0.858567,0.0406525,0][0.933027,-0.380292,-1.8165][0.163423,0.957643,-0.237091][0.866835,0.048726,0][0.981076,-0.39462,-1.81834][0.754041,0.268871,-0.599275][0.866835,0.0500719,0][0.965021,-0.415346,-1.81906][0.535421,-0.755564,-0.377421][0.87243,0.046674,0][0.660448,-0.439442,-2.12782][0.436605,-0.693357,-0.573264][0.884069,0.0487292,0][0.671748,-0.425123,-2.12733][0.593928,0.278049,-0.754942][0.883754,0.0491879,0][0.671748,-0.425123,-2.12733][0.593928,0.278049,-0.754942][0.883754,0.0491879,0][0.981076,-0.39462,-1.81834][0.754041,0.268871,-0.599275][0.871983,0.0473359,0][0.965021,-0.415346,-1.81906][0.535421,-0.755564,-0.377421][0.87243,0.046674,0][0.885867,-0.440354,-1.81857][0.247324,-0.956873,-0.1524][0.949477,0.0657041,0][0.604741,-0.455934,-2.12742][0.222214,-0.938075,-0.265773][0.957633,0.0619371,0][0.660448,-0.439442,-2.12782][0.436605,-0.693357,-0.573264][0.957311,0.0630565,0][0.660448,-0.439442,-2.12782][0.436605,-0.693357,-0.573264][0.957311,0.0630565,0][0.965021,-0.415346,-1.81906][0.535421,-0.755564,-0.377421][0.949019,0.0672946,0][0.885867,-0.440354,-1.81857][0.247324,-0.956873,-0.1524][0.949477,0.0657041,0][0.748588,-0.466814,-1.81684][0.157952,-0.98322,-0.0912646][0.950269,0.0629461,0][0.508127,-0.472808,-2.12611][0.14306,-0.976339,-0.162161][0.958191,0.0599962,0][0.604741,-0.455934,-2.12742][0.222214,-0.938075,-0.265773][0.957633,0.0619371,0][0.604741,-0.455934,-2.12742][0.222214,-0.938075,-0.265773][0.957633,0.0619371,0][0.885867,-0.440354,-1.81857][0.247324,-0.956873,-0.1524][0.949477,0.0657041,0][0.748588,-0.466814,-1.81684][0.157952,-0.98322,-0.0912646][0.950269,0.0629461,0][0.561805,-0.49157,-1.81389][0.108396,-0.992101,-0.0631274][0.951348,0.0591939,0][0.376674,-0.488046,-2.12392][0.0945861,-0.988723,-0.116107][0.958951,0.0573556,0][0.508127,-0.472808,-2.12611][0.14306,-0.976339,-0.162161][0.958191,0.0599962,0][0.508127,-0.472808,-2.12611][0.14306,-0.976339,-0.162161][0.958191,0.0599962,0][0.748588,-0.466814,-1.81684][0.157952,-0.98322,-0.0912646][0.950269,0.0629461,0][0.561805,-0.49157,-1.81389][0.108396,-0.992101,-0.0631274][0.951348,0.0591939,0][0.337251,-0.510877,-1.8098][0.0640636,-0.996666,-0.0505321][0.952645,0.0546834,0][0.218639,-0.499751,-2.12094][0.0551833,-0.994168,-0.0926552][0.959863,0.0541813,0][0.376674,-0.488046,-2.12392][0.0945861,-0.988723,-0.116107][0.958951,0.0573556,0][0.376674,-0.488046,-2.12392][0.0945861,-0.988723,-0.116107][0.958951,0.0573556,0][0.561805,-0.49157,-1.81389][0.108396,-0.992101,-0.0631274][0.951348,0.0591939,0][0.337251,-0.510877,-1.8098][0.0640636,-0.996666,-0.0505321][0.952645,0.0546834,0][0.0890331,-0.521765,-1.80473][0.0222068,-0.99875,-0.0447874][0.954078,0.0496979,0][0.0439528,-0.506327,-2.11732][0.0185149,-0.996445,-0.0821876][0.960872,0.0506727,0][0.218639,-0.499751,-2.12094][0.0551833,-0.994168,-0.0926552][0.959863,0.0541813,0][0.218639,-0.499751,-2.12094][0.0551833,-0.994168,-0.0926552][0.959863,0.0541813,0][0.337251,-0.510877,-1.8098][0.0640636,-0.996666,-0.0505321][0.952645,0.0546834,0][0.0890331,-0.521765,-1.80473][0.0222068,-0.99875,-0.0447874][0.954078,0.0496979,0][-0.167255,-0.522523,-1.79895][-0.0191619,-0.998838,-0.0442185][0.955558,0.0445507,0][-0.136411,-0.506861,-2.11325][-0.017492,-0.996504,-0.0816911][0.961913,0.0470503,0][0.0439528,-0.506327,-2.11732][0.0185149,-0.996445,-0.0821876][0.960872,0.0506727,0][0.0439528,-0.506327,-2.11732][0.0185149,-0.996445,-0.0821876][0.960872,0.0506727,0][0.0890331,-0.521765,-1.80473][0.0222068,-0.99875,-0.0447874][0.954078,0.0496979,0][-0.167255,-0.522523,-1.79895][-0.0191619,-0.998838,-0.0442185][0.955558,0.0445507,0][-0.41551,-0.513105,-1.79282][-0.0610865,-0.996943,-0.0487096][0.956991,0.0395652,0][-0.311119,-0.501319,-2.10899][-0.0540982,-0.994391,-0.0908824][0.962922,0.0435418,0][-0.136411,-0.506861,-2.11325][-0.017492,-0.996504,-0.0816911][0.961913,0.0470503,0][-0.136411,-0.506861,-2.11325][-0.017492,-0.996504,-0.0816911][0.961913,0.0470503,0][-0.167255,-0.522523,-1.79895][-0.0191619,-0.998838,-0.0442185][0.955558,0.0445507,0][-0.41551,-0.513105,-1.79282][-0.0610865,-0.996943,-0.0487096][0.956991,0.0395652,0][-0.640129,-0.495127,-1.78677][-0.103539,-0.992732,-0.0613493][0.958288,0.0350546,0][-0.469194,-0.49055,-2.10484][-0.0937869,-0.989269,-0.112031][0.963835,0.0403674,0][-0.311119,-0.501319,-2.10899][-0.0540982,-0.994391,-0.0908824][0.962922,0.0435418,0][-0.311119,-0.501319,-2.10899][-0.0540982,-0.994391,-0.0908824][0.962922,0.0435418,0][-0.41551,-0.513105,-1.79282][-0.0610865,-0.996943,-0.0487096][0.956991,0.0395652,0][-0.640129,-0.495127,-1.78677][-0.103539,-0.992732,-0.0613493][0.958288,0.0350546,0][-0.826998,-0.471477,-1.78129][-0.159921,-0.983098,-0.0891283][0.959367,0.0313025,0][-0.6007,-0.476089,-2.10109][-0.143857,-0.977406,-0.154863][0.964594,0.0377269,0][-0.469194,-0.49055,-2.10484][-0.0937869,-0.989269,-0.112031][0.963835,0.0403674,0][-0.469194,-0.49055,-2.10484][-0.0937869,-0.989269,-0.112031][0.963835,0.0403674,0][-0.640129,-0.495127,-1.78677][-0.103539,-0.992732,-0.0613493][0.958288,0.0350546,0][-0.826998,-0.471477,-1.78129][-0.159921,-0.983098,-0.0891283][0.959367,0.0313025,0][-0.964369,-0.44583,-1.77682][-0.252979,-0.958412,-0.132089][0.96016,0.0285445,0][-0.697373,-0.459787,-2.09804][-0.227888,-0.93992,-0.254198][0.965152,0.0357859,0][-0.6007,-0.476089,-2.10109][-0.143857,-0.977406,-0.154863][0.964594,0.0377269,0][-0.6007,-0.476089,-2.10109][-0.143857,-0.977406,-0.154863][0.964594,0.0377269,0][-0.826998,-0.471477,-1.78129][-0.159921,-0.983098,-0.0891283][0.959367,0.0313025,0][-0.964369,-0.44583,-1.77682][-0.252979,-0.958412,-0.132089][0.96016,0.0285445,0][-1.04361,-0.42129,-1.77374][-0.543833,-0.77141,-0.330412][0.960617,0.0269539,0][-0.753137,-0.443625,-2.09593][-0.457833,-0.697287,-0.551525][0.965474,0.0346665,0][-0.697373,-0.459787,-2.09804][-0.227888,-0.93992,-0.254198][0.965152,0.0357859,0][-0.697373,-0.459787,-2.09804][-0.227888,-0.93992,-0.254198][0.965152,0.0357859,0][-0.964369,-0.44583,-1.77682][-0.252979,-0.958412,-0.132089][0.96016,0.0285445,0][-1.04361,-0.42129,-1.77374][-0.543833,-0.77141,-0.330412][0.960617,0.0269539,0][-1.05974,-0.400659,-1.77229][-0.791644,0.284269,-0.540824][0.910624,0.0485251,0][-0.764488,-0.429373,-2.09493][-0.629611,0.275469,-0.726434][0.922399,0.0466937,0][-0.753137,-0.443625,-2.09593][-0.457833,-0.697287,-0.551525][0.922713,0.0471529,0][-0.753137,-0.443625,-2.09593][-0.457833,-0.697287,-0.551525][0.922713,0.0471529,0][-1.04361,-0.42129,-1.77374][-0.543833,-0.77141,-0.330412][0.91107,0.0491879,0][-1.05974,-0.400659,-1.77229][-0.791644,0.284269,-0.540824][0.910624,0.0485251,0][-1.01174,-0.386047,-1.77262][-0.17962,0.962373,-0.203897][0.872595,0.0261754,0][-0.730711,-0.41823,-2.09511][-0.196911,0.904673,-0.37788][0.864854,0.034881,0][-0.764488,-0.429373,-2.09493][-0.629611,0.275469,-0.726434][0.864854,0.0338596,0][-0.764488,-0.429373,-2.09493][-0.629611,0.275469,-0.726434][0.864854,0.0338596,0][-1.05974,-0.400659,-1.77229][-0.791644,0.284269,-0.540824][0.872595,0.0247241,0][-1.01174,-0.386047,-1.77262][-0.17962,0.962373,-0.203897][0.872595,0.0261754,0][-0.902634,-0.377892,-1.77467][-0.0514089,0.993247,-0.104003][0.872595,0.0294732,0][-0.653928,-0.410626,-2.09646][-0.0722487,0.973762,-0.215794][0.864854,0.0372018,0][-0.730711,-0.41823,-2.09511][-0.196911,0.904673,-0.37788][0.864854,0.034881,0][-0.730711,-0.41823,-2.09511][-0.196911,0.904673,-0.37788][0.864854,0.034881,0][-1.01174,-0.386047,-1.77262][-0.17962,0.962373,-0.203897][0.872595,0.0261754,0][-0.902634,-0.377892,-1.77467][-0.0514089,0.993247,-0.104003][0.872595,0.0294732,0][-0.739273,-0.375545,-1.77826][-0.00846379,0.996919,-0.0779807][0.872595,0.0344102,0][-0.538967,-0.406221,-2.09884][-0.0294941,0.986913,-0.158534][0.864854,0.0406763,0][-0.653928,-0.410626,-2.09646][-0.0722487,0.973762,-0.215794][0.864854,0.0372018,0][-0.653928,-0.410626,-2.09646][-0.0722487,0.973762,-0.215794][0.864854,0.0372018,0][-0.902634,-0.377892,-1.77467][-0.0514089,0.993247,-0.104003][0.872595,0.0294732,0][-0.739273,-0.375545,-1.77826][-0.00846379,0.996919,-0.0779807][0.872595,0.0344102,0][-0.53193,-0.37622,-1.78301][0.00187195,0.997779,-0.0665894][0.872595,0.0406763,0][-0.393053,-0.404133,-2.10204][-0.0129022,0.990874,-0.134176][0.864854,0.045086,0][-0.538967,-0.406221,-2.09884][-0.0294941,0.986913,-0.158534][0.864854,0.0406763,0][-0.538967,-0.406221,-2.09884][-0.0294941,0.986913,-0.158534][0.864854,0.0406763,0][-0.739273,-0.375545,-1.77826][-0.00846379,0.996919,-0.0779807][0.872595,0.0344102,0][-0.53193,-0.37622,-1.78301][0.00187195,0.997779,-0.0665894][0.872595,0.0406763,0][-0.293636,-0.37742,-1.78848][0.000887111,0.997823,-0.0659502][0.872595,0.0478776,0][-0.225355,-0.403228,-2.10581][-0.00816386,0.991194,-0.132168][0.864854,0.050154,0][-0.393053,-0.404133,-2.10204][-0.0129022,0.990874,-0.134176][0.864854,0.045086,0][-0.393053,-0.404133,-2.10204][-0.0129022,0.990874,-0.134176][0.864854,0.045086,0][-0.53193,-0.37622,-1.78301][0.00187195,0.997779,-0.0665894][0.872595,0.0406763,0][-0.293636,-0.37742,-1.78848][0.000887111,0.997823,-0.0659502][0.872595,0.0478776,0][-0.225355,-0.403228,-2.10581][-0.00816386,0.991194,-0.132168][0.864854,0.050154,0][-0.293636,-0.37742,-1.78848][0.000887111,0.997823,-0.0659502][0.872595,0.0478776,0][-0.0393674,-0.377501,-1.79426][-0.00153489,0.996681,-0.0813904][0.872595,0.0555618,0][-0.225355,-0.403228,-2.10581][-0.00491976,0.996832,-0.0793822][0.912649,0.0320071,0][-0.0393674,-0.377501,-1.79426][-0.00491976,0.996832,-0.0793822][0.923047,0.0377284,0][-0.0464136,-0.402666,-2.10984][-0.00491976,0.996832,-0.0793822][0.912658,0.037742,0][0.283781,-0.358396,-1.37648][-0.0121655,0.99962,-0.024718][0.877988,0.0302628,0][0.214898,-0.375915,-1.79996][-0.0101746,0.998124,-0.0603816][0.866835,0.0285994,0][-0.0393674,-0.377501,-1.79426][-0.00786594,0.998196,-0.0595259][0.866835,0.0214731,0][-0.0393674,-0.377501,-1.79426][-0.00786594,0.998196,-0.0595259][0.866835,0.0214731,0][-0.0298324,-0.360831,-1.36948][-0.00824668,0.999651,-0.0250771][0.877988,0.0214731,0][0.283781,-0.358396,-1.37648][-0.0121655,0.99962,-0.024718][0.877988,0.0302628,0][0.577684,-0.353766,-1.38291][-0.0114928,0.999698,-0.0217442][0.877988,0.0385001,0][0.453185,-0.373304,-1.80523][-0.011249,0.99786,-0.0644152][0.866835,0.0352779,0][0.214898,-0.375915,-1.79996][-0.0101746,0.998124,-0.0603816][0.866835,0.0285994,0][0.214898,-0.375915,-1.79996][-0.0101746,0.998124,-0.0603816][0.866835,0.0285994,0][0.283781,-0.358396,-1.37648][-0.0121655,0.99962,-0.024718][0.877988,0.0302628,0][0.577684,-0.353766,-1.38291][-0.0114928,0.999698,-0.0217442][0.877988,0.0385001,0][0.833416,-0.350006,-1.38852][0.000896279,0.999423,-0.0339455][0.877988,0.0456676,0][0.660524,-0.371402,-1.80984][0.00111391,0.997264,-0.073916][0.866835,0.0410891,0][0.453185,-0.373304,-1.80523][-0.011249,0.99786,-0.0644152][0.866835,0.0352779,0][0.453185,-0.373304,-1.80523][-0.011249,0.99786,-0.0644152][0.866835,0.0352779,0][0.577684,-0.353766,-1.38291][-0.0114928,0.999698,-0.0217442][0.877988,0.0385001,0][0.833416,-0.350006,-1.38852][0.000896279,0.999423,-0.0339455][0.877988,0.0456676,0][1.03493,-0.358581,-1.39355][-0.0698975,0.995268,-0.0675006][0.877988,0.0513149,0][0.823891,-0.372783,-1.81363][0.0317826,0.994145,-0.103279][0.866835,0.0456676,0][0.660524,-0.371402,-1.80984][0.00111391,0.997264,-0.073916][0.866835,0.0410891,0][0.660524,-0.371402,-1.80984][0.00111391,0.997264,-0.073916][0.866835,0.0410891,0][0.833416,-0.350006,-1.38852][0.000896279,0.999423,-0.0339455][0.877988,0.0456676,0][1.03493,-0.358581,-1.39355][-0.0698975,0.995268,-0.0675006][0.877988,0.0513149,0][1.17374,-0.342725,-1.39588][-0.119754,0.981099,-0.152001][0.877988,0.0552061,0][0.933027,-0.380292,-1.8165][0.163423,0.957643,-0.237091][0.866835,0.048726,0][0.823891,-0.372783,-1.81363][0.0317826,0.994145,-0.103279][0.866835,0.0456676,0][0.823891,-0.372783,-1.81363][0.0317826,0.994145,-0.103279][0.866835,0.0456676,0][1.03493,-0.358581,-1.39355][-0.0698975,0.995268,-0.0675006][0.877988,0.0513149,0][1.17374,-0.342725,-1.39588][-0.119754,0.981099,-0.152001][0.877988,0.0552061,0][1.24817,-0.333953,-1.39711][0.780783,0.365487,-0.506751][0.877988,0.0572927,0][0.981076,-0.39462,-1.81834][0.754041,0.268871,-0.599275][0.866835,0.0500719,0][0.933027,-0.380292,-1.8165][0.163423,0.957643,-0.237091][0.866835,0.048726,0][0.933027,-0.380292,-1.8165][0.163423,0.957643,-0.237091][0.866835,0.048726,0][1.17374,-0.342725,-1.39588][-0.119754,0.981099,-0.152001][0.877988,0.0552061,0][1.24817,-0.333953,-1.39711][0.780783,0.365487,-0.506751][0.877988,0.0572927,0][1.22261,-0.369139,-1.39837][0.663632,-0.719943,-0.203163][0.969553,0.0484941,0][0.965021,-0.415346,-1.81906][0.535421,-0.755564,-0.377421][0.983103,0.0447965,0][0.981076,-0.39462,-1.81834][0.754041,0.268871,-0.599275][0.983181,0.0454556,0][0.981076,-0.39462,-1.81834][0.754041,0.268871,-0.599275][0.983181,0.0454556,0][1.24817,-0.333953,-1.39711][0.780783,0.365487,-0.506751][0.969684,0.0496133,0][1.22261,-0.369139,-1.39837][0.663632,-0.719943,-0.203163][0.969553,0.0484941,0][1.11135,-0.432756,-1.39917][0.388209,-0.914124,-0.116919][0.939362,0.0676974,0][0.885867,-0.440354,-1.81857][0.247324,-0.956873,-0.1524][0.949477,0.0657041,0][0.965021,-0.415346,-1.81906][0.535421,-0.755564,-0.377421][0.949019,0.0672946,0][0.965021,-0.415346,-1.81906][0.535421,-0.755564,-0.377421][0.949019,0.0672946,0][1.22261,-0.369139,-1.39837][0.663632,-0.719943,-0.203163][0.938718,0.0699341,0][1.11135,-0.432756,-1.39917][0.388209,-0.914124,-0.116919][0.939362,0.0676974,0][0.942042,-0.472002,-1.39738][0.163617,-0.983204,-0.0808632][0.94034,0.0642956,0][0.748588,-0.466814,-1.81684][0.157952,-0.98322,-0.0912646][0.950269,0.0629461,0][0.885867,-0.440354,-1.81857][0.247324,-0.956873,-0.1524][0.949477,0.0657041,0][0.885867,-0.440354,-1.81857][0.247324,-0.956873,-0.1524][0.949477,0.0657041,0][1.11135,-0.432756,-1.39917][0.388209,-0.914124,-0.116919][0.939362,0.0676974,0][0.942042,-0.472002,-1.39738][0.163617,-0.983204,-0.0808632][0.94034,0.0642956,0][0.711652,-0.496945,-1.39345][0.100784,-0.993547,-0.0520188][0.94167,0.0596677,0][0.561805,-0.49157,-1.81389][0.108396,-0.992101,-0.0631274][0.951348,0.0591939,0][0.748588,-0.466814,-1.81684][0.157952,-0.98322,-0.0912646][0.950269,0.0629461,0][0.748588,-0.466814,-1.81684][0.157952,-0.98322,-0.0912646][0.950269,0.0629461,0][0.942042,-0.472002,-1.39738][0.163617,-0.983204,-0.0808632][0.94034,0.0642956,0][0.711652,-0.496945,-1.39345][0.100784,-0.993547,-0.0520188][0.94167,0.0596677,0][0.434688,-0.522593,-1.3885][0.0688732,-0.996682,-0.0433656][0.94327,0.0541043,0][0.337251,-0.510877,-1.8098][0.0640636,-0.996666,-0.0505321][0.952645,0.0546834,0][0.561805,-0.49157,-1.81389][0.108396,-0.992101,-0.0631274][0.951348,0.0591939,0][0.561805,-0.49157,-1.81389][0.108396,-0.992101,-0.0631274][0.951348,0.0591939,0][0.711652,-0.496945,-1.39345][0.100784,-0.993547,-0.0520188][0.94167,0.0596677,0][0.434688,-0.522593,-1.3885][0.0688732,-0.996682,-0.0433656][0.94327,0.0541043,0][0.128535,-0.537088,-1.38231][0.0241663,-0.998961,-0.0386355][0.945037,0.0479552,0][0.0890331,-0.521765,-1.80473][0.0222068,-0.99875,-0.0447874][0.954078,0.0496979,0][0.337251,-0.510877,-1.8098][0.0640636,-0.996666,-0.0505321][0.952645,0.0546834,0][0.337251,-0.510877,-1.8098][0.0640636,-0.996666,-0.0505321][0.952645,0.0546834,0][0.434688,-0.522593,-1.3885][0.0688732,-0.996682,-0.0433656][0.94327,0.0541043,0][0.128535,-0.537088,-1.38231][0.0241663,-0.998961,-0.0386355][0.945037,0.0479552,0][-0.187573,-0.538024,-1.37517][-0.0202925,-0.999072,-0.0380026][0.946863,0.0416066,0][-0.167255,-0.522523,-1.79895][-0.0191619,-0.998838,-0.0442185][0.955558,0.0445507,0][0.0890331,-0.521765,-1.80473][0.0222068,-0.99875,-0.0447874][0.954078,0.0496979,0][0.0890331,-0.521765,-1.80473][0.0222068,-0.99875,-0.0447874][0.954078,0.0496979,0][0.128535,-0.537088,-1.38231][0.0241663,-0.998961,-0.0386355][0.945037,0.0479552,0][-0.187573,-0.538024,-1.37517][-0.0202925,-0.999072,-0.0380026][0.946863,0.0416066,0][-0.493773,-0.52534,-1.36755][-0.065141,-0.997017,-0.041406][0.948631,0.0354574,0][-0.41551,-0.513105,-1.79282][-0.0610865,-0.996943,-0.0487096][0.956991,0.0395652,0][-0.167255,-0.522523,-1.79895][-0.0191619,-0.998838,-0.0442185][0.955558,0.0445507,0][-0.167255,-0.522523,-1.79895][-0.0191619,-0.998838,-0.0442185][0.955558,0.0445507,0][-0.187573,-0.538024,-1.37517][-0.0202925,-0.999072,-0.0380026][0.946863,0.0416066,0][-0.493773,-0.52534,-1.36755][-0.065141,-0.997017,-0.041406][0.948631,0.0354574,0][-0.770827,-0.501332,-1.36][-0.0929586,-0.99456,-0.0470056][0.95023,0.029894,0][-0.640129,-0.495127,-1.78677][-0.103539,-0.992732,-0.0613493][0.958288,0.0350546,0][-0.41551,-0.513105,-1.79282][-0.0610865,-0.996943,-0.0487096][0.956991,0.0395652,0][-0.41551,-0.513105,-1.79282][-0.0610865,-0.996943,-0.0487096][0.956991,0.0395652,0][-0.493773,-0.52534,-1.36755][-0.065141,-0.997017,-0.041406][0.948631,0.0354574,0][-0.770827,-0.501332,-1.36][-0.0929586,-0.99456,-0.0470056][0.95023,0.029894,0][-1.0013,-0.477753,-1.35353][-0.192341,-0.97967,-0.0570157][0.951561,0.0252661,0][-0.826998,-0.471477,-1.78129][-0.159921,-0.983098,-0.0891283][0.959367,0.0313025,0][-0.640129,-0.495127,-1.78677][-0.103539,-0.992732,-0.0613493][0.958288,0.0350546,0][-0.640129,-0.495127,-1.78677][-0.103539,-0.992732,-0.0613493][0.958288,0.0350546,0][-0.770827,-0.501332,-1.36][-0.0929586,-0.99456,-0.0470056][0.95023,0.029894,0][-1.0013,-0.477753,-1.35353][-0.192341,-0.97967,-0.0570157][0.951561,0.0252661,0][-1.17075,-0.43951,-1.34768][-0.374658,-0.926318,-0.0395717][0.952539,0.0218644,0][-0.964369,-0.44583,-1.77682][-0.252979,-0.958412,-0.132089][0.96016,0.0285445,0][-0.826998,-0.471477,-1.78129][-0.159921,-0.983098,-0.0891283][0.959367,0.0313025,0][-0.826998,-0.471477,-1.78129][-0.159921,-0.983098,-0.0891283][0.959367,0.0313025,0][-1.0013,-0.477753,-1.35353][-0.192341,-0.97967,-0.0570157][0.951561,0.0252661,0][-1.17075,-0.43951,-1.34768][-0.374658,-0.926318,-0.0395717][0.952539,0.0218644,0][-1.28223,-0.376551,-1.34185][-0.656831,-0.743225,-0.127234][0.953182,0.0196277,0][-1.04361,-0.42129,-1.77374][-0.543833,-0.77141,-0.330412][0.960617,0.0269539,0][-0.964369,-0.44583,-1.77682][-0.252979,-0.958412,-0.132089][0.96016,0.0285445,0][-0.964369,-0.44583,-1.77682][-0.252979,-0.958412,-0.132089][0.96016,0.0285445,0][-1.17075,-0.43951,-1.34768][-0.374658,-0.926318,-0.0395717][0.952539,0.0218644,0][-1.28223,-0.376551,-1.34185][-0.656831,-0.743225,-0.127234][0.953182,0.0196277,0][-1.30792,-0.341517,-1.33943][-0.81551,0.386474,-0.430792][0.866976,0.0279561,0][-1.05974,-0.400659,-1.77229][-0.791644,0.284269,-0.540824][0.853488,0.023774,0][-1.04361,-0.42129,-1.77374][-0.543833,-0.77141,-0.330412][0.853566,0.023115,0][-1.04361,-0.42129,-1.77374][-0.543833,-0.77141,-0.330412][0.853566,0.023115,0][-1.28223,-0.376551,-1.34185][-0.656831,-0.743225,-0.127234][0.86711,0.0268371,0][-1.30792,-0.341517,-1.33943][-0.81551,0.386474,-0.430792][0.866976,0.0279561,0][-1.23345,-0.349849,-1.34156][0.133985,0.985935,-0.099902][0.883037,0.019188,0][-1.01174,-0.386047,-1.77262][-0.17962,0.962373,-0.203897][0.872595,0.0261754,0][-1.05974,-0.400659,-1.77229][-0.791644,0.284269,-0.540824][0.872595,0.0247241,0][-1.05974,-0.400659,-1.77229][-0.791644,0.284269,-0.540824][0.872595,0.0247241,0][-1.30792,-0.341517,-1.33943][-0.81551,0.386474,-0.430792][0.883037,0.0169381,0][-1.23345,-0.349849,-1.34156][0.133985,0.985935,-0.099902][0.883037,0.019188,0][-1.09459,-0.364883,-1.3455][0.0423221,0.998577,-0.0324622][0.883037,0.0233838,0][-0.902634,-0.377892,-1.77467][-0.0514089,0.993247,-0.104003][0.872595,0.0294732,0][-1.01174,-0.386047,-1.77262][-0.17962,0.962373,-0.203897][0.872595,0.0261754,0][-1.01174,-0.386047,-1.77262][-0.17962,0.962373,-0.203897][0.872595,0.0261754,0][-1.23345,-0.349849,-1.34156][0.133985,0.985935,-0.099902][0.883037,0.019188,0][-1.09459,-0.364883,-1.3455][0.0423221,0.998577,-0.0324622][0.883037,0.0233838,0][-0.89311,-0.355116,-1.34957][-0.0241578,0.999416,-0.0241505][0.883037,0.0294732,0][-0.739273,-0.375545,-1.77826][-0.00846379,0.996919,-0.0779807][0.872595,0.0344102,0][-0.902634,-0.377892,-1.77467][-0.0514089,0.993247,-0.104003][0.872595,0.0294732,0][-0.902634,-0.377892,-1.77467][-0.0514089,0.993247,-0.104003][0.872595,0.0294732,0][-1.09459,-0.364883,-1.3455][0.0423221,0.998577,-0.0324622][0.883037,0.0233838,0][-0.89311,-0.355116,-1.34957][-0.0241578,0.999416,-0.0241505][0.883037,0.0294732,0][-0.637368,-0.357362,-1.3555][0.00815682,0.999605,-0.0268995][0.883037,0.0372018,0][-0.53193,-0.37622,-1.78301][0.00187195,0.997779,-0.0665894][0.872595,0.0406763,0][-0.739273,-0.375545,-1.77826][-0.00846379,0.996919,-0.0779807][0.872595,0.0344102,0][-0.739273,-0.375545,-1.77826][-0.00846379,0.996919,-0.0779807][0.872595,0.0344102,0][-0.89311,-0.355116,-1.34957][-0.0241578,0.999416,-0.0241505][0.883037,0.0294732,0][-0.637368,-0.357362,-1.3555][0.00815682,0.999605,-0.0268995][0.883037,0.0372018,0][-0.34345,-0.360252,-1.36232][0.00544384,0.999579,-0.0284898][0.883037,0.0460841,0][-0.293636,-0.37742,-1.78848][0.000887111,0.997823,-0.0659502][0.872595,0.0478776,0][-0.53193,-0.37622,-1.78301][0.00187195,0.997779,-0.0665894][0.872595,0.0406763,0][-0.53193,-0.37622,-1.78301][0.00187195,0.997779,-0.0665894][0.872595,0.0406763,0][-0.637368,-0.357362,-1.3555][0.00815682,0.999605,-0.0268995][0.883037,0.0372018,0][-0.34345,-0.360252,-1.36232][0.00544384,0.999579,-0.0284898][0.883037,0.0460841,0][-0.293636,-0.37742,-1.78848][0.000887111,0.997823,-0.0659502][0.872595,0.0478776,0][-0.34345,-0.360252,-1.36232][0.00544384,0.999579,-0.0284898][0.883037,0.0460841,0][-0.0298324,-0.360831,-1.36948][0.000929414,0.999193,-0.0401443][0.883037,0.0555618,0][-0.293636,-0.37742,-1.78848][-0.00057485,0.999231,-0.0391987][0.93142,0.0614942,0][-0.0298324,-0.360831,-1.36948][-0.00057485,0.999231,-0.0391987][0.93974,0.0478577,0][-0.0393674,-0.377501,-1.79426][-0.00057485,0.999231,-0.0391987][0.939765,0.0614821,0][0.333454,-0.353109,-0.932133][-0.0108323,0.999941,0.000663307][0.889694,0.0313738,0][0.283781,-0.358396,-1.37648][-0.0121655,0.99962,-0.024718][0.877988,0.0302628,0][-0.0298324,-0.360831,-1.36948][-0.00824668,0.999651,-0.0250771][0.877988,0.0214731,0][-0.0298324,-0.360831,-1.36948][-0.00824668,0.999651,-0.0250771][0.877988,0.0214731,0][-0.019801,-0.355726,-0.924244][-0.00711292,0.999975,-0.000514907][0.889694,0.0214731,0][0.333454,-0.353109,-0.932133][-0.0108323,0.999941,0.000663307][0.889694,0.0313738,0][0.66451,-0.348161,-0.939395][0.0106767,0.999943,4.31931e-005][0.889694,0.0406525,0][0.577684,-0.353766,-1.38291][-0.0114928,0.999698,-0.0217442][0.877988,0.0385001,0][0.283781,-0.358396,-1.37648][-0.0121655,0.99962,-0.024718][0.877988,0.0302628,0][0.283781,-0.358396,-1.37648][-0.0121655,0.99962,-0.024718][0.877988,0.0302628,0][0.333454,-0.353109,-0.932133][-0.0108323,0.999941,0.000663307][0.889694,0.0313738,0][0.66451,-0.348161,-0.939395][0.0106767,0.999943,4.31931e-005][0.889694,0.0406525,0][0.952592,-0.357485,-0.946428][-0.0860105,0.996065,0.0213618][0.889694,0.048726,0][0.833416,-0.350006,-1.38852][0.000896279,0.999423,-0.0339455][0.877988,0.0456676,0][0.577684,-0.353766,-1.38291][-0.0114928,0.999698,-0.0217442][0.877988,0.0385001,0][0.577684,-0.353766,-1.38291][-0.0114928,0.999698,-0.0217442][0.877988,0.0385001,0][0.66451,-0.348161,-0.939395][0.0106767,0.999943,4.31931e-005][0.889694,0.0406525,0][0.952592,-0.357485,-0.946428][-0.0860105,0.996065,0.0213618][0.889694,0.048726,0][1.18426,-0.319359,-0.949695][-0.355307,0.934184,0.0325028][0.889694,0.0552207,0][1.03493,-0.358581,-1.39355][-0.0698975,0.995268,-0.0675006][0.877988,0.0513149,0][0.833416,-0.350006,-1.38852][0.000896279,0.999423,-0.0339455][0.877988,0.0456676,0][0.833416,-0.350006,-1.38852][0.000896279,0.999423,-0.0339455][0.877988,0.0456676,0][0.952592,-0.357485,-0.946428][-0.0860105,0.996065,0.0213618][0.889694,0.048726,0][1.18426,-0.319359,-0.949695][-0.355307,0.934184,0.0325028][0.889694,0.0552207,0][1.37845,-0.190014,-0.947334][-0.54055,0.840448,0.0381144][0.889694,0.0606696,0][1.17374,-0.342725,-1.39588][-0.119754,0.981099,-0.152001][0.877988,0.0552061,0][1.03493,-0.358581,-1.39355][-0.0698975,0.995268,-0.0675006][0.877988,0.0513149,0][1.03493,-0.358581,-1.39355][-0.0698975,0.995268,-0.0675006][0.877988,0.0513149,0][1.18426,-0.319359,-0.949695][-0.355307,0.934184,0.0325028][0.889694,0.0552207,0][1.37845,-0.190014,-0.947334][-0.54055,0.840448,0.0381144][0.889694,0.0606696,0][1.44153,-0.148502,-0.946595][0.581217,0.776994,-0.241799][0.889694,0.0624397,0][1.24817,-0.333953,-1.39711][0.780783,0.365487,-0.506751][0.877988,0.0572927,0][1.17374,-0.342725,-1.39588][-0.119754,0.981099,-0.152001][0.877988,0.0552061,0][1.17374,-0.342725,-1.39588][-0.119754,0.981099,-0.152001][0.877988,0.0552061,0][1.37845,-0.190014,-0.947334][-0.54055,0.840448,0.0381144][0.889694,0.0606696,0][1.44153,-0.148502,-0.946595][0.581217,0.776994,-0.241799][0.889694,0.0624397,0][1.42378,-0.196355,-0.948695][0.857711,-0.487598,-0.163033][0.955794,0.0563437,0][1.22261,-0.369139,-1.39837][0.663632,-0.719943,-0.203163][0.969553,0.0484941,0][1.24817,-0.333953,-1.39711][0.780783,0.365487,-0.506751][0.969684,0.0496133,0][1.24817,-0.333953,-1.39711][0.780783,0.365487,-0.506751][0.969684,0.0496133,0][1.44153,-0.148502,-0.946595][0.581217,0.776994,-0.241799][0.955972,0.0578674,0][1.42378,-0.196355,-0.948695][0.857711,-0.487598,-0.163033][0.955794,0.0563437,0][1.29626,-0.338395,-0.953238][0.657099,-0.749435,-0.081043][0.929042,0.0687529,0][1.11135,-0.432756,-1.39917][0.388209,-0.914124,-0.116919][0.939362,0.0676974,0][1.22261,-0.369139,-1.39837][0.663632,-0.719943,-0.203163][0.938718,0.0699341,0][1.22261,-0.369139,-1.39837][0.663632,-0.719943,-0.203163][0.938718,0.0699341,0][1.42378,-0.196355,-0.948695][0.857711,-0.487598,-0.163033][0.928304,0.071319,0][1.29626,-0.338395,-0.953238][0.657099,-0.749435,-0.081043][0.929042,0.0687529,0][1.07494,-0.488277,-0.956055][0.321681,-0.944361,-0.0685893][0.930322,0.0643026,0][0.942042,-0.472002,-1.39738][0.163617,-0.983204,-0.0808632][0.94034,0.0642956,0][1.11135,-0.432756,-1.39917][0.388209,-0.914124,-0.116919][0.939362,0.0676974,0][1.11135,-0.432756,-1.39917][0.388209,-0.914124,-0.116919][0.939362,0.0676974,0][1.29626,-0.338395,-0.953238][0.657099,-0.749435,-0.081043][0.929042,0.0687529,0][1.07494,-0.488277,-0.956055][0.321681,-0.944361,-0.0685893][0.930322,0.0643026,0][0.815411,-0.508731,-0.95123][0.0849296,-0.994914,-0.0541658][0.93182,0.0590897,0][0.711652,-0.496945,-1.39345][0.100784,-0.993547,-0.0520188][0.94167,0.0596677,0][0.942042,-0.472002,-1.39738][0.163617,-0.983204,-0.0808632][0.94034,0.0642956,0][0.942042,-0.472002,-1.39738][0.163617,-0.983204,-0.0808632][0.94034,0.0642956,0][1.07494,-0.488277,-0.956055][0.321681,-0.944361,-0.0685893][0.930322,0.0643026,0][0.815411,-0.508731,-0.95123][0.0849296,-0.994914,-0.0541658][0.93182,0.0590897,0][0.503438,-0.537542,-0.94565][0.0688939,-0.9966,-0.0451994][0.933622,0.0528231,0][0.434688,-0.522593,-1.3885][0.0688732,-0.996682,-0.0433656][0.94327,0.0541043,0][0.711652,-0.496945,-1.39345][0.100784,-0.993547,-0.0520188][0.94167,0.0596677,0][0.711652,-0.496945,-1.39345][0.100784,-0.993547,-0.0520188][0.94167,0.0596677,0][0.815411,-0.508731,-0.95123][0.0849296,-0.994914,-0.0541658][0.93182,0.0590897,0][0.503438,-0.537542,-0.94565][0.0688939,-0.9966,-0.0451994][0.933622,0.0528231,0][0.158585,-0.553892,-0.938673][0.0244043,-0.99889,-0.0402949][0.935613,0.0458966,0][0.128535,-0.537088,-1.38231][0.0241663,-0.998961,-0.0386355][0.945037,0.0479552,0][0.434688,-0.522593,-1.3885][0.0688732,-0.996682,-0.0433656][0.94327,0.0541043,0][0.434688,-0.522593,-1.3885][0.0688732,-0.996682,-0.0433656][0.94327,0.0541043,0][0.503438,-0.537542,-0.94565][0.0688939,-0.9966,-0.0451994][0.933622,0.0528231,0][0.158585,-0.553892,-0.938673][0.0244043,-0.99889,-0.0402949][0.935613,0.0458966,0][-0.197482,-0.554945,-0.930639][-0.0200634,-0.999017,-0.0395225][0.937669,0.0387455,0][-0.187573,-0.538024,-1.37517][-0.0202925,-0.999072,-0.0380026][0.946863,0.0416066,0][0.128535,-0.537088,-1.38231][0.0241663,-0.998961,-0.0386355][0.945037,0.0479552,0][0.128535,-0.537088,-1.38231][0.0241663,-0.998961,-0.0386355][0.945037,0.0479552,0][0.158585,-0.553892,-0.938673][0.0244043,-0.99889,-0.0402949][0.935613,0.0458966,0][-0.197482,-0.554945,-0.930639][-0.0200634,-0.999017,-0.0395225][0.937669,0.0387455,0][-0.542389,-0.540637,-0.922053][-0.0639741,-0.996999,-0.0435976][0.939661,0.031819,0][-0.493773,-0.52534,-1.36755][-0.065141,-0.997017,-0.041406][0.948631,0.0354574,0][-0.187573,-0.538024,-1.37517][-0.0202925,-0.999072,-0.0380026][0.946863,0.0416066,0][-0.187573,-0.538024,-1.37517][-0.0202925,-0.999072,-0.0380026][0.946863,0.0416066,0][-0.197482,-0.554945,-0.930639][-0.0200634,-0.999017,-0.0395225][0.937669,0.0387455,0][-0.542389,-0.540637,-0.922053][-0.0639741,-0.996999,-0.0435976][0.939661,0.031819,0][-0.854463,-0.513673,-0.913552][-0.0858572,-0.995372,-0.0431622][0.941462,0.0255524,0][-0.770827,-0.501332,-1.36][-0.0929586,-0.99456,-0.0470056][0.95023,0.029894,0][-0.493773,-0.52534,-1.36755][-0.065141,-0.997017,-0.041406][0.948631,0.0354574,0][-0.493773,-0.52534,-1.36755][-0.065141,-0.997017,-0.041406][0.948631,0.0354574,0][-0.542389,-0.540637,-0.922053][-0.0639741,-0.996999,-0.0435976][0.939661,0.031819,0][-0.854463,-0.513673,-0.913552][-0.0858572,-0.995372,-0.0431622][0.941462,0.0255524,0][-1.11406,-0.494755,-0.906664][-0.341346,-0.936882,-0.0757334][0.942961,0.0203395,0][-1.0013,-0.477753,-1.35353][-0.192341,-0.97967,-0.0570157][0.951561,0.0252661,0][-0.770827,-0.501332,-1.36][-0.0929586,-0.99456,-0.0470056][0.95023,0.029894,0][-0.770827,-0.501332,-1.36][-0.0929586,-0.99456,-0.0470056][0.95023,0.029894,0][-0.854463,-0.513673,-0.913552][-0.0858572,-0.995372,-0.0431622][0.941462,0.0255524,0][-1.11406,-0.494755,-0.906664][-0.341346,-0.936882,-0.0757334][0.942961,0.0203395,0][-1.33591,-0.346184,-0.893846][-0.64653,-0.758289,-0.0836479][0.944241,0.0158892,0][-1.17075,-0.43951,-1.34768][-0.374658,-0.926318,-0.0395717][0.952539,0.0218644,0][-1.0013,-0.477753,-1.35353][-0.192341,-0.97967,-0.0570157][0.951561,0.0252661,0][-1.0013,-0.477753,-1.35353][-0.192341,-0.97967,-0.0570157][0.951561,0.0252661,0][-1.11406,-0.494755,-0.906664][-0.341346,-0.936882,-0.0757334][0.942961,0.0203395,0][-1.33591,-0.346184,-0.893846][-0.64653,-0.758289,-0.0836479][0.944241,0.0158892,0][-1.46393,-0.204899,-0.88354][-0.860363,-0.491778,-0.133906][0.944978,0.0133232,0][-1.28223,-0.376551,-1.34185][-0.656831,-0.743225,-0.127234][0.953182,0.0196277,0][-1.17075,-0.43951,-1.34768][-0.374658,-0.926318,-0.0395717][0.952539,0.0218644,0][-1.17075,-0.43951,-1.34768][-0.374658,-0.926318,-0.0395717][0.952539,0.0218644,0][-1.33591,-0.346184,-0.893846][-0.64653,-0.758289,-0.0836479][0.944241,0.0158892,0][-1.46393,-0.204899,-0.88354][-0.860363,-0.491778,-0.133906][0.944978,0.0133232,0][-1.48186,-0.157153,-0.880633][-0.596373,0.771939,-0.220113][0.880672,0.0362349,0][-1.30792,-0.341517,-1.33943][-0.81551,0.386474,-0.430792][0.866976,0.0279561,0][-1.28223,-0.376551,-1.34185][-0.656831,-0.743225,-0.127234][0.86711,0.0268371,0][-1.28223,-0.376551,-1.34185][-0.656831,-0.743225,-0.127234][0.86711,0.0268371,0][-1.46393,-0.204899,-0.88354][-0.860363,-0.491778,-0.133906][0.880854,0.0347116,0][-1.48186,-0.157153,-0.880633][-0.596373,0.771939,-0.220113][0.880672,0.0362349,0][-1.41862,-0.19829,-0.884224][0.532411,0.845844,-0.0329647][0.893998,0.0132968,0][-1.23345,-0.349849,-1.34156][0.133985,0.985935,-0.099902][0.883037,0.019188,0][-1.30792,-0.341517,-1.33943][-0.81551,0.386474,-0.430792][0.883037,0.0169381,0][-1.30792,-0.341517,-1.33943][-0.81551,0.386474,-0.430792][0.883037,0.0169381,0][-1.48186,-0.157153,-0.880633][-0.596373,0.771939,-0.220113][0.893998,0.0113881,0][-1.41862,-0.19829,-0.884224][0.532411,0.845844,-0.0329647][0.893998,0.0132968,0][-1.22398,-0.326486,-0.895357][0.361037,0.932389,-0.0173878][0.893998,0.0191723,0][-1.09459,-0.364883,-1.3455][0.0423221,0.998577,-0.0324622][0.883037,0.0233838,0][-1.23345,-0.349849,-1.34156][0.133985,0.985935,-0.099902][0.883037,0.019188,0][-1.23345,-0.349849,-1.34156][0.133985,0.985935,-0.099902][0.883037,0.019188,0][-1.41862,-0.19829,-0.884224][0.532411,0.845844,-0.0329647][0.893998,0.0132968,0][-1.22398,-0.326486,-0.895357][0.361037,0.932389,-0.0173878][0.893998,0.0191723,0][-0.992177,-0.36324,-0.902548][0.046349,0.998885,0.00897555][0.893998,0.0261754,0][-0.89311,-0.355116,-1.34957][-0.0241578,0.999416,-0.0241505][0.883037,0.0294732,0][-1.09459,-0.364883,-1.3455][0.0423221,0.998577,-0.0324622][0.883037,0.0233838,0][-1.09459,-0.364883,-1.3455][0.0423221,0.998577,-0.0324622][0.883037,0.0233838,0][-1.22398,-0.326486,-0.895357][0.361037,0.932389,-0.0173878][0.893998,0.0191723,0][-0.992177,-0.36324,-0.902548][0.046349,0.998885,0.00897555][0.893998,0.0261754,0][-0.704132,-0.352211,-0.908514][-0.0113423,0.999925,0.00451791][0.893998,0.034881,0][-0.637368,-0.357362,-1.3555][0.00815682,0.999605,-0.0268995][0.883037,0.0372018,0][-0.89311,-0.355116,-1.34957][-0.0241578,0.999416,-0.0241505][0.883037,0.0294732,0][-0.89311,-0.355116,-1.34957][-0.0241578,0.999416,-0.0241505][0.883037,0.0294732,0][-0.992177,-0.36324,-0.902548][0.046349,0.998885,0.00897555][0.893998,0.0261754,0][-0.704132,-0.352211,-0.908514][-0.0113423,0.999925,0.00451791][0.893998,0.034881,0][-0.373063,-0.3552,-0.916193][0.00569072,0.999983,-0.00140587][0.893998,0.044886,0][-0.34345,-0.360252,-1.36232][0.00544384,0.999579,-0.0284898][0.883037,0.0460841,0][-0.637368,-0.357362,-1.3555][0.00815682,0.999605,-0.0268995][0.883037,0.0372018,0][-0.637368,-0.357362,-1.3555][0.00815682,0.999605,-0.0268995][0.883037,0.0372018,0][-0.704132,-0.352211,-0.908514][-0.0113423,0.999925,0.00451791][0.893998,0.034881,0][-0.373063,-0.3552,-0.916193][0.00569072,0.999983,-0.00140587][0.893998,0.044886,0][-0.34345,-0.360252,-1.36232][0.00544384,0.999579,-0.0284898][0.883037,0.0460841,0][-0.373063,-0.3552,-0.916193][0.00569072,0.999983,-0.00140587][0.893998,0.044886,0][-0.019801,-0.355726,-0.924244][0.00123452,0.999936,-0.0112427][0.893998,0.0555618,0][-0.34345,-0.360252,-1.36232][0.00158425,0.999933,-0.011501][0.899832,0.0713144,0][-0.019801,-0.355726,-0.924244][0.00158425,0.999933,-0.011501][0.887999,0.071319,0][-0.0298324,-0.360831,-1.36948][0.00158425,0.999933,-0.011501][0.895906,0.0659736,0][0.358293,-0.356518,-0.605361][-0.00789133,0.999626,0.0261712][0.898306,0.0318628,0][0.333454,-0.353109,-0.932133][-0.0108323,0.999941,0.000663307][0.889694,0.0313738,0][-0.019801,-0.355726,-0.924244][-0.00711292,0.999975,-0.000514907][0.889694,0.0214731,0][-0.019801,-0.355726,-0.924244][-0.00711292,0.999975,-0.000514907][0.889694,0.0214731,0][-0.0124098,-0.358842,-0.597061][-0.00521903,0.999691,0.0243002][0.898306,0.0214731,0][0.358293,-0.356518,-0.605361][-0.00789133,0.999626,0.0261712][0.898306,0.0318628,0][0.7057,-0.352451,-0.61304][0.0169845,0.99951,0.0263009][0.898306,0.0415997,0][0.66451,-0.348161,-0.939395][0.0106767,0.999943,4.31931e-005][0.889694,0.0406525,0][0.333454,-0.353109,-0.932133][-0.0108323,0.999941,0.000663307][0.889694,0.0313738,0][0.333454,-0.353109,-0.932133][-0.0108323,0.999941,0.000663307][0.889694,0.0313738,0][0.358293,-0.356518,-0.605361][-0.00789133,0.999626,0.0261712][0.898306,0.0318628,0][0.7057,-0.352451,-0.61304][0.0169845,0.99951,0.0263009][0.898306,0.0415997,0][1.00802,-0.36642,-0.620641][-0.126761,0.990247,0.0578153][0.898306,0.0500719,0][0.952592,-0.357485,-0.946428][-0.0860105,0.996065,0.0213618][0.889694,0.048726,0][0.66451,-0.348161,-0.939395][0.0106767,0.999943,4.31931e-005][0.889694,0.0406525,0][0.66451,-0.348161,-0.939395][0.0106767,0.999943,4.31931e-005][0.889694,0.0406525,0][0.7057,-0.352451,-0.61304][0.0169845,0.99951,0.0263009][0.898306,0.0415997,0][1.00802,-0.36642,-0.620641][-0.126761,0.990247,0.0578153][0.898306,0.0500719,0][1.26829,-0.282702,-0.622171][-0.392706,0.914876,0.0937174][0.898306,0.0573706,0][1.18426,-0.319359,-0.949695][-0.355307,0.934184,0.0325028][0.889694,0.0552207,0][0.952592,-0.357485,-0.946428][-0.0860105,0.996065,0.0213618][0.889694,0.048726,0][0.952592,-0.357485,-0.946428][-0.0860105,0.996065,0.0213618][0.889694,0.048726,0][1.00802,-0.36642,-0.620641][-0.126761,0.990247,0.0578153][0.898306,0.0500719,0][1.26829,-0.282702,-0.622171][-0.392706,0.914876,0.0937174][0.898306,0.0573706,0][1.44976,-0.178365,-0.62083][-0.572348,0.806067,0.150579][0.898306,0.062462,0][1.37845,-0.190014,-0.947334][-0.54055,0.840448,0.0381144][0.889694,0.0606696,0][1.18426,-0.319359,-0.949695][-0.355307,0.934184,0.0325028][0.889694,0.0552207,0][1.18426,-0.319359,-0.949695][-0.355307,0.934184,0.0325028][0.889694,0.0552207,0][1.26829,-0.282702,-0.622171][-0.392706,0.914876,0.0937174][0.898306,0.0573706,0][1.44976,-0.178365,-0.62083][-0.572348,0.806067,0.150579][0.898306,0.062462,0][1.47493,-0.157318,-0.6203][0.454452,0.881155,0.130537][0.898306,0.0631684,0][1.44153,-0.148502,-0.946595][0.581217,0.776994,-0.241799][0.889694,0.0624397,0][1.37845,-0.190014,-0.947334][-0.54055,0.840448,0.0381144][0.889694,0.0606696,0][1.37845,-0.190014,-0.947334][-0.54055,0.840448,0.0381144][0.889694,0.0606696,0][1.44976,-0.178365,-0.62083][-0.572348,0.806067,0.150579][0.898306,0.062462,0][1.47493,-0.157318,-0.6203][0.454452,0.881155,0.130537][0.898306,0.0631684,0][1.4724,-0.198437,-0.622395][0.926126,-0.365017,-0.0951466][0.94519,0.0580094,0][1.42378,-0.196355,-0.948695][0.857711,-0.487598,-0.163033][0.955794,0.0563437,0][1.44153,-0.148502,-0.946595][0.581217,0.776994,-0.241799][0.955972,0.0578674,0][1.44153,-0.148502,-0.946595][0.581217,0.776994,-0.241799][0.955972,0.0578674,0][1.47493,-0.157318,-0.6203][0.454452,0.881155,0.130537][0.945344,0.0593199,0][1.4724,-0.198437,-0.622395][0.926126,-0.365017,-0.0951466][0.94519,0.0580094,0][1.38436,-0.295696,-0.625487][0.674503,-0.730363,-0.107775][0.944828,0.0549174,0][1.29626,-0.338395,-0.953238][0.657099,-0.749435,-0.081043][0.955265,0.0518279,0][1.42378,-0.196355,-0.948695][0.857711,-0.487598,-0.163033][0.955794,0.0563437,0][1.42378,-0.196355,-0.948695][0.857711,-0.487598,-0.163033][0.955794,0.0563437,0][1.4724,-0.198437,-0.622395][0.926126,-0.365017,-0.0951466][0.94519,0.0580094,0][1.38436,-0.295696,-0.625487][0.674503,-0.730363,-0.107775][0.944828,0.0549174,0][1.13638,-0.487216,-0.629879][0.392659,-0.918543,-0.0458113][0.923161,0.0635786,0][1.07494,-0.488277,-0.956055][0.321681,-0.944361,-0.0685893][0.930322,0.0643026,0][1.29626,-0.338395,-0.953238][0.657099,-0.749435,-0.081043][0.929042,0.0687529,0][1.29626,-0.338395,-0.953238][0.657099,-0.749435,-0.081043][0.929042,0.0687529,0][1.38436,-0.295696,-0.625487][0.674503,-0.730363,-0.107775][0.921728,0.0685658,0][1.13638,-0.487216,-0.629879][0.392659,-0.918543,-0.0458113][0.923161,0.0635786,0][0.864059,-0.523658,-0.625601][0.101189,-0.994049,-0.0403535][0.924734,0.0581082,0][0.815411,-0.508731,-0.95123][0.0849296,-0.994914,-0.0541658][0.93182,0.0590897,0][1.07494,-0.488277,-0.956055][0.321681,-0.944361,-0.0685893][0.930322,0.0643026,0][1.07494,-0.488277,-0.956055][0.321681,-0.944361,-0.0685893][0.930322,0.0643026,0][1.13638,-0.487216,-0.629879][0.392659,-0.918543,-0.0458113][0.923161,0.0635786,0][0.864059,-0.523658,-0.625601][0.101189,-0.994049,-0.0403535][0.924734,0.0581082,0][0.536671,-0.550427,-0.619565][0.0641368,-0.99712,-0.0404765][0.926625,0.0515322,0][0.503438,-0.537542,-0.94565][0.0688939,-0.9966,-0.0451994][0.933622,0.0528231,0][0.815411,-0.508731,-0.95123][0.0849296,-0.994914,-0.0541658][0.93182,0.0590897,0][0.815411,-0.508731,-0.95123][0.0849296,-0.994914,-0.0541658][0.93182,0.0590897,0][0.864059,-0.523658,-0.625601][0.101189,-0.994049,-0.0403535][0.924734,0.0581082,0][0.536671,-0.550427,-0.619565][0.0641368,-0.99712,-0.0404765][0.926625,0.0515322,0][0.174786,-0.56693,-0.612209][0.0239745,-0.999095,-0.0351338][0.928715,0.0442636,0][0.158585,-0.553892,-0.938673][0.0244043,-0.99889,-0.0402949][0.935613,0.0458966,0][0.503438,-0.537542,-0.94565][0.0688939,-0.9966,-0.0451994][0.933622,0.0528231,0][0.503438,-0.537542,-0.94565][0.0688939,-0.9966,-0.0451994][0.933622,0.0528231,0][0.536671,-0.550427,-0.619565][0.0641368,-0.99712,-0.0404765][0.926625,0.0515322,0][0.174786,-0.56693,-0.612209][0.0239745,-0.999095,-0.0351338][0.928715,0.0442636,0][-0.198865,-0.568036,-0.603777][-0.0188797,-0.999229,-0.0344347][0.930872,0.0367593,0][-0.197482,-0.554945,-0.930639][-0.0200634,-0.999017,-0.0395225][0.937669,0.0387455,0][0.158585,-0.553892,-0.938673][0.0244043,-0.99889,-0.0402949][0.935613,0.0458966,0][0.158585,-0.553892,-0.938673][0.0244043,-0.99889,-0.0402949][0.935613,0.0458966,0][0.174786,-0.56693,-0.612209][0.0239745,-0.999095,-0.0351338][0.928715,0.0442636,0][-0.198865,-0.568036,-0.603777][-0.0188797,-0.999229,-0.0344347][0.930872,0.0367593,0][-0.560806,-0.553675,-0.594803][-0.0590237,-0.997576,-0.0368598][0.932962,0.0294908,0][-0.542389,-0.540637,-0.922053][-0.0639741,-0.996999,-0.0435976][0.939661,0.031819,0][-0.197482,-0.554945,-0.930639][-0.0200634,-0.999017,-0.0395225][0.937669,0.0387455,0][-0.197482,-0.554945,-0.930639][-0.0200634,-0.999017,-0.0395225][0.937669,0.0387455,0][-0.198865,-0.568036,-0.603777][-0.0188797,-0.999229,-0.0344347][0.930872,0.0367593,0][-0.560806,-0.553675,-0.594803][-0.0590237,-0.997576,-0.0368598][0.932962,0.0294908,0][-0.888285,-0.528844,-0.586063][-0.102194,-0.99372,-0.0455667][0.934852,0.0229147,0][-0.854463,-0.513673,-0.913552][-0.0858572,-0.995372,-0.0431622][0.941462,0.0255524,0][-0.542389,-0.540637,-0.922053][-0.0639741,-0.996999,-0.0435976][0.939661,0.031819,0][-0.542389,-0.540637,-0.922053][-0.0639741,-0.996999,-0.0435976][0.939661,0.031819,0][-0.560806,-0.553675,-0.594803][-0.0590237,-0.997576,-0.0368598][0.932962,0.0294908,0][-0.888285,-0.528844,-0.586063][-0.102194,-0.99372,-0.0455667][0.934852,0.0229147,0][-1.16073,-0.494013,-0.578049][-0.375055,-0.92441,-0.069286][0.936425,0.0174443,0][-1.11406,-0.494755,-0.906664][-0.341346,-0.936882,-0.0757334][0.942961,0.0203395,0][-0.854463,-0.513673,-0.913552][-0.0858572,-0.995372,-0.0431622][0.941462,0.0255524,0][-0.854463,-0.513673,-0.913552][-0.0858572,-0.995372,-0.0431622][0.941462,0.0255524,0][-0.888285,-0.528844,-0.586063][-0.102194,-0.99372,-0.0455667][0.934852,0.0229147,0][-1.16073,-0.494013,-0.578049][-0.375055,-0.92441,-0.069286][0.936425,0.0174443,0][-1.40939,-0.303963,-0.562451][-0.676913,-0.728302,-0.106606][0.937859,0.0124572,0][-1.33591,-0.346184,-0.893846][-0.64653,-0.758289,-0.0836479][0.944241,0.0158892,0][-1.11406,-0.494755,-0.906664][-0.341346,-0.936882,-0.0757334][0.942961,0.0203395,0][-1.11406,-0.494755,-0.906664][-0.341346,-0.936882,-0.0757334][0.942961,0.0203395,0][-1.16073,-0.494013,-0.578049][-0.375055,-0.92441,-0.069286][0.936425,0.0174443,0][-1.40939,-0.303963,-0.562451][-0.676913,-0.728302,-0.106606][0.937859,0.0124572,0][-1.49778,-0.207226,-0.555378][-0.930036,-0.359286,-0.0771085][0.891454,0.0363964,0][-1.46393,-0.204899,-0.88354][-0.860363,-0.491778,-0.133906][0.880854,0.0347116,0][-1.33591,-0.346184,-0.893846][-0.64653,-0.758289,-0.0836479][0.881391,0.0301967,0][-1.33591,-0.346184,-0.893846][-0.64653,-0.758289,-0.0836479][0.881391,0.0301967,0][-1.40939,-0.303963,-0.562451][-0.676913,-0.728302,-0.106606][0.891822,0.0333051,0][-1.49778,-0.207226,-0.555378][-0.930036,-0.359286,-0.0771085][0.891454,0.0363964,0][-1.50045,-0.166123,-0.553166][-0.459563,0.885189,0.0724012][0.891298,0.0377066,0][-1.48186,-0.157153,-0.880633][-0.596373,0.771939,-0.220113][0.880672,0.0362349,0][-1.46393,-0.204899,-0.88354][-0.860363,-0.491778,-0.133906][0.880854,0.0347116,0][-1.46393,-0.204899,-0.88354][-0.860363,-0.491778,-0.133906][0.880854,0.0347116,0][-1.49778,-0.207226,-0.555378][-0.930036,-0.359286,-0.0771085][0.891454,0.0363964,0][-1.50045,-0.166123,-0.553166][-0.459563,0.885189,0.0724012][0.891298,0.0377066,0][-1.47521,-0.187021,-0.554833][0.565515,0.819108,0.0962][0.902061,0.0113641,0][-1.41862,-0.19829,-0.884224][0.532411,0.845844,-0.0329647][0.893998,0.0132968,0][-1.48186,-0.157153,-0.880633][-0.596373,0.771939,-0.220113][0.893998,0.0113881,0][-1.48186,-0.157153,-0.880633][-0.596373,0.771939,-0.220113][0.893998,0.0113881,0][-1.50045,-0.166123,-0.553166][-0.459563,0.885189,0.0724012][0.902061,0.0106024,0][-1.47521,-0.187021,-0.554833][0.565515,0.819108,0.0962][0.902061,0.0113641,0][-1.29336,-0.290283,-0.56437][0.405656,0.912886,0.0456341][0.902061,0.0168541,0][-1.22398,-0.326486,-0.895357][0.361037,0.932389,-0.0173878][0.893998,0.0191723,0][-1.41862,-0.19829,-0.884224][0.532411,0.845844,-0.0329647][0.893998,0.0132968,0][-1.41862,-0.19829,-0.884224][0.532411,0.845844,-0.0329647][0.893998,0.0132968,0][-1.47521,-0.187021,-0.554833][0.565515,0.819108,0.0962][0.902061,0.0113641,0][-1.29336,-0.290283,-0.56437][0.405656,0.912886,0.0456341][0.902061,0.0168541,0][-1.0328,-0.372459,-0.574592][0.12365,0.992203,0.0156182][0.902061,0.0247241,0][-0.992177,-0.36324,-0.902548][0.046349,0.998885,0.00897555][0.893998,0.0261754,0][-1.22398,-0.326486,-0.895357][0.361037,0.932389,-0.0173878][0.893998,0.0191723,0][-1.22398,-0.326486,-0.895357][0.361037,0.932389,-0.0173878][0.893998,0.0191723,0][-1.29336,-0.290283,-0.56437][0.405656,0.912886,0.0456341][0.902061,0.0168541,0][-1.0328,-0.372459,-0.574592][0.12365,0.992203,0.0156182][0.902061,0.0247241,0][-0.730535,-0.356701,-0.580634][-0.0227505,0.999271,0.0306603][0.902061,0.0338596,0][-0.704132,-0.352211,-0.908514][-0.0113423,0.999925,0.00451791][0.893998,0.034881,0][-0.992177,-0.36324,-0.902548][0.046349,0.998885,0.00897555][0.893998,0.0261754,0][-0.992177,-0.36324,-0.902548][0.046349,0.998885,0.00897555][0.893998,0.0261754,0][-1.0328,-0.372459,-0.574592][0.12365,0.992203,0.0156182][0.902061,0.0247241,0][-0.730535,-0.356701,-0.580634][-0.0227505,0.999271,0.0306603][0.902061,0.0338596,0][-0.383117,-0.358712,-0.588632][0.00423766,0.999705,0.0239067][0.902061,0.0443587,0][-0.373063,-0.3552,-0.916193][0.00569072,0.999983,-0.00140587][0.893998,0.044886,0][-0.704132,-0.352211,-0.908514][-0.0113423,0.999925,0.00451791][0.893998,0.034881,0][-0.704132,-0.352211,-0.908514][-0.0113423,0.999925,0.00451791][0.893998,0.034881,0][-0.730535,-0.356701,-0.580634][-0.0227505,0.999271,0.0306603][0.902061,0.0338596,0][-0.383117,-0.358712,-0.588632][0.00423766,0.999705,0.0239067][0.902061,0.0443587,0][-0.373063,-0.3552,-0.916193][0.00569072,0.999983,-0.00140587][0.893998,0.044886,0][-0.383117,-0.358712,-0.588632][0.00423766,0.999705,0.0239067][0.902061,0.0443587,0][-0.0124098,-0.358842,-0.597061][0.000594383,0.999942,0.0107409][0.902061,0.0555618,0][-0.373063,-0.3552,-0.916193][0.00170696,0.999954,0.00948374][0.883822,0.0612891,0][-0.0124098,-0.358842,-0.597061][0.00170696,0.999954,0.00948374][0.883733,0.071319,0][-0.019801,-0.355726,-0.924244][0.00170696,0.999954,0.00948374][0.878558,0.0666454,0][0.359941,-0.369765,-0.27481][-0.00384896,0.998646,0.051875][0.907018,0.0316989,0][0.358293,-0.356518,-0.605361][-0.00789133,0.999626,0.0261712][0.898306,0.0318628,0][-0.0124098,-0.358842,-0.597061][-0.00521903,0.999691,0.0243002][0.898306,0.0214731,0][-0.0124098,-0.358842,-0.597061][-0.00521903,0.999691,0.0243002][0.898306,0.0214731,0][-0.00491668,-0.371362,-0.266604][-0.00349603,0.998712,0.0506185][0.907018,0.0214731,0][0.359941,-0.369765,-0.27481][-0.00384896,0.998646,0.051875][0.907018,0.0316989,0][0.701873,-0.367659,-0.282467][0.012276,0.998438,0.054499][0.907018,0.0412823,0][0.7057,-0.352451,-0.61304][0.0169845,0.99951,0.0263009][0.898306,0.0415997,0][0.358293,-0.356518,-0.605361][-0.00789133,0.999626,0.0261712][0.898306,0.0318628,0][0.358293,-0.356518,-0.605361][-0.00789133,0.999626,0.0261712][0.898306,0.0318628,0][0.359941,-0.369765,-0.27481][-0.00384896,0.998646,0.051875][0.907018,0.0316989,0][0.701873,-0.367659,-0.282467][0.012276,0.998438,0.054499][0.907018,0.0412823,0][0.999415,-0.377063,-0.289719][-0.0493196,0.997084,0.0582294][0.907018,0.0496209,0][1.00802,-0.36642,-0.620641][-0.126761,0.990247,0.0578153][0.898306,0.0500719,0][0.7057,-0.352451,-0.61304][0.0169845,0.99951,0.0263009][0.898306,0.0415997,0][0.7057,-0.352451,-0.61304][0.0169845,0.99951,0.0263009][0.898306,0.0415997,0][0.701873,-0.367659,-0.282467][0.012276,0.998438,0.054499][0.907018,0.0412823,0][0.999415,-0.377063,-0.289719][-0.0493196,0.997084,0.0582294][0.907018,0.0496209,0][1.24838,-0.338498,-0.293356][-0.267517,0.954976,0.128278][0.907018,0.0566004,0][1.26829,-0.282702,-0.622171][-0.392706,0.914876,0.0937174][0.898306,0.0573706,0][1.00802,-0.36642,-0.620641][-0.126761,0.990247,0.0578153][0.898306,0.0500719,0][1.00802,-0.36642,-0.620641][-0.126761,0.990247,0.0578153][0.898306,0.0500719,0][0.999415,-0.377063,-0.289719][-0.0493196,0.997084,0.0582294][0.907018,0.0496209,0][1.24838,-0.338498,-0.293356][-0.267517,0.954976,0.128278][0.907018,0.0566004,0][1.43638,-0.261265,-0.293584][-0.29051,0.930032,0.225045][0.907018,0.0618733,0][1.44976,-0.178365,-0.62083][-0.572348,0.806067,0.150579][0.898306,0.062462,0][1.26829,-0.282702,-0.622171][-0.392706,0.914876,0.0937174][0.898306,0.0573706,0][1.26829,-0.282702,-0.622171][-0.392706,0.914876,0.0937174][0.898306,0.0573706,0][1.24838,-0.338498,-0.293356][-0.267517,0.954976,0.128278][0.907018,0.0566004,0][1.43638,-0.261265,-0.293584][-0.29051,0.930032,0.225045][0.907018,0.0618733,0][1.4786,-0.251751,-0.294044][0.725592,0.638983,0.255376][0.907018,0.063057,0][1.47493,-0.157318,-0.6203][0.454452,0.881155,0.130537][0.898306,0.0631684,0][1.44976,-0.178365,-0.62083][-0.572348,0.806067,0.150579][0.898306,0.062462,0][1.44976,-0.178365,-0.62083][-0.572348,0.806067,0.150579][0.898306,0.062462,0][1.43638,-0.261265,-0.293584][-0.29051,0.930032,0.225045][0.907018,0.0618733,0][1.4786,-0.251751,-0.294044][0.725592,0.638983,0.255376][0.907018,0.063057,0][1.46916,-0.28994,-0.29583][0.860456,-0.508333,-0.0348127][0.934132,0.0568496,0][1.4724,-0.198437,-0.622395][0.926126,-0.365017,-0.0951466][0.94519,0.0580094,0][1.47493,-0.157318,-0.6203][0.454452,0.881155,0.130537][0.945344,0.0593199,0][1.47493,-0.157318,-0.6203][0.454452,0.881155,0.130537][0.945344,0.0593199,0][1.4786,-0.251751,-0.294044][0.725592,0.638983,0.255376][0.934274,0.058066,0][1.46916,-0.28994,-0.29583][0.860456,-0.508333,-0.0348127][0.934132,0.0568496,0][1.36357,-0.384582,-0.298386][0.561916,-0.820366,-0.106069][0.963161,0.0140771,0][1.38436,-0.295696,-0.625487][0.674503,-0.730363,-0.107775][0.971532,0.0142653,0][1.4724,-0.198437,-0.622395][0.926126,-0.365017,-0.0951466][0.972165,0.0181477,0][1.4724,-0.198437,-0.622395][0.926126,-0.365017,-0.0951466][0.972165,0.0181477,0][1.46916,-0.28994,-0.29583][0.860456,-0.508333,-0.0348127][0.963804,0.0182834,0][1.36357,-0.384582,-0.298386][0.561916,-0.820366,-0.106069][0.963161,0.0140771,0][1.12577,-0.506814,-0.299383][0.312408,-0.948698,-0.0487125][0.916339,0.0613844,0][1.13638,-0.487216,-0.629879][0.392659,-0.918543,-0.0458113][0.923161,0.0635786,0][1.38436,-0.295696,-0.625487][0.674503,-0.730363,-0.107775][0.921728,0.0685658,0][1.38436,-0.295696,-0.625487][0.674503,-0.730363,-0.107775][0.921728,0.0685658,0][1.36357,-0.384582,-0.298386][0.561916,-0.820366,-0.106069][0.914965,0.0661647,0][1.12577,-0.506814,-0.299383][0.312408,-0.948698,-0.0487125][0.916339,0.0613844,0][0.857734,-0.535999,-0.294822][0.094904,-0.994756,-0.0381258][0.917887,0.0560003,0][0.864059,-0.523658,-0.625601][0.101189,-0.994049,-0.0403535][0.924734,0.0581082,0][1.13638,-0.487216,-0.629879][0.392659,-0.918543,-0.0458113][0.923161,0.0635786,0][1.13638,-0.487216,-0.629879][0.392659,-0.918543,-0.0458113][0.923161,0.0635786,0][1.12577,-0.506814,-0.299383][0.312408,-0.948698,-0.0487125][0.916339,0.0613844,0][0.857734,-0.535999,-0.294822][0.094904,-0.994756,-0.0381258][0.917887,0.0560003,0][0.535508,-0.561468,-0.288835][0.0602032,-0.99762,-0.0336012][0.919748,0.0495279,0][0.536671,-0.550427,-0.619565][0.0641368,-0.99712,-0.0404765][0.926625,0.0515322,0][0.864059,-0.523658,-0.625601][0.101189,-0.994049,-0.0403535][0.924734,0.0581082,0][0.864059,-0.523658,-0.625601][0.101189,-0.994049,-0.0403535][0.924734,0.0581082,0][0.857734,-0.535999,-0.294822][0.094904,-0.994756,-0.0381258][0.917887,0.0560003,0][0.535508,-0.561468,-0.288835][0.0602032,-0.99762,-0.0336012][0.919748,0.0495279,0][0.179328,-0.57632,-0.28152][0.0222298,-0.999234,-0.0322107][0.921805,0.042374,0][0.174786,-0.56693,-0.612209][0.0239745,-0.999095,-0.0351338][0.928715,0.0442636,0][0.536671,-0.550427,-0.619565][0.0641368,-0.99712,-0.0404765][0.926625,0.0515322,0][0.536671,-0.550427,-0.619565][0.0641368,-0.99712,-0.0404765][0.926625,0.0515322,0][0.535508,-0.561468,-0.288835][0.0602032,-0.99762,-0.0336012][0.919748,0.0495279,0][0.179328,-0.57632,-0.28152][0.0222298,-0.999234,-0.0322107][0.921805,0.042374,0][-0.188431,-0.577408,-0.273222][-0.0172482,-0.999377,-0.0307946][0.923928,0.0349881,0][-0.198865,-0.568036,-0.603777][-0.0188797,-0.999229,-0.0344347][0.930872,0.0367593,0][0.174786,-0.56693,-0.612209][0.0239745,-0.999095,-0.0351338][0.928715,0.0442636,0][0.174786,-0.56693,-0.612209][0.0239745,-0.999095,-0.0351338][0.928715,0.0442636,0][0.179328,-0.57632,-0.28152][0.0222298,-0.999234,-0.0322107][0.921805,0.042374,0][-0.188431,-0.577408,-0.273222][-0.0172482,-0.999377,-0.0307946][0.923928,0.0349881,0][-0.544661,-0.564664,-0.264462][-0.0549404,-0.997996,-0.0314053][0.925985,0.0278342,0][-0.560806,-0.553675,-0.594803][-0.0590237,-0.997576,-0.0368598][0.932962,0.0294908,0][-0.198865,-0.568036,-0.603777][-0.0188797,-0.999229,-0.0344347][0.930872,0.0367593,0][-0.198865,-0.568036,-0.603777][-0.0188797,-0.999229,-0.0344347][0.930872,0.0367593,0][-0.188431,-0.577408,-0.273222][-0.0172482,-0.999377,-0.0307946][0.923928,0.0349881,0][-0.544661,-0.564664,-0.264462][-0.0549404,-0.997996,-0.0314053][0.925985,0.0278342,0][-0.866974,-0.541103,-0.255906][-0.0891069,-0.995508,-0.0320096][0.927846,0.0213618,0][-0.888285,-0.528844,-0.586063][-0.102194,-0.99372,-0.0455667][0.934852,0.0229147,0][-0.560806,-0.553675,-0.594803][-0.0590237,-0.997576,-0.0368598][0.932962,0.0294908,0][-0.560806,-0.553675,-0.594803][-0.0590237,-0.997576,-0.0368598][0.932962,0.0294908,0][-0.544661,-0.564664,-0.264462][-0.0549404,-0.997996,-0.0314053][0.925985,0.0278342,0][-0.866974,-0.541103,-0.255906][-0.0891069,-0.995508,-0.0320096][0.927846,0.0213618,0][-1.13511,-0.513505,-0.24837][-0.275435,-0.960564,-0.0380959][0.929394,0.0159777,0][-1.16073,-0.494013,-0.578049][-0.375055,-0.92441,-0.069286][0.936425,0.0174443,0][-0.888285,-0.528844,-0.586063][-0.102194,-0.99372,-0.0455667][0.934852,0.0229147,0][-0.888285,-0.528844,-0.586063][-0.102194,-0.99372,-0.0455667][0.934852,0.0229147,0][-0.866974,-0.541103,-0.255906][-0.0891069,-0.995508,-0.0320096][0.927846,0.0213618,0][-1.13511,-0.513505,-0.24837][-0.275435,-0.960564,-0.0380959][0.929394,0.0159777,0][-1.37334,-0.39268,-0.236633][-0.576519,-0.812618,-0.0853063][0.930768,0.0111974,0][-1.40939,-0.303963,-0.562451][-0.676913,-0.728302,-0.106606][0.937859,0.0124572,0][-1.16073,-0.494013,-0.578049][-0.375055,-0.92441,-0.069286][0.936425,0.0174443,0][-1.16073,-0.494013,-0.578049][-0.375055,-0.92441,-0.069286][0.936425,0.0174443,0][-1.13511,-0.513505,-0.24837][-0.275435,-0.960564,-0.0380959][0.929394,0.0159777,0][-1.37334,-0.39268,-0.236633][-0.576519,-0.812618,-0.0853063][0.930768,0.0111974,0][-1.47927,-0.298665,-0.229304][-0.863967,-0.503547,-0.00113354][0.969818,0.0265301,0][-1.49778,-0.207226,-0.555378][-0.930036,-0.359286,-0.0771085][0.961458,0.0267772,0][-1.40939,-0.303963,-0.562451][-0.676913,-0.728302,-0.106606][0.961973,0.0228686,0][-1.40939,-0.303963,-0.562451][-0.676913,-0.728302,-0.106606][0.961973,0.0228686,0][-1.37334,-0.39268,-0.236633][-0.576519,-0.812618,-0.0853063][0.970332,0.0222973,0][-1.47927,-0.298665,-0.229304][-0.863967,-0.503547,-0.00113354][0.969818,0.0265301,0][-1.48884,-0.260532,-0.22709][-0.722975,0.627543,0.288958][0.90237,0.0364728,0][-1.50045,-0.166123,-0.553166][-0.459563,0.885189,0.0724012][0.891298,0.0377066,0][-1.49778,-0.207226,-0.555378][-0.930036,-0.359286,-0.0771085][0.891454,0.0363964,0][-1.49778,-0.207226,-0.555378][-0.930036,-0.359286,-0.0771085][0.891454,0.0363964,0][-1.47927,-0.298665,-0.229304][-0.863967,-0.503547,-0.00113354][0.902515,0.0352566,0][-1.48884,-0.260532,-0.22709][-0.722975,0.627543,0.288958][0.90237,0.0364728,0][-1.44659,-0.269796,-0.228535][0.282785,0.937721,0.201774][0.910217,0.0119989,0][-1.47521,-0.187021,-0.554833][0.565515,0.819108,0.0962][0.902061,0.0113641,0][-1.50045,-0.166123,-0.553166][-0.459563,0.885189,0.0724012][0.902061,0.0106024,0][-1.50045,-0.166123,-0.553166][-0.459563,0.885189,0.0724012][0.902061,0.0106024,0][-1.48884,-0.260532,-0.22709][-0.722975,0.627543,0.288958][0.910217,0.0107224,0][-1.44659,-0.269796,-0.228535][0.282785,0.937721,0.201774][0.910217,0.0119989,0][-1.25832,-0.345915,-0.236797][0.269723,0.957336,0.103721][0.910217,0.0176845,0][-1.29336,-0.290283,-0.56437][0.405656,0.912886,0.0456341][0.902061,0.0168541,0][-1.47521,-0.187021,-0.554833][0.565515,0.819108,0.0962][0.902061,0.0113641,0][-1.47521,-0.187021,-0.554833][0.565515,0.819108,0.0962][0.902061,0.0113641,0][-1.44659,-0.269796,-0.228535][0.282785,0.937721,0.201774][0.910217,0.0119989,0][-1.25832,-0.345915,-0.236797][0.269723,0.957336,0.103721][0.910217,0.0176845,0][-1.00922,-0.383007,-0.244398][0.0771951,0.995527,0.0544772][0.910217,0.0252104,0][-1.0328,-0.372459,-0.574592][0.12365,0.992203,0.0156182][0.902061,0.0247241,0][-1.29336,-0.290283,-0.56437][0.405656,0.912886,0.0456341][0.902061,0.0168541,0][-1.29336,-0.290283,-0.56437][0.405656,0.912886,0.0456341][0.902061,0.0168541,0][-1.25832,-0.345915,-0.236797][0.269723,0.957336,0.103721][0.910217,0.0176845,0][-1.00922,-0.383007,-0.244398][0.0771951,0.995527,0.0544772][0.910217,0.0252104,0][-0.711712,-0.371842,-0.250572][-0.0199494,0.998252,0.0556297][0.910217,0.0342019,0][-0.730535,-0.356701,-0.580634][-0.0227505,0.999271,0.0306603][0.902061,0.0338596,0][-1.0328,-0.372459,-0.574592][0.12365,0.992203,0.0156182][0.902061,0.0247241,0][-1.0328,-0.372459,-0.574592][0.12365,0.992203,0.0156182][0.902061,0.0247241,0][-1.00922,-0.383007,-0.244398][0.0771951,0.995527,0.0544772][0.910217,0.0252104,0][-0.711712,-0.371842,-0.250572][-0.0199494,0.998252,0.0556297][0.910217,0.0342019,0][-0.369776,-0.371925,-0.258345][0.00165633,0.998746,0.0500285][0.910217,0.0445354,0][-0.383117,-0.358712,-0.588632][0.00423766,0.999705,0.0239067][0.902061,0.0443587,0][-0.730535,-0.356701,-0.580634][-0.0227505,0.999271,0.0306603][0.902061,0.0338596,0][-0.730535,-0.356701,-0.580634][-0.0227505,0.999271,0.0306603][0.902061,0.0338596,0][-0.711712,-0.371842,-0.250572][-0.0199494,0.998252,0.0556297][0.910217,0.0342019,0][-0.369776,-0.371925,-0.258345][0.00165633,0.998746,0.0500285][0.910217,0.0445354,0][-0.383117,-0.358712,-0.588632][0.00423766,0.999705,0.0239067][0.902061,0.0443587,0][-0.369776,-0.371925,-0.258345][0.00165633,0.998746,0.0500285][0.910217,0.0445354,0][-0.00491668,-0.371362,-0.266604][-0.000635564,0.9992,0.039997][0.910217,0.0555618,0][-0.383117,-0.358712,-0.588632][0.00121012,0.999283,0.0378327][0.965693,0.0180059,0][-0.00491668,-0.371362,-0.266604][0.00121012,0.999283,0.0378327][0.954898,0.0180482,0][-0.0124098,-0.358842,-0.597061][0.00121012,0.999283,0.0378327][0.95966,0.0128884,0][0.343803,-0.404884,0.281128][-0.0129088,0.989936,0.140924][0.921675,0.0308926,0][0.359941,-0.369765,-0.27481][-0.00384896,0.998646,0.051875][0.907018,0.0316989,0][-0.00491668,-0.371362,-0.266604][-0.00349603,0.998712,0.0506185][0.907018,0.0214731,0][-0.00491668,-0.371362,-0.266604][-0.00349603,0.998712,0.0506185][0.907018,0.0214731,0][0.007717,-0.406867,0.28866][-0.0162327,0.986248,0.164474][0.921675,0.0214731,0][0.343803,-0.404884,0.281128][-0.0129088,0.989936,0.140924][0.921675,0.0308926,0][0.658774,-0.404875,0.273974][0.00489378,0.99364,0.112497][0.921675,0.0397202,0][0.701873,-0.367659,-0.282467][0.012276,0.998438,0.054499][0.907018,0.0412823,0][0.359941,-0.369765,-0.27481][-0.00384896,0.998646,0.051875][0.907018,0.0316989,0][0.359941,-0.369765,-0.27481][-0.00384896,0.998646,0.051875][0.907018,0.0316989,0][0.343803,-0.404884,0.281128][-0.0129088,0.989936,0.140924][0.921675,0.0308926,0][0.658774,-0.404875,0.273974][0.00489378,0.99364,0.112497][0.921675,0.0397202,0][0.932844,-0.408609,0.267551][0.0300798,0.993625,0.108646][0.921675,0.0474013,0][0.999415,-0.377063,-0.289719][-0.0493196,0.997084,0.0582294][0.907018,0.0496209,0][0.701873,-0.367659,-0.282467][0.012276,0.998438,0.054499][0.907018,0.0412823,0][0.701873,-0.367659,-0.282467][0.012276,0.998438,0.054499][0.907018,0.0412823,0][0.658774,-0.404875,0.273974][0.00489378,0.99364,0.112497][0.921675,0.0397202,0][0.932844,-0.408609,0.267551][0.0300798,0.993625,0.108646][0.921675,0.0474013,0][1.14879,-0.416218,0.262247][0.066034,0.987464,0.143368][0.921675,0.0534532,0][1.24838,-0.338498,-0.293356][-0.267517,0.954976,0.128278][0.907018,0.0566004,0][0.999415,-0.377063,-0.289719][-0.0493196,0.997084,0.0582294][0.907018,0.0496209,0][0.999415,-0.377063,-0.289719][-0.0493196,0.997084,0.0582294][0.907018,0.0496209,0][0.932844,-0.408609,0.267551][0.0300798,0.993625,0.108646][0.921675,0.0474013,0][1.14879,-0.416218,0.262247][0.066034,0.987464,0.143368][0.921675,0.0534532,0][1.29186,-0.432444,0.258147][0.201237,0.95115,0.234131][0.921675,0.0574621,0][1.43638,-0.261265,-0.293584][-0.29051,0.930032,0.225045][0.907018,0.0618733,0][1.24838,-0.338498,-0.293356][-0.267517,0.954976,0.128278][0.907018,0.0566004,0][1.24838,-0.338498,-0.293356][-0.267517,0.954976,0.128278][0.907018,0.0566004,0][1.14879,-0.416218,0.262247][0.066034,0.987464,0.143368][0.921675,0.0534532,0][1.29186,-0.432444,0.258147][0.201237,0.95115,0.234131][0.921675,0.0574621,0][1.35474,-0.454961,0.25554][0.951105,0.185123,0.247242][0.921675,0.0592232,0][1.4786,-0.251751,-0.294044][0.725592,0.638983,0.255376][0.907018,0.063057,0][1.43638,-0.261265,-0.293584][-0.29051,0.930032,0.225045][0.907018,0.0618733,0][1.43638,-0.261265,-0.293584][-0.29051,0.930032,0.225045][0.907018,0.0618733,0][1.29186,-0.432444,0.258147][0.201237,0.95115,0.234131][0.921675,0.0574621,0][1.35474,-0.454961,0.25554][0.951105,0.185123,0.247242][0.921675,0.0592232,0][1.33368,-0.481043,0.254653][0.535968,-0.839429,-0.0899869][0.915387,0.0537264,0][1.46916,-0.28994,-0.29583][0.860456,-0.508333,-0.0348127][0.934132,0.0568496,0][1.4786,-0.251751,-0.294044][0.725592,0.638983,0.255376][0.934274,0.058066,0][1.4786,-0.251751,-0.294044][0.725592,0.638983,0.255376][0.934274,0.058066,0][1.35474,-0.454961,0.25554][0.951105,0.185123,0.247242][0.915484,0.0545558,0][1.33368,-0.481043,0.254653][0.535968,-0.839429,-0.0899869][0.915387,0.0537264,0][1.2303,-0.507935,0.255594][0.210248,-0.966592,-0.146612][0.904153,0.0601515,0][1.36357,-0.384582,-0.298386][0.561916,-0.820366,-0.106069][0.914965,0.0661647,0][1.46916,-0.28994,-0.29583][0.860456,-0.508333,-0.0348127][0.914354,0.0682887,0][1.46916,-0.28994,-0.29583][0.860456,-0.508333,-0.0348127][0.914354,0.0682887,0][1.33368,-0.481043,0.254653][0.535968,-0.839429,-0.0899869][0.903556,0.0622286,0][1.2303,-0.507935,0.255594][0.210248,-0.966592,-0.146612][0.904153,0.0601515,0][1.04925,-0.535604,0.258259][0.149005,-0.984846,-0.0887425][0.905199,0.0565143,0][1.12577,-0.506814,-0.299383][0.312408,-0.948698,-0.0487125][0.916339,0.0613844,0][1.36357,-0.384582,-0.298386][0.561916,-0.820366,-0.106069][0.914965,0.0661647,0][1.36357,-0.384582,-0.298386][0.561916,-0.820366,-0.106069][0.914965,0.0661647,0][1.2303,-0.507935,0.255594][0.210248,-0.966592,-0.146612][0.904153,0.0601515,0][1.04925,-0.535604,0.258259][0.149005,-0.984846,-0.0887425][0.905199,0.0565143,0][0.802348,-0.562151,0.262478][0.092576,-0.992231,-0.0831045][0.906625,0.0515547,0][0.857734,-0.535999,-0.294822][0.094904,-0.994756,-0.0381258][0.917887,0.0560003,0][1.12577,-0.506814,-0.299383][0.312408,-0.948698,-0.0487125][0.916339,0.0613844,0][1.12577,-0.506814,-0.299383][0.312408,-0.948698,-0.0487125][0.916339,0.0613844,0][1.04925,-0.535604,0.258259][0.149005,-0.984846,-0.0887425][0.905199,0.0565143,0][0.802348,-0.562151,0.262478][0.092576,-0.992231,-0.0831045][0.906625,0.0515547,0][0.505526,-0.58193,0.268185][0.0657219,-0.99104,-0.116273][0.908339,0.0455928,0][0.535508,-0.561468,-0.288835][0.0602032,-0.99762,-0.0336012][0.919748,0.0495279,0][0.857734,-0.535999,-0.294822][0.094904,-0.994756,-0.0381258][0.917887,0.0560003,0][0.857734,-0.535999,-0.294822][0.094904,-0.994756,-0.0381258][0.917887,0.0560003,0][0.802348,-0.562151,0.262478][0.092576,-0.992231,-0.0831045][0.906625,0.0515547,0][0.505526,-0.58193,0.268185][0.0657219,-0.99104,-0.116273][0.908339,0.0455928,0][0.177433,-0.595706,0.274917][0.0191218,-0.989153,-0.145637][0.910233,0.039003,0][0.179328,-0.57632,-0.28152][0.0222298,-0.999234,-0.0322107][0.921805,0.042374,0][0.535508,-0.561468,-0.288835][0.0602032,-0.99762,-0.0336012][0.919748,0.0495279,0][0.535508,-0.561468,-0.288835][0.0602032,-0.99762,-0.0336012][0.919748,0.0495279,0][0.505526,-0.58193,0.268185][0.0657219,-0.99104,-0.116273][0.908339,0.0455928,0][0.177433,-0.595706,0.274917][0.0191218,-0.989153,-0.145637][0.910233,0.039003,0][-0.161326,-0.596709,0.282562][-0.0332949,-0.991432,-0.126308][0.912189,0.0321995,0][-0.188431,-0.577408,-0.273222][-0.0172482,-0.999377,-0.0307946][0.923928,0.0349881,0][0.179328,-0.57632,-0.28152][0.0222298,-0.999234,-0.0322107][0.921805,0.042374,0][0.179328,-0.57632,-0.28152][0.0222298,-0.999234,-0.0322107][0.921805,0.042374,0][0.177433,-0.595706,0.274917][0.0191218,-0.989153,-0.145637][0.910233,0.039003,0][-0.161326,-0.596709,0.282562][-0.0332949,-0.991432,-0.126308][0.912189,0.0321995,0][-0.489465,-0.584874,0.290636][-0.0584403,-0.994574,-0.0860694][0.914084,0.0256097,0][-0.544661,-0.564664,-0.264462][-0.0549404,-0.997996,-0.0314053][0.925985,0.0278342,0][-0.188431,-0.577408,-0.273222][-0.0172482,-0.999377,-0.0307946][0.923928,0.0349881,0][-0.188431,-0.577408,-0.273222][-0.0172482,-0.999377,-0.0307946][0.923928,0.0349881,0][-0.161326,-0.596709,0.282562][-0.0332949,-0.991432,-0.126308][0.912189,0.0321995,0][-0.489465,-0.584874,0.290636][-0.0584403,-0.994574,-0.0860694][0.914084,0.0256097,0][-0.786355,-0.566853,0.298324][-0.084699,-0.994066,-0.0682583][0.915798,0.0196477,0][-0.866974,-0.541103,-0.255906][-0.0891069,-0.995508,-0.0320096][0.927846,0.0213618,0][-0.544661,-0.564664,-0.264462][-0.0549404,-0.997996,-0.0314053][0.925985,0.0278342,0][-0.544661,-0.564664,-0.264462][-0.0549404,-0.997996,-0.0314053][0.925985,0.0278342,0][-0.489465,-0.584874,0.290636][-0.0584403,-0.994574,-0.0860694][0.914084,0.0256097,0][-0.786355,-0.566853,0.298324][-0.084699,-0.994066,-0.0682583][0.915798,0.0196477,0][-1.03334,-0.541766,0.305248][-0.122692,-0.990311,-0.0650522][0.917224,0.0146882,0][-1.13511,-0.513505,-0.24837][-0.275435,-0.960564,-0.0380959][0.929394,0.0159777,0][-0.866974,-0.541103,-0.255906][-0.0891069,-0.995508,-0.0320096][0.927846,0.0213618,0][-0.866974,-0.541103,-0.255906][-0.0891069,-0.995508,-0.0320096][0.927846,0.0213618,0][-0.786355,-0.566853,0.298324][-0.084699,-0.994066,-0.0682583][0.915798,0.0196477,0][-1.03334,-0.541766,0.305248][-0.122692,-0.990311,-0.0650522][0.917224,0.0146882,0][-1.2145,-0.51517,0.310757][-0.219369,-0.97185,-0.0859303][0.91827,0.0110509,0][-1.37334,-0.39268,-0.236633][-0.576519,-0.812618,-0.0853063][0.930768,0.0111974,0][-1.13511,-0.513505,-0.24837][-0.275435,-0.960564,-0.0380959][0.929394,0.0159777,0][-1.13511,-0.513505,-0.24837][-0.275435,-0.960564,-0.0380959][0.929394,0.0159777,0][-1.03334,-0.541766,0.305248][-0.122692,-0.990311,-0.0650522][0.917224,0.0146882,0][-1.2145,-0.51517,0.310757][-0.219369,-0.97185,-0.0859303][0.91827,0.0110509,0][-1.31796,-0.48889,0.314483][-0.544586,-0.838348,-0.0244604][0.918867,0.00897388,0][-1.47927,-0.298665,-0.229304][-0.863967,-0.503547,-0.00113354][0.931379,0.00907343,0][-1.37334,-0.39268,-0.236633][-0.576519,-0.812618,-0.0853063][0.930768,0.0111974,0][-1.37334,-0.39268,-0.236633][-0.576519,-0.812618,-0.0853063][0.930768,0.0111974,0][-1.2145,-0.51517,0.310757][-0.219369,-0.97185,-0.0859303][0.91827,0.0110509,0][-1.31796,-0.48889,0.314483][-0.544586,-0.838348,-0.0244604][0.918867,0.00897388,0][-1.33912,-0.462933,0.316322][-0.932948,0.171046,0.316782][0.921167,0.0329964,0][-1.48884,-0.260532,-0.22709][-0.722975,0.627543,0.288958][0.90237,0.0364728,0][-1.47927,-0.298665,-0.229304][-0.863967,-0.503547,-0.00113354][0.902515,0.0352566,0][-1.47927,-0.298665,-0.229304][-0.863967,-0.503547,-0.00113354][0.902515,0.0352566,0][-1.31796,-0.48889,0.314483][-0.544586,-0.838348,-0.0244604][0.921265,0.0321672,0][-1.33912,-0.462933,0.316322][-0.932948,0.171046,0.316782][0.921167,0.0329964,0][-1.27632,-0.440045,0.316094][-0.215113,0.932054,0.291551][0.923941,0.0167554,0][-1.44659,-0.269796,-0.228535][0.282785,0.937721,0.201774][0.910217,0.0119989,0][-1.48884,-0.260532,-0.22709][-0.722975,0.627543,0.288958][0.910217,0.0107224,0][-1.48884,-0.260532,-0.22709][-0.722975,0.627543,0.288958][0.910217,0.0107224,0][-1.33912,-0.462933,0.316322][-0.932948,0.171046,0.316782][0.923941,0.0148564,0][-1.27632,-0.440045,0.316094][-0.215113,0.932054,0.291551][0.923941,0.0167554,0][-1.13331,-0.422972,0.313739][-0.0525262,0.981193,0.185747][0.923941,0.0210782,0][-1.25832,-0.345915,-0.236797][0.269723,0.957336,0.103721][0.910217,0.0176845,0][-1.44659,-0.269796,-0.228535][0.282785,0.937721,0.201774][0.910217,0.0119989,0][-1.44659,-0.269796,-0.228535][0.282785,0.937721,0.201774][0.910217,0.0119989,0][-1.27632,-0.440045,0.316094][-0.215113,0.932054,0.291551][0.923941,0.0167554,0][-1.13331,-0.422972,0.313739][-0.0525262,0.981193,0.185747][0.923941,0.0210782,0][-0.917393,-0.414084,0.309299][-0.012241,0.992578,0.120992][0.923941,0.0276039,0][-1.00922,-0.383007,-0.244398][0.0771951,0.995527,0.0544772][0.910217,0.0252104,0][-1.25832,-0.345915,-0.236797][0.269723,0.957336,0.103721][0.910217,0.0176845,0][-1.25832,-0.345915,-0.236797][0.269723,0.957336,0.103721][0.910217,0.0176845,0][-1.13331,-0.422972,0.313739][-0.0525262,0.981193,0.185747][0.923941,0.0210782,0][-0.917393,-0.414084,0.309299][-0.012241,0.992578,0.120992][0.923941,0.0276039,0][-0.64334,-0.408729,0.303354][0.00131651,0.991307,0.131564][0.923941,0.0358863,0][-0.711712,-0.371842,-0.250572][-0.0199494,0.998252,0.0556297][0.910217,0.0342019,0][-1.00922,-0.383007,-0.244398][0.0771951,0.995527,0.0544772][0.910217,0.0252104,0][-1.00922,-0.383007,-0.244398][0.0771951,0.995527,0.0544772][0.910217,0.0252104,0][-0.917393,-0.414084,0.309299][-0.012241,0.992578,0.120992][0.923941,0.0276039,0][-0.64334,-0.408729,0.303354][0.00131651,0.991307,0.131564][0.923941,0.0358863,0][-0.328372,-0.406874,0.296295][0.0085817,0.990551,0.136877][0.923941,0.0454049,0][-0.369776,-0.371925,-0.258345][0.00165633,0.998746,0.0500285][0.910217,0.0445354,0][-0.711712,-0.371842,-0.250572][-0.0199494,0.998252,0.0556297][0.910217,0.0342019,0][-0.711712,-0.371842,-0.250572][-0.0199494,0.998252,0.0556297][0.910217,0.0342019,0][-0.64334,-0.408729,0.303354][0.00131651,0.991307,0.131564][0.923941,0.0358863,0][-0.328372,-0.406874,0.296295][0.0085817,0.990551,0.136877][0.923941,0.0454049,0][-0.369776,-0.371925,-0.258345][0.00165633,0.998746,0.0500285][0.910217,0.0445354,0][-0.328372,-0.406874,0.296295][0.0085817,0.990551,0.136877][0.923941,0.0454049,0][0.007717,-0.406867,0.28866][0.00140677,0.998026,0.0627829][0.923941,0.0555618,0][-0.369776,-0.371925,-0.258345][-9.44803e-005,0.997962,0.0638148][0.876955,0.0597285,0][0.007717,-0.406867,0.28866][-9.44803e-005,0.997962,0.0638148][0.869027,0.071319,0][-0.00491668,-0.371362,-0.266604][-9.44803e-005,0.997962,0.0638148][0.869027,0.0597285,0][0.311506,-0.602142,1.0361][-0.171694,0.929658,0.325971][0.941779,0.0294943,0][0.343803,-0.404884,0.281128][-0.0129088,0.989936,0.140924][0.921675,0.0308926,0][0.007717,-0.406867,0.28866][-0.0162327,0.986248,0.164474][0.921675,0.0214731,0][0.007717,-0.406867,0.28866][-0.0162327,0.986248,0.164474][0.921675,0.0214731,0][0.025375,-0.64074,1.04057][-0.118224,0.927727,0.354042][0.941779,0.0214731,0][0.311506,-0.602142,1.0361][-0.171694,0.929658,0.325971][0.941779,0.0294943,0][0.579603,-0.535445,1.0335][-0.132226,0.950108,0.28251][0.941779,0.0370116,0][0.658774,-0.404875,0.273974][0.00489378,0.99364,0.112497][0.921675,0.0397202,0][0.343803,-0.404884,0.281128][-0.0129088,0.989936,0.140924][0.921675,0.0308926,0][0.343803,-0.404884,0.281128][-0.0129088,0.989936,0.140924][0.921675,0.0308926,0][0.311506,-0.602142,1.0361][-0.171694,0.929658,0.325971][0.941779,0.0294943,0][0.579603,-0.535445,1.0335][-0.132226,0.950108,0.28251][0.941779,0.0370116,0][0.812956,-0.519362,1.02904][0.0131216,0.963269,0.268219][0.941779,0.0435524,0][0.932844,-0.408609,0.267551][0.0300798,0.993625,0.108646][0.921675,0.0474013,0][0.658774,-0.404875,0.273974][0.00489378,0.99364,0.112497][0.921675,0.0397202,0][0.658774,-0.404875,0.273974][0.00489378,0.99364,0.112497][0.921675,0.0397202,0][0.579603,-0.535445,1.0335][-0.132226,0.950108,0.28251][0.941779,0.0370116,0][0.812956,-0.519362,1.02904][0.0131216,0.963269,0.268219][0.941779,0.0435524,0][0.996862,-0.533704,1.02411][0.133195,0.953181,0.271486][0.941779,0.048706,0][1.14879,-0.416218,0.262247][0.066034,0.987464,0.143368][0.921675,0.0534532,0][0.932844,-0.408609,0.267551][0.0300798,0.993625,0.108646][0.921675,0.0474013,0][0.932844,-0.408609,0.267551][0.0300798,0.993625,0.108646][0.921675,0.0474013,0][0.812956,-0.519362,1.02904][0.0131216,0.963269,0.268219][0.941779,0.0435524,0][0.996862,-0.533704,1.02411][0.133195,0.953181,0.271486][0.941779,0.048706,0][1.11973,-0.558427,1.02002][0.283101,0.913621,0.291806][0.941779,0.0521484,0][1.29186,-0.432444,0.258147][0.201237,0.95115,0.234131][0.921675,0.0574621,0][1.14879,-0.416218,0.262247][0.066034,0.987464,0.143368][0.921675,0.0534532,0][1.14879,-0.416218,0.262247][0.066034,0.987464,0.143368][0.921675,0.0534532,0][0.996862,-0.533704,1.02411][0.133195,0.953181,0.271486][0.941779,0.048706,0][1.11973,-0.558427,1.02002][0.283101,0.913621,0.291806][0.941779,0.0521484,0][1.17383,-0.580711,1.01763][0.92481,0.208029,0.318511][0.941779,0.0536634,0][1.35474,-0.454961,0.25554][0.951105,0.185123,0.247242][0.921675,0.0592232,0][1.29186,-0.432444,0.258147][0.201237,0.95115,0.234131][0.921675,0.0574621,0][1.29186,-0.432444,0.258147][0.201237,0.95115,0.234131][0.921675,0.0574621,0][1.11973,-0.558427,1.02002][0.283101,0.913621,0.291806][0.941779,0.0521484,0][1.17383,-0.580711,1.01763][0.92481,0.208029,0.318511][0.941779,0.0536634,0][1.15575,-0.60211,1.01692][0.523123,-0.851848,-0.0264034][0.890203,0.0539381,0][1.33368,-0.481043,0.254653][0.535968,-0.839429,-0.0899869][0.915387,0.0537264,0][1.35474,-0.454961,0.25554][0.951105,0.185123,0.247242][0.915484,0.0545558,0][1.35474,-0.454961,0.25554][0.951105,0.185123,0.247242][0.915484,0.0545558,0][1.17383,-0.580711,1.01763][0.92481,0.208029,0.318511][0.890283,0.0546186,0][1.15575,-0.60211,1.01692][0.523123,-0.851848,-0.0264034][0.890203,0.0539381,0][1.06664,-0.618777,1.01807][0.131018,-0.971225,-0.19889][0.889212,0.0522899,0][1.2303,-0.507935,0.255594][0.210248,-0.966592,-0.146612][0.904153,0.0601515,0][1.33368,-0.481043,0.254653][0.535968,-0.839429,-0.0899869][0.903556,0.0622286,0][1.33368,-0.481043,0.254653][0.535968,-0.839429,-0.0899869][0.903556,0.0622286,0][1.15575,-0.60211,1.01692][0.523123,-0.851848,-0.0264034][0.888698,0.0540803,0][1.06664,-0.618777,1.01807][0.131018,-0.971225,-0.19889][0.889212,0.0522899,0][0.912084,-0.62975,1.02101][0.0969436,-0.970899,-0.218992][0.890105,0.0491856,0][1.04925,-0.535604,0.258259][0.149005,-0.984846,-0.0887425][0.905199,0.0565143,0][1.2303,-0.507935,0.255594][0.210248,-0.966592,-0.146612][0.904153,0.0601515,0][1.2303,-0.507935,0.255594][0.210248,-0.966592,-0.146612][0.904153,0.0601515,0][1.06664,-0.618777,1.01807][0.131018,-0.971225,-0.19889][0.889212,0.0522899,0][0.912084,-0.62975,1.02101][0.0969436,-0.970899,-0.218992][0.890105,0.0491856,0][0.701844,-0.656736,1.02437][0.169622,-0.961867,-0.214571][0.891319,0.0449622,0][0.802348,-0.562151,0.262478][0.092576,-0.992231,-0.0831045][0.906625,0.0515547,0][1.04925,-0.535604,0.258259][0.149005,-0.984846,-0.0887425][0.905199,0.0565143,0][1.04925,-0.535604,0.258259][0.149005,-0.984846,-0.0887425][0.905199,0.0565143,0][0.912084,-0.62975,1.02101][0.0969436,-0.970899,-0.218992][0.890105,0.0491856,0][0.701844,-0.656736,1.02437][0.169622,-0.961867,-0.214571][0.891319,0.0449622,0][0.449151,-0.713005,1.02716][0.230602,-0.943349,-0.238568][0.892779,0.0398852,0][0.505526,-0.58193,0.268185][0.0657219,-0.99104,-0.116273][0.908339,0.0455928,0][0.802348,-0.562151,0.262478][0.092576,-0.992231,-0.0831045][0.906625,0.0515547,0][0.802348,-0.562151,0.262478][0.092576,-0.992231,-0.0831045][0.906625,0.0515547,0][0.701844,-0.656736,1.02437][0.169622,-0.961867,-0.214571][0.891319,0.0449622,0][0.449151,-0.713005,1.02716][0.230602,-0.943349,-0.238568][0.892779,0.0398852,0][0.169885,-0.79441,1.02925][0.120052,-0.950248,-0.287431][0.894392,0.0342737,0][0.177433,-0.595706,0.274917][0.0191218,-0.989153,-0.145637][0.910233,0.039003,0][0.505526,-0.58193,0.268185][0.0657219,-0.99104,-0.116273][0.908339,0.0455928,0][0.505526,-0.58193,0.268185][0.0657219,-0.99104,-0.116273][0.908339,0.0455928,0][0.449151,-0.713005,1.02716][0.230602,-0.943349,-0.238568][0.892779,0.0398852,0][0.169885,-0.79441,1.02925][0.120052,-0.950248,-0.287431][0.894392,0.0342737,0][-0.118588,-0.795263,1.03576][-0.14164,-0.944293,-0.297068][0.896058,0.0284801,0][-0.161326,-0.596709,0.282562][-0.0332949,-0.991432,-0.126308][0.912189,0.0321995,0][0.177433,-0.595706,0.274917][0.0191218,-0.989153,-0.145637][0.910233,0.039003,0][0.177433,-0.595706,0.274917][0.0191218,-0.989153,-0.145637][0.910233,0.039003,0][0.169885,-0.79441,1.02925][0.120052,-0.950248,-0.287431][0.894392,0.0342737,0][-0.118588,-0.795263,1.03576][-0.14164,-0.944293,-0.297068][0.896058,0.0284801,0][-0.398141,-0.715512,1.04628][-0.23497,-0.940368,-0.245963][0.897671,0.0228685,0][-0.489465,-0.584874,0.290636][-0.0584403,-0.994574,-0.0860694][0.914084,0.0256097,0][-0.161326,-0.596709,0.282562][-0.0332949,-0.991432,-0.126308][0.912189,0.0321995,0][-0.161326,-0.596709,0.282562][-0.0332949,-0.991432,-0.126308][0.912189,0.0321995,0][-0.118588,-0.795263,1.03576][-0.14164,-0.944293,-0.297068][0.896058,0.0284801,0][-0.398141,-0.715512,1.04628][-0.23497,-0.940368,-0.245963][0.897671,0.0228685,0][-0.651031,-0.66074,1.05489][-0.161297,-0.964038,-0.211218][0.899131,0.0177915,0][-0.786355,-0.566853,0.298324][-0.084699,-0.994066,-0.0682583][0.915798,0.0196477,0][-0.489465,-0.584874,0.290636][-0.0584403,-0.994574,-0.0860694][0.914084,0.0256097,0][-0.489465,-0.584874,0.290636][-0.0584403,-0.994574,-0.0860694][0.914084,0.0256097,0][-0.398141,-0.715512,1.04628][-0.23497,-0.940368,-0.245963][0.897671,0.0228685,0][-0.651031,-0.66074,1.05489][-0.161297,-0.964038,-0.211218][0.899131,0.0177915,0][-0.861364,-0.634998,1.06102][-0.100796,-0.974899,-0.198526][0.900345,0.0135682,0][-1.03334,-0.541766,0.305248][-0.122692,-0.990311,-0.0650522][0.917224,0.0146882,0][-0.786355,-0.566853,0.298324][-0.084699,-0.994066,-0.0682583][0.915798,0.0196477,0][-0.786355,-0.566853,0.298324][-0.084699,-0.994066,-0.0682583][0.915798,0.0196477,0][-0.651031,-0.66074,1.05489][-0.161297,-0.964038,-0.211218][0.899131,0.0177915,0][-0.861364,-0.634998,1.06102][-0.100796,-0.974899,-0.198526][0.900345,0.0135682,0][-1.01595,-0.62494,1.06506][-0.136889,-0.976756,-0.164953][0.901237,0.0104638,0][-1.2145,-0.51517,0.310757][-0.219369,-0.97185,-0.0859303][0.91827,0.0110509,0][-1.03334,-0.541766,0.305248][-0.122692,-0.990311,-0.0650522][0.917224,0.0146882,0][-1.03334,-0.541766,0.305248][-0.122692,-0.990311,-0.0650522][0.917224,0.0146882,0][-0.861364,-0.634998,1.06102][-0.100796,-0.974899,-0.198526][0.900345,0.0135682,0][-1.01595,-0.62494,1.06506][-0.136889,-0.976756,-0.164953][0.901237,0.0104638,0][-1.10513,-0.608801,1.06793][-0.514745,-0.857297,0.00897735][0.901752,0.00867348,0][-1.31796,-0.48889,0.314483][-0.544586,-0.838348,-0.0244604][0.918867,0.00897388,0][-1.2145,-0.51517,0.310757][-0.219369,-0.97185,-0.0859303][0.91827,0.0110509,0][-1.2145,-0.51517,0.310757][-0.219369,-0.97185,-0.0859303][0.91827,0.0110509,0][-1.01595,-0.62494,1.06506][-0.136889,-0.976756,-0.164953][0.901237,0.0104638,0][-1.10513,-0.608801,1.06793][-0.514745,-0.857297,0.00897735][0.901752,0.00867348,0][-1.12328,-0.587509,1.06946][-0.906044,0.201275,0.372255][0.946368,0.0331047,0][-1.33912,-0.462933,0.316322][-0.932948,0.171046,0.316782][0.921167,0.0329964,0][-1.31796,-0.48889,0.314483][-0.544586,-0.838348,-0.0244604][0.921265,0.0321672,0][-1.31796,-0.48889,0.314483][-0.544586,-0.838348,-0.0244604][0.921265,0.0321672,0][-1.10513,-0.608801,1.06793][-0.514745,-0.857297,0.00897735][0.946449,0.0324244,0][-1.12328,-0.587509,1.06946][-0.906044,0.201275,0.372255][0.946368,0.0331047,0][-1.06926,-0.564904,1.06941][-0.272992,0.90581,0.324012][0.942764,0.0224851,0][-1.27632,-0.440045,0.316094][-0.215113,0.932054,0.291551][0.923941,0.0167554,0][-1.33912,-0.462933,0.316322][-0.932948,0.171046,0.316782][0.923941,0.0148564,0][-1.33912,-0.462933,0.316322][-0.932948,0.171046,0.316782][0.923941,0.0148564,0][-1.12328,-0.587509,1.06946][-0.906044,0.201275,0.372255][0.942764,0.0208515,0][-1.06926,-0.564904,1.06941][-0.272992,0.90581,0.324012][0.942764,0.0224851,0][-0.946482,-0.539455,1.06796][-0.128058,0.945577,0.299141][0.942764,0.026197,0][-1.13331,-0.422972,0.313739][-0.0525262,0.981193,0.185747][0.923941,0.0210782,0][-1.27632,-0.440045,0.316094][-0.215113,0.932054,0.291551][0.923941,0.0167554,0][-1.27632,-0.440045,0.316094][-0.215113,0.932054,0.291551][0.923941,0.0167554,0][-1.06926,-0.564904,1.06941][-0.272992,0.90581,0.324012][0.942764,0.0224851,0][-0.946482,-0.539455,1.06796][-0.128058,0.945577,0.299141][0.942764,0.026197,0][-0.762629,-0.524025,1.06459][0.00045877,0.961821,0.273678][0.942764,0.031754,0][-0.917393,-0.414084,0.309299][-0.012241,0.992578,0.120992][0.923941,0.0276039,0][-1.13331,-0.422972,0.313739][-0.0525262,0.981193,0.185747][0.923941,0.0210782,0][-1.13331,-0.422972,0.313739][-0.0525262,0.981193,0.185747][0.923941,0.0210782,0][-0.946482,-0.539455,1.06796][-0.128058,0.945577,0.299141][0.942764,0.026197,0][-0.762629,-0.524025,1.06459][0.00045877,0.961821,0.273678][0.942764,0.031754,0][-0.529223,-0.538726,1.05852][0.150399,0.953354,0.261719][0.942764,0.0388069,0][-0.64334,-0.408729,0.303354][0.00131651,0.991307,0.131564][0.923941,0.0358863,0][-0.917393,-0.414084,0.309299][-0.012241,0.992578,0.120992][0.923941,0.0276039,0][-0.917393,-0.414084,0.309299][-0.012241,0.992578,0.120992][0.923941,0.0276039,0][-0.762629,-0.524025,1.06459][0.00045877,0.961821,0.273678][0.942764,0.031754,0][-0.529223,-0.538726,1.05852][0.150399,0.953354,0.261719][0.942764,0.0388069,0][-0.26089,-0.603836,1.04901][0.178569,0.944043,0.277302][0.942764,0.0469126,0][-0.328372,-0.406874,0.296295][0.0085817,0.990551,0.136877][0.923941,0.0454049,0][-0.64334,-0.408729,0.303354][0.00131651,0.991307,0.131564][0.923941,0.0358863,0][-0.64334,-0.408729,0.303354][0.00131651,0.991307,0.131564][0.923941,0.0358863,0][-0.529223,-0.538726,1.05852][0.150399,0.953354,0.261719][0.942764,0.0388069,0][-0.26089,-0.603836,1.04901][0.178569,0.944043,0.277302][0.942764,0.0469126,0][-0.328372,-0.406874,0.296295][0.0085817,0.990551,0.136877][0.923941,0.0454049,0][-0.26089,-0.603836,1.04901][0.178569,0.944043,0.277302][0.942764,0.0469126,0][0.025375,-0.64074,1.04057][0.131074,0.961896,0.239947][0.942764,0.0555618,0][-0.328372,-0.406874,0.296295][0.00672526,0.9549,0.29685][0.887512,0.0197622,0][0.025375,-0.64074,1.04057][0.00672526,0.9549,0.29685][0.859407,0.0195101,0][0.007717,-0.406867,0.28866][0.00672526,0.9549,0.29685][0.883269,0.00981954,0][0.258957,-0.897596,1.67801][-0.204181,0.872949,0.443024][0.959034,0.0275921,0][0.311506,-0.602142,1.0361][-0.171694,0.929658,0.325971][0.941779,0.0294943,0][0.025375,-0.64074,1.04057][-0.118224,0.927727,0.354042][0.941779,0.0214731,0][0.025375,-0.64074,1.04057][-0.118224,0.927727,0.354042][0.941779,0.0214731,0][0.0406762,-0.923721,1.6816][-0.094423,0.887039,0.451935][0.959034,0.0214731,0][0.258957,-0.897596,1.67801][-0.204181,0.872949,0.443024][0.959034,0.0275921,0][0.463432,-0.822648,1.67729][-0.23315,0.869877,0.434689][0.959034,0.0333266,0][0.579603,-0.535445,1.0335][-0.132226,0.950108,0.28251][0.941779,0.0370116,0][0.311506,-0.602142,1.0361][-0.171694,0.929658,0.325971][0.941779,0.0294943,0][0.311506,-0.602142,1.0361][-0.171694,0.929658,0.325971][0.941779,0.0294943,0][0.258957,-0.897596,1.67801][-0.204181,0.872949,0.443024][0.959034,0.0275921,0][0.463432,-0.822648,1.67729][-0.23315,0.869877,0.434689][0.959034,0.0333266,0][0.641405,-0.788284,1.67504][-0.0936223,0.889343,0.447552][0.959034,0.0383163,0][0.812956,-0.519362,1.02904][0.0131216,0.963269,0.268219][0.941779,0.0435524,0][0.579603,-0.535445,1.0335][-0.132226,0.950108,0.28251][0.941779,0.0370116,0][0.579603,-0.535445,1.0335][-0.132226,0.950108,0.28251][0.941779,0.0370116,0][0.463432,-0.822648,1.67729][-0.23315,0.869877,0.434689][0.959034,0.0333266,0][0.641405,-0.788284,1.67504][-0.0936223,0.889343,0.447552][0.959034,0.0383163,0][0.781667,-0.782094,1.67218][-0.0784231,0.90015,0.428463][0.959034,0.0422477,0][0.996862,-0.533704,1.02411][0.133195,0.953181,0.271486][0.941779,0.048706,0][0.812956,-0.519362,1.02904][0.0131216,0.963269,0.268219][0.941779,0.0435524,0][0.812956,-0.519362,1.02904][0.0131216,0.963269,0.268219][0.941779,0.0435524,0][0.641405,-0.788284,1.67504][-0.0936223,0.889343,0.447552][0.959034,0.0383163,0][0.781667,-0.782094,1.67218][-0.0784231,0.90015,0.428463][0.959034,0.0422477,0][0.87534,-0.767887,1.6708][-0.11459,0.90872,0.401368][0.959034,0.0448737,0][1.11973,-0.558427,1.02002][0.283101,0.913621,0.291806][0.941779,0.0521484,0][0.996862,-0.533704,1.02411][0.133195,0.953181,0.271486][0.941779,0.048706,0][0.996862,-0.533704,1.02411][0.133195,0.953181,0.271486][0.941779,0.048706,0][0.781667,-0.782094,1.67218][-0.0784231,0.90015,0.428463][0.959034,0.0422477,0][0.87534,-0.767887,1.6708][-0.11459,0.90872,0.401368][0.959034,0.0448737,0][0.916565,-0.762167,1.67016][0.693452,0.455357,0.558368][0.959034,0.0460294,0][1.17383,-0.580711,1.01763][0.92481,0.208029,0.318511][0.941779,0.0536634,0][1.11973,-0.558427,1.02002][0.283101,0.913621,0.291806][0.941779,0.0521484,0][1.11973,-0.558427,1.02002][0.283101,0.913621,0.291806][0.941779,0.0521484,0][0.87534,-0.767887,1.6708][-0.11459,0.90872,0.401368][0.959034,0.0448737,0][0.916565,-0.762167,1.67016][0.693452,0.455357,0.558368][0.959034,0.0460294,0][0.902791,-0.786692,1.66919][0.73428,-0.66663,0.128206][0.868289,0.0515577,0][1.15575,-0.60211,1.01692][0.523123,-0.851848,-0.0264034][0.890203,0.0539381,0][1.17383,-0.580711,1.01763][0.92481,0.208029,0.318511][0.890283,0.0546186,0][1.17383,-0.580711,1.01763][0.92481,0.208029,0.318511][0.890283,0.0546186,0][0.916565,-0.762167,1.67016][0.693452,0.455357,0.558368][0.86838,0.0523382,0][0.902791,-0.786692,1.66919][0.73428,-0.66663,0.128206][0.868289,0.0515577,0][0.834867,-0.831335,1.6684][0.429504,-0.887455,-0.16718][0.876918,0.0437048,0][1.06664,-0.618777,1.01807][0.131018,-0.971225,-0.19889][0.889212,0.0522899,0][1.15575,-0.60211,1.01692][0.523123,-0.851848,-0.0264034][0.888698,0.0540803,0][1.15575,-0.60211,1.01692][0.523123,-0.851848,-0.0264034][0.888698,0.0540803,0][0.902791,-0.786692,1.66919][0.73428,-0.66663,0.128206][0.876525,0.0450705,0][0.834867,-0.831335,1.6684][0.429504,-0.887455,-0.16718][0.876918,0.0437048,0][0.717017,-0.868058,1.66915][0.234479,-0.915408,-0.32718][0.877599,0.0413366,0][0.912084,-0.62975,1.02101][0.0969436,-0.970899,-0.218992][0.890105,0.0491856,0][1.06664,-0.618777,1.01807][0.131018,-0.971225,-0.19889][0.889212,0.0522899,0][1.06664,-0.618777,1.01807][0.131018,-0.971225,-0.19889][0.889212,0.0522899,0][0.834867,-0.831335,1.6684][0.429504,-0.887455,-0.16718][0.876918,0.0437048,0][0.717017,-0.868058,1.66915][0.234479,-0.915408,-0.32718][0.877599,0.0413366,0][0.556657,-0.900599,1.67109][0.26054,-0.896785,-0.357626][0.878525,0.0381148,0][0.701844,-0.656736,1.02437][0.169622,-0.961867,-0.214571][0.891319,0.0449622,0][0.912084,-0.62975,1.02101][0.0969436,-0.970899,-0.218992][0.890105,0.0491856,0][0.912084,-0.62975,1.02101][0.0969436,-0.970899,-0.218992][0.890105,0.0491856,0][0.717017,-0.868058,1.66915][0.234479,-0.915408,-0.32718][0.877599,0.0413366,0][0.556657,-0.900599,1.67109][0.26054,-0.896785,-0.357626][0.878525,0.0381148,0][0.363953,-0.978789,1.67137][0.300038,-0.886922,-0.351208][0.879638,0.0342419,0][0.449151,-0.713005,1.02716][0.230602,-0.943349,-0.238568][0.892779,0.0398852,0][0.701844,-0.656736,1.02437][0.169622,-0.961867,-0.214571][0.891319,0.0449622,0][0.701844,-0.656736,1.02437][0.169622,-0.961867,-0.214571][0.891319,0.0449622,0][0.556657,-0.900599,1.67109][0.26054,-0.896785,-0.357626][0.878525,0.0381148,0][0.363953,-0.978789,1.67137][0.300038,-0.886922,-0.351208][0.879638,0.0342419,0][0.150919,-1.04281,1.67286][0.132787,-0.916331,-0.377764][0.880869,0.0299611,0][0.169885,-0.79441,1.02925][0.120052,-0.950248,-0.287431][0.894392,0.0342737,0][0.449151,-0.713005,1.02716][0.230602,-0.943349,-0.238568][0.892779,0.0398852,0][0.449151,-0.713005,1.02716][0.230602,-0.943349,-0.238568][0.892779,0.0398852,0][0.363953,-0.978789,1.67137][0.300038,-0.886922,-0.351208][0.879638,0.0342419,0][0.150919,-1.04281,1.67286][0.132787,-0.916331,-0.377764][0.880869,0.0299611,0][-0.0691429,-1.04346,1.67783][-0.138744,-0.9144,-0.380293][0.88214,0.0255414,0][-0.118588,-0.795263,1.03576][-0.14164,-0.944293,-0.297068][0.896058,0.0284801,0][0.169885,-0.79441,1.02925][0.120052,-0.950248,-0.287431][0.894392,0.0342737,0][0.169885,-0.79441,1.02925][0.120052,-0.950248,-0.287431][0.894392,0.0342737,0][0.150919,-1.04281,1.67286][0.132787,-0.916331,-0.377764][0.880869,0.0299611,0][-0.0691429,-1.04346,1.67783][-0.138744,-0.9144,-0.380293][0.88214,0.0255414,0][-0.282403,-0.980701,1.68596][-0.320188,-0.880697,-0.349073][0.883371,0.0212606,0][-0.398141,-0.715512,1.04628][-0.23497,-0.940368,-0.245963][0.897671,0.0228685,0][-0.118588,-0.795263,1.03576][-0.14164,-0.944293,-0.297068][0.896058,0.0284801,0][-0.118588,-0.795263,1.03576][-0.14164,-0.944293,-0.297068][0.896058,0.0284801,0][-0.0691429,-1.04346,1.67783][-0.138744,-0.9144,-0.380293][0.88214,0.0255414,0][-0.282403,-0.980701,1.68596][-0.320188,-0.880697,-0.349073][0.883371,0.0212606,0][-0.475382,-0.903653,1.69438][-0.271006,-0.897976,-0.346692][0.884484,0.0173877,0][-0.651031,-0.66074,1.05489][-0.161297,-0.964038,-0.211218][0.899131,0.0177915,0][-0.398141,-0.715512,1.04628][-0.23497,-0.940368,-0.245963][0.897671,0.0228685,0][-0.398141,-0.715512,1.04628][-0.23497,-0.940368,-0.245963][0.897671,0.0228685,0][-0.282403,-0.980701,1.68596][-0.320188,-0.880697,-0.349073][0.883371,0.0212606,0][-0.475382,-0.903653,1.69438][-0.271006,-0.897976,-0.346692][0.884484,0.0173877,0][-0.635856,-0.872062,1.69968][-0.243777,-0.91647,-0.317261][0.88541,0.0141659,0][-0.861364,-0.634998,1.06102][-0.100796,-0.974899,-0.198526][0.900345,0.0135682,0][-0.651031,-0.66074,1.05489][-0.161297,-0.964038,-0.211218][0.899131,0.0177915,0][-0.651031,-0.66074,1.05489][-0.161297,-0.964038,-0.211218][0.899131,0.0177915,0][-0.475382,-0.903653,1.69438][-0.271006,-0.897976,-0.346692][0.884484,0.0173877,0][-0.635856,-0.872062,1.69968][-0.243777,-0.91647,-0.317261][0.88541,0.0141659,0][-0.753836,-0.836036,1.70424][-0.426688,-0.88662,-0.178446][0.886091,0.0117978,0][-1.01595,-0.62494,1.06506][-0.136889,-0.976756,-0.164953][0.901237,0.0104638,0][-0.861364,-0.634998,1.06102][-0.100796,-0.974899,-0.198526][0.900345,0.0135682,0][-0.861364,-0.634998,1.06102][-0.100796,-0.974899,-0.198526][0.900345,0.0135682,0][-0.635856,-0.872062,1.69968][-0.243777,-0.91647,-0.317261][0.88541,0.0141659,0][-0.753836,-0.836036,1.70424][-0.426688,-0.88662,-0.178446][0.886091,0.0117978,0][-0.821917,-0.791795,1.70811][-0.723761,-0.676154,0.137793][0.886484,0.010432,0][-1.10513,-0.608801,1.06793][-0.514745,-0.857297,0.00897735][0.901752,0.00867348,0][-1.01595,-0.62494,1.06506][-0.136889,-0.976756,-0.164953][0.901237,0.0104638,0][-1.01595,-0.62494,1.06506][-0.136889,-0.976756,-0.164953][0.901237,0.0104638,0][-0.753836,-0.836036,1.70424][-0.426688,-0.88662,-0.178446][0.886091,0.0117978,0][-0.821917,-0.791795,1.70811][-0.723761,-0.676154,0.137793][0.886484,0.010432,0][-0.835778,-0.767353,1.7097][-0.679982,0.470092,0.562706][0.968275,0.0308639,0][-1.12328,-0.587509,1.06946][-0.906044,0.201275,0.372255][0.946368,0.0331047,0][-1.10513,-0.608801,1.06793][-0.514745,-0.857297,0.00897735][0.946449,0.0324244,0][-1.10513,-0.608801,1.06793][-0.514745,-0.857297,0.00897735][0.946449,0.0324244,0][-0.821917,-0.791795,1.70811][-0.723761,-0.676154,0.137793][0.968368,0.0300836,0][-0.835778,-0.767353,1.7097][-0.679982,0.470092,0.562706][0.968275,0.0308639,0][-0.794533,-0.772828,1.70848][0.132612,0.921957,0.363881][0.95892,0.0303292,0][-1.06926,-0.564904,1.06941][-0.272992,0.90581,0.324012][0.942764,0.0224851,0][-1.12328,-0.587509,1.06946][-0.906044,0.201275,0.372255][0.942764,0.0208515,0][-1.12328,-0.587509,1.06946][-0.906044,0.201275,0.372255][0.942764,0.0208515,0][-0.835778,-0.767353,1.7097][-0.679982,0.470092,0.562706][0.95892,0.0290831,0][-0.794533,-0.772828,1.70848][0.132612,0.921957,0.363881][0.95892,0.0303292,0][-0.70081,-0.786481,1.70563][0.0939849,0.907274,0.409903][0.95892,0.0331609,0][-0.946482,-0.539455,1.06796][-0.128058,0.945577,0.299141][0.942764,0.026197,0][-1.06926,-0.564904,1.06941][-0.272992,0.90581,0.324012][0.942764,0.0224851,0][-1.06926,-0.564904,1.06941][-0.272992,0.90581,0.324012][0.942764,0.0224851,0][-0.794533,-0.772828,1.70848][0.132612,0.921957,0.363881][0.95892,0.0303292,0][-0.70081,-0.786481,1.70563][0.0939849,0.907274,0.409903][0.95892,0.0331609,0][-0.560528,-0.791841,1.70216][0.109098,0.889351,0.444019][0.95892,0.0374,0][-0.762629,-0.524025,1.06459][0.00045877,0.961821,0.273678][0.942764,0.031754,0][-0.946482,-0.539455,1.06796][-0.128058,0.945577,0.299141][0.942764,0.026197,0][-0.946482,-0.539455,1.06796][-0.128058,0.945577,0.299141][0.942764,0.026197,0][-0.70081,-0.786481,1.70563][0.0939849,0.907274,0.409903][0.95892,0.0331609,0][-0.560528,-0.791841,1.70216][0.109098,0.889351,0.444019][0.95892,0.0374,0][-0.382434,-0.82515,1.69637][0.241667,0.876373,0.416614][0.95892,0.0427804,0][-0.529223,-0.538726,1.05852][0.150399,0.953354,0.261719][0.942764,0.0388069,0][-0.762629,-0.524025,1.06459][0.00045877,0.961821,0.273678][0.942764,0.031754,0][-0.762629,-0.524025,1.06459][0.00045877,0.961821,0.273678][0.942764,0.031754,0][-0.560528,-0.791841,1.70216][0.109098,0.889351,0.444019][0.95892,0.0374,0][-0.382434,-0.82515,1.69637][0.241667,0.876373,0.416614][0.95892,0.0427804,0][-0.177695,-0.898888,1.68786][0.238817,0.882452,0.405272][0.95892,0.0489638,0][-0.26089,-0.603836,1.04901][0.178569,0.944043,0.277302][0.942764,0.0469126,0][-0.529223,-0.538726,1.05852][0.150399,0.953354,0.261719][0.942764,0.0388069,0][-0.529223,-0.538726,1.05852][0.150399,0.953354,0.261719][0.942764,0.0388069,0][-0.382434,-0.82515,1.69637][0.241667,0.876373,0.416614][0.95892,0.0427804,0][-0.177695,-0.898888,1.68786][0.238817,0.882452,0.405272][0.95892,0.0489638,0][-0.26089,-0.603836,1.04901][0.178569,0.944043,0.277302][0.942764,0.0469126,0][-0.177695,-0.898888,1.68786][0.238817,0.882452,0.405272][0.95892,0.0489638,0][0.0406762,-0.923721,1.6816][0.114786,0.907458,0.404158][0.95892,0.0555618,0][-0.26089,-0.603836,1.04901][0.128824,0.908335,0.397909][0.985049,0.0605188,0][0.0406762,-0.923721,1.6816][0.128824,0.908335,0.397909][0.959773,0.0606297,0][0.025375,-0.64074,1.04057][0.128824,0.908335,0.397909][0.981058,0.0521277,0][0.187423,-1.14532,2.09312][-0.126977,0.830336,0.542604][0.970248,0.0253054,0][0.258957,-0.897596,1.67801][-0.204181,0.872949,0.443024][0.959034,0.0275921,0][0.0406762,-0.923721,1.6816][-0.094423,0.887039,0.451935][0.959034,0.0214731,0][0.0406762,-0.923721,1.6816][-0.094423,0.887039,0.451935][0.959034,0.0214731,0][0.0507035,-1.1544,2.09576][-0.0434396,0.819958,0.570772][0.970248,0.0214731,0][0.187423,-1.14532,2.09312][-0.126977,0.830336,0.542604][0.970248,0.0253054,0][0.315516,-1.11589,2.09175][-0.260647,0.844029,0.468698][0.970248,0.0288968,0][0.463432,-0.822648,1.67729][-0.23315,0.869877,0.434689][0.959034,0.0333266,0][0.258957,-0.897596,1.67801][-0.204181,0.872949,0.443024][0.959034,0.0275921,0][0.258957,-0.897596,1.67801][-0.204181,0.872949,0.443024][0.959034,0.0275921,0][0.187423,-1.14532,2.09312][-0.126977,0.830336,0.542604][0.970248,0.0253054,0][0.315516,-1.11589,2.09175][-0.260647,0.844029,0.468698][0.970248,0.0288968,0][0.426946,-1.07639,2.09129][-0.252696,0.829289,0.498422][0.970248,0.0320218,0][0.641405,-0.788284,1.67504][-0.0936223,0.889343,0.447552][0.959034,0.0383163,0][0.463432,-0.822648,1.67729][-0.23315,0.869877,0.434689][0.959034,0.0333266,0][0.463432,-0.822648,1.67729][-0.23315,0.869877,0.434689][0.959034,0.0333266,0][0.315516,-1.11589,2.09175][-0.260647,0.844029,0.468698][0.970248,0.0288968,0][0.426946,-1.07639,2.09129][-0.252696,0.829289,0.498422][0.970248,0.0320218,0][0.514752,-1.05079,2.09064][-0.132003,0.775631,0.617229][0.970248,0.034484,0][0.781667,-0.782094,1.67218][-0.0784231,0.90015,0.428463][0.959034,0.0422477,0][0.641405,-0.788284,1.67504][-0.0936223,0.889343,0.447552][0.959034,0.0383163,0][0.641405,-0.788284,1.67504][-0.0936223,0.889343,0.447552][0.959034,0.0383163,0][0.426946,-1.07639,2.09129][-0.252696,0.829289,0.498422][0.970248,0.0320218,0][0.514752,-1.05079,2.09064][-0.132003,0.775631,0.617229][0.970248,0.034484,0][0.573418,-1.04423,2.08943][0.0528313,0.662041,0.747603][0.970242,0.0361287,0][0.87534,-0.767887,1.6708][-0.11459,0.90872,0.401368][0.959034,0.0448737,0][0.781667,-0.782094,1.67218][-0.0784231,0.90015,0.428463][0.959034,0.0422477,0][0.781667,-0.782094,1.67218][-0.0784231,0.90015,0.428463][0.959034,0.0422477,0][0.514752,-1.05079,2.09064][-0.132003,0.775631,0.617229][0.970248,0.034484,0][0.573418,-1.04423,2.08943][0.0528313,0.662041,0.747603][0.970242,0.0361287,0][0.599241,-1.04969,2.08801][0.662325,0.0618393,0.74666][0.970228,0.0368525,0][0.916565,-0.762167,1.67016][0.693452,0.455357,0.558368][0.959034,0.0460294,0][0.87534,-0.767887,1.6708][-0.11459,0.90872,0.401368][0.959034,0.0448737,0][0.87534,-0.767887,1.6708][-0.11459,0.90872,0.401368][0.959034,0.0448737,0][0.573418,-1.04423,2.08943][0.0528313,0.662041,0.747603][0.970242,0.0361287,0][0.599241,-1.04969,2.08801][0.662325,0.0618393,0.74666][0.970228,0.0368525,0][0.590613,-1.06147,2.0878][0.565726,-0.744546,0.35441][0.853488,0.0450864,0][0.902791,-0.786692,1.66919][0.73428,-0.66663,0.128206][0.868289,0.0515577,0][0.916565,-0.762167,1.67016][0.693452,0.455357,0.558368][0.86838,0.0523382,0][0.916565,-0.762167,1.67016][0.693452,0.455357,0.558368][0.86838,0.0523382,0][0.599241,-1.04969,2.08801][0.662325,0.0618393,0.74666][0.853538,0.0454602,0][0.590613,-1.06147,2.0878][0.565726,-0.744546,0.35441][0.853488,0.0450864,0][0.548069,-1.08049,2.08832][0.407711,-0.906942,-0.105964][0.869715,0.0353865,0][0.834867,-0.831335,1.6684][0.429504,-0.887455,-0.16718][0.876918,0.0437048,0][0.902791,-0.786692,1.66919][0.73428,-0.66663,0.128206][0.876525,0.0450705,0][0.902791,-0.786692,1.66919][0.73428,-0.66663,0.128206][0.876525,0.0450705,0][0.590613,-1.06147,2.0878][0.565726,-0.744546,0.35441][0.86948,0.0362449,0][0.548069,-1.08049,2.08832][0.407711,-0.906942,-0.105964][0.869715,0.0353865,0][0.474279,-1.11341,2.08828][0.412332,-0.904381,-0.109895][0.870141,0.0339034,0][0.717017,-0.868058,1.66915][0.234479,-0.915408,-0.32718][0.877599,0.0413366,0][0.834867,-0.831335,1.6684][0.429504,-0.887455,-0.16718][0.876918,0.0437048,0][0.834867,-0.831335,1.6684][0.429504,-0.887455,-0.16718][0.876918,0.0437048,0][0.548069,-1.08049,2.08832][0.407711,-0.906942,-0.105964][0.869715,0.0353865,0][0.474279,-1.11341,2.08828][0.412332,-0.904381,-0.109895][0.870141,0.0339034,0][0.373895,-1.16149,2.08804][0.395126,-0.908207,-0.13797][0.870721,0.0318856,0][0.556657,-0.900599,1.67109][0.26054,-0.896785,-0.357626][0.878525,0.0381148,0][0.717017,-0.868058,1.66915][0.234479,-0.915408,-0.32718][0.877599,0.0413366,0][0.717017,-0.868058,1.66915][0.234479,-0.915408,-0.32718][0.877599,0.0413366,0][0.474279,-1.11341,2.08828][0.412332,-0.904381,-0.109895][0.870141,0.0339034,0][0.373895,-1.16149,2.08804][0.395126,-0.908207,-0.13797][0.870721,0.0318856,0][0.253205,-1.20945,2.08827][0.279732,-0.925775,-0.254341][0.871419,0.02946,0][0.363953,-0.978789,1.67137][0.300038,-0.886922,-0.351208][0.879638,0.0342419,0][0.556657,-0.900599,1.67109][0.26054,-0.896785,-0.357626][0.878525,0.0381148,0][0.556657,-0.900599,1.67109][0.26054,-0.896785,-0.357626][0.878525,0.0381148,0][0.373895,-1.16149,2.08804][0.395126,-0.908207,-0.13797][0.870721,0.0318856,0][0.253205,-1.20945,2.08827][0.279732,-0.925775,-0.254341][0.871419,0.02946,0][0.119753,-1.23241,2.0901][0.08911,-0.928213,-0.36122][0.87219,0.026779,0][0.150919,-1.04281,1.67286][0.132787,-0.916331,-0.377764][0.880869,0.0299611,0][0.363953,-0.978789,1.67137][0.300038,-0.886922,-0.351208][0.879638,0.0342419,0][0.363953,-0.978789,1.67137][0.300038,-0.886922,-0.351208][0.879638,0.0342419,0][0.253205,-1.20945,2.08827][0.279732,-0.925775,-0.254341][0.871419,0.02946,0][0.119753,-1.23241,2.0901][0.08911,-0.928213,-0.36122][0.87219,0.026779,0][-0.0180683,-1.23282,2.09321][-0.092576,-0.932244,-0.349787][0.872985,0.024011,0][-0.0691429,-1.04346,1.67783][-0.138744,-0.9144,-0.380293][0.88214,0.0255414,0][0.150919,-1.04281,1.67286][0.132787,-0.916331,-0.377764][0.880869,0.0299611,0][0.150919,-1.04281,1.67286][0.132787,-0.916331,-0.377764][0.880869,0.0299611,0][0.119753,-1.23241,2.0901][0.08911,-0.928213,-0.36122][0.87219,0.026779,0][-0.0180683,-1.23282,2.09321][-0.092576,-0.932244,-0.349787][0.872985,0.024011,0][-0.151601,-1.21065,2.09741][-0.293192,-0.928983,-0.225895][0.873756,0.02133,0][-0.282403,-0.980701,1.68596][-0.320188,-0.880697,-0.349073][0.883371,0.0212606,0][-0.0691429,-1.04346,1.67783][-0.138744,-0.9144,-0.380293][0.88214,0.0255414,0][-0.0691429,-1.04346,1.67783][-0.138744,-0.9144,-0.380293][0.88214,0.0255414,0][-0.0180683,-1.23282,2.09321][-0.092576,-0.932244,-0.349787][0.872985,0.024011,0][-0.151601,-1.21065,2.09741][-0.293192,-0.928983,-0.225895][0.873756,0.02133,0][-0.272461,-1.1634,2.10263][-0.403896,-0.906301,-0.124447][0.874454,0.0189044,0][-0.475382,-0.903653,1.69438][-0.271006,-0.897976,-0.346692][0.884484,0.0173877,0][-0.282403,-0.980701,1.68596][-0.320188,-0.880697,-0.349073][0.883371,0.0212606,0][-0.282403,-0.980701,1.68596][-0.320188,-0.880697,-0.349073][0.883371,0.0212606,0][-0.151601,-1.21065,2.09741][-0.293192,-0.928983,-0.225895][0.873756,0.02133,0][-0.272461,-1.1634,2.10263][-0.403896,-0.906301,-0.124447][0.874454,0.0189044,0][-0.373013,-1.11591,2.1074][-0.403933,-0.905791,-0.127988][0.875034,0.0168866,0][-0.635856,-0.872062,1.69968][-0.243777,-0.91647,-0.317261][0.88541,0.0141659,0][-0.475382,-0.903653,1.69438][-0.271006,-0.897976,-0.346692][0.884484,0.0173877,0][-0.475382,-0.903653,1.69438][-0.271006,-0.897976,-0.346692][0.884484,0.0173877,0][-0.272461,-1.1634,2.10263][-0.403896,-0.906301,-0.124447][0.874454,0.0189044,0][-0.373013,-1.11591,2.1074][-0.403933,-0.905791,-0.127988][0.875034,0.0168866,0][-0.446921,-1.08343,2.11078][-0.401126,-0.91056,-0.0998922][0.87546,0.0154034,0][-0.753836,-0.836036,1.70424][-0.426688,-0.88662,-0.178446][0.886091,0.0117978,0][-0.635856,-0.872062,1.69968][-0.243777,-0.91647,-0.317261][0.88541,0.0141659,0][-0.635856,-0.872062,1.69968][-0.243777,-0.91647,-0.317261][0.88541,0.0141659,0][-0.373013,-1.11591,2.1074][-0.403933,-0.905791,-0.127988][0.875034,0.0168866,0][-0.446921,-1.08343,2.11078][-0.401126,-0.91056,-0.0998922][0.87546,0.0154034,0][-0.489556,-1.06467,2.11217][-0.54267,-0.742659,0.392387][0.875717,0.0145511,0][-0.821917,-0.791795,1.70811][-0.723761,-0.676154,0.137793][0.886484,0.010432,0][-0.753836,-0.836036,1.70424][-0.426688,-0.88662,-0.178446][0.886091,0.0117978,0][-0.753836,-0.836036,1.70424][-0.426688,-0.88662,-0.178446][0.886091,0.0117978,0][-0.446921,-1.08343,2.11078][-0.401126,-0.91056,-0.0998922][0.87546,0.0154034,0][-0.489556,-1.06467,2.11217][-0.54267,-0.742659,0.392387][0.875717,0.0145511,0][-0.498235,-1.05293,2.11277][-0.622303,0.0489366,0.781245][0.98313,0.0240127,0][-0.835778,-0.767353,1.7097][-0.679982,0.470092,0.562706][0.968275,0.0308639,0][-0.821917,-0.791795,1.70811][-0.723761,-0.676154,0.137793][0.968368,0.0300836,0][-0.821917,-0.791795,1.70811][-0.723761,-0.676154,0.137793][0.968368,0.0300836,0][-0.489556,-1.06467,2.11217][-0.54267,-0.742659,0.392387][0.983181,0.023639,0][-0.498235,-1.05293,2.11277][-0.622303,0.0489366,0.781245][0.98313,0.0240127,0][-0.472408,-1.04733,2.11303][-0.020725,0.658078,0.752665][0.969414,0.0397589,0][-0.794533,-0.772828,1.70848][0.132612,0.921957,0.363881][0.95892,0.0303292,0][-0.835778,-0.767353,1.7097][-0.679982,0.470092,0.562706][0.95892,0.0290831,0][-0.835778,-0.767353,1.7097][-0.679982,0.470092,0.562706][0.95892,0.0290831,0][-0.498235,-1.05293,2.11277][-0.622303,0.0489366,0.781245][0.9694,0.0389784,0][-0.472408,-1.04733,2.11303][-0.020725,0.658078,0.752665][0.969414,0.0397589,0][-0.413709,-1.05353,2.11159][0.167075,0.790202,0.589633][0.969419,0.0415323,0][-0.70081,-0.786481,1.70563][0.0939849,0.907274,0.409903][0.95892,0.0331609,0][-0.794533,-0.772828,1.70848][0.132612,0.921957,0.363881][0.95892,0.0303292,0][-0.794533,-0.772828,1.70848][0.132612,0.921957,0.363881][0.95892,0.0303292,0][-0.472408,-1.04733,2.11303][-0.020725,0.658078,0.752665][0.969414,0.0397589,0][-0.413709,-1.05353,2.11159][0.167075,0.790202,0.589633][0.969419,0.0415323,0][-0.325813,-1.07861,2.10828][0.273234,0.842001,0.465164][0.969419,0.0441873,0][-0.560528,-0.791841,1.70216][0.109098,0.889351,0.444019][0.95892,0.0374,0][-0.70081,-0.786481,1.70563][0.0939849,0.907274,0.409903][0.95892,0.0331609,0][-0.70081,-0.786481,1.70563][0.0939849,0.907274,0.409903][0.95892,0.0331609,0][-0.413709,-1.05353,2.11159][0.167075,0.790202,0.589633][0.969419,0.0415323,0][-0.325813,-1.07861,2.10828][0.273234,0.842001,0.465164][0.969419,0.0441873,0][-0.214243,-1.11746,2.10371][0.263121,0.843798,0.467731][0.969419,0.0475569,0][-0.382434,-0.82515,1.69637][0.241667,0.876373,0.416614][0.95892,0.0427804,0][-0.560528,-0.791841,1.70216][0.109098,0.889351,0.444019][0.95892,0.0374,0][-0.560528,-0.791841,1.70216][0.109098,0.889351,0.444019][0.95892,0.0374,0][-0.325813,-1.07861,2.10828][0.273234,0.842001,0.465164][0.969419,0.0441873,0][-0.214243,-1.11746,2.10371][0.263121,0.843798,0.467731][0.969419,0.0475569,0][-0.0860473,-1.14613,2.09929][0.164288,0.833885,0.526921][0.969419,0.0514295,0][-0.177695,-0.898888,1.68786][0.238817,0.882452,0.405272][0.95892,0.0489638,0][-0.382434,-0.82515,1.69637][0.241667,0.876373,0.416614][0.95892,0.0427804,0][-0.382434,-0.82515,1.69637][0.241667,0.876373,0.416614][0.95892,0.0427804,0][-0.214243,-1.11746,2.10371][0.263121,0.843798,0.467731][0.969419,0.0475569,0][-0.0860473,-1.14613,2.09929][0.164288,0.833885,0.526921][0.969419,0.0514295,0][-0.177695,-0.898888,1.68786][0.238817,0.882452,0.405272][0.95892,0.0489638,0][-0.0860473,-1.14613,2.09929][0.164288,0.833885,0.526921][0.969419,0.0514295,0][0.0507035,-1.1544,2.09576][0.0651064,0.861658,0.503296][0.969419,0.0555618,0][-0.177695,-0.898888,1.68786][0.112653,0.869225,0.481412][0.944336,0.0575282,0][0.0507035,-1.1544,2.09576][0.112653,0.869225,0.481412][0.958341,0.0584523,0][0.0406762,-0.923721,1.6816][0.112653,0.869225,0.481412][0.946665,0.0631684,0][0.0547884,-1.29226,2.25872][-0.0381749,0.762435,0.645938][0.974725,0.0214731,0][0.187423,-1.14532,2.09312][-0.126977,0.830336,0.542604][0.970248,0.0253054,0][0.0507035,-1.1544,2.09576][-0.0434396,0.819958,0.570772][0.970248,0.0214731,0][0.0547884,-1.29226,2.25872][-0.178296,0.802557,0.569309][0.974725,0.0214731,0][0.315516,-1.11589,2.09175][-0.260647,0.844029,0.468698][0.970248,0.0288968,0][0.187423,-1.14532,2.09312][-0.126977,0.830336,0.542604][0.970248,0.0253054,0][0.0547884,-1.29226,2.25872][-0.299985,0.851198,0.430663][0.974725,0.0214731,0][0.426946,-1.07639,2.09129][-0.252696,0.829289,0.498422][0.970248,0.0320218,0][0.315516,-1.11589,2.09175][-0.260647,0.844029,0.468698][0.970248,0.0288968,0][0.0547884,-1.29226,2.25872][-0.23351,0.814496,0.531102][0.974725,0.0214731,0][0.514752,-1.05079,2.09064][-0.132003,0.775631,0.617229][0.970248,0.034484,0][0.426946,-1.07639,2.09129][-0.252696,0.829289,0.498422][0.970248,0.0320218,0][0.0547884,-1.29226,2.25872][-0.0556585,0.639667,0.766634][0.983181,0.0369133,0][0.573418,-1.04423,2.08943][0.0528313,0.662041,0.747603][0.963534,0.0377066,0][0.514752,-1.05079,2.09064][-0.132003,0.775631,0.617229][0.965266,0.0368583,0][0.0547884,-1.29226,2.25872][0.127431,0.363448,0.922858][0.941561,0.0368972,0][0.599241,-1.04969,2.08801][0.662325,0.0618393,0.74666][0.961114,0.037232,0][0.573418,-1.04423,2.08943][0.0528313,0.662041,0.747603][0.960396,0.0377066,0][0.0547884,-1.29226,2.25872][0.408676,-0.314247,0.856874][0.858999,0.0113573,0][0.590613,-1.06147,2.0878][0.565726,-0.744546,0.35441][0.873991,0.0114203,0][0.599241,-1.04969,2.08801][0.662325,0.0618393,0.74666][0.874287,0.0116723,0][0.0547884,-1.29226,2.25872][0.408022,-0.911704,0.0481049][0.869027,0.0244542,0][0.548069,-1.08049,2.08832][0.407711,-0.906942,-0.105964][0.869715,0.0353865,0][0.590613,-1.06147,2.0878][0.565726,-0.744546,0.35441][0.86948,0.0362449,0][0.0547884,-1.29226,2.25872][0.407007,-0.912347,0.0443668][0.869027,0.0244542,0][0.474279,-1.11341,2.08828][0.412332,-0.904381,-0.109895][0.870141,0.0339034,0][0.548069,-1.08049,2.08832][0.407711,-0.906942,-0.105964][0.869715,0.0353865,0][0.0547884,-1.29226,2.25872][0.428872,-0.895968,0.115367][0.869027,0.0244542,0][0.373895,-1.16149,2.08804][0.395126,-0.908207,-0.13797][0.870721,0.0318856,0][0.474279,-1.11341,2.08828][0.412332,-0.904381,-0.109895][0.870141,0.0339034,0][0.0547884,-1.29226,2.25872][0.369211,-0.929096,-0.0215581][0.869027,0.0244542,0][0.253205,-1.20945,2.08827][0.279732,-0.925775,-0.254341][0.871419,0.02946,0][0.373895,-1.16149,2.08804][0.395126,-0.908207,-0.13797][0.870721,0.0318856,0][0.0547884,-1.29226,2.25872][0.159301,-0.948112,-0.275149][0.869027,0.0244542,0][0.119753,-1.23241,2.0901][0.08911,-0.928213,-0.36122][0.87219,0.026779,0][0.253205,-1.20945,2.08827][0.279732,-0.925775,-0.254341][0.871419,0.02946,0][0.0547884,-1.29226,2.25872][-0.00479496,-0.941803,-0.336132][0.869027,0.0244542,0][-0.0180683,-1.23282,2.09321][-0.092576,-0.932244,-0.349787][0.872985,0.024011,0][0.119753,-1.23241,2.0901][0.08911,-0.928213,-0.36122][0.87219,0.026779,0][0.0547884,-1.29226,2.25872][-0.165941,-0.949075,-0.267807][0.869027,0.0244542,0][-0.151601,-1.21065,2.09741][-0.293192,-0.928983,-0.225895][0.873756,0.02133,0][-0.0180683,-1.23282,2.09321][-0.092576,-0.932244,-0.349787][0.872985,0.024011,0][0.0547884,-1.29226,2.25872][-0.364306,-0.931266,-0.00500729][0.869027,0.0244542,0][-0.272461,-1.1634,2.10263][-0.403896,-0.906301,-0.124447][0.874454,0.0189044,0][-0.151601,-1.21065,2.09741][-0.293192,-0.928983,-0.225895][0.873756,0.02133,0][0.0547884,-1.29226,2.25872][-0.417924,-0.898475,0.134472][0.869027,0.0244542,0][-0.373013,-1.11591,2.1074][-0.403933,-0.905791,-0.127988][0.875034,0.0168866,0][-0.272461,-1.1634,2.10263][-0.403896,-0.906301,-0.124447][0.874454,0.0189044,0][0.0547884,-1.29226,2.25872][-0.399187,-0.914733,0.0625548][0.869027,0.0244542,0][-0.446921,-1.08343,2.11078][-0.401126,-0.91056,-0.0998922][0.87546,0.0154034,0][-0.373013,-1.11591,2.1074][-0.403933,-0.905791,-0.127988][0.875034,0.0168866,0][0.0547884,-1.29226,2.25872][-0.400029,-0.914101,0.0663023][0.869027,0.0244542,0][-0.489556,-1.06467,2.11217][-0.54267,-0.742659,0.392387][0.875717,0.0145511,0][-0.446921,-1.08343,2.11078][-0.401126,-0.91056,-0.0998922][0.87546,0.0154034,0][0.0547884,-1.29226,2.25872][-0.36773,-0.31649,0.874419][0.858999,0.0139008,0][-0.498235,-1.05293,2.11277][-0.622303,0.0489366,0.781245][0.873694,0.0142912,0][-0.489556,-1.06467,2.11217][-0.54267,-0.742659,0.392387][0.87338,0.0145084,0][0.0547884,-1.29226,2.25872][-0.0878403,0.362784,0.927724][0.926529,0.0122304,0][-0.472408,-1.04733,2.11303][-0.020725,0.658078,0.752665][0.940699,0.0121477,0][-0.498235,-1.05293,2.11277][-0.622303,0.0489366,0.781245][0.941224,0.0126209,0][0.0547884,-1.29226,2.25872][0.0863919,0.640083,0.763433][0.898208,0.0128797,0][-0.413709,-1.05353,2.11159][0.167075,0.790202,0.589633][0.916109,0.0121712,0][-0.472408,-1.04733,2.11303][-0.020725,0.658078,0.752665][0.917871,0.0129557,0][0.0547884,-1.29226,2.25872][0.252404,0.815933,0.52014][0.973611,0.0555618,0][-0.325813,-1.07861,2.10828][0.273234,0.842001,0.465164][0.969419,0.0441873,0][-0.413709,-1.05353,2.11159][0.167075,0.790202,0.589633][0.969419,0.0415323,0][0.0547884,-1.29226,2.25872][0.314064,0.853015,0.416808][0.973611,0.0555618,0][-0.214243,-1.11746,2.10371][0.263121,0.843798,0.467731][0.969419,0.0475569,0][-0.325813,-1.07861,2.10828][0.273234,0.842001,0.465164][0.969419,0.0441873,0][0.0547884,-1.29226,2.25872][0.199041,0.803673,0.560795][0.973611,0.0555618,0][-0.0860473,-1.14613,2.09929][0.164288,0.833885,0.526921][0.969419,0.0514295,0][-0.214243,-1.11746,2.10371][0.263121,0.843798,0.467731][0.969419,0.0475569,0][0.0547884,-1.29226,2.25872][0.0627601,0.762734,0.64366][0.980852,0.0558865,0][0.0507035,-1.1544,2.09576][0.0627601,0.762734,0.64366][0.974794,0.0593199,0][-0.0860473,-1.14613,2.09929][0.0627601,0.762734,0.64366][0.972389,0.0556093,0] \ No newline at end of file diff --git a/charcustom/hats/fonts/GoldTeapot.mesh b/charcustom/hats/fonts/GoldTeapot.mesh new file mode 100644 index 0000000..d2f7015 --- /dev/null +++ b/charcustom/hats/fonts/GoldTeapot.mesh @@ -0,0 +1,3 @@ +version 1.00 +1024 +[-0.0146829,0.960631,-1.37637][0,-0.255751,0.966743][0.890296,0.662625,0][0.526164,0.960631,-1.26958][-0.369882,-0.256345,0.893014][0.839475,0.662625,0][0.518618,1.0333,-1.25185][-0.369101,0.255998,0.893437][0.840184,0.655797,0][0.518618,1.0333,-1.25185][-0.369101,0.255998,0.893437][0.840184,0.655797,0][-0.0146829,1.0333,-1.35715][0,0.255446,0.966823][0.890296,0.655797,0][-0.0146829,0.960631,-1.37637][0,-0.255751,0.966743][0.890296,0.662625,0][-0.0146829,1.0333,-1.35715][0,0.255446,0.966823][0.890296,0.655797,0][0.518618,1.0333,-1.25185][-0.369101,0.255998,0.893437][0.840184,0.655797,0][0.527371,1.05752,-1.27242][-0.0355071,0.995843,0.0838779][0.839361,0.653521,0][0.527371,1.05752,-1.27242][-0.0355071,0.995843,0.0838779][0.839361,0.653521,0][-0.0146829,1.05752,-1.37945][0,0.995754,0.0920505][0.890296,0.653521,0][-0.0146829,1.0333,-1.35715][0,0.255446,0.966823][0.890296,0.655797,0][-0.0146829,1.05752,-1.37945][0,0.995754,0.0920505][0.116751,0.86951,0][0.527371,1.05752,-1.27242][-0.0355071,0.995843,0.0838779][0.168669,0.869377,0][0.545178,1.0333,-1.31427][0.260439,0.731861,-0.629723][0.169559,0.873557,0][0.545178,1.0333,-1.31427][0.260439,0.731861,-0.629723][0.169559,0.873557,0][-0.0146829,1.0333,-1.42482][0,0.731306,-0.682049][0.115936,0.873695,0][-0.0146829,1.05752,-1.37945][0,0.995754,0.0920505][0.116751,0.86951,0][-0.0146829,1.0333,-1.42482][0,0.731306,-0.682049][0.739229,0.01,0][0.545178,1.0333,-1.31427][0.260439,0.731861,-0.629723][0.791837,0.01,0][0.564795,0.960631,-1.36038][0.332584,0.49337,-0.803725][0.79368,0.0168281,0][0.564795,0.960631,-1.36038][0.332584,0.49337,-0.803725][0.79368,0.0168281,0][-0.0146829,0.960631,-1.4748][0,0.492521,-0.870301][0.739229,0.0168281,0][-0.0146829,1.0333,-1.42482][0,0.731306,-0.682049][0.739229,0.01,0][0.526164,0.960631,-1.26958][-0.369882,-0.256345,0.893014][0.839475,0.662625,0][0.963664,0.960631,-0.976767][-0.683407,-0.256729,0.683407][0.798364,0.662625,0][0.950015,1.0333,-0.963118][-0.683531,0.256069,0.683531][0.799647,0.655797,0][0.950015,1.0333,-0.963118][-0.683531,0.256069,0.683531][0.799647,0.655797,0][0.518618,1.0333,-1.25185][-0.369101,0.255998,0.893437][0.840184,0.655797,0][0.526164,0.960631,-1.26958][-0.369882,-0.256345,0.893014][0.839475,0.662625,0][0.518618,1.0333,-1.25185][-0.369101,0.255998,0.893437][0.249592,0.193535,0][0.950015,1.0333,-0.963118][-0.683531,0.256069,0.683531][0.255228,0.145083,0][0.965847,1.05752,-0.978951][-0.0649247,0.995776,0.0649248][0.258327,0.145032,0][0.965847,1.05752,-0.978951][-0.0649247,0.995776,0.0649248][0.258327,0.145032,0][0.527371,1.05752,-1.27242][-0.0355071,0.995843,0.0838779][0.252599,0.194279,0][0.518618,1.0333,-1.25185][-0.369101,0.255998,0.893437][0.249592,0.193535,0][0.527371,1.05752,-1.27242][-0.0355071,0.995843,0.0838779][0.168669,0.869377,0][0.965847,1.05752,-0.978951][-0.0649247,0.995776,0.0649248][0.214383,0.850187,0][0.998058,1.0333,-1.01116][0.481398,0.73247,-0.481398][0.216775,0.853736,0][0.998058,1.0333,-1.01116][0.481398,0.73247,-0.481398][0.216775,0.853736,0][0.545178,1.0333,-1.31427][0.260439,0.731861,-0.629723][0.169559,0.873557,0][0.527371,1.05752,-1.27242][-0.0355071,0.995843,0.0838779][0.168669,0.869377,0][0.545178,1.0333,-1.31427][0.260439,0.731861,-0.629723][0.079689,0.814165,0][0.998058,1.0333,-1.01116][0.481398,0.73247,-0.481398][0.130554,0.820081,0][1.03355,0.960631,-1.04665][0.614804,0.493997,-0.614804][0.130511,0.828379,0][1.03355,0.960631,-1.04665][0.614804,0.493997,-0.614804][0.130511,0.828379,0][0.564795,0.960631,-1.36038][0.332584,0.49337,-0.803725][0.0778641,0.822256,0][0.545178,1.0333,-1.31427][0.260439,0.731861,-0.629723][0.079689,0.814165,0][0.963664,0.960631,-0.976767][-0.683407,-0.256729,0.683407][0.196985,0.988283,0][1.25648,0.960631,-0.539267][-0.893014,-0.256345,0.369882][0.155875,0.988283,0][1.23874,1.0333,-0.531722][-0.893437,0.255997,0.369101][0.155166,0.981454,0][1.23874,1.0333,-0.531722][-0.893437,0.255997,0.369101][0.155166,0.981454,0][0.950015,1.0333,-0.963118][-0.683531,0.256069,0.683531][0.195703,0.981454,0][0.963664,0.960631,-0.976767][-0.683407,-0.256729,0.683407][0.196985,0.988283,0][0.950015,1.0333,-0.963118][-0.683531,0.256069,0.683531][0.255228,0.145083,0][1.23874,1.0333,-0.531722][-0.893437,0.255997,0.369101][0.248029,0.098848,0][1.25932,1.05752,-0.540474][-0.083878,0.995843,0.0355071][0.25101,0.098038,0][1.25932,1.05752,-0.540474][-0.083878,0.995843,0.0355071][0.25101,0.098038,0][0.965847,1.05752,-0.978951][-0.0649247,0.995776,0.0649248][0.258327,0.145032,0][0.950015,1.0333,-0.963118][-0.683531,0.256069,0.683531][0.255228,0.145083,0][0.965847,1.05752,-0.978951][-0.0649247,0.995776,0.0649248][0.214383,0.850187,0][1.25932,1.05752,-0.540474][-0.083878,0.995843,0.0355071][0.249328,0.815017,0][1.30117,1.0333,-0.558281][0.629723,0.731861,-0.260439][0.252868,0.817411,0][1.30117,1.0333,-0.558281][0.629723,0.731861,-0.260439][0.252868,0.817411,0][0.998058,1.0333,-1.01116][0.481398,0.73247,-0.481398][0.216775,0.853736,0][0.965847,1.05752,-0.978951][-0.0649247,0.995776,0.0649248][0.214383,0.850187,0][0.998058,1.0333,-1.01116][0.481398,0.73247,-0.481398][0.130554,0.820081,0][1.30117,1.0333,-0.558281][0.629723,0.731861,-0.260439][0.178841,0.814673,0][1.34728,0.960631,-0.577899][0.803725,0.49337,-0.332584][0.180491,0.822782,0][1.34728,0.960631,-0.577899][0.803725,0.49337,-0.332584][0.180491,0.822782,0][1.03355,0.960631,-1.04665][0.614804,0.493997,-0.614804][0.130511,0.828379,0][0.998058,1.0333,-1.01116][0.481398,0.73247,-0.481398][0.130554,0.820081,0][1.25648,0.960631,-0.539267][-0.893014,-0.256345,0.369882][0.155875,0.988283,0][1.36327,0.960631,0.00157959][-0.966178,-0.257862,0.00284831][0.105053,0.988283,0][1.34405,1.0333,0.00157959][-0.967008,0.254738,0.00192305][0.105053,0.981454,0][1.34405,1.0333,0.00157959][-0.967008,0.254738,0.00192305][0.105053,0.981454,0][1.23874,1.0333,-0.531722][-0.893437,0.255997,0.369101][0.155166,0.981454,0][1.25648,0.960631,-0.539267][-0.893014,-0.256345,0.369882][0.155875,0.988283,0][1.23874,1.0333,-0.531722][-0.893437,0.255997,0.369101][0.155166,0.981454,0][1.34405,1.0333,0.00157959][-0.967008,0.254738,0.00192305][0.105053,0.981454,0][1.36635,1.05752,0.00157959][-0.0922696,0.995734,0.000266044][0.105053,0.979178,0][1.36635,1.05752,0.00157959][-0.0922696,0.995734,0.000266044][0.105053,0.979178,0][1.25932,1.05752,-0.540474][-0.083878,0.995843,0.0355071][0.155988,0.979178,0][1.23874,1.0333,-0.531722][-0.893437,0.255997,0.369101][0.155166,0.981454,0][1.25932,1.05752,-0.540474][-0.083878,0.995843,0.0355071][0.249328,0.815017,0][1.36635,1.05752,0.00157959][-0.0922696,0.995734,0.000266044][0.268938,0.766944,0][1.41171,1.0333,0.00157959][0.682061,0.731296,-2.39406e-005][0.273122,0.767759,0][1.41171,1.0333,0.00157959][0.682061,0.731296,-2.39406e-005][0.273122,0.767759,0][1.30117,1.0333,-0.558281][0.629723,0.731861,-0.260439][0.252868,0.817411,0][1.25932,1.05752,-0.540474][-0.083878,0.995843,0.0355071][0.249328,0.815017,0][1.30117,1.0333,-0.558281][0.629723,0.731861,-0.260439][0.702454,0.281831,0][1.41171,1.0333,0.00157959][0.682061,0.731296,-2.39406e-005][0.755063,0.281831,0][1.4617,0.960631,0.00157959][0.870301,0.492521,0][0.755063,0.288659,0][1.4617,0.960631,0.00157959][0.870301,0.492521,0][0.755063,0.288659,0][1.34728,0.960631,-0.577899][0.803725,0.49337,-0.332584][0.700611,0.288659,0][1.30117,1.0333,-0.558281][0.629723,0.731861,-0.260439][0.702454,0.281831,0][1.36327,0.960631,0.00157959][-0.966178,-0.257862,0.00284831][0.105053,0.988283,0][1.25648,0.960631,0.579797][-0.852771,-0.3593,-0.379058][0.0507202,0.988283,0][1.23874,1.0333,0.550647][-0.91409,0.149086,-0.37711][0.0534593,0.981454,0][1.23874,1.0333,0.550647][-0.91409,0.149086,-0.37711][0.0534593,0.981454,0][1.34405,1.0333,0.00157959][-0.967008,0.254738,0.00192305][0.105053,0.981454,0][1.36327,0.960631,0.00157959][-0.966178,-0.257862,0.00284831][0.105053,0.988283,0][1.34405,1.0333,0.00157959][-0.967008,0.254738,0.00192305][0.105053,0.981454,0][1.23874,1.0333,0.550647][-0.91409,0.149086,-0.37711][0.0534593,0.981454,0][1.25932,1.05752,0.548305][-0.122552,0.992081,-0.0275026][0.0536794,0.979178,0][1.25932,1.05752,0.548305][-0.122552,0.992081,-0.0275026][0.0536794,0.979178,0][1.36635,1.05752,0.00157959][-0.0922696,0.995734,0.000266044][0.105053,0.979178,0][1.34405,1.0333,0.00157959][-0.967008,0.254738,0.00192305][0.105053,0.981454,0][1.36635,1.05752,0.00157959][-0.0922696,0.995734,0.000266044][0.268938,0.766944,0][1.25932,1.05752,0.548305][-0.122552,0.992081,-0.0275026][0.268888,0.714595,0][1.30117,1.0333,0.562024][0.635366,0.726763,0.26101][0.272995,0.714082,0][1.30117,1.0333,0.562024][0.635366,0.726763,0.26101][0.272995,0.714082,0][1.41171,1.0333,0.00157959][0.682061,0.731296,-2.39406e-005][0.273122,0.767759,0][1.36635,1.05752,0.00157959][-0.0922696,0.995734,0.000266044][0.268938,0.766944,0][1.41171,1.0333,0.00157959][0.682061,0.731296,-2.39406e-005][0.755063,0.281831,0][1.30117,1.0333,0.562024][0.635366,0.726763,0.26101][0.807726,0.281831,0][1.34728,0.960631,0.581058][0.804271,0.492546,0.332485][0.809514,0.288659,0][1.34728,0.960631,0.581058][0.804271,0.492546,0.332485][0.809514,0.288659,0][1.4617,0.960631,0.00157959][0.870301,0.492521,0][0.755063,0.288659,0][1.41171,1.0333,0.00157959][0.682061,0.731296,-2.39406e-005][0.755063,0.281831,0][1.25648,0.960631,0.579797][-0.852771,-0.3593,-0.379058][0.0507202,0.988283,0][0.963664,0.960631,1.01314][-0.625264,-0.410791,-0.663548][0.01,0.988283,0][0.950015,1.0333,0.980291][-0.697621,0.0737231,-0.712664][0.0130871,0.981454,0][0.950015,1.0333,0.980291][-0.697621,0.0737231,-0.712664][0.0130871,0.981454,0][1.23874,1.0333,0.550647][-0.91409,0.149086,-0.37711][0.0534593,0.981454,0][1.25648,0.960631,0.579797][-0.852771,-0.3593,-0.379058][0.0507202,0.988283,0][1.23874,1.0333,0.550647][-0.91409,0.149086,-0.37711][0.192267,0.274972,0][0.950015,1.0333,0.980291][-0.697621,0.0737231,-0.712664][0.143951,0.269353,0][0.965847,1.05752,0.986262][-0.121984,0.987509,-0.0997272][0.144631,0.266661,0][0.965847,1.05752,0.986262][-0.121984,0.987509,-0.0997272][0.144631,0.266661,0][1.25932,1.05752,0.548305][-0.122552,0.992081,-0.0275026][0.193833,0.272421,0][1.23874,1.0333,0.550647][-0.91409,0.149086,-0.37711][0.192267,0.274972,0][1.25932,1.05752,0.548305][-0.122552,0.992081,-0.0275026][0.268888,0.714595,0][0.965847,1.05752,0.986262][-0.121984,0.987509,-0.0997272][0.249689,0.668929,0][0.998059,1.0333,1.01484][0.488567,0.723755,0.487319][0.253173,0.666872,0][0.998059,1.0333,1.01484][0.488567,0.723755,0.487319][0.253173,0.666872,0][1.30117,1.0333,0.562024][0.635366,0.726763,0.26101][0.272995,0.714082,0][1.25932,1.05752,0.548305][-0.122552,0.992081,-0.0275026][0.268888,0.714595,0][1.30117,1.0333,0.562024][0.635366,0.726763,0.26101][0.0731041,0.0999065,0][0.998059,1.0333,1.01484][0.488567,0.723755,0.487319][0.0671884,0.150766,0][1.03355,0.960631,1.04981][0.615484,0.492602,0.615242][0.05891,0.150685,0][1.03355,0.960631,1.04981][0.615484,0.492602,0.615242][0.05891,0.150685,0][1.34728,0.960631,0.581058][0.804271,0.492546,0.332485][0.0650355,0.098038,0][1.30117,1.0333,0.562024][0.635366,0.726763,0.26101][0.0731041,0.0999065,0][0.963664,0.960631,1.01314][-0.625264,-0.410791,-0.663548][0.825063,0.895809,0][0.526164,0.960631,1.2852][-0.338709,-0.332906,-0.880028][0.783953,0.895809,0][0.518618,1.0333,1.26026][-0.361493,0.167115,-0.917276][0.783244,0.888981,0][0.518618,1.0333,1.26026][-0.361493,0.167115,-0.917276][0.783244,0.888981,0][0.950015,1.0333,0.980291][-0.697621,0.0737231,-0.712664][0.823781,0.888981,0][0.963664,0.960631,1.01314][-0.625264,-0.410791,-0.663548][0.825063,0.895809,0][0.950015,1.0333,0.980291][-0.697621,0.0737231,-0.712664][0.143951,0.269353,0][0.518618,1.0333,1.26026][-0.361493,0.167115,-0.917276][0.0985702,0.274814,0][0.527371,1.05752,1.27714][-0.0480694,0.992365,-0.113584][0.098038,0.271971,0][0.527371,1.05752,1.27714][-0.0480694,0.992365,-0.113584][0.845192,0.472802,0][0.965847,1.05752,0.986262][-0.121984,0.987509,-0.0997272][0.886394,0.472802,0][0.950015,1.0333,0.980291][-0.697621,0.0737231,-0.712664][0.884906,0.475078,0][0.965847,1.05752,0.986262][-0.121984,0.987509,-0.0997272][0.249689,0.668929,0][0.527371,1.05752,1.27714][-0.0480694,0.992365,-0.113584][0.214472,0.634223,0][0.545178,1.0333,1.31762][0.261888,0.727509,0.634149][0.216842,0.630809,0][0.545178,1.0333,1.31762][0.261888,0.727509,0.634149][0.216842,0.630809,0][0.998059,1.0333,1.01484][0.488567,0.723755,0.487319][0.253173,0.666872,0][0.965847,1.05752,0.986262][-0.121984,0.987509,-0.0997272][0.249689,0.668929,0][0.998059,1.0333,1.01484][0.488567,0.723755,0.487319][0.0671884,0.150766,0][0.545178,1.0333,1.31762][0.261888,0.727509,0.634149][0.0725628,0.199026,0][0.564796,0.960631,1.36354][0.332705,0.492634,0.804126][0.0644599,0.20066,0][0.564796,0.960631,1.36354][0.332705,0.492634,0.804126][0.0644599,0.20066,0][1.03355,0.960631,1.04981][0.615484,0.492602,0.615242][0.05891,0.150685,0][0.998059,1.0333,1.01484][0.488567,0.723755,0.487319][0.0671884,0.150766,0][0.526164,0.960631,1.2852][-0.338709,-0.332906,-0.880028][0.783953,0.895809,0][-0.0146828,0.960631,1.37953][0.0104538,-0.255737,-0.96669][0.733131,0.895809,0][-0.0146828,1.0333,1.36031][0.00810337,0.252965,-0.967441][0.733131,0.888981,0][-0.0146828,1.0333,1.36031][0.00810337,0.252965,-0.967441][0.733131,0.888981,0][0.518618,1.0333,1.26026][-0.361493,0.167115,-0.917276][0.783244,0.888981,0][0.526164,0.960631,1.2852][-0.338709,-0.332906,-0.880028][0.783953,0.895809,0][0.518618,1.0333,1.26026][-0.361493,0.167115,-0.917276][0.783244,0.888981,0][-0.0146828,1.0333,1.36031][0.00810337,0.252965,-0.967441][0.733131,0.888981,0][-0.0146828,1.05752,1.38261][0.00128076,0.995625,-0.0934347][0.733131,0.886705,0][-0.0146828,1.05752,1.38261][0.00128076,0.995625,-0.0934347][0.733131,0.886705,0][0.527371,1.05752,1.27714][-0.0480694,0.992365,-0.113584][0.784066,0.886705,0][0.518618,1.0333,1.26026][-0.361493,0.167115,-0.917276][0.783244,0.888981,0][0.527371,1.05752,1.27714][-0.0480694,0.992365,-0.113584][0.214472,0.634223,0][-0.0146828,1.05752,1.38261][0.00128076,0.995625,-0.0934347][0.166372,0.614757,0][-0.0146828,1.0333,1.42798][-0.000343502,0.731197,0.682167][0.167187,0.610573,0][-0.0146828,1.0333,1.42798][-0.000343502,0.731197,0.682167][0.167187,0.610573,0][0.545178,1.0333,1.31762][0.261888,0.727509,0.634149][0.216842,0.630809,0][0.527371,1.05752,1.27714][-0.0480694,0.992365,-0.113584][0.214472,0.634223,0][0.545178,1.0333,1.31762][0.261888,0.727509,0.634149][0.41479,0.50008,0][-0.0146828,1.0333,1.42798][-0.000343502,0.731197,0.682167][0.467398,0.50008,0][-0.0146828,0.960631,1.47796][-5.42729e-005,0.492483,0.870322][0.467398,0.506908,0][-0.0146828,0.960631,1.47796][-5.42729e-005,0.492483,0.870322][0.467398,0.506908,0][0.564796,0.960631,1.36354][0.332705,0.492634,0.804126][0.412946,0.506908,0][0.545178,1.0333,1.31762][0.261888,0.727509,0.634149][0.41479,0.50008,0][-0.0146828,0.960631,1.37953][0.0104538,-0.255737,-0.96669][0.733131,0.895809,0][-0.555529,0.960631,1.27274][0.369882,-0.256345,-0.893014][0.68231,0.895809,0][-0.547984,1.0333,1.25501][0.369101,0.255998,-0.893437][0.683019,0.888981,0][-0.547984,1.0333,1.25501][0.369101,0.255998,-0.893437][0.683019,0.888981,0][-0.0146828,1.0333,1.36031][0.00810337,0.252965,-0.967441][0.733131,0.888981,0][-0.0146828,0.960631,1.37953][0.0104538,-0.255737,-0.96669][0.733131,0.895809,0][-0.0146828,1.0333,1.36031][0.00810337,0.252965,-0.967441][0.733131,0.888981,0][-0.547984,1.0333,1.25501][0.369101,0.255998,-0.893437][0.683019,0.888981,0][-0.556737,1.05752,1.27558][0.0355071,0.995843,-0.083878][0.682196,0.886705,0][-0.556737,1.05752,1.27558][0.0355071,0.995843,-0.083878][0.682196,0.886705,0][-0.0146828,1.05752,1.38261][0.00128076,0.995625,-0.0934347][0.733131,0.886705,0][-0.0146828,1.0333,1.36031][0.00810337,0.252965,-0.967441][0.733131,0.888981,0][-0.0146828,1.05752,1.38261][0.00128076,0.995625,-0.0934347][0.166372,0.614757,0][-0.556737,1.05752,1.27558][0.0355071,0.995843,-0.083878][0.114453,0.614891,0][-0.574543,1.0333,1.31743][-0.260439,0.731861,0.629723][0.113563,0.610711,0][-0.574543,1.0333,1.31743][-0.260439,0.731861,0.629723][0.113563,0.610711,0][-0.0146828,1.0333,1.42798][-0.000343502,0.731197,0.682167][0.167187,0.610573,0][-0.0146828,1.05752,1.38261][0.00128076,0.995625,-0.0934347][0.166372,0.614757,0][-0.0146828,1.0333,1.42798][-0.000343502,0.731197,0.682167][0.467398,0.50008,0][-0.574543,1.0333,1.31743][-0.260439,0.731861,0.629723][0.520006,0.50008,0][-0.594161,0.960631,1.36354][-0.332584,0.49337,0.803725][0.521849,0.506908,0][-0.594161,0.960631,1.36354][-0.332584,0.49337,0.803725][0.521849,0.506908,0][-0.0146828,0.960631,1.47796][-5.42729e-005,0.492483,0.870322][0.467398,0.506908,0][-0.0146828,1.0333,1.42798][-0.000343502,0.731197,0.682167][0.467398,0.50008,0][-0.555529,0.960631,1.27274][0.369882,-0.256345,-0.893014][0.68231,0.895809,0][-0.993029,0.960631,0.979926][0.683407,-0.256728,-0.683407][0.641199,0.895809,0][-0.97938,1.0333,0.966277][0.683531,0.25607,-0.683531][0.642482,0.888981,0][-0.97938,1.0333,0.966277][0.683531,0.25607,-0.683531][0.642482,0.888981,0][-0.547984,1.0333,1.25501][0.369101,0.255998,-0.893437][0.683019,0.888981,0][-0.555529,0.960631,1.27274][0.369882,-0.256345,-0.893014][0.68231,0.895809,0][-0.547984,1.0333,1.25501][0.369101,0.255998,-0.893437][0.193535,0.256763,0][-0.97938,1.0333,0.966277][0.683531,0.25607,-0.683531][0.145083,0.251128,0][-0.995213,1.05752,0.98211][0.0649246,0.995776,-0.0649245][0.145032,0.248029,0][-0.995213,1.05752,0.98211][0.0649246,0.995776,-0.0649245][0.145032,0.248029,0][-0.556737,1.05752,1.27558][0.0355071,0.995843,-0.083878][0.194279,0.253757,0][-0.547984,1.0333,1.25501][0.369101,0.255998,-0.893437][0.193535,0.256763,0][-0.556737,1.05752,1.27558][0.0355071,0.995843,-0.083878][0.114453,0.614891,0][-0.995213,1.05752,0.98211][0.0649246,0.995776,-0.0649245][0.0687391,0.634081,0][-1.02742,1.0333,1.01432][-0.481398,0.732469,0.481398][0.0663469,0.630531,0][-1.02742,1.0333,1.01432][-0.481398,0.732469,0.481398][0.0663469,0.630531,0][-0.574543,1.0333,1.31743][-0.260439,0.731861,0.629723][0.113563,0.610711,0][-0.556737,1.05752,1.27558][0.0355071,0.995843,-0.083878][0.114453,0.614891,0][-0.574543,1.0333,1.31743][-0.260439,0.731861,0.629723][0.0567892,0.680262,0][-1.02742,1.0333,1.01432][-0.481398,0.732469,0.481398][0.050873,0.731126,0][-1.06291,0.960631,1.04981][-0.614804,0.493996,0.614804][0.0425748,0.731084,0][-1.06291,0.960631,1.04981][-0.614804,0.493996,0.614804][0.0425748,0.731084,0][-0.594161,0.960631,1.36354][-0.332584,0.49337,0.803725][0.0486983,0.678437,0][-0.574543,1.0333,1.31743][-0.260439,0.731861,0.629723][0.0567892,0.680262,0][-0.993029,0.960631,0.979926][0.683407,-0.256728,-0.683407][0.825063,0.861703,0][-1.28584,0.960631,0.542426][0.893014,-0.256345,-0.369882][0.783953,0.861703,0][-1.26811,1.0333,0.534881][0.893437,0.255998,-0.369102][0.783244,0.854875,0][-1.26811,1.0333,0.534881][0.893437,0.255998,-0.369102][0.783244,0.854875,0][-0.97938,1.0333,0.966277][0.683531,0.25607,-0.683531][0.823781,0.854875,0][-0.993029,0.960631,0.979926][0.683407,-0.256728,-0.683407][0.825063,0.861703,0][-0.97938,1.0333,0.966277][0.683531,0.25607,-0.683531][0.145083,0.251128,0][-1.26811,1.0333,0.534881][0.893437,0.255998,-0.369102][0.098848,0.258327,0][-1.28868,1.05752,0.543633][0.0838779,0.995843,-0.0355073][0.098038,0.255346,0][-1.28868,1.05752,0.543633][0.0838779,0.995843,-0.0355073][0.098038,0.255346,0][-0.995213,1.05752,0.98211][0.0649246,0.995776,-0.0649245][0.145032,0.248029,0][-0.97938,1.0333,0.966277][0.683531,0.25607,-0.683531][0.145083,0.251128,0][-0.995213,1.05752,0.98211][0.0649246,0.995776,-0.0649245][0.0687391,0.634081,0][-1.28868,1.05752,0.543633][0.0838779,0.995843,-0.0355073][0.0337942,0.669251,0][-1.33053,1.0333,0.56144][-0.629723,0.731861,0.260439][0.030254,0.666856,0][-1.33053,1.0333,0.56144][-0.629723,0.731861,0.260439][0.030254,0.666856,0][-1.02742,1.0333,1.01432][-0.481398,0.732469,0.481398][0.0663469,0.630531,0][-0.995213,1.05752,0.98211][0.0649246,0.995776,-0.0649245][0.0687391,0.634081,0][-1.02742,1.0333,1.01432][-0.481398,0.732469,0.481398][0.050873,0.731126,0][-1.33053,1.0333,0.56144][-0.629723,0.731861,0.260439][0.0562806,0.779414,0][-1.37664,0.960631,0.581058][-0.803725,0.493369,0.332585][0.0481719,0.781063,0][-1.37664,0.960631,0.581058][-0.803725,0.493369,0.332585][0.0481719,0.781063,0][-1.06291,0.960631,1.04981][-0.614804,0.493996,0.614804][0.0425748,0.731084,0][-1.02742,1.0333,1.01432][-0.481398,0.732469,0.481398][0.050873,0.731126,0][-1.28584,0.960631,0.542426][0.893014,-0.256345,-0.369882][0.783953,0.861703,0][-1.39264,0.960631,0.00157971][0.966743,-0.255751,0][0.733131,0.861703,0][-1.37341,1.0333,0.00157971][0.966823,0.255447,1.27466e-007][0.733131,0.854875,0][-1.37341,1.0333,0.00157971][0.966823,0.255447,1.27466e-007][0.733131,0.854875,0][-1.26811,1.0333,0.534881][0.893437,0.255998,-0.369102][0.783244,0.854875,0][-1.28584,0.960631,0.542426][0.893014,-0.256345,-0.369882][0.783953,0.861703,0][-1.26811,1.0333,0.534881][0.893437,0.255998,-0.369102][0.783244,0.854875,0][-1.37341,1.0333,0.00157971][0.966823,0.255447,1.27466e-007][0.733131,0.854875,0][-1.39571,1.05752,0.00157971][0.0920492,0.995754,0][0.733131,0.852599,0][-1.39571,1.05752,0.00157971][0.0920492,0.995754,0][0.733131,0.852599,0][-1.28868,1.05752,0.543633][0.0838779,0.995843,-0.0355073][0.784066,0.852599,0][-1.26811,1.0333,0.534881][0.893437,0.255998,-0.369102][0.783244,0.854875,0][-1.28868,1.05752,0.543633][0.0838779,0.995843,-0.0355073][0.0337942,0.669251,0][-1.39571,1.05752,0.00157971][0.0920492,0.995754,0][0.0141844,0.717323,0][-1.44108,1.0333,0.00157971][-0.682049,0.731306,0][0.01,0.716508,0][-1.44108,1.0333,0.00157971][-0.682049,0.731306,0][0.01,0.716508,0][-1.33053,1.0333,0.56144][-0.629723,0.731861,0.260439][0.030254,0.666856,0][-1.28868,1.05752,0.543633][0.0838779,0.995843,-0.0355073][0.0337942,0.669251,0][-1.33053,1.0333,0.56144][-0.629723,0.731861,0.260439][0.41479,0.281831,0][-1.44108,1.0333,0.00157971][-0.682049,0.731306,0][0.467398,0.281831,0][-1.49106,0.960631,0.00157972][-0.870301,0.492521,0][0.467398,0.288659,0][-1.49106,0.960631,0.00157972][-0.870301,0.492521,0][0.467398,0.288659,0][-1.37664,0.960631,0.581058][-0.803725,0.493369,0.332585][0.412946,0.288659,0][-1.33053,1.0333,0.56144][-0.629723,0.731861,0.260439][0.41479,0.281831,0][-1.39264,0.960631,0.00157971][0.966743,-0.255751,0][0.733131,0.861703,0][-1.28584,0.960631,-0.539267][0.893014,-0.256345,0.369882][0.68231,0.861703,0][-1.26811,1.0333,-0.531721][0.893437,0.255998,0.369101][0.683019,0.854875,0][-1.26811,1.0333,-0.531721][0.893437,0.255998,0.369101][0.683019,0.854875,0][-1.37341,1.0333,0.00157971][0.966823,0.255447,1.27466e-007][0.733131,0.854875,0][-1.39264,0.960631,0.00157971][0.966743,-0.255751,0][0.733131,0.861703,0][-1.37341,1.0333,0.00157971][0.966823,0.255447,1.27466e-007][0.733131,0.854875,0][-1.26811,1.0333,-0.531721][0.893437,0.255998,0.369101][0.683019,0.854875,0][-1.28868,1.05752,-0.540474][0.083878,0.995843,0.0355072][0.682196,0.852599,0][-1.28868,1.05752,-0.540474][0.083878,0.995843,0.0355072][0.682196,0.852599,0][-1.39571,1.05752,0.00157971][0.0920492,0.995754,0][0.733131,0.852599,0][-1.37341,1.0333,0.00157971][0.966823,0.255447,1.27466e-007][0.733131,0.854875,0][-1.39571,1.05752,0.00157971][0.0920492,0.995754,0][0.0141844,0.717323,0][-1.28868,1.05752,-0.540474][0.083878,0.995843,0.0355072][0.014318,0.769241,0][-1.33053,1.0333,-0.558281][-0.629723,0.731861,-0.260439][0.0101379,0.770132,0][-1.33053,1.0333,-0.558281][-0.629723,0.731861,-0.260439][0.0101379,0.770132,0][-1.44108,1.0333,0.00157971][-0.682049,0.731306,0][0.01,0.716508,0][-1.39571,1.05752,0.00157971][0.0920492,0.995754,0][0.0141844,0.717323,0][-1.44108,1.0333,0.00157971][-0.682049,0.731306,0][0.467398,0.281831,0][-1.33053,1.0333,-0.558281][-0.629723,0.731861,-0.260439][0.520006,0.281831,0][-1.37664,0.960631,-0.577899][-0.803725,0.493369,-0.332584][0.521849,0.288659,0][-1.37664,0.960631,-0.577899][-0.803725,0.493369,-0.332584][0.521849,0.288659,0][-1.49106,0.960631,0.00157972][-0.870301,0.492521,0][0.467398,0.288659,0][-1.44108,1.0333,0.00157971][-0.682049,0.731306,0][0.467398,0.281831,0][-1.28584,0.960631,-0.539267][0.893014,-0.256345,0.369882][0.68231,0.861703,0][-0.993029,0.960631,-0.976767][0.683407,-0.256728,0.683407][0.641199,0.861703,0][-0.979381,1.0333,-0.963118][0.683531,0.25607,0.683531][0.642482,0.854875,0][-0.979381,1.0333,-0.963118][0.683531,0.25607,0.683531][0.642482,0.854875,0][-1.26811,1.0333,-0.531721][0.893437,0.255998,0.369101][0.683019,0.854875,0][-1.28584,0.960631,-0.539267][0.893014,-0.256345,0.369882][0.68231,0.861703,0][-1.26811,1.0333,-0.531721][0.893437,0.255998,0.369101][0.336811,0.971298,0][-0.979381,1.0333,-0.963118][0.683531,0.25607,0.683531][0.385262,0.976933,0][-0.995213,1.05752,-0.978951][0.0649243,0.995776,0.0649243][0.385313,0.980033,0][-0.995213,1.05752,-0.978951][0.0649243,0.995776,0.0649243][0.385313,0.980033,0][-1.28868,1.05752,-0.540474][0.083878,0.995843,0.0355072][0.336067,0.974304,0][-1.26811,1.0333,-0.531721][0.893437,0.255998,0.369101][0.336811,0.971298,0][-1.28868,1.05752,-0.540474][0.083878,0.995843,0.0355072][0.014318,0.769241,0][-0.995213,1.05752,-0.978951][0.0649243,0.995776,0.0649243][0.0335082,0.814956,0][-1.02742,1.0333,-1.01116][-0.481398,0.73247,-0.481398][0.0299585,0.817348,0][-1.02742,1.0333,-1.01116][-0.481398,0.73247,-0.481398][0.0299585,0.817348,0][-1.33053,1.0333,-0.558281][-0.629723,0.731861,-0.260439][0.0101379,0.770132,0][-1.28868,1.05752,-0.540474][0.083878,0.995843,0.0355072][0.014318,0.769241,0][-1.33053,1.0333,-0.558281][-0.629723,0.731861,-0.260439][0.227807,0.680262,0][-1.02742,1.0333,-1.01116][-0.481398,0.73247,-0.481398][0.22189,0.731126,0][-1.06291,0.960631,-1.04665][-0.614804,0.493996,-0.614804][0.213592,0.731084,0][-1.06291,0.960631,-1.04665][-0.614804,0.493996,-0.614804][0.213592,0.731084,0][-1.37664,0.960631,-0.577899][-0.803725,0.493369,-0.332584][0.219716,0.678437,0][-1.33053,1.0333,-0.558281][-0.629723,0.731861,-0.260439][0.227807,0.680262,0][-0.993029,0.960631,-0.976767][0.683407,-0.256728,0.683407][0.982228,0.662625,0][-0.555529,0.960631,-1.26958][0.369882,-0.256345,0.893014][0.941118,0.662625,0][-0.547984,1.0333,-1.25185][0.369102,0.255998,0.893437][0.940409,0.655797,0][-0.547984,1.0333,-1.25185][0.369102,0.255998,0.893437][0.940409,0.655797,0][-0.979381,1.0333,-0.963118][0.683531,0.25607,0.683531][0.980946,0.655797,0][-0.993029,0.960631,-0.976767][0.683407,-0.256728,0.683407][0.982228,0.662625,0][-0.979381,1.0333,-0.963118][0.683531,0.25607,0.683531][0.385262,0.976933,0][-0.547984,1.0333,-1.25185][0.369102,0.255998,0.893437][0.431498,0.969734,0][-0.556737,1.05752,-1.27242][0.0355073,0.995843,0.0838779][0.432308,0.972715,0][-0.556737,1.05752,-1.27242][0.0355073,0.995843,0.0838779][0.432308,0.972715,0][-0.995213,1.05752,-0.978951][0.0649243,0.995776,0.0649243][0.385313,0.980033,0][-0.979381,1.0333,-0.963118][0.683531,0.25607,0.683531][0.385262,0.976933,0][-0.995213,1.05752,-0.978951][0.0649243,0.995776,0.0649243][0.0335082,0.814956,0][-0.556737,1.05752,-1.27242][0.0355073,0.995843,0.0838779][0.068678,0.849901,0][-0.574544,1.0333,-1.31427][-0.260439,0.731861,-0.629723][0.0662838,0.853441,0][-0.574544,1.0333,-1.31427][-0.260439,0.731861,-0.629723][0.0662838,0.853441,0][-1.02742,1.0333,-1.01116][-0.481398,0.73247,-0.481398][0.0299585,0.817348,0][-0.995213,1.05752,-0.978951][0.0649243,0.995776,0.0649243][0.0335082,0.814956,0][-1.02742,1.0333,-1.01116][-0.481398,0.73247,-0.481398][0.22189,0.731126,0][-0.574544,1.0333,-1.31427][-0.260439,0.731861,-0.629723][0.227298,0.779414,0][-0.594161,0.960631,-1.36038][-0.332585,0.49337,-0.803725][0.219189,0.781063,0][-0.594161,0.960631,-1.36038][-0.332585,0.49337,-0.803725][0.219189,0.781063,0][-1.06291,0.960631,-1.04665][-0.614804,0.493996,-0.614804][0.213592,0.731084,0][-1.02742,1.0333,-1.01116][-0.481398,0.73247,-0.481398][0.22189,0.731126,0][-0.555529,0.960631,-1.26958][0.369882,-0.256345,0.893014][0.941118,0.662625,0][-0.0146829,0.960631,-1.37637][0,-0.255751,0.966743][0.890296,0.662625,0][-0.0146829,1.0333,-1.35715][0,0.255446,0.966823][0.890296,0.655797,0][-0.0146829,1.0333,-1.35715][0,0.255446,0.966823][0.890296,0.655797,0][-0.547984,1.0333,-1.25185][0.369102,0.255998,0.893437][0.940409,0.655797,0][-0.555529,0.960631,-1.26958][0.369882,-0.256345,0.893014][0.941118,0.662625,0][-0.547984,1.0333,-1.25185][0.369102,0.255998,0.893437][0.940409,0.655797,0][-0.0146829,1.0333,-1.35715][0,0.255446,0.966823][0.890296,0.655797,0][-0.0146829,1.05752,-1.37945][0,0.995754,0.0920505][0.890296,0.653521,0][-0.0146829,1.05752,-1.37945][0,0.995754,0.0920505][0.890296,0.653521,0][-0.556737,1.05752,-1.27242][0.0355073,0.995843,0.0838779][0.941231,0.653521,0][-0.547984,1.0333,-1.25185][0.369102,0.255998,0.893437][0.940409,0.655797,0][-0.556737,1.05752,-1.27242][0.0355073,0.995843,0.0838779][0.068678,0.849901,0][-0.0146829,1.05752,-1.37945][0,0.995754,0.0920505][0.116751,0.86951,0][-0.0146829,1.0333,-1.42482][0,0.731306,-0.682049][0.115936,0.873695,0][-0.0146829,1.0333,-1.42482][0,0.731306,-0.682049][0.115936,0.873695,0][-0.574544,1.0333,-1.31427][-0.260439,0.731861,-0.629723][0.0662838,0.853441,0][-0.556737,1.05752,-1.27242][0.0355073,0.995843,0.0838779][0.068678,0.849901,0][-0.574544,1.0333,-1.31427][-0.260439,0.731861,-0.629723][0.686621,0.01,0][-0.0146829,1.0333,-1.42482][0,0.731306,-0.682049][0.739229,0.01,0][-0.0146829,0.960631,-1.4748][0,0.492521,-0.870301][0.739229,0.0168281,0][-0.0146829,0.960631,-1.4748][0,0.492521,-0.870301][0.739229,0.0168281,0][-0.594161,0.960631,-1.36038][-0.332585,0.49337,-0.803725][0.684777,0.0168281,0][-0.574544,1.0333,-1.31427][-0.260439,0.731861,-0.629723][0.686621,0.01,0][-0.0146829,0.960631,-1.4748][0,0.492521,-0.870301][0.739229,0.0168281,0][0.564795,0.960631,-1.36038][0.332584,0.49337,-0.803725][0.79368,0.0168281,0][0.635721,0.574235,-1.52708][0.349835,0.403546,-0.845438][0.800345,0.0531364,0][0.635721,0.574235,-1.52708][0.349835,0.403546,-0.845438][0.800345,0.0531364,0][-0.0146829,0.574235,-1.6555][0,0.402725,-0.915321][0.739229,0.0531364,0][-0.0146829,0.960631,-1.4748][0,0.492521,-0.870301][0.739229,0.0168281,0][-0.0146829,0.574235,-1.6555][0,0.402725,-0.915321][0.739229,0.0531364,0][0.635721,0.574235,-1.52708][0.349835,0.403546,-0.845438][0.800345,0.0531364,0][0.697593,0.19476,-1.67249][0.360047,0.336859,-0.869996][0.806159,0.0887944,0][0.697593,0.19476,-1.67249][0.360047,0.336859,-0.869996][0.806159,0.0887944,0][-0.0146829,0.19476,-1.81313][0,0.336151,-0.941808][0.739229,0.0887944,0][-0.0146829,0.574235,-1.6555][0,0.402725,-0.915321][0.739229,0.0531364,0][-0.0146829,0.19476,-1.81313][0,0.336151,-0.941808][0.739229,0.0887944,0][0.697593,0.19476,-1.67249][0.360047,0.336859,-0.869996][0.806159,0.0887944,0][0.741355,-0.170874,-1.77535][0.37428,0.205791,-0.904193][0.810271,0.123152,0][0.741355,-0.170874,-1.77535][0.37428,0.205791,-0.904193][0.810271,0.123152,0][-0.0146829,-0.170874,-1.92463][0,0.205342,-0.97869][0.739229,0.123152,0][-0.0146829,0.19476,-1.81313][0,0.336151,-0.941808][0.739229,0.0887944,0][-0.0146829,-0.170874,-1.92463][0,0.205342,-0.97869][0.739229,0.123152,0][0.741355,-0.170874,-1.77535][0.37428,0.205791,-0.904193][0.810271,0.123152,0][0.757955,-0.515747,-1.81437][0.381752,-0.0663696,-0.921879][0.811831,0.155558,0][0.757955,-0.515747,-1.81437][0.381752,-0.0663696,-0.921879][0.811831,0.155558,0][-0.0146829,-0.515747,-1.96692][0,-0.0662395,-0.997804][0.739229,0.155558,0][-0.0146829,-0.170874,-1.92463][0,0.205342,-0.97869][0.739229,0.123152,0][0.564795,0.960631,-1.36038][0.332584,0.49337,-0.803725][0.79368,0.0168281,0][1.03355,0.960631,-1.04665][0.614804,0.493997,-0.614804][0.837727,0.0168281,0][1.16184,0.574235,-1.17495][0.646802,0.404096,-0.646802][0.849783,0.0531364,0][1.16184,0.574235,-1.17495][0.646802,0.404096,-0.646802][0.849783,0.0531364,0][0.635721,0.574235,-1.52708][0.349835,0.403546,-0.845438][0.800345,0.0531364,0][0.564795,0.960631,-1.36038][0.332584,0.49337,-0.803725][0.79368,0.0168281,0][0.635721,0.574235,-1.52708][0.349835,0.403546,-0.845438][0.800345,0.0531364,0][1.16184,0.574235,-1.17495][0.646802,0.404096,-0.646802][0.849783,0.0531364,0][1.27376,0.19476,-1.28687][0.665655,0.337351,-0.665655][0.8603,0.0887944,0][1.27376,0.19476,-1.28687][0.665655,0.337351,-0.665655][0.8603,0.0887944,0][0.697593,0.19476,-1.67249][0.360047,0.336859,-0.869996][0.806159,0.0887944,0][0.635721,0.574235,-1.52708][0.349835,0.403546,-0.845438][0.800345,0.0531364,0][0.697593,0.19476,-1.67249][0.360047,0.336859,-0.869996][0.806159,0.0887944,0][1.27376,0.19476,-1.28687][0.665655,0.337351,-0.665655][0.8603,0.0887944,0][1.35293,-0.170874,-1.36603][0.691923,0.206119,-0.691923][0.867738,0.123152,0][1.35293,-0.170874,-1.36603][0.691923,0.206119,-0.691923][0.867738,0.123152,0][0.741355,-0.170874,-1.77535][0.37428,0.205791,-0.904193][0.810271,0.123152,0][0.697593,0.19476,-1.67249][0.360047,0.336859,-0.869996][0.806159,0.0887944,0][0.741355,-0.170874,-1.77535][0.37428,0.205791,-0.904193][0.810271,0.123152,0][1.35293,-0.170874,-1.36603][0.691923,0.206119,-0.691923][0.867738,0.123152,0][1.38295,-0.515747,-1.39606][0.705542,-0.0664797,-0.705543][0.87056,0.155558,0][1.38295,-0.515747,-1.39606][0.705542,-0.0664797,-0.705543][0.87056,0.155558,0][0.757955,-0.515747,-1.81437][0.381752,-0.0663696,-0.921879][0.811831,0.155558,0][0.741355,-0.170874,-1.77535][0.37428,0.205791,-0.904193][0.810271,0.123152,0][1.03355,0.960631,-1.04665][0.614804,0.493997,-0.614804][0.656564,0.288659,0][1.34728,0.960631,-0.577899][0.803725,0.49337,-0.332584][0.700611,0.288659,0][1.51397,0.574235,-0.648825][0.845438,0.403546,-0.349835][0.693946,0.324967,0][1.51397,0.574235,-0.648825][0.845438,0.403546,-0.349835][0.693946,0.324967,0][1.16184,0.574235,-1.17495][0.646802,0.404096,-0.646802][0.644508,0.324967,0][1.03355,0.960631,-1.04665][0.614804,0.493997,-0.614804][0.656564,0.288659,0][1.16184,0.574235,-1.17495][0.646802,0.404096,-0.646802][0.644508,0.324967,0][1.51397,0.574235,-0.648825][0.845438,0.403546,-0.349835][0.693946,0.324967,0][1.65939,0.19476,-0.710696][0.869996,0.336859,-0.360047][0.688132,0.360625,0][1.65939,0.19476,-0.710696][0.869996,0.336859,-0.360047][0.688132,0.360625,0][1.27376,0.19476,-1.28687][0.665655,0.337351,-0.665655][0.633992,0.360625,0][1.16184,0.574235,-1.17495][0.646802,0.404096,-0.646802][0.644508,0.324967,0][1.27376,0.19476,-1.28687][0.665655,0.337351,-0.665655][0.633992,0.360625,0][1.65939,0.19476,-0.710696][0.869996,0.336859,-0.360047][0.688132,0.360625,0][1.76225,-0.170874,-0.754459][0.904193,0.205791,-0.37428][0.68402,0.394983,0][1.76225,-0.170874,-0.754459][0.904193,0.205791,-0.37428][0.68402,0.394983,0][1.35293,-0.170874,-1.36603][0.691923,0.206119,-0.691923][0.626553,0.394983,0][1.27376,0.19476,-1.28687][0.665655,0.337351,-0.665655][0.633992,0.360625,0][1.35293,-0.170874,-1.36603][0.691923,0.206119,-0.691923][0.626553,0.394983,0][1.76225,-0.170874,-0.754459][0.904193,0.205791,-0.37428][0.68402,0.394983,0][1.80126,-0.515747,-0.771058][0.921879,-0.0663695,-0.381752][0.68246,0.427389,0][1.80126,-0.515747,-0.771058][0.921879,-0.0663695,-0.381752][0.68246,0.427389,0][1.38295,-0.515747,-1.39606][0.705542,-0.0664797,-0.705543][0.623731,0.427389,0][1.35293,-0.170874,-1.36603][0.691923,0.206119,-0.691923][0.626553,0.394983,0][1.34728,0.960631,-0.577899][0.803725,0.49337,-0.332584][0.700611,0.288659,0][1.4617,0.960631,0.00157959][0.870301,0.492521,0][0.755063,0.288659,0][1.6424,0.574235,0.00157958][0.915321,0.402725,0][0.755063,0.324967,0][1.6424,0.574235,0.00157958][0.915321,0.402725,0][0.755063,0.324967,0][1.51397,0.574235,-0.648825][0.845438,0.403546,-0.349835][0.693946,0.324967,0][1.34728,0.960631,-0.577899][0.803725,0.49337,-0.332584][0.700611,0.288659,0][1.51397,0.574235,-0.648825][0.845438,0.403546,-0.349835][0.693946,0.324967,0][1.6424,0.574235,0.00157958][0.915321,0.402725,0][0.755063,0.324967,0][1.80003,0.19476,0.00157957][0.941808,0.336151,0][0.755063,0.360625,0][1.80003,0.19476,0.00157957][0.941808,0.336151,0][0.755063,0.360625,0][1.65939,0.19476,-0.710696][0.869996,0.336859,-0.360047][0.688132,0.360625,0][1.51397,0.574235,-0.648825][0.845438,0.403546,-0.349835][0.693946,0.324967,0][1.65939,0.19476,-0.710696][0.869996,0.336859,-0.360047][0.688132,0.360625,0][1.80003,0.19476,0.00157957][0.941808,0.336151,0][0.755063,0.360625,0][1.91153,-0.170874,0.00157957][0.97869,0.205342,0][0.755063,0.394983,0][1.91153,-0.170874,0.00157957][0.97869,0.205342,0][0.755063,0.394983,0][1.76225,-0.170874,-0.754459][0.904193,0.205791,-0.37428][0.68402,0.394983,0][1.65939,0.19476,-0.710696][0.869996,0.336859,-0.360047][0.688132,0.360625,0][1.76225,-0.170874,-0.754459][0.904193,0.205791,-0.37428][0.68402,0.394983,0][1.91153,-0.170874,0.00157957][0.97869,0.205342,0][0.755063,0.394983,0][1.95382,-0.515747,0.00157957][0.997804,-0.0662395,0][0.755063,0.427389,0][1.95382,-0.515747,0.00157957][0.997804,-0.0662395,0][0.755063,0.427389,0][1.80126,-0.515747,-0.771058][0.921879,-0.0663695,-0.381752][0.68246,0.427389,0][1.76225,-0.170874,-0.754459][0.904193,0.205791,-0.37428][0.68402,0.394983,0][1.4617,0.960631,0.00157959][0.870301,0.492521,0][0.755063,0.288659,0][1.34728,0.960631,0.581058][0.804271,0.492546,0.332485][0.809514,0.288659,0][1.51397,0.574235,0.651984][0.845438,0.403546,0.349835][0.816179,0.324967,0][1.51397,0.574235,0.651984][0.845438,0.403546,0.349835][0.816179,0.324967,0][1.6424,0.574235,0.00157958][0.915321,0.402725,0][0.755063,0.324967,0][1.4617,0.960631,0.00157959][0.870301,0.492521,0][0.755063,0.288659,0][1.6424,0.574235,0.00157958][0.915321,0.402725,0][0.755063,0.324967,0][1.51397,0.574235,0.651984][0.845438,0.403546,0.349835][0.816179,0.324967,0][1.65939,0.19476,0.713855][0.869996,0.336859,0.360046][0.821993,0.360625,0][1.65939,0.19476,0.713855][0.869996,0.336859,0.360046][0.821993,0.360625,0][1.80003,0.19476,0.00157957][0.941808,0.336151,0][0.755063,0.360625,0][1.6424,0.574235,0.00157958][0.915321,0.402725,0][0.755063,0.324967,0][1.80003,0.19476,0.00157957][0.941808,0.336151,0][0.755063,0.360625,0][1.65939,0.19476,0.713855][0.869996,0.336859,0.360046][0.821993,0.360625,0][1.76225,-0.170874,0.757618][0.904193,0.205791,0.37428][0.826105,0.394983,0][1.76225,-0.170874,0.757618][0.904193,0.205791,0.37428][0.826105,0.394983,0][1.91153,-0.170874,0.00157957][0.97869,0.205342,0][0.755063,0.394983,0][1.80003,0.19476,0.00157957][0.941808,0.336151,0][0.755063,0.360625,0][1.91153,-0.170874,0.00157957][0.97869,0.205342,0][0.755063,0.394983,0][1.76225,-0.170874,0.757618][0.904193,0.205791,0.37428][0.826105,0.394983,0][1.80126,-0.515747,0.774217][0.921879,-0.0663697,0.381752][0.827665,0.427389,0][1.80126,-0.515747,0.774217][0.921879,-0.0663697,0.381752][0.827665,0.427389,0][1.95382,-0.515747,0.00157957][0.997804,-0.0662395,0][0.755063,0.427389,0][1.91153,-0.170874,0.00157957][0.97869,0.205342,0][0.755063,0.394983,0][1.34728,0.960631,0.581058][0.804271,0.492546,0.332485][0.809514,0.288659,0][1.03355,0.960631,1.04981][0.615484,0.492602,0.615242][0.853561,0.288659,0][1.16184,0.574235,1.17811][0.646802,0.404096,0.646802][0.865617,0.324967,0][1.16184,0.574235,1.17811][0.646802,0.404096,0.646802][0.865617,0.324967,0][1.51397,0.574235,0.651984][0.845438,0.403546,0.349835][0.816179,0.324967,0][1.34728,0.960631,0.581058][0.804271,0.492546,0.332485][0.809514,0.288659,0][1.51397,0.574235,0.651984][0.845438,0.403546,0.349835][0.816179,0.324967,0][1.16184,0.574235,1.17811][0.646802,0.404096,0.646802][0.865617,0.324967,0][1.27376,0.19476,1.29003][0.665655,0.337351,0.665655][0.876134,0.360625,0][1.27376,0.19476,1.29003][0.665655,0.337351,0.665655][0.876134,0.360625,0][1.65939,0.19476,0.713855][0.869996,0.336859,0.360046][0.821993,0.360625,0][1.51397,0.574235,0.651984][0.845438,0.403546,0.349835][0.816179,0.324967,0][1.65939,0.19476,0.713855][0.869996,0.336859,0.360046][0.821993,0.360625,0][1.27376,0.19476,1.29003][0.665655,0.337351,0.665655][0.876134,0.360625,0][1.35293,-0.170874,1.36919][0.691923,0.206119,0.691923][0.883572,0.394983,0][1.35293,-0.170874,1.36919][0.691923,0.206119,0.691923][0.883572,0.394983,0][1.76225,-0.170874,0.757618][0.904193,0.205791,0.37428][0.826105,0.394983,0][1.65939,0.19476,0.713855][0.869996,0.336859,0.360046][0.821993,0.360625,0][1.76225,-0.170874,0.757618][0.904193,0.205791,0.37428][0.826105,0.394983,0][1.35293,-0.170874,1.36919][0.691923,0.206119,0.691923][0.883572,0.394983,0][1.38295,-0.515747,1.39922][0.705543,-0.0664797,0.705542][0.886394,0.427389,0][1.38295,-0.515747,1.39922][0.705543,-0.0664797,0.705542][0.886394,0.427389,0][1.80126,-0.515747,0.774217][0.921879,-0.0663697,0.381752][0.827665,0.427389,0][1.76225,-0.170874,0.757618][0.904193,0.205791,0.37428][0.826105,0.394983,0][1.03355,0.960631,1.04981][0.615484,0.492602,0.615242][0.368899,0.506908,0][0.564796,0.960631,1.36354][0.332705,0.492634,0.804126][0.412946,0.506908,0][0.635721,0.574235,1.53024][0.349835,0.403546,0.845438][0.406282,0.543217,0][0.635721,0.574235,1.53024][0.349835,0.403546,0.845438][0.406282,0.543217,0][1.16184,0.574235,1.17811][0.646802,0.404096,0.646802][0.356844,0.543217,0][1.03355,0.960631,1.04981][0.615484,0.492602,0.615242][0.368899,0.506908,0][1.16184,0.574235,1.17811][0.646802,0.404096,0.646802][0.356844,0.543217,0][0.635721,0.574235,1.53024][0.349835,0.403546,0.845438][0.406282,0.543217,0][0.697593,0.19476,1.67565][0.360046,0.336859,0.869996][0.400468,0.578875,0][0.697593,0.19476,1.67565][0.360046,0.336859,0.869996][0.400468,0.578875,0][1.27376,0.19476,1.29003][0.665655,0.337351,0.665655][0.346327,0.578875,0][1.16184,0.574235,1.17811][0.646802,0.404096,0.646802][0.356844,0.543217,0][1.27376,0.19476,1.29003][0.665655,0.337351,0.665655][0.346327,0.578875,0][0.697593,0.19476,1.67565][0.360046,0.336859,0.869996][0.400468,0.578875,0][0.741355,-0.170874,1.77851][0.37428,0.205791,0.904193][0.396356,0.613232,0][0.741355,-0.170874,1.77851][0.37428,0.205791,0.904193][0.396356,0.613232,0][1.35293,-0.170874,1.36919][0.691923,0.206119,0.691923][0.338888,0.613232,0][1.27376,0.19476,1.29003][0.665655,0.337351,0.665655][0.346327,0.578875,0][1.35293,-0.170874,1.36919][0.691923,0.206119,0.691923][0.338888,0.613232,0][0.741355,-0.170874,1.77851][0.37428,0.205791,0.904193][0.396356,0.613232,0][0.757955,-0.515747,1.81752][0.381752,-0.0663697,0.921879][0.394796,0.645638,0][0.757955,-0.515747,1.81752][0.381752,-0.0663697,0.921879][0.394796,0.645638,0][1.38295,-0.515747,1.39922][0.705543,-0.0664797,0.705542][0.336067,0.645638,0][1.35293,-0.170874,1.36919][0.691923,0.206119,0.691923][0.338888,0.613232,0][0.564796,0.960631,1.36354][0.332705,0.492634,0.804126][0.412946,0.506908,0][-0.0146828,0.960631,1.47796][-5.42729e-005,0.492483,0.870322][0.467398,0.506908,0][-0.0146828,0.574235,1.65866][0,0.402725,0.915321][0.467398,0.543217,0][-0.0146828,0.574235,1.65866][0,0.402725,0.915321][0.467398,0.543217,0][0.635721,0.574235,1.53024][0.349835,0.403546,0.845438][0.406282,0.543217,0][0.564796,0.960631,1.36354][0.332705,0.492634,0.804126][0.412946,0.506908,0][0.635721,0.574235,1.53024][0.349835,0.403546,0.845438][0.406282,0.543217,0][-0.0146828,0.574235,1.65866][0,0.402725,0.915321][0.467398,0.543217,0][-0.0146828,0.19476,1.81629][0,0.336151,0.941808][0.467398,0.578875,0][-0.0146828,0.19476,1.81629][0,0.336151,0.941808][0.467398,0.578875,0][0.697593,0.19476,1.67565][0.360046,0.336859,0.869996][0.400468,0.578875,0][0.635721,0.574235,1.53024][0.349835,0.403546,0.845438][0.406282,0.543217,0][0.697593,0.19476,1.67565][0.360046,0.336859,0.869996][0.400468,0.578875,0][-0.0146828,0.19476,1.81629][0,0.336151,0.941808][0.467398,0.578875,0][-0.0146827,-0.170874,1.92779][0,0.205342,0.97869][0.467398,0.613232,0][-0.0146827,-0.170874,1.92779][0,0.205342,0.97869][0.467398,0.613232,0][0.741355,-0.170874,1.77851][0.37428,0.205791,0.904193][0.396356,0.613232,0][0.697593,0.19476,1.67565][0.360046,0.336859,0.869996][0.400468,0.578875,0][0.741355,-0.170874,1.77851][0.37428,0.205791,0.904193][0.396356,0.613232,0][-0.0146827,-0.170874,1.92779][0,0.205342,0.97869][0.467398,0.613232,0][-0.0146827,-0.515747,1.97008][0,-0.0662395,0.997804][0.467398,0.645638,0][-0.0146827,-0.515747,1.97008][0,-0.0662395,0.997804][0.467398,0.645638,0][0.757955,-0.515747,1.81752][0.381752,-0.0663697,0.921879][0.394796,0.645638,0][0.741355,-0.170874,1.77851][0.37428,0.205791,0.904193][0.396356,0.613232,0][-0.0146828,0.960631,1.47796][-5.42729e-005,0.492483,0.870322][0.467398,0.506908,0][-0.594161,0.960631,1.36354][-0.332584,0.49337,0.803725][0.521849,0.506908,0][-0.665087,0.574235,1.53024][-0.349835,0.403546,0.845438][0.528514,0.543217,0][-0.665087,0.574235,1.53024][-0.349835,0.403546,0.845438][0.528514,0.543217,0][-0.0146828,0.574235,1.65866][0,0.402725,0.915321][0.467398,0.543217,0][-0.0146828,0.960631,1.47796][-5.42729e-005,0.492483,0.870322][0.467398,0.506908,0][-0.0146828,0.574235,1.65866][0,0.402725,0.915321][0.467398,0.543217,0][-0.665087,0.574235,1.53024][-0.349835,0.403546,0.845438][0.528514,0.543217,0][-0.726958,0.19476,1.67565][-0.360047,0.336859,0.869996][0.534328,0.578875,0][-0.726958,0.19476,1.67565][-0.360047,0.336859,0.869996][0.534328,0.578875,0][-0.0146828,0.19476,1.81629][0,0.336151,0.941808][0.467398,0.578875,0][-0.0146828,0.574235,1.65866][0,0.402725,0.915321][0.467398,0.543217,0][-0.0146828,0.19476,1.81629][0,0.336151,0.941808][0.467398,0.578875,0][-0.726958,0.19476,1.67565][-0.360047,0.336859,0.869996][0.534328,0.578875,0][-0.770721,-0.170875,1.77851][-0.37428,0.205791,0.904193][0.53844,0.613232,0][-0.770721,-0.170875,1.77851][-0.37428,0.205791,0.904193][0.53844,0.613232,0][-0.0146827,-0.170874,1.92779][0,0.205342,0.97869][0.467398,0.613232,0][-0.0146828,0.19476,1.81629][0,0.336151,0.941808][0.467398,0.578875,0][-0.0146827,-0.170874,1.92779][0,0.205342,0.97869][0.467398,0.613232,0][-0.770721,-0.170875,1.77851][-0.37428,0.205791,0.904193][0.53844,0.613232,0][-0.787321,-0.515747,1.81752][-0.381752,-0.0663697,0.921879][0.54,0.645638,0][-0.787321,-0.515747,1.81752][-0.381752,-0.0663697,0.921879][0.54,0.645638,0][-0.0146827,-0.515747,1.97008][0,-0.0662395,0.997804][0.467398,0.645638,0][-0.0146827,-0.170874,1.92779][0,0.205342,0.97869][0.467398,0.613232,0][-0.594161,0.960631,1.36354][-0.332584,0.49337,0.803725][0.521849,0.506908,0][-1.06291,0.960631,1.04981][-0.614804,0.493996,0.614804][0.565896,0.506908,0][-1.19121,0.574235,1.17811][-0.646802,0.404096,0.646802][0.577952,0.543217,0][-1.19121,0.574235,1.17811][-0.646802,0.404096,0.646802][0.577952,0.543217,0][-0.665087,0.574235,1.53024][-0.349835,0.403546,0.845438][0.528514,0.543217,0][-0.594161,0.960631,1.36354][-0.332584,0.49337,0.803725][0.521849,0.506908,0][-0.665087,0.574235,1.53024][-0.349835,0.403546,0.845438][0.528514,0.543217,0][-1.19121,0.574235,1.17811][-0.646802,0.404096,0.646802][0.577952,0.543217,0][-1.30313,0.19476,1.29003][-0.665655,0.337351,0.665655][0.588469,0.578875,0][-1.30313,0.19476,1.29003][-0.665655,0.337351,0.665655][0.588469,0.578875,0][-0.726958,0.19476,1.67565][-0.360047,0.336859,0.869996][0.534328,0.578875,0][-0.665087,0.574235,1.53024][-0.349835,0.403546,0.845438][0.528514,0.543217,0][-0.726958,0.19476,1.67565][-0.360047,0.336859,0.869996][0.534328,0.578875,0][-1.30313,0.19476,1.29003][-0.665655,0.337351,0.665655][0.588469,0.578875,0][-1.38229,-0.170875,1.36919][-0.691923,0.206119,0.691923][0.595908,0.613232,0][-1.38229,-0.170875,1.36919][-0.691923,0.206119,0.691923][0.595908,0.613232,0][-0.770721,-0.170875,1.77851][-0.37428,0.205791,0.904193][0.53844,0.613232,0][-0.726958,0.19476,1.67565][-0.360047,0.336859,0.869996][0.534328,0.578875,0][-0.770721,-0.170875,1.77851][-0.37428,0.205791,0.904193][0.53844,0.613232,0][-1.38229,-0.170875,1.36919][-0.691923,0.206119,0.691923][0.595908,0.613232,0][-1.41232,-0.515747,1.39922][-0.705542,-0.0664797,0.705543][0.598729,0.645638,0][-1.41232,-0.515747,1.39922][-0.705542,-0.0664797,0.705543][0.598729,0.645638,0][-0.787321,-0.515747,1.81752][-0.381752,-0.0663697,0.921879][0.54,0.645638,0][-0.770721,-0.170875,1.77851][-0.37428,0.205791,0.904193][0.53844,0.613232,0][-1.06291,0.960631,1.04981][-0.614804,0.493996,0.614804][0.368899,0.288659,0][-1.37664,0.960631,0.581058][-0.803725,0.493369,0.332585][0.412946,0.288659,0][-1.54334,0.574235,0.651984][-0.845438,0.403545,0.349835][0.406282,0.324967,0][-1.54334,0.574235,0.651984][-0.845438,0.403545,0.349835][0.406282,0.324967,0][-1.19121,0.574235,1.17811][-0.646802,0.404096,0.646802][0.356844,0.324967,0][-1.06291,0.960631,1.04981][-0.614804,0.493996,0.614804][0.368899,0.288659,0][-1.19121,0.574235,1.17811][-0.646802,0.404096,0.646802][0.356844,0.324967,0][-1.54334,0.574235,0.651984][-0.845438,0.403545,0.349835][0.406282,0.324967,0][-1.68876,0.19476,0.713855][-0.869996,0.336859,0.360047][0.400468,0.360625,0][-1.68876,0.19476,0.713855][-0.869996,0.336859,0.360047][0.400468,0.360625,0][-1.30313,0.19476,1.29003][-0.665655,0.337351,0.665655][0.346327,0.360625,0][-1.19121,0.574235,1.17811][-0.646802,0.404096,0.646802][0.356844,0.324967,0][-1.30313,0.19476,1.29003][-0.665655,0.337351,0.665655][0.346327,0.360625,0][-1.68876,0.19476,0.713855][-0.869996,0.336859,0.360047][0.400468,0.360625,0][-1.79161,-0.170875,0.757618][-0.904193,0.205791,0.37428][0.396356,0.394983,0][-1.79161,-0.170875,0.757618][-0.904193,0.205791,0.37428][0.396356,0.394983,0][-1.38229,-0.170875,1.36919][-0.691923,0.206119,0.691923][0.338888,0.394983,0][-1.30313,0.19476,1.29003][-0.665655,0.337351,0.665655][0.346327,0.360625,0][-1.38229,-0.170875,1.36919][-0.691923,0.206119,0.691923][0.338888,0.394983,0][-1.79161,-0.170875,0.757618][-0.904193,0.205791,0.37428][0.396356,0.394983,0][-1.83063,-0.515747,0.774218][-0.921879,-0.0663697,0.381752][0.394796,0.427389,0][-1.83063,-0.515747,0.774218][-0.921879,-0.0663697,0.381752][0.394796,0.427389,0][-1.41232,-0.515747,1.39922][-0.705542,-0.0664797,0.705543][0.336067,0.427389,0][-1.38229,-0.170875,1.36919][-0.691923,0.206119,0.691923][0.338888,0.394983,0][-1.37664,0.960631,0.581058][-0.803725,0.493369,0.332585][0.412946,0.288659,0][-1.49106,0.960631,0.00157972][-0.870301,0.492521,0][0.467398,0.288659,0][-1.67176,0.574235,0.00157972][-0.915321,0.402725,0][0.467398,0.324967,0][-1.67176,0.574235,0.00157972][-0.915321,0.402725,0][0.467398,0.324967,0][-1.54334,0.574235,0.651984][-0.845438,0.403545,0.349835][0.406282,0.324967,0][-1.37664,0.960631,0.581058][-0.803725,0.493369,0.332585][0.412946,0.288659,0][-1.54334,0.574235,0.651984][-0.845438,0.403545,0.349835][0.406282,0.324967,0][-1.67176,0.574235,0.00157972][-0.915321,0.402725,0][0.467398,0.324967,0][-1.8294,0.19476,0.00157973][-0.941808,0.336151,1.5067e-007][0.467398,0.360625,0][-1.8294,0.19476,0.00157973][-0.941808,0.336151,1.5067e-007][0.467398,0.360625,0][-1.68876,0.19476,0.713855][-0.869996,0.336859,0.360047][0.400468,0.360625,0][-1.54334,0.574235,0.651984][-0.845438,0.403545,0.349835][0.406282,0.324967,0][-1.68876,0.19476,0.713855][-0.869996,0.336859,0.360047][0.400468,0.360625,0][-1.8294,0.19476,0.00157973][-0.941808,0.336151,1.5067e-007][0.467398,0.360625,0][-1.94089,-0.170875,0.00157974][-0.97869,0.205342,0][0.467398,0.394983,0][-1.94089,-0.170875,0.00157974][-0.97869,0.205342,0][0.467398,0.394983,0][-1.79161,-0.170875,0.757618][-0.904193,0.205791,0.37428][0.396356,0.394983,0][-1.68876,0.19476,0.713855][-0.869996,0.336859,0.360047][0.400468,0.360625,0][-1.79161,-0.170875,0.757618][-0.904193,0.205791,0.37428][0.396356,0.394983,0][-1.94089,-0.170875,0.00157974][-0.97869,0.205342,0][0.467398,0.394983,0][-1.98319,-0.515747,0.00157974][-0.997804,-0.0662395,0][0.467398,0.427389,0][-1.98319,-0.515747,0.00157974][-0.997804,-0.0662395,0][0.467398,0.427389,0][-1.83063,-0.515747,0.774218][-0.921879,-0.0663697,0.381752][0.394796,0.427389,0][-1.79161,-0.170875,0.757618][-0.904193,0.205791,0.37428][0.396356,0.394983,0][-1.49106,0.960631,0.00157972][-0.870301,0.492521,0][0.467398,0.288659,0][-1.37664,0.960631,-0.577899][-0.803725,0.493369,-0.332584][0.521849,0.288659,0][-1.54334,0.574235,-0.648824][-0.845438,0.403546,-0.349835][0.528514,0.324967,0][-1.54334,0.574235,-0.648824][-0.845438,0.403546,-0.349835][0.528514,0.324967,0][-1.67176,0.574235,0.00157972][-0.915321,0.402725,0][0.467398,0.324967,0][-1.49106,0.960631,0.00157972][-0.870301,0.492521,0][0.467398,0.288659,0][-1.67176,0.574235,0.00157972][-0.915321,0.402725,0][0.467398,0.324967,0][-1.54334,0.574235,-0.648824][-0.845438,0.403546,-0.349835][0.528514,0.324967,0][-1.68876,0.19476,-0.710696][-0.869996,0.336859,-0.360047][0.534328,0.360625,0][-1.68876,0.19476,-0.710696][-0.869996,0.336859,-0.360047][0.534328,0.360625,0][-1.8294,0.19476,0.00157973][-0.941808,0.336151,1.5067e-007][0.467398,0.360625,0][-1.67176,0.574235,0.00157972][-0.915321,0.402725,0][0.467398,0.324967,0][-1.8294,0.19476,0.00157973][-0.941808,0.336151,1.5067e-007][0.467398,0.360625,0][-1.68876,0.19476,-0.710696][-0.869996,0.336859,-0.360047][0.534328,0.360625,0][-1.79161,-0.170875,-0.754458][-0.904193,0.205791,-0.37428][0.53844,0.394983,0][-1.79161,-0.170875,-0.754458][-0.904193,0.205791,-0.37428][0.53844,0.394983,0][-1.94089,-0.170875,0.00157974][-0.97869,0.205342,0][0.467398,0.394983,0][-1.8294,0.19476,0.00157973][-0.941808,0.336151,1.5067e-007][0.467398,0.360625,0][-1.94089,-0.170875,0.00157974][-0.97869,0.205342,0][0.467398,0.394983,0][-1.79161,-0.170875,-0.754458][-0.904193,0.205791,-0.37428][0.53844,0.394983,0][-1.83063,-0.515747,-0.771058][-0.921879,-0.0663698,-0.381752][0.54,0.427389,0][-1.83063,-0.515747,-0.771058][-0.921879,-0.0663698,-0.381752][0.54,0.427389,0][-1.98319,-0.515747,0.00157974][-0.997804,-0.0662395,0][0.467398,0.427389,0][-1.94089,-0.170875,0.00157974][-0.97869,0.205342,0][0.467398,0.394983,0][-1.37664,0.960631,-0.577899][-0.803725,0.493369,-0.332584][0.521849,0.288659,0][-1.06291,0.960631,-1.04665][-0.614804,0.493996,-0.614804][0.565896,0.288659,0][-1.19121,0.574235,-1.17495][-0.646802,0.404096,-0.646802][0.577952,0.324967,0][-1.19121,0.574235,-1.17495][-0.646802,0.404096,-0.646802][0.577952,0.324967,0][-1.54334,0.574235,-0.648824][-0.845438,0.403546,-0.349835][0.528514,0.324967,0][-1.37664,0.960631,-0.577899][-0.803725,0.493369,-0.332584][0.521849,0.288659,0][-1.54334,0.574235,-0.648824][-0.845438,0.403546,-0.349835][0.528514,0.324967,0][-1.19121,0.574235,-1.17495][-0.646802,0.404096,-0.646802][0.577952,0.324967,0][-1.30313,0.19476,-1.28687][-0.665655,0.337351,-0.665655][0.588469,0.360625,0][-1.30313,0.19476,-1.28687][-0.665655,0.337351,-0.665655][0.588469,0.360625,0][-1.68876,0.19476,-0.710696][-0.869996,0.336859,-0.360047][0.534328,0.360625,0][-1.54334,0.574235,-0.648824][-0.845438,0.403546,-0.349835][0.528514,0.324967,0][-1.68876,0.19476,-0.710696][-0.869996,0.336859,-0.360047][0.534328,0.360625,0][-1.30313,0.19476,-1.28687][-0.665655,0.337351,-0.665655][0.588469,0.360625,0][-1.38229,-0.170875,-1.36603][-0.691923,0.206119,-0.691923][0.595908,0.394983,0][-1.38229,-0.170875,-1.36603][-0.691923,0.206119,-0.691923][0.595908,0.394983,0][-1.79161,-0.170875,-0.754458][-0.904193,0.205791,-0.37428][0.53844,0.394983,0][-1.68876,0.19476,-0.710696][-0.869996,0.336859,-0.360047][0.534328,0.360625,0][-1.79161,-0.170875,-0.754458][-0.904193,0.205791,-0.37428][0.53844,0.394983,0][-1.38229,-0.170875,-1.36603][-0.691923,0.206119,-0.691923][0.595908,0.394983,0][-1.41232,-0.515747,-1.39606][-0.705543,-0.0664797,-0.705542][0.598729,0.427389,0][-1.41232,-0.515747,-1.39606][-0.705543,-0.0664797,-0.705542][0.598729,0.427389,0][-1.83063,-0.515747,-0.771058][-0.921879,-0.0663698,-0.381752][0.54,0.427389,0][-1.79161,-0.170875,-0.754458][-0.904193,0.205791,-0.37428][0.53844,0.394983,0][-1.06291,0.960631,-1.04665][-0.614804,0.493996,-0.614804][0.640731,0.0168281,0][-0.594161,0.960631,-1.36038][-0.332585,0.49337,-0.803725][0.684777,0.0168281,0][-0.665087,0.574235,-1.52708][-0.349835,0.403546,-0.845438][0.678113,0.0531364,0][-0.665087,0.574235,-1.52708][-0.349835,0.403546,-0.845438][0.678113,0.0531364,0][-1.19121,0.574235,-1.17495][-0.646802,0.404096,-0.646802][0.628675,0.0531364,0][-1.06291,0.960631,-1.04665][-0.614804,0.493996,-0.614804][0.640731,0.0168281,0][-1.19121,0.574235,-1.17495][-0.646802,0.404096,-0.646802][0.628675,0.0531364,0][-0.665087,0.574235,-1.52708][-0.349835,0.403546,-0.845438][0.678113,0.0531364,0][-0.726958,0.19476,-1.67249][-0.360047,0.336859,-0.869996][0.672299,0.0887944,0][-0.726958,0.19476,-1.67249][-0.360047,0.336859,-0.869996][0.672299,0.0887944,0][-1.30313,0.19476,-1.28687][-0.665655,0.337351,-0.665655][0.618158,0.0887944,0][-1.19121,0.574235,-1.17495][-0.646802,0.404096,-0.646802][0.628675,0.0531364,0][-1.30313,0.19476,-1.28687][-0.665655,0.337351,-0.665655][0.618158,0.0887944,0][-0.726958,0.19476,-1.67249][-0.360047,0.336859,-0.869996][0.672299,0.0887944,0][-0.770721,-0.170875,-1.77535][-0.37428,0.205791,-0.904193][0.668187,0.123152,0][-0.770721,-0.170875,-1.77535][-0.37428,0.205791,-0.904193][0.668187,0.123152,0][-1.38229,-0.170875,-1.36603][-0.691923,0.206119,-0.691923][0.610719,0.123152,0][-1.30313,0.19476,-1.28687][-0.665655,0.337351,-0.665655][0.618158,0.0887944,0][-1.38229,-0.170875,-1.36603][-0.691923,0.206119,-0.691923][0.610719,0.123152,0][-0.770721,-0.170875,-1.77535][-0.37428,0.205791,-0.904193][0.668187,0.123152,0][-0.787321,-0.515747,-1.81437][-0.381752,-0.0663697,-0.921879][0.666627,0.155558,0][-0.787321,-0.515747,-1.81437][-0.381752,-0.0663697,-0.921879][0.666627,0.155558,0][-1.41232,-0.515747,-1.39606][-0.705543,-0.0664797,-0.705542][0.607898,0.155558,0][-1.38229,-0.170875,-1.36603][-0.691923,0.206119,-0.691923][0.610719,0.123152,0][-0.594161,0.960631,-1.36038][-0.332585,0.49337,-0.803725][0.684777,0.0168281,0][-0.0146829,0.960631,-1.4748][0,0.492521,-0.870301][0.739229,0.0168281,0][-0.0146829,0.574235,-1.6555][0,0.402725,-0.915321][0.739229,0.0531364,0][-0.0146829,0.574235,-1.6555][0,0.402725,-0.915321][0.739229,0.0531364,0][-0.665087,0.574235,-1.52708][-0.349835,0.403546,-0.845438][0.678113,0.0531364,0][-0.594161,0.960631,-1.36038][-0.332585,0.49337,-0.803725][0.684777,0.0168281,0][-0.665087,0.574235,-1.52708][-0.349835,0.403546,-0.845438][0.678113,0.0531364,0][-0.0146829,0.574235,-1.6555][0,0.402725,-0.915321][0.739229,0.0531364,0][-0.0146829,0.19476,-1.81313][0,0.336151,-0.941808][0.739229,0.0887944,0][-0.0146829,0.19476,-1.81313][0,0.336151,-0.941808][0.739229,0.0887944,0][-0.726958,0.19476,-1.67249][-0.360047,0.336859,-0.869996][0.672299,0.0887944,0][-0.665087,0.574235,-1.52708][-0.349835,0.403546,-0.845438][0.678113,0.0531364,0][-0.726958,0.19476,-1.67249][-0.360047,0.336859,-0.869996][0.672299,0.0887944,0][-0.0146829,0.19476,-1.81313][0,0.336151,-0.941808][0.739229,0.0887944,0][-0.0146829,-0.170874,-1.92463][0,0.205342,-0.97869][0.739229,0.123152,0][-0.0146829,-0.170874,-1.92463][0,0.205342,-0.97869][0.739229,0.123152,0][-0.770721,-0.170875,-1.77535][-0.37428,0.205791,-0.904193][0.668187,0.123152,0][-0.726958,0.19476,-1.67249][-0.360047,0.336859,-0.869996][0.672299,0.0887944,0][-0.770721,-0.170875,-1.77535][-0.37428,0.205791,-0.904193][0.668187,0.123152,0][-0.0146829,-0.170874,-1.92463][0,0.205342,-0.97869][0.739229,0.123152,0][-0.0146829,-0.515747,-1.96692][0,-0.0662395,-0.997804][0.739229,0.155558,0][-0.0146829,-0.515747,-1.96692][0,-0.0662395,-0.997804][0.739229,0.155558,0][-0.787321,-0.515747,-1.81437][-0.381752,-0.0663697,-0.921879][0.666627,0.155558,0][-0.770721,-0.170875,-1.77535][-0.37428,0.205791,-0.904193][0.668187,0.123152,0][-0.0146829,-0.515747,-1.96692][0,-0.0662395,-0.997804][0.739229,0.155558,0][0.757955,-0.515747,-1.81437][0.381752,-0.0663696,-0.921879][0.811831,0.155558,0][0.727774,-0.807562,-1.74343][0.344179,-0.43618,-0.831437][0.808995,0.182979,0][0.727774,-0.807562,-1.74343][0.344179,-0.43618,-0.831437][0.808995,0.182979,0][-0.0146829,-0.807562,-1.89003][0,-0.435513,-0.900182][0.739229,0.182979,0][-0.0146829,-0.515747,-1.96692][0,-0.0662395,-0.997804][0.739229,0.155558,0][-0.0146829,-0.807562,-1.89003][0,-0.435513,-0.900182][0.739229,0.182979,0][0.727774,-0.807562,-1.74343][0.344179,-0.43618,-0.831437][0.808995,0.182979,0][0.661375,-1.02325,-1.58737][0.278594,-0.684666,-0.673512][0.802756,0.203247,0][0.661375,-1.02325,-1.58737][0.278594,-0.684666,-0.673512][0.802756,0.203247,0][-0.0146829,-1.02325,-1.72086][0,-0.683863,-0.729611][0.739229,0.203247,0][-0.0146829,-0.807562,-1.89003][0,-0.435513,-0.900182][0.739229,0.182979,0][-0.0146829,-1.02325,-1.72086][0,-0.683863,-0.729611][0.137922,0.327733,0][0.661375,-1.02325,-1.58737][0.278594,-0.684666,-0.673512][0.0779653,0.303275,0][0.594977,-1.16974,-1.43131][0.264874,-0.720924,-0.640399][0.0868931,0.290074,0][0.594977,-1.16974,-1.43131][0.264874,-0.720924,-0.640399][0.0868931,0.290074,0][-0.0146828,-1.16974,-1.55169][0,-0.720022,-0.693951][0.140961,0.31213,0][-0.0146829,-1.02325,-1.72086][0,-0.683863,-0.729611][0.137922,0.327733,0][-0.0146828,-1.16974,-1.55169][0,-0.720022,-0.693951][0.869299,0.756338,0][0.594977,-1.16974,-1.43131][0.264874,-0.720924,-0.640399][0.926587,0.756338,0][0.564796,-1.25394,-1.36038][0.303167,-0.608995,-0.732949][0.923751,0.76425,0][0.564796,-1.25394,-1.36038][0.303167,-0.608995,-0.732949][0.923751,0.76425,0][-0.0146828,-1.25394,-1.4748][0,-0.607984,-0.79395][0.869299,0.76425,0][-0.0146828,-1.16974,-1.55169][0,-0.720022,-0.693951][0.869299,0.756338,0][0.757955,-0.515747,-1.81437][0.381752,-0.0663696,-0.921879][0.811831,0.155558,0][1.38295,-0.515747,-1.39606][0.705542,-0.0664797,-0.705543][0.87056,0.155558,0][1.32836,-0.807562,-1.34146][0.636092,-0.436777,-0.636092][0.86543,0.182979,0][1.32836,-0.807562,-1.34146][0.636092,-0.436777,-0.636092][0.86543,0.182979,0][0.727774,-0.807562,-1.74343][0.344179,-0.43618,-0.831437][0.808995,0.182979,0][0.757955,-0.515747,-1.81437][0.381752,-0.0663696,-0.921879][0.811831,0.155558,0][0.727774,-0.807562,-1.74343][0.344179,-0.43618,-0.831437][0.101299,0.10902,0][1.32836,-0.807562,-1.34146][0.636092,-0.436777,-0.636092][0.168767,0.101299,0][1.20825,-1.02325,-1.22135][0.514965,-0.685289,-0.514965][0.168597,0.127096,0][1.20825,-1.02325,-1.22135][0.514965,-0.685289,-0.514965][0.168597,0.127096,0][0.661375,-1.02325,-1.58737][0.278594,-0.684666,-0.673512][0.107163,0.134127,0][0.727774,-0.807562,-1.74343][0.344179,-0.43618,-0.831437][0.101299,0.10902,0][0.661375,-1.02325,-1.58737][0.278594,-0.684666,-0.673512][0.0779653,0.303275,0][1.20825,-1.02325,-1.22135][0.514965,-0.685289,-0.514965][0.0341009,0.259691,0][1.08814,-1.16974,-1.10124][0.489651,-0.721446,-0.489651][0.0473368,0.250771,0][1.08814,-1.16974,-1.10124][0.489651,-0.721446,-0.489651][0.0473368,0.250771,0][0.594977,-1.16974,-1.43131][0.264874,-0.720924,-0.640399][0.0868931,0.290074,0][0.661375,-1.02325,-1.58737][0.278594,-0.684666,-0.673512][0.0779653,0.303275,0][0.594977,-1.16974,-1.43131][0.264874,-0.720924,-0.640399][0.112441,0.154121,0][1.08814,-1.16974,-1.10124][0.489651,-0.721446,-0.489651][0.167842,0.147781,0][1.03355,-1.25394,-1.04665][0.560555,-0.609554,-0.560555][0.167648,0.158484,0][1.03355,-1.25394,-1.04665][0.560555,-0.609554,-0.560555][0.167648,0.158484,0][0.564796,-1.25394,-1.36038][0.303167,-0.608995,-0.732949][0.11499,0.16451,0][0.594977,-1.16974,-1.43131][0.264874,-0.720924,-0.640399][0.112441,0.154121,0][1.38295,-0.515747,-1.39606][0.705542,-0.0664797,-0.705543][0.623731,0.427389,0][1.80126,-0.515747,-0.771058][0.921879,-0.0663695,-0.381752][0.68246,0.427389,0][1.73033,-0.807562,-0.740877][0.831437,-0.43618,-0.344179][0.685296,0.45481,0][1.73033,-0.807562,-0.740877][0.831437,-0.43618,-0.344179][0.685296,0.45481,0][1.32836,-0.807562,-1.34146][0.636092,-0.436777,-0.636092][0.628861,0.45481,0][1.38295,-0.515747,-1.39606][0.705542,-0.0664797,-0.705543][0.623731,0.427389,0][1.32836,-0.807562,-1.34146][0.636092,-0.436777,-0.636092][0.168767,0.101299,0][1.73033,-0.807562,-0.740877][0.831437,-0.43618,-0.344179][0.232939,0.109886,0][1.57427,-1.02325,-0.674478][0.673512,-0.684666,-0.278595][0.22703,0.134916,0][1.57427,-1.02325,-0.674478][0.673512,-0.684666,-0.278595][0.22703,0.134916,0][1.20825,-1.02325,-1.22135][0.514965,-0.685289,-0.514965][0.168597,0.127096,0][1.32836,-0.807562,-1.34146][0.636092,-0.436777,-0.636092][0.168767,0.101299,0][1.20825,-1.02325,-1.22135][0.514965,-0.685289,-0.514965][0.0341009,0.259691,0][1.57427,-1.02325,-0.674478][0.673512,-0.684666,-0.278595][0.0101666,0.202675,0][1.41821,-1.16974,-0.60808][0.640399,-0.720924,-0.264874][0.0257531,0.199355,0][1.41821,-1.16974,-0.60808][0.640399,-0.720924,-0.264874][0.0257531,0.199355,0][1.08814,-1.16974,-1.10124][0.489651,-0.721446,-0.489651][0.0473368,0.250771,0][1.20825,-1.02325,-1.22135][0.514965,-0.685289,-0.514965][0.0341009,0.259691,0][1.08814,-1.16974,-1.10124][0.489651,-0.721446,-0.489651][0.167842,0.147781,0][1.41821,-1.16974,-0.60808][0.640399,-0.720924,-0.264874][0.220536,0.154832,0][1.34728,-1.25394,-0.577899][0.732949,-0.608995,-0.303167][0.217733,0.165187,0][1.34728,-1.25394,-0.577899][0.732949,-0.608995,-0.303167][0.217733,0.165187,0][1.03355,-1.25394,-1.04665][0.560555,-0.609554,-0.560555][0.167648,0.158484,0][1.08814,-1.16974,-1.10124][0.489651,-0.721446,-0.489651][0.167842,0.147781,0][1.80126,-0.515747,-0.771058][0.921879,-0.0663695,-0.381752][0.68246,0.427389,0][1.95382,-0.515747,0.00157957][0.997804,-0.0662395,0][0.755063,0.427389,0][1.87693,-0.807562,0.00157957][0.900182,-0.435513,0][0.755063,0.45481,0][1.87693,-0.807562,0.00157957][0.900182,-0.435513,0][0.755063,0.45481,0][1.73033,-0.807562,-0.740877][0.831437,-0.43618,-0.344179][0.685296,0.45481,0][1.80126,-0.515747,-0.771058][0.921879,-0.0663695,-0.381752][0.68246,0.427389,0][1.73033,-0.807562,-0.740877][0.831437,-0.43618,-0.344179][0.685296,0.45481,0][1.87693,-0.807562,0.00157957][0.900182,-0.435513,0][0.755063,0.45481,0][1.70776,-1.02325,0.00157958][0.729611,-0.683863,0][0.755063,0.475078,0][1.70776,-1.02325,0.00157958][0.729611,-0.683863,0][0.755063,0.475078,0][1.57427,-1.02325,-0.674478][0.673512,-0.684666,-0.278595][0.691536,0.475078,0][1.73033,-0.807562,-0.740877][0.831437,-0.43618,-0.344179][0.685296,0.45481,0][1.57427,-1.02325,-0.674478][0.673512,-0.684666,-0.278595][0.0101666,0.202675,0][1.70776,-1.02325,0.00157958][0.729611,-0.683863,0][0.01,0.137922,0][1.53859,-1.16974,0.00157958][0.693951,-0.720022,0][0.0256029,0.140961,0][1.53859,-1.16974,0.00157958][0.693951,-0.720022,0][0.0256029,0.140961,0][1.41821,-1.16974,-0.60808][0.640399,-0.720924,-0.264874][0.0257531,0.199355,0][1.57427,-1.02325,-0.674478][0.673512,-0.684666,-0.278595][0.0101666,0.202675,0][1.41821,-1.16974,-0.60808][0.640399,-0.720924,-0.264874][0.812012,0.718329,0][1.53859,-1.16974,0.00157958][0.693951,-0.720022,0][0.869299,0.718329,0][1.4617,-1.25394,0.00157959][0.79395,-0.607984,0][0.869299,0.726241,0][1.4617,-1.25394,0.00157959][0.79395,-0.607984,0][0.869299,0.726241,0][1.34728,-1.25394,-0.577899][0.732949,-0.608995,-0.303167][0.814848,0.726241,0][1.41821,-1.16974,-0.60808][0.640399,-0.720924,-0.264874][0.812012,0.718329,0][1.95382,-0.515747,0.00157957][0.997804,-0.0662395,0][0.755063,0.427389,0][1.80126,-0.515747,0.774217][0.921879,-0.0663697,0.381752][0.827665,0.427389,0][1.73033,-0.807562,0.744036][0.831437,-0.43618,0.344179][0.824829,0.45481,0][1.73033,-0.807562,0.744036][0.831437,-0.43618,0.344179][0.824829,0.45481,0][1.87693,-0.807562,0.00157957][0.900182,-0.435513,0][0.755063,0.45481,0][1.95382,-0.515747,0.00157957][0.997804,-0.0662395,0][0.755063,0.427389,0][1.87693,-0.807562,0.00157957][0.900182,-0.435513,0][0.755063,0.45481,0][1.73033,-0.807562,0.744036][0.831437,-0.43618,0.344179][0.824829,0.45481,0][1.57427,-1.02325,0.677638][0.673512,-0.684665,0.278594][0.818589,0.475078,0][1.57427,-1.02325,0.677638][0.673512,-0.684665,0.278594][0.818589,0.475078,0][1.70776,-1.02325,0.00157958][0.729611,-0.683863,0][0.755063,0.475078,0][1.87693,-0.807562,0.00157957][0.900182,-0.435513,0][0.755063,0.45481,0][1.70776,-1.02325,0.00157958][0.729611,-0.683863,0][0.01,0.137922,0][1.57427,-1.02325,0.677638][0.673512,-0.684665,0.278594][0.0344577,0.0779653,0][1.41821,-1.16974,0.611239][0.640399,-0.720924,0.264874][0.0476585,0.0868931,0][1.41821,-1.16974,0.611239][0.640399,-0.720924,0.264874][0.0476585,0.0868931,0][1.53859,-1.16974,0.00157958][0.693951,-0.720022,0][0.0256029,0.140961,0][1.70776,-1.02325,0.00157958][0.729611,-0.683863,0][0.01,0.137922,0][1.53859,-1.16974,0.00157958][0.693951,-0.720022,0][0.869299,0.718329,0][1.41821,-1.16974,0.611239][0.640399,-0.720924,0.264874][0.926587,0.718329,0][1.34728,-1.25394,0.581058][0.732949,-0.608995,0.303167][0.923751,0.726241,0][1.34728,-1.25394,0.581058][0.732949,-0.608995,0.303167][0.923751,0.726241,0][1.4617,-1.25394,0.00157959][0.79395,-0.607984,0][0.869299,0.726241,0][1.53859,-1.16974,0.00157958][0.693951,-0.720022,0][0.869299,0.718329,0][1.80126,-0.515747,0.774217][0.921879,-0.0663697,0.381752][0.827665,0.427389,0][1.38295,-0.515747,1.39922][0.705543,-0.0664797,0.705542][0.886394,0.427389,0][1.32836,-0.807562,1.34462][0.636092,-0.436777,0.636092][0.881264,0.45481,0][1.32836,-0.807562,1.34462][0.636092,-0.436777,0.636092][0.881264,0.45481,0][1.73033,-0.807562,0.744036][0.831437,-0.43618,0.344179][0.824829,0.45481,0][1.80126,-0.515747,0.774217][0.921879,-0.0663697,0.381752][0.827665,0.427389,0][1.73033,-0.807562,0.744036][0.831437,-0.43618,0.344179][0.930005,0.556247,0][1.32836,-0.807562,1.34462][0.636092,-0.436777,0.636092][0.862536,0.563968,0][1.20825,-1.02325,1.22451][0.514965,-0.685289,0.514965][0.862706,0.538171,0][1.20825,-1.02325,1.22451][0.514965,-0.685289,0.514965][0.862706,0.538171,0][1.57427,-1.02325,0.677638][0.673512,-0.684665,0.278594][0.924141,0.53114,0][1.73033,-0.807562,0.744036][0.831437,-0.43618,0.344179][0.930005,0.556247,0][1.57427,-1.02325,0.677638][0.673512,-0.684665,0.278594][0.0344577,0.0779653,0][1.20825,-1.02325,1.22451][0.514965,-0.685289,0.514965][0.0780415,0.0341009,0][1.08814,-1.16974,1.1044][0.489651,-0.721446,0.489651][0.0869618,0.0473368,0][1.08814,-1.16974,1.1044][0.489651,-0.721446,0.489651][0.0869618,0.0473368,0][1.41821,-1.16974,0.611239][0.640399,-0.720924,0.264874][0.0476585,0.0868931,0][1.57427,-1.02325,0.677638][0.673512,-0.684665,0.278594][0.0344577,0.0779653,0][1.41821,-1.16974,0.611239][0.640399,-0.720924,0.264874][0.918862,0.511146,0][1.08814,-1.16974,1.1044][0.489651,-0.721446,0.489651][0.863461,0.517486,0][1.03355,-1.25394,1.04981][0.560555,-0.609554,0.560555][0.863655,0.506783,0][1.03355,-1.25394,1.04981][0.560555,-0.609554,0.560555][0.863655,0.506783,0][1.34728,-1.25394,0.581058][0.732949,-0.608995,0.303167][0.916314,0.500757,0][1.41821,-1.16974,0.611239][0.640399,-0.720924,0.264874][0.918862,0.511146,0][1.38295,-0.515747,1.39922][0.705543,-0.0664797,0.705542][0.336067,0.645638,0][0.757955,-0.515747,1.81752][0.381752,-0.0663697,0.921879][0.394796,0.645638,0][0.727774,-0.807562,1.74659][0.344179,-0.43618,0.831437][0.397632,0.673059,0][0.727774,-0.807562,1.74659][0.344179,-0.43618,0.831437][0.397632,0.673059,0][1.32836,-0.807562,1.34462][0.636092,-0.436777,0.636092][0.341197,0.673059,0][1.38295,-0.515747,1.39922][0.705543,-0.0664797,0.705542][0.336067,0.645638,0][1.32836,-0.807562,1.34462][0.636092,-0.436777,0.636092][0.862536,0.563968,0][0.727774,-0.807562,1.74659][0.344179,-0.43618,0.831437][0.798364,0.555381,0][0.661375,-1.02325,1.59053][0.278594,-0.684666,0.673512][0.804273,0.530351,0][0.661375,-1.02325,1.59053][0.278594,-0.684666,0.673512][0.804273,0.530351,0][1.20825,-1.02325,1.22451][0.514965,-0.685289,0.514965][0.862706,0.538171,0][1.32836,-0.807562,1.34462][0.636092,-0.436777,0.636092][0.862536,0.563968,0][1.20825,-1.02325,1.22451][0.514965,-0.685289,0.514965][0.0780415,0.0341009,0][0.661375,-1.02325,1.59053][0.278594,-0.684666,0.673512][0.135057,0.0101666,0][0.594977,-1.16974,1.43447][0.264874,-0.720924,0.640399][0.138378,0.0257531,0][0.594977,-1.16974,1.43447][0.264874,-0.720924,0.640399][0.138378,0.0257531,0][1.08814,-1.16974,1.1044][0.489651,-0.721446,0.489651][0.0869618,0.0473368,0][1.20825,-1.02325,1.22451][0.514965,-0.685289,0.514965][0.0780415,0.0341009,0][1.08814,-1.16974,1.1044][0.489651,-0.721446,0.489651][0.863461,0.517486,0][0.594977,-1.16974,1.43447][0.264874,-0.720924,0.640399][0.810767,0.510435,0][0.564796,-1.25394,1.36354][0.303167,-0.608995,0.732949][0.81357,0.50008,0][0.564796,-1.25394,1.36354][0.303167,-0.608995,0.732949][0.81357,0.50008,0][1.03355,-1.25394,1.04981][0.560555,-0.609554,0.560555][0.863655,0.506783,0][1.08814,-1.16974,1.1044][0.489651,-0.721446,0.489651][0.863461,0.517486,0][0.757955,-0.515747,1.81752][0.381752,-0.0663697,0.921879][0.394796,0.645638,0][-0.0146827,-0.515747,1.97008][0,-0.0662395,0.997804][0.467398,0.645638,0][-0.0146827,-0.807562,1.89319][0,-0.435513,0.900182][0.467398,0.673059,0][-0.0146827,-0.807562,1.89319][0,-0.435513,0.900182][0.467398,0.673059,0][0.727774,-0.807562,1.74659][0.344179,-0.43618,0.831437][0.397632,0.673059,0][0.757955,-0.515747,1.81752][0.381752,-0.0663697,0.921879][0.394796,0.645638,0][0.727774,-0.807562,1.74659][0.344179,-0.43618,0.831437][0.397632,0.673059,0][-0.0146827,-0.807562,1.89319][0,-0.435513,0.900182][0.467398,0.673059,0][-0.0146827,-1.02325,1.72402][0,-0.683863,0.729611][0.467398,0.693327,0][-0.0146827,-1.02325,1.72402][0,-0.683863,0.729611][0.467398,0.693327,0][0.661375,-1.02325,1.59053][0.278594,-0.684666,0.673512][0.403871,0.693327,0][0.727774,-0.807562,1.74659][0.344179,-0.43618,0.831437][0.397632,0.673059,0][0.661375,-1.02325,1.59053][0.278594,-0.684666,0.673512][0.135057,0.0101666,0][-0.0146827,-1.02325,1.72402][0,-0.683863,0.729611][0.19981,0.01,0][-0.0146827,-1.16974,1.55485][0,-0.720022,0.693951][0.196771,0.0256029,0][-0.0146827,-1.16974,1.55485][0,-0.720022,0.693951][0.196771,0.0256029,0][0.594977,-1.16974,1.43447][0.264874,-0.720924,0.640399][0.138378,0.0257531,0][0.661375,-1.02325,1.59053][0.278594,-0.684666,0.673512][0.135057,0.0101666,0][0.594977,-1.16974,1.43447][0.264874,-0.720924,0.640399][0.68241,0.814591,0][-0.0146827,-1.16974,1.55485][0,-0.720022,0.693951][0.739698,0.814591,0][-0.0146827,-1.25394,1.47796][0,-0.607984,0.79395][0.739698,0.822503,0][-0.0146827,-1.25394,1.47796][0,-0.607984,0.79395][0.739698,0.822503,0][0.564796,-1.25394,1.36354][0.303167,-0.608995,0.732949][0.685246,0.822503,0][0.594977,-1.16974,1.43447][0.264874,-0.720924,0.640399][0.68241,0.814591,0][-0.0146827,-0.515747,1.97008][0,-0.0662395,0.997804][0.467398,0.645638,0][-0.787321,-0.515747,1.81752][-0.381752,-0.0663697,0.921879][0.54,0.645638,0][-0.757139,-0.807563,1.74659][-0.344179,-0.43618,0.831437][0.537164,0.673059,0][-0.757139,-0.807563,1.74659][-0.344179,-0.43618,0.831437][0.537164,0.673059,0][-0.0146827,-0.807562,1.89319][0,-0.435513,0.900182][0.467398,0.673059,0][-0.0146827,-0.515747,1.97008][0,-0.0662395,0.997804][0.467398,0.645638,0][-0.0146827,-0.807562,1.89319][0,-0.435513,0.900182][0.467398,0.673059,0][-0.757139,-0.807563,1.74659][-0.344179,-0.43618,0.831437][0.537164,0.673059,0][-0.690741,-1.02325,1.59053][-0.278594,-0.684666,0.673512][0.530925,0.693327,0][-0.690741,-1.02325,1.59053][-0.278594,-0.684666,0.673512][0.530925,0.693327,0][-0.0146827,-1.02325,1.72402][0,-0.683863,0.729611][0.467398,0.693327,0][-0.0146827,-0.807562,1.89319][0,-0.435513,0.900182][0.467398,0.673059,0][-0.0146827,-1.02325,1.72402][0,-0.683863,0.729611][0.19981,0.01,0][-0.690741,-1.02325,1.59053][-0.278594,-0.684666,0.673512][0.259767,0.0344577,0][-0.624342,-1.16974,1.43447][-0.264874,-0.720924,0.640399][0.250839,0.0476585,0][-0.624342,-1.16974,1.43447][-0.264874,-0.720924,0.640399][0.250839,0.0476585,0][-0.0146827,-1.16974,1.55485][0,-0.720022,0.693951][0.196771,0.0256029,0][-0.0146827,-1.02325,1.72402][0,-0.683863,0.729611][0.19981,0.01,0][-0.0146827,-1.16974,1.55485][0,-0.720022,0.693951][0.739698,0.814591,0][-0.624342,-1.16974,1.43447][-0.264874,-0.720924,0.640399][0.796985,0.814591,0][-0.594161,-1.25394,1.36354][-0.303167,-0.608995,0.732949][0.794149,0.822503,0][-0.594161,-1.25394,1.36354][-0.303167,-0.608995,0.732949][0.794149,0.822503,0][-0.0146827,-1.25394,1.47796][0,-0.607984,0.79395][0.739698,0.822503,0][-0.0146827,-1.16974,1.55485][0,-0.720022,0.693951][0.739698,0.814591,0][-0.787321,-0.515747,1.81752][-0.381752,-0.0663697,0.921879][0.54,0.645638,0][-1.41232,-0.515747,1.39922][-0.705542,-0.0664797,0.705543][0.598729,0.645638,0][-1.35773,-0.807563,1.34462][-0.636092,-0.436777,0.636092][0.593599,0.673059,0][-1.35773,-0.807563,1.34462][-0.636092,-0.436777,0.636092][0.593599,0.673059,0][-0.757139,-0.807563,1.74659][-0.344179,-0.43618,0.831437][0.537164,0.673059,0][-0.787321,-0.515747,1.81752][-0.381752,-0.0663697,0.921879][0.54,0.645638,0][-0.757139,-0.807563,1.74659][-0.344179,-0.43618,0.831437][0.467707,0.928677,0][-1.35773,-0.807563,1.34462][-0.636092,-0.436777,0.636092][0.400239,0.936398,0][-1.23762,-1.02325,1.22451][-0.514965,-0.685289,0.514965][0.400408,0.910601,0][-1.23762,-1.02325,1.22451][-0.514965,-0.685289,0.514965][0.400408,0.910601,0][-0.690741,-1.02325,1.59053][-0.278594,-0.684666,0.673512][0.461843,0.90357,0][-0.757139,-0.807563,1.74659][-0.344179,-0.43618,0.831437][0.467707,0.928677,0][-0.690741,-1.02325,1.59053][-0.278594,-0.684666,0.673512][0.259767,0.0344577,0][-1.23762,-1.02325,1.22451][-0.514965,-0.685289,0.514965][0.303632,0.0780415,0][-1.11751,-1.16974,1.1044][-0.489651,-0.721446,0.489651][0.290396,0.0869618,0][-1.11751,-1.16974,1.1044][-0.489651,-0.721446,0.489651][0.290396,0.0869618,0][-0.624342,-1.16974,1.43447][-0.264874,-0.720924,0.640399][0.250839,0.0476585,0][-0.690741,-1.02325,1.59053][-0.278594,-0.684666,0.673512][0.259767,0.0344577,0][-0.624342,-1.16974,1.43447][-0.264874,-0.720924,0.640399][0.456564,0.883576,0][-1.11751,-1.16974,1.1044][-0.489651,-0.721446,0.489651][0.401163,0.889916,0][-1.06291,-1.25394,1.04981][-0.560555,-0.609554,0.560555][0.401358,0.879213,0][-1.06291,-1.25394,1.04981][-0.560555,-0.609554,0.560555][0.401358,0.879213,0][-0.594161,-1.25394,1.36354][-0.303167,-0.608995,0.732949][0.454016,0.873186,0][-0.624342,-1.16974,1.43447][-0.264874,-0.720924,0.640399][0.456564,0.883576,0][-1.41232,-0.515747,1.39922][-0.705542,-0.0664797,0.705543][0.336067,0.427389,0][-1.83063,-0.515747,0.774218][-0.921879,-0.0663697,0.381752][0.394796,0.427389,0][-1.75969,-0.807563,0.744036][-0.831437,-0.43618,0.344179][0.397632,0.45481,0][-1.75969,-0.807563,0.744036][-0.831437,-0.43618,0.344179][0.397632,0.45481,0][-1.35773,-0.807563,1.34462][-0.636092,-0.436777,0.636092][0.341197,0.45481,0][-1.41232,-0.515747,1.39922][-0.705542,-0.0664797,0.705543][0.336067,0.427389,0][-1.35773,-0.807563,1.34462][-0.636092,-0.436777,0.636092][0.400239,0.936398,0][-1.75969,-0.807563,0.744036][-0.831437,-0.43618,0.344179][0.336067,0.92781,0][-1.60363,-1.02325,0.677638][-0.673512,-0.684666,0.278594][0.341975,0.902781,0][-1.60363,-1.02325,0.677638][-0.673512,-0.684666,0.278594][0.341975,0.902781,0][-1.23762,-1.02325,1.22451][-0.514965,-0.685289,0.514965][0.400408,0.910601,0][-1.35773,-0.807563,1.34462][-0.636092,-0.436777,0.636092][0.400239,0.936398,0][-1.23762,-1.02325,1.22451][-0.514965,-0.685289,0.514965][0.303632,0.0780415,0][-1.60363,-1.02325,0.677638][-0.673512,-0.684666,0.278594][0.327566,0.135057,0][-1.44758,-1.16974,0.611239][-0.640399,-0.720924,0.264874][0.311979,0.138378,0][-1.44758,-1.16974,0.611239][-0.640399,-0.720924,0.264874][0.311979,0.138378,0][-1.11751,-1.16974,1.1044][-0.489651,-0.721446,0.489651][0.290396,0.0869618,0][-1.23762,-1.02325,1.22451][-0.514965,-0.685289,0.514965][0.303632,0.0780415,0][-1.11751,-1.16974,1.1044][-0.489651,-0.721446,0.489651][0.401163,0.889916,0][-1.44758,-1.16974,0.611239][-0.640399,-0.720924,0.264874][0.348469,0.882864,0][-1.37664,-1.25394,0.581058][-0.732949,-0.608995,0.303167][0.351272,0.87251,0][-1.37664,-1.25394,0.581058][-0.732949,-0.608995,0.303167][0.351272,0.87251,0][-1.06291,-1.25394,1.04981][-0.560555,-0.609554,0.560555][0.401358,0.879213,0][-1.11751,-1.16974,1.1044][-0.489651,-0.721446,0.489651][0.401163,0.889916,0][-1.83063,-0.515747,0.774218][-0.921879,-0.0663697,0.381752][0.394796,0.427389,0][-1.98319,-0.515747,0.00157974][-0.997804,-0.0662395,0][0.467398,0.427389,0][-1.90629,-0.807563,0.00157973][-0.900182,-0.435513,0][0.467398,0.45481,0][-1.90629,-0.807563,0.00157973][-0.900182,-0.435513,0][0.467398,0.45481,0][-1.75969,-0.807563,0.744036][-0.831437,-0.43618,0.344179][0.397632,0.45481,0][-1.83063,-0.515747,0.774218][-0.921879,-0.0663697,0.381752][0.394796,0.427389,0][-1.75969,-0.807563,0.744036][-0.831437,-0.43618,0.344179][0.397632,0.45481,0][-1.90629,-0.807563,0.00157973][-0.900182,-0.435513,0][0.467398,0.45481,0][-1.73712,-1.02325,0.00157973][-0.729611,-0.683863,0][0.467398,0.475078,0][-1.73712,-1.02325,0.00157973][-0.729611,-0.683863,0][0.467398,0.475078,0][-1.60363,-1.02325,0.677638][-0.673512,-0.684666,0.278594][0.403871,0.475078,0][-1.75969,-0.807563,0.744036][-0.831437,-0.43618,0.344179][0.397632,0.45481,0][-1.60363,-1.02325,0.677638][-0.673512,-0.684666,0.278594][0.327566,0.135057,0][-1.73712,-1.02325,0.00157973][-0.729611,-0.683863,0][0.327733,0.19981,0][-1.56796,-1.16974,0.00157972][-0.693951,-0.720022,0][0.31213,0.196771,0][-1.56796,-1.16974,0.00157972][-0.693951,-0.720022,0][0.31213,0.196771,0][-1.44758,-1.16974,0.611239][-0.640399,-0.720924,0.264874][0.311979,0.138378,0][-1.60363,-1.02325,0.677638][-0.673512,-0.684666,0.278594][0.327566,0.135057,0][-1.44758,-1.16974,0.611239][-0.640399,-0.720924,0.264874][0.649108,0.228249,0][-1.56796,-1.16974,0.00157972][-0.693951,-0.720022,0][0.706396,0.228249,0][-1.49106,-1.25394,0.00157972][-0.79395,-0.607984,0][0.706396,0.236161,0][-1.49106,-1.25394,0.00157972][-0.79395,-0.607984,0][0.706396,0.236161,0][-1.37664,-1.25394,0.581058][-0.732949,-0.608995,0.303167][0.651944,0.236161,0][-1.44758,-1.16974,0.611239][-0.640399,-0.720924,0.264874][0.649108,0.228249,0][-1.98319,-0.515747,0.00157974][-0.997804,-0.0662395,0][0.467398,0.427389,0][-1.83063,-0.515747,-0.771058][-0.921879,-0.0663698,-0.381752][0.54,0.427389,0][-1.75969,-0.807563,-0.740877][-0.831437,-0.43618,-0.344179][0.537164,0.45481,0][-1.75969,-0.807563,-0.740877][-0.831437,-0.43618,-0.344179][0.537164,0.45481,0][-1.90629,-0.807563,0.00157973][-0.900182,-0.435513,0][0.467398,0.45481,0][-1.98319,-0.515747,0.00157974][-0.997804,-0.0662395,0][0.467398,0.427389,0][-1.90629,-0.807563,0.00157973][-0.900182,-0.435513,0][0.467398,0.45481,0][-1.75969,-0.807563,-0.740877][-0.831437,-0.43618,-0.344179][0.537164,0.45481,0][-1.60363,-1.02325,-0.674478][-0.673512,-0.684666,-0.278594][0.530925,0.475078,0][-1.60363,-1.02325,-0.674478][-0.673512,-0.684666,-0.278594][0.530925,0.475078,0][-1.73712,-1.02325,0.00157973][-0.729611,-0.683863,0][0.467398,0.475078,0][-1.90629,-0.807563,0.00157973][-0.900182,-0.435513,0][0.467398,0.45481,0][-1.73712,-1.02325,0.00157973][-0.729611,-0.683863,0][0.327733,0.19981,0][-1.60363,-1.02325,-0.674478][-0.673512,-0.684666,-0.278594][0.303275,0.259767,0][-1.44758,-1.16974,-0.60808][-0.640399,-0.720924,-0.264874][0.290074,0.250839,0][-1.44758,-1.16974,-0.60808][-0.640399,-0.720924,-0.264874][0.290074,0.250839,0][-1.56796,-1.16974,0.00157972][-0.693951,-0.720022,0][0.31213,0.196771,0][-1.73712,-1.02325,0.00157973][-0.729611,-0.683863,0][0.327733,0.19981,0][-1.56796,-1.16974,0.00157972][-0.693951,-0.720022,0][0.706396,0.228249,0][-1.44758,-1.16974,-0.60808][-0.640399,-0.720924,-0.264874][0.763684,0.228249,0][-1.37664,-1.25394,-0.577899][-0.732949,-0.608995,-0.303167][0.760848,0.236161,0][-1.37664,-1.25394,-0.577899][-0.732949,-0.608995,-0.303167][0.760848,0.236161,0][-1.49106,-1.25394,0.00157972][-0.79395,-0.607984,0][0.706396,0.236161,0][-1.56796,-1.16974,0.00157972][-0.693951,-0.720022,0][0.706396,0.228249,0][-1.83063,-0.515747,-0.771058][-0.921879,-0.0663698,-0.381752][0.54,0.427389,0][-1.41232,-0.515747,-1.39606][-0.705543,-0.0664797,-0.705542][0.598729,0.427389,0][-1.35773,-0.807563,-1.34146][-0.636092,-0.436777,-0.636092][0.593599,0.45481,0][-1.35773,-0.807563,-1.34146][-0.636092,-0.436777,-0.636092][0.593599,0.45481,0][-1.75969,-0.807563,-0.740877][-0.831437,-0.43618,-0.344179][0.537164,0.45481,0][-1.83063,-0.515747,-0.771058][-0.921879,-0.0663698,-0.381752][0.54,0.427389,0][-1.75969,-0.807563,-0.740877][-0.831437,-0.43618,-0.344179][0.101299,0.181242,0][-1.35773,-0.807563,-1.34146][-0.636092,-0.436777,-0.636092][0.168767,0.173521,0][-1.23762,-1.02325,-1.22135][-0.514965,-0.685289,-0.514965][0.168597,0.199318,0][-1.23762,-1.02325,-1.22135][-0.514965,-0.685289,-0.514965][0.168597,0.199318,0][-1.60363,-1.02325,-0.674478][-0.673512,-0.684666,-0.278594][0.107163,0.206349,0][-1.75969,-0.807563,-0.740877][-0.831437,-0.43618,-0.344179][0.101299,0.181242,0][-1.60363,-1.02325,-0.674478][-0.673512,-0.684666,-0.278594][0.303275,0.259767,0][-1.23762,-1.02325,-1.22135][-0.514965,-0.685289,-0.514965][0.259691,0.303632,0][-1.11751,-1.16974,-1.10124][-0.489651,-0.721446,-0.489651][0.250771,0.290396,0][-1.11751,-1.16974,-1.10124][-0.489651,-0.721446,-0.489651][0.250771,0.290396,0][-1.44758,-1.16974,-0.60808][-0.640399,-0.720924,-0.264874][0.290074,0.250839,0][-1.60363,-1.02325,-0.674478][-0.673512,-0.684666,-0.278594][0.303275,0.259767,0][-1.44758,-1.16974,-0.60808][-0.640399,-0.720924,-0.264874][0.112441,0.226343,0][-1.11751,-1.16974,-1.10124][-0.489651,-0.721446,-0.489651][0.167842,0.220003,0][-1.06291,-1.25394,-1.04665][-0.560555,-0.609554,-0.560555][0.167648,0.230706,0][-1.06291,-1.25394,-1.04665][-0.560555,-0.609554,-0.560555][0.167648,0.230706,0][-1.37664,-1.25394,-0.577899][-0.732949,-0.608995,-0.303167][0.11499,0.236733,0][-1.44758,-1.16974,-0.60808][-0.640399,-0.720924,-0.264874][0.112441,0.226343,0][-1.41232,-0.515747,-1.39606][-0.705543,-0.0664797,-0.705542][0.607898,0.155558,0][-0.787321,-0.515747,-1.81437][-0.381752,-0.0663697,-0.921879][0.666627,0.155558,0][-0.75714,-0.807563,-1.74343][-0.344179,-0.43618,-0.831437][0.669463,0.182979,0][-0.75714,-0.807563,-1.74343][-0.344179,-0.43618,-0.831437][0.669463,0.182979,0][-1.35773,-0.807563,-1.34146][-0.636092,-0.436777,-0.636092][0.613028,0.182979,0][-1.41232,-0.515747,-1.39606][-0.705543,-0.0664797,-0.705542][0.607898,0.155558,0][-1.35773,-0.807563,-1.34146][-0.636092,-0.436777,-0.636092][0.168767,0.173521,0][-0.75714,-0.807563,-1.74343][-0.344179,-0.43618,-0.831437][0.232939,0.182109,0][-0.690741,-1.02325,-1.58737][-0.278594,-0.684666,-0.673512][0.22703,0.207138,0][-0.690741,-1.02325,-1.58737][-0.278594,-0.684666,-0.673512][0.22703,0.207138,0][-1.23762,-1.02325,-1.22135][-0.514965,-0.685289,-0.514965][0.168597,0.199318,0][-1.35773,-0.807563,-1.34146][-0.636092,-0.436777,-0.636092][0.168767,0.173521,0][-1.23762,-1.02325,-1.22135][-0.514965,-0.685289,-0.514965][0.259691,0.303632,0][-0.690741,-1.02325,-1.58737][-0.278594,-0.684666,-0.673512][0.202675,0.327566,0][-0.624342,-1.16974,-1.43131][-0.264874,-0.720924,-0.640399][0.199355,0.311979,0][-0.624342,-1.16974,-1.43131][-0.264874,-0.720924,-0.640399][0.199355,0.311979,0][-1.11751,-1.16974,-1.10124][-0.489651,-0.721446,-0.489651][0.250771,0.290396,0][-1.23762,-1.02325,-1.22135][-0.514965,-0.685289,-0.514965][0.259691,0.303632,0][-1.11751,-1.16974,-1.10124][-0.489651,-0.721446,-0.489651][0.167842,0.220003,0][-0.624342,-1.16974,-1.43131][-0.264874,-0.720924,-0.640399][0.220536,0.227054,0][-0.594161,-1.25394,-1.36038][-0.303167,-0.608995,-0.732949][0.217733,0.237409,0][-0.594161,-1.25394,-1.36038][-0.303167,-0.608995,-0.732949][0.217733,0.237409,0][-1.06291,-1.25394,-1.04665][-0.560555,-0.609554,-0.560555][0.167648,0.230706,0][-1.11751,-1.16974,-1.10124][-0.489651,-0.721446,-0.489651][0.167842,0.220003,0][-0.787321,-0.515747,-1.81437][-0.381752,-0.0663697,-0.921879][0.666627,0.155558,0][-0.0146829,-0.515747,-1.96692][0,-0.0662395,-0.997804][0.739229,0.155558,0][-0.0146829,-0.807562,-1.89003][0,-0.435513,-0.900182][0.739229,0.182979,0][-0.0146829,-0.807562,-1.89003][0,-0.435513,-0.900182][0.739229,0.182979,0][-0.75714,-0.807563,-1.74343][-0.344179,-0.43618,-0.831437][0.669463,0.182979,0][-0.787321,-0.515747,-1.81437][-0.381752,-0.0663697,-0.921879][0.666627,0.155558,0][-0.75714,-0.807563,-1.74343][-0.344179,-0.43618,-0.831437][0.669463,0.182979,0][-0.0146829,-0.807562,-1.89003][0,-0.435513,-0.900182][0.739229,0.182979,0][-0.0146829,-1.02325,-1.72086][0,-0.683863,-0.729611][0.739229,0.203247,0][-0.0146829,-1.02325,-1.72086][0,-0.683863,-0.729611][0.739229,0.203247,0][-0.690741,-1.02325,-1.58737][-0.278594,-0.684666,-0.673512][0.675702,0.203247,0][-0.75714,-0.807563,-1.74343][-0.344179,-0.43618,-0.831437][0.669463,0.182979,0][-0.690741,-1.02325,-1.58737][-0.278594,-0.684666,-0.673512][0.202675,0.327566,0][-0.0146829,-1.02325,-1.72086][0,-0.683863,-0.729611][0.137922,0.327733,0][-0.0146828,-1.16974,-1.55169][0,-0.720022,-0.693951][0.140961,0.31213,0][-0.0146828,-1.16974,-1.55169][0,-0.720022,-0.693951][0.140961,0.31213,0][-0.624342,-1.16974,-1.43131][-0.264874,-0.720924,-0.640399][0.199355,0.311979,0][-0.690741,-1.02325,-1.58737][-0.278594,-0.684666,-0.673512][0.202675,0.327566,0][-0.624342,-1.16974,-1.43131][-0.264874,-0.720924,-0.640399][0.812012,0.756338,0][-0.0146828,-1.16974,-1.55169][0,-0.720022,-0.693951][0.869299,0.756338,0][-0.0146828,-1.25394,-1.4748][0,-0.607984,-0.79395][0.869299,0.76425,0][-0.0146828,-1.25394,-1.4748][0,-0.607984,-0.79395][0.869299,0.76425,0][-0.594161,-1.25394,-1.36038][-0.303167,-0.608995,-0.732949][0.814848,0.76425,0][-0.624342,-1.16974,-1.43131][-0.264874,-0.720924,-0.640399][0.812012,0.756338,0][-0.0146828,-1.25394,-1.4748][0,-0.607984,-0.79395][0.869299,0.76425,0][0.564796,-1.25394,-1.36038][0.303167,-0.608995,-0.732949][0.923751,0.76425,0][0.551667,-1.30815,-1.32952][0.238217,-0.7818,-0.57623][0.922517,0.769343,0][0.551667,-1.30815,-1.32952][0.238217,-0.7818,-0.57623][0.922517,0.769343,0][-0.0146828,-1.30815,-1.44135][0,-0.781537,-0.623859][0.869299,0.769343,0][-0.0146828,-1.25394,-1.4748][0,-0.607984,-0.79395][0.869299,0.76425,0][-0.0146828,-1.30815,-1.44135][0,-0.781537,-0.623859][0.117163,0.602238,0][0.551667,-1.30815,-1.32952][0.238217,-0.7818,-0.57623][0.0669361,0.58175,0][0.481495,-1.35544,-1.1646][0.0696175,-0.983212,-0.168664][0.0763711,0.567799,0][0.481495,-1.35544,-1.1646][0.0696175,-0.983212,-0.168664][0.0763711,0.567799,0][-0.0146828,-1.35544,-1.26257][0,-0.983157,-0.182766][0.120375,0.585749,0][-0.0146828,-1.30815,-1.44135][0,-0.781537,-0.623859][0.117163,0.602238,0][-0.0146828,-1.35544,-1.26257][0,-0.983157,-0.182766][0.120375,0.585749,0][0.481495,-1.35544,-1.1646][0.0696175,-0.983212,-0.168664][0.0763711,0.567799,0][0.333147,-1.38889,-0.815931][0.132991,-6.26716,-0.322745][0.0963177,0.538305,0][0.333147,-1.38889,-0.815931][0.132991,-6.26716,-0.322745][0.0963177,0.538305,0][-0.0146828,-1.38889,-0.884611][0.034454,-3.1199,-0.174493][0.127165,0.550889,0][-0.0146828,-1.35544,-1.26257][0,-0.983157,-0.182766][0.120375,0.585749,0][-0.0146828,-1.38889,-0.884611][0.034454,-3.1199,-0.174493][0.127165,0.550889,0][0.333147,-1.38889,-0.815931][0.132991,-6.26716,-0.322745][0.0963177,0.538305,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.0663155,0.678437,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.0663155,0.678437,0][-0.0146828,-1.38889,-0.884611][0.034454,-3.1199,-0.174493][0.0651233,0.764474,0][0.564796,-1.25394,-1.36038][0.303167,-0.608995,-0.732949][0.923751,0.76425,0][1.03355,-1.25394,-1.04665][0.560555,-0.609554,-0.560555][0.967798,0.76425,0][1.0098,-1.30815,-1.0229][0.440416,-0.782347,-0.440416][0.965566,0.769343,0][1.0098,-1.30815,-1.0229][0.440416,-0.782347,-0.440416][0.965566,0.769343,0][0.551667,-1.30815,-1.32952][0.238217,-0.7818,-0.57623][0.922517,0.769343,0][0.564796,-1.25394,-1.36038][0.303167,-0.608995,-0.732949][0.923751,0.76425,0][0.551667,-1.30815,-1.32952][0.238217,-0.7818,-0.57623][0.0669361,0.58175,0][1.0098,-1.30815,-1.0229][0.440416,-0.782347,-0.440416][0.0301899,0.545239,0][0.882863,-1.35544,-0.895966][0.128757,-0.983282,-0.128757][0.0441778,0.535811,0][0.882863,-1.35544,-0.895966][0.128757,-0.983282,-0.128757][0.0441778,0.535811,0][0.481495,-1.35544,-1.1646][0.0696175,-0.983212,-0.168664][0.0763711,0.567799,0][0.551667,-1.30815,-1.32952][0.238217,-0.7818,-0.57623][0.0669361,0.58175,0][0.481495,-1.35544,-1.1646][0.0696175,-0.983212,-0.168664][0.0763711,0.567799,0][0.882863,-1.35544,-0.895966][0.128757,-0.983282,-0.128757][0.0441778,0.535811,0][0.614512,-1.38889,-0.627615][0.246459,-6.26724,-0.246648][0.0737496,0.515882,0][0.614512,-1.38889,-0.627615][0.246459,-6.26724,-0.246648][0.0737496,0.515882,0][0.333147,-1.38889,-0.815931][0.132991,-6.26716,-0.322745][0.0963177,0.538305,0][0.481495,-1.35544,-1.1646][0.0696175,-0.983212,-0.168664][0.0763711,0.567799,0][0.333147,-1.38889,-0.815931][0.132991,-6.26716,-0.322745][0.0963177,0.538305,0][0.614512,-1.38889,-0.627615][0.246459,-6.26724,-0.246648][0.0737496,0.515882,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.850065,0.887212,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.850065,0.887212,0][0.333147,-1.38889,-0.815931][0.132991,-6.26716,-0.322745][0.935658,0.886705,0][1.03355,-1.25394,-1.04665][0.560555,-0.609554,-0.560555][0.770801,0.726241,0][1.34728,-1.25394,-0.577899][0.732949,-0.608995,-0.303167][0.814848,0.726241,0][1.31642,-1.30815,-0.56477][0.57623,-0.7818,-0.238217][0.816081,0.731335,0][1.31642,-1.30815,-0.56477][0.57623,-0.7818,-0.238217][0.816081,0.731335,0][1.0098,-1.30815,-1.0229][0.440416,-0.782347,-0.440416][0.773032,0.731335,0][1.03355,-1.25394,-1.04665][0.560555,-0.609554,-0.560555][0.770801,0.726241,0][1.0098,-1.30815,-1.0229][0.440416,-0.782347,-0.440416][0.0301899,0.545239,0][1.31642,-1.30815,-0.56477][0.57623,-0.7818,-0.238217][0.0101395,0.497475,0][1.15149,-1.35544,-0.494599][0.168664,-0.983212,-0.0696175][0.0266117,0.493966,0][1.15149,-1.35544,-0.494599][0.168664,-0.983212,-0.0696175][0.0266117,0.493966,0][0.882863,-1.35544,-0.895966][0.128757,-0.983282,-0.128757][0.0441778,0.535811,0][1.0098,-1.30815,-1.0229][0.440416,-0.782347,-0.440416][0.0301899,0.545239,0][0.882863,-1.35544,-0.895966][0.128757,-0.983282,-0.128757][0.0441778,0.535811,0][1.15149,-1.35544,-0.494599][0.168664,-0.983212,-0.0696175][0.0266117,0.493966,0][0.802828,-1.38889,-0.34625][0.323546,-6.26715,-0.133595][0.0614355,0.486547,0][0.802828,-1.38889,-0.34625][0.323546,-6.26715,-0.133595][0.0614355,0.486547,0][0.614512,-1.38889,-0.627615][0.246459,-6.26724,-0.246648][0.0737496,0.515882,0][0.882863,-1.35544,-0.895966][0.128757,-0.983282,-0.128757][0.0441778,0.535811,0][0.614512,-1.38889,-0.627615][0.246459,-6.26724,-0.246648][0.0737496,0.515882,0][0.802828,-1.38889,-0.34625][0.323546,-6.26715,-0.133595][0.0614355,0.486547,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.863199,0.815716,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.863199,0.815716,0][0.614512,-1.38889,-0.627615][0.246459,-6.26724,-0.246648][0.947973,0.814591,0][1.34728,-1.25394,-0.577899][0.732949,-0.608995,-0.303167][0.814848,0.726241,0][1.4617,-1.25394,0.00157959][0.79395,-0.607984,0][0.869299,0.726241,0][1.42825,-1.30815,0.00157959][0.623859,-0.781537,0][0.869299,0.731335,0][1.42825,-1.30815,0.00157959][0.623859,-0.781537,0][0.869299,0.731335,0][1.31642,-1.30815,-0.56477][0.57623,-0.7818,-0.238217][0.816081,0.731335,0][1.34728,-1.25394,-0.577899][0.732949,-0.608995,-0.303167][0.814848,0.726241,0][1.31642,-1.30815,-0.56477][0.57623,-0.7818,-0.238217][0.0101395,0.497475,0][1.42825,-1.30815,0.00157959][0.623859,-0.781537,0][0.01,0.44323,0][1.24947,-1.35544,0.0015796][0.182766,-0.983157,0][0.0264895,0.446442,0][1.24947,-1.35544,0.0015796][0.182766,-0.983157,0][0.0264895,0.446442,0][1.15149,-1.35544,-0.494599][0.168664,-0.983212,-0.0696175][0.0266117,0.493966,0][1.31642,-1.30815,-0.56477][0.57623,-0.7818,-0.238217][0.0101395,0.497475,0][1.15149,-1.35544,-0.494599][0.168664,-0.983212,-0.0696175][0.0266117,0.493966,0][1.24947,-1.35544,0.0015796][0.182766,-0.983157,0][0.0264895,0.446442,0][0.871508,-1.38889,0.00157961][0.351088,-6.26711,-0.000140612][0.0613498,0.453232,0][0.871508,-1.38889,0.00157961][0.351088,-6.26711,-0.000140612][0.0613498,0.453232,0][0.802828,-1.38889,-0.34625][0.323546,-6.26715,-0.133595][0.0614355,0.486547,0][1.15149,-1.35544,-0.494599][0.168664,-0.983212,-0.0696175][0.0266117,0.493966,0][0.802828,-1.38889,-0.34625][0.323546,-6.26715,-0.133595][0.0614355,0.486547,0][0.871508,-1.38889,0.00157961][0.351088,-6.26711,-0.000140612][0.0613498,0.453232,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.268009,0.181564,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.268009,0.181564,0][0.802828,-1.38889,-0.34625][0.323546,-6.26715,-0.133595][0.266661,0.098038,0][1.4617,-1.25394,0.00157959][0.79395,-0.607984,0][0.869299,0.726241,0][1.34728,-1.25394,0.581058][0.732949,-0.608995,0.303167][0.923751,0.726241,0][1.31642,-1.30815,0.567929][0.57623,-0.7818,0.238217][0.922517,0.731335,0][1.31642,-1.30815,0.567929][0.57623,-0.7818,0.238217][0.922517,0.731335,0][1.42825,-1.30815,0.00157959][0.623859,-0.781537,0][0.869299,0.731335,0][1.4617,-1.25394,0.00157959][0.79395,-0.607984,0][0.869299,0.726241,0][1.42825,-1.30815,0.00157959][0.623859,-0.781537,0][0.01,0.44323,0][1.31642,-1.30815,0.567929][0.57623,-0.7818,0.238217][0.0304888,0.393003,0][1.15149,-1.35544,0.497758][0.168664,-0.983212,0.0696175][0.0444397,0.402438,0][1.15149,-1.35544,0.497758][0.168664,-0.983212,0.0696175][0.0444397,0.402438,0][1.24947,-1.35544,0.0015796][0.182766,-0.983157,0][0.0264895,0.446442,0][1.42825,-1.30815,0.00157959][0.623859,-0.781537,0][0.01,0.44323,0][1.24947,-1.35544,0.0015796][0.182766,-0.983157,0][0.0264895,0.446442,0][1.15149,-1.35544,0.497758][0.168664,-0.983212,0.0696175][0.0444397,0.402438,0][0.802828,-1.38889,0.349409][0.324594,-6.26713,0.133751][0.0739332,0.422384,0][0.802828,-1.38889,0.349409][0.324594,-6.26713,0.133751][0.0739332,0.422384,0][0.871508,-1.38889,0.00157961][0.351088,-6.26711,-0.000140612][0.0613498,0.453232,0][1.24947,-1.35544,0.0015796][0.182766,-0.983157,0][0.0264895,0.446442,0][0.871508,-1.38889,0.00157961][0.351088,-6.26711,-0.000140612][0.0613498,0.453232,0][0.802828,-1.38889,0.349409][0.324594,-6.26713,0.133751][0.0739332,0.422384,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.99,0.688083,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.99,0.688083,0][0.871508,-1.38889,0.00157961][0.351088,-6.26711,-0.000140612][0.907859,0.687628,0][1.34728,-1.25394,0.581058][0.732949,-0.608995,0.303167][0.923751,0.726241,0][1.03355,-1.25394,1.04981][0.560555,-0.609554,0.560555][0.967798,0.726241,0][1.0098,-1.30815,1.02606][0.440416,-0.782347,0.440416][0.965566,0.731335,0][1.0098,-1.30815,1.02606][0.440416,-0.782347,0.440416][0.965566,0.731335,0][1.31642,-1.30815,0.567929][0.57623,-0.7818,0.238217][0.922517,0.731335,0][1.34728,-1.25394,0.581058][0.732949,-0.608995,0.303167][0.923751,0.726241,0][1.31642,-1.30815,0.567929][0.57623,-0.7818,0.238217][0.0304888,0.393003,0][1.0098,-1.30815,1.02606][0.440416,-0.782347,0.440416][0.067,0.356256,0][0.882863,-1.35544,0.899125][0.128757,-0.983282,0.128757][0.0764271,0.370244,0][0.882863,-1.35544,0.899125][0.128757,-0.983282,0.128757][0.0764271,0.370244,0][1.15149,-1.35544,0.497758][0.168664,-0.983212,0.0696175][0.0444397,0.402438,0][1.31642,-1.30815,0.567929][0.57623,-0.7818,0.238217][0.0304888,0.393003,0][1.15149,-1.35544,0.497758][0.168664,-0.983212,0.0696175][0.0444397,0.402438,0][0.882863,-1.35544,0.899125][0.128757,-0.983282,0.128757][0.0764271,0.370244,0][0.614512,-1.38889,0.630775][0.247922,-6.26722,0.247838][0.0963569,0.399816,0][0.614512,-1.38889,0.630775][0.247922,-6.26722,0.247838][0.0963569,0.399816,0][0.802828,-1.38889,0.349409][0.324594,-6.26713,0.133751][0.0739332,0.422384,0][1.15149,-1.35544,0.497758][0.168664,-0.983212,0.0696175][0.0444397,0.402438,0][0.802828,-1.38889,0.349409][0.324594,-6.26713,0.133751][0.0739332,0.422384,0][0.614512,-1.38889,0.630775][0.247922,-6.26722,0.247838][0.0963569,0.399816,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.895562,0.243455,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.895562,0.243455,0][0.802828,-1.38889,0.349409][0.324594,-6.26713,0.133751][0.976905,0.242947,0][1.03355,-1.25394,1.04981][0.560555,-0.609554,0.560555][0.641199,0.822503,0][0.564796,-1.25394,1.36354][0.303167,-0.608995,0.732949][0.685246,0.822503,0][0.551667,-1.30815,1.33268][0.238217,-0.7818,0.57623][0.68648,0.827597,0][0.551667,-1.30815,1.33268][0.238217,-0.7818,0.57623][0.68648,0.827597,0][1.0098,-1.30815,1.02606][0.440416,-0.782347,0.440416][0.643431,0.827597,0][1.03355,-1.25394,1.04981][0.560555,-0.609554,0.560555][0.641199,0.822503,0][1.0098,-1.30815,1.02606][0.440416,-0.782347,0.440416][0.067,0.356256,0][0.551667,-1.30815,1.33268][0.238217,-0.7818,0.57623][0.114763,0.336206,0][0.481496,-1.35544,1.16776][0.0696175,-0.983212,0.168664][0.118272,0.352678,0][0.481496,-1.35544,1.16776][0.0696175,-0.983212,0.168664][0.118272,0.352678,0][0.882863,-1.35544,0.899125][0.128757,-0.983282,0.128757][0.0764271,0.370244,0][1.0098,-1.30815,1.02606][0.440416,-0.782347,0.440416][0.067,0.356256,0][0.882863,-1.35544,0.899125][0.128757,-0.983282,0.128757][0.0764271,0.370244,0][0.481496,-1.35544,1.16776][0.0696175,-0.983212,0.168664][0.118272,0.352678,0][0.333147,-1.38889,0.81909][0.134017,-6.26713,0.32495][0.125691,0.387502,0][0.333147,-1.38889,0.81909][0.134017,-6.26713,0.32495][0.125691,0.387502,0][0.614512,-1.38889,0.630775][0.247922,-6.26722,0.247838][0.0963569,0.399816,0][0.882863,-1.35544,0.899125][0.128757,-0.983282,0.128757][0.0764271,0.370244,0][0.614512,-1.38889,0.630775][0.247922,-6.26722,0.247838][0.0963569,0.399816,0][0.333147,-1.38889,0.81909][0.134017,-6.26713,0.32495][0.125691,0.387502,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.79704,0.946826,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.79704,0.946826,0][0.614512,-1.38889,0.630775][0.247922,-6.26722,0.247838][0.716208,0.946364,0][0.564796,-1.25394,1.36354][0.303167,-0.608995,0.732949][0.685246,0.822503,0][-0.0146827,-1.25394,1.47796][0,-0.607984,0.79395][0.739698,0.822503,0][-0.0146827,-1.30815,1.44451][0,-0.781537,0.623859][0.739698,0.827597,0][-0.0146827,-1.30815,1.44451][0,-0.781537,0.623859][0.739698,0.827597,0][0.551667,-1.30815,1.33268][0.238217,-0.7818,0.57623][0.68648,0.827597,0][0.564796,-1.25394,1.36354][0.303167,-0.608995,0.732949][0.685246,0.822503,0][0.551667,-1.30815,1.33268][0.238217,-0.7818,0.57623][0.114763,0.336206,0][-0.0146827,-1.30815,1.44451][0,-0.781537,0.623859][0.169009,0.336067,0][-0.0146827,-1.35544,1.26573][0,-0.983157,0.182766][0.165797,0.352556,0][-0.0146827,-1.35544,1.26573][0,-0.983157,0.182766][0.165797,0.352556,0][0.481496,-1.35544,1.16776][0.0696175,-0.983212,0.168664][0.118272,0.352678,0][0.551667,-1.30815,1.33268][0.238217,-0.7818,0.57623][0.114763,0.336206,0][0.481496,-1.35544,1.16776][0.0696175,-0.983212,0.168664][0.118272,0.352678,0][-0.0146827,-1.35544,1.26573][0,-0.983157,0.182766][0.165797,0.352556,0][-0.0146827,-1.38889,0.88777][-6.11508e-005,-6.2671,0.35188][0.159007,0.387416,0][-0.0146827,-1.38889,0.88777][-6.11508e-005,-6.2671,0.35188][0.159007,0.387416,0][0.333147,-1.38889,0.81909][0.134017,-6.26713,0.32495][0.125691,0.387502,0][0.481496,-1.35544,1.16776][0.0696175,-0.983212,0.168664][0.118272,0.352678,0][0.333147,-1.38889,0.81909][0.134017,-6.26713,0.32495][0.125691,0.387502,0][-0.0146827,-1.38889,0.88777][-6.11508e-005,-6.2671,0.35188][0.159007,0.387416,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.0830345,0.098038,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.0830345,0.098038,0][0.333147,-1.38889,0.81909][0.134017,-6.26713,0.32495][0.0814382,0.1785,0][-0.0146827,-1.25394,1.47796][0,-0.607984,0.79395][0.739698,0.822503,0][-0.594161,-1.25394,1.36354][-0.303167,-0.608995,0.732949][0.794149,0.822503,0][-0.581032,-1.30815,1.33268][-0.238216,-0.781801,0.57623][0.792916,0.827597,0][-0.581032,-1.30815,1.33268][-0.238216,-0.781801,0.57623][0.792916,0.827597,0][-0.0146827,-1.30815,1.44451][0,-0.781537,0.623859][0.739698,0.827597,0][-0.0146827,-1.25394,1.47796][0,-0.607984,0.79395][0.739698,0.822503,0][-0.0146827,-1.30815,1.44451][0,-0.781537,0.623859][0.169009,0.336067,0][-0.581032,-1.30815,1.33268][-0.238216,-0.781801,0.57623][0.219236,0.356555,0][-0.510861,-1.35544,1.16776][-0.0696175,-0.983212,0.168664][0.209801,0.370506,0][-0.510861,-1.35544,1.16776][-0.0696175,-0.983212,0.168664][0.209801,0.370506,0][-0.0146827,-1.35544,1.26573][0,-0.983157,0.182766][0.165797,0.352556,0][-0.0146827,-1.30815,1.44451][0,-0.781537,0.623859][0.169009,0.336067,0][-0.0146827,-1.35544,1.26573][0,-0.983157,0.182766][0.165797,0.352556,0][-0.510861,-1.35544,1.16776][-0.0696175,-0.983212,0.168664][0.209801,0.370506,0][-0.362512,-1.38889,0.81909][-0.133946,-6.26713,0.324487][0.189854,0.4,0][-0.362512,-1.38889,0.81909][-0.133946,-6.26713,0.324487][0.189854,0.4,0][-0.0146827,-1.38889,0.88777][-6.11508e-005,-6.2671,0.35188][0.159007,0.387416,0][-0.0146827,-1.35544,1.26573][0,-0.983157,0.182766][0.165797,0.352556,0][-0.0146827,-1.38889,0.88777][-6.11508e-005,-6.2671,0.35188][0.159007,0.387416,0][-0.362512,-1.38889,0.81909][-0.133946,-6.26713,0.324487][0.189854,0.4,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.221987,0.980371,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.221987,0.980371,0][-0.0146827,-1.38889,0.88777][-6.11508e-005,-6.2671,0.35188][0.302494,0.979178,0][-0.594161,-1.25394,1.36354][-0.303167,-0.608995,0.732949][0.794149,0.822503,0][-1.06291,-1.25394,1.04981][-0.560555,-0.609554,0.560555][0.838196,0.822503,0][-1.03916,-1.30815,1.02606][-0.440416,-0.782347,0.440416][0.835965,0.827597,0][-1.03916,-1.30815,1.02606][-0.440416,-0.782347,0.440416][0.835965,0.827597,0][-0.581032,-1.30815,1.33268][-0.238216,-0.781801,0.57623][0.792916,0.827597,0][-0.594161,-1.25394,1.36354][-0.303167,-0.608995,0.732949][0.794149,0.822503,0][-0.581032,-1.30815,1.33268][-0.238216,-0.781801,0.57623][0.219236,0.356555,0][-1.03916,-1.30815,1.02606][-0.440416,-0.782347,0.440416][0.255982,0.393067,0][-0.912228,-1.35544,0.899125][-0.128757,-0.983282,0.128757][0.241994,0.402494,0][-0.912228,-1.35544,0.899125][-0.128757,-0.983282,0.128757][0.241994,0.402494,0][-0.510861,-1.35544,1.16776][-0.0696175,-0.983212,0.168664][0.209801,0.370506,0][-0.581032,-1.30815,1.33268][-0.238216,-0.781801,0.57623][0.219236,0.356555,0][-0.510861,-1.35544,1.16776][-0.0696175,-0.983212,0.168664][0.209801,0.370506,0][-0.912228,-1.35544,0.899125][-0.128757,-0.983282,0.128757][0.241994,0.402494,0][-0.643878,-1.38889,0.630775][-0.247398,-6.26723,0.247199][0.212422,0.422424,0][-0.643878,-1.38889,0.630775][-0.247398,-6.26723,0.247199][0.212422,0.422424,0][-0.362512,-1.38889,0.81909][-0.133946,-6.26713,0.324487][0.189854,0.4,0][-0.510861,-1.35544,1.16776][-0.0696175,-0.983212,0.168664][0.209801,0.370506,0][-0.362512,-1.38889,0.81909][-0.133946,-6.26713,0.324487][0.189854,0.4,0][-0.643878,-1.38889,0.630775][-0.247398,-6.26723,0.247199][0.212422,0.422424,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.797633,0.920812,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.797633,0.920812,0][-0.362512,-1.38889,0.81909][-0.133946,-6.26713,0.324487][0.716208,0.921362,0][-1.06291,-1.25394,1.04981][-0.560555,-0.609554,0.560555][0.607898,0.236161,0][-1.37664,-1.25394,0.581058][-0.732949,-0.608995,0.303167][0.651944,0.236161,0][-1.34578,-1.30815,0.567929][-0.57623,-0.7818,0.238217][0.653178,0.241255,0][-1.34578,-1.30815,0.567929][-0.57623,-0.7818,0.238217][0.653178,0.241255,0][-1.03916,-1.30815,1.02606][-0.440416,-0.782347,0.440416][0.610129,0.241255,0][-1.06291,-1.25394,1.04981][-0.560555,-0.609554,0.560555][0.607898,0.236161,0][-1.03916,-1.30815,1.02606][-0.440416,-0.782347,0.440416][0.255982,0.393067,0][-1.34578,-1.30815,0.567929][-0.57623,-0.7818,0.238217][0.276032,0.44083,0][-1.18086,-1.35544,0.497758][-0.168664,-0.983212,0.0696175][0.25956,0.444339,0][-1.18086,-1.35544,0.497758][-0.168664,-0.983212,0.0696175][0.25956,0.444339,0][-0.912228,-1.35544,0.899125][-0.128757,-0.983282,0.128757][0.241994,0.402494,0][-1.03916,-1.30815,1.02606][-0.440416,-0.782347,0.440416][0.255982,0.393067,0][-0.912228,-1.35544,0.899125][-0.128757,-0.983282,0.128757][0.241994,0.402494,0][-1.18086,-1.35544,0.497758][-0.168664,-0.983212,0.0696175][0.25956,0.444339,0][-0.832193,-1.38889,0.349409][-0.323639,-6.26715,0.133311][0.224736,0.451758,0][-0.832193,-1.38889,0.349409][-0.323639,-6.26715,0.133311][0.224736,0.451758,0][-0.643878,-1.38889,0.630775][-0.247398,-6.26723,0.247199][0.212422,0.422424,0][-0.912228,-1.35544,0.899125][-0.128757,-0.983282,0.128757][0.241994,0.402494,0][-0.643878,-1.38889,0.630775][-0.247398,-6.26723,0.247199][0.212422,0.422424,0][-0.832193,-1.38889,0.349409][-0.323639,-6.26715,0.133311][0.224736,0.451758,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.601565,0.974484,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.601565,0.974484,0][-0.643878,-1.38889,0.630775][-0.247398,-6.26723,0.247199][0.519036,0.975653,0][-1.37664,-1.25394,0.581058][-0.732949,-0.608995,0.303167][0.651944,0.236161,0][-1.49106,-1.25394,0.00157972][-0.79395,-0.607984,0][0.706396,0.236161,0][-1.45761,-1.30815,0.00157971][-0.623859,-0.781537,0][0.706396,0.241255,0][-1.45761,-1.30815,0.00157971][-0.623859,-0.781537,0][0.706396,0.241255,0][-1.34578,-1.30815,0.567929][-0.57623,-0.7818,0.238217][0.653178,0.241255,0][-1.37664,-1.25394,0.581058][-0.732949,-0.608995,0.303167][0.651944,0.236161,0][-1.34578,-1.30815,0.567929][-0.57623,-0.7818,0.238217][0.276032,0.44083,0][-1.45761,-1.30815,0.00157971][-0.623859,-0.781537,0][0.276172,0.495075,0][-1.27883,-1.35544,0.00157971][-0.182766,-0.983157,0][0.259682,0.491863,0][-1.27883,-1.35544,0.00157971][-0.182766,-0.983157,0][0.259682,0.491863,0][-1.18086,-1.35544,0.497758][-0.168664,-0.983212,0.0696175][0.25956,0.444339,0][-1.34578,-1.30815,0.567929][-0.57623,-0.7818,0.238217][0.276032,0.44083,0][-1.18086,-1.35544,0.497758][-0.168664,-0.983212,0.0696175][0.25956,0.444339,0][-1.27883,-1.35544,0.00157971][-0.182766,-0.983157,0][0.259682,0.491863,0][-0.900873,-1.38889,0.00157969][-0.349975,-6.26713,-0.000132875][0.224822,0.485073,0][-0.900873,-1.38889,0.00157969][-0.349975,-6.26713,-0.000132875][0.224822,0.485073,0][-0.832193,-1.38889,0.349409][-0.323639,-6.26715,0.133311][0.224736,0.451758,0][-1.18086,-1.35544,0.497758][-0.168664,-0.983212,0.0696175][0.25956,0.444339,0][-0.832193,-1.38889,0.349409][-0.323639,-6.26715,0.133311][0.224736,0.451758,0][-0.900873,-1.38889,0.00157969][-0.349975,-6.26713,-0.000132875][0.224822,0.485073,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.237528,0.761962,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.237528,0.761962,0][-0.832193,-1.38889,0.349409][-0.323639,-6.26715,0.133311][0.236141,0.678437,0][-1.49106,-1.25394,0.00157972][-0.79395,-0.607984,0][0.706396,0.236161,0][-1.37664,-1.25394,-0.577899][-0.732949,-0.608995,-0.303167][0.760848,0.236161,0][-1.34578,-1.30815,-0.56477][-0.57623,-0.7818,-0.238217][0.759614,0.241255,0][-1.34578,-1.30815,-0.56477][-0.57623,-0.7818,-0.238217][0.759614,0.241255,0][-1.45761,-1.30815,0.00157971][-0.623859,-0.781537,0][0.706396,0.241255,0][-1.49106,-1.25394,0.00157972][-0.79395,-0.607984,0][0.706396,0.236161,0][-1.45761,-1.30815,0.00157971][-0.623859,-0.781537,0][0.276172,0.495075,0][-1.34578,-1.30815,-0.56477][-0.57623,-0.7818,-0.238217][0.255683,0.545302,0][-1.18086,-1.35544,-0.494599][-0.168664,-0.983212,-0.0696175][0.241732,0.535867,0][-1.18086,-1.35544,-0.494599][-0.168664,-0.983212,-0.0696175][0.241732,0.535867,0][-1.27883,-1.35544,0.00157971][-0.182766,-0.983157,0][0.259682,0.491863,0][-1.45761,-1.30815,0.00157971][-0.623859,-0.781537,0][0.276172,0.495075,0][-1.27883,-1.35544,0.00157971][-0.182766,-0.983157,0][0.259682,0.491863,0][-1.18086,-1.35544,-0.494599][-0.168664,-0.983212,-0.0696175][0.241732,0.535867,0][-0.832193,-1.38889,-0.34625][-0.322649,-6.26716,-0.133168][0.212239,0.515921,0][-0.832193,-1.38889,-0.34625][-0.322649,-6.26716,-0.133168][0.212239,0.515921,0][-0.900873,-1.38889,0.00157969][-0.349975,-6.26713,-0.000132875][0.224822,0.485073,0][-1.27883,-1.35544,0.00157971][-0.182766,-0.983157,0][0.259682,0.491863,0][-0.900873,-1.38889,0.00157969][-0.349975,-6.26713,-0.000132875][0.224822,0.485073,0][-0.832193,-1.38889,-0.34625][-0.322649,-6.26716,-0.133168][0.212239,0.515921,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.882857,0.688175,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.882857,0.688175,0][-0.900873,-1.38889,0.00157969][-0.349975,-6.26713,-0.000132875][0.798364,0.687628,0][-1.37664,-1.25394,-0.577899][-0.732949,-0.608995,-0.303167][0.760848,0.236161,0][-1.06291,-1.25394,-1.04665][-0.560555,-0.609554,-0.560555][0.804895,0.236161,0][-1.03916,-1.30815,-1.0229][-0.440416,-0.782347,-0.440416][0.802663,0.241255,0][-1.03916,-1.30815,-1.0229][-0.440416,-0.782347,-0.440416][0.802663,0.241255,0][-1.34578,-1.30815,-0.56477][-0.57623,-0.7818,-0.238217][0.759614,0.241255,0][-1.37664,-1.25394,-0.577899][-0.732949,-0.608995,-0.303167][0.760848,0.236161,0][-1.34578,-1.30815,-0.56477][-0.57623,-0.7818,-0.238217][0.255683,0.545302,0][-1.03916,-1.30815,-1.0229][-0.440416,-0.782347,-0.440416][0.219172,0.582049,0][-0.912228,-1.35544,-0.895966][-0.128757,-0.983282,-0.128757][0.209745,0.568061,0][-0.912228,-1.35544,-0.895966][-0.128757,-0.983282,-0.128757][0.209745,0.568061,0][-1.18086,-1.35544,-0.494599][-0.168664,-0.983212,-0.0696175][0.241732,0.535867,0][-1.34578,-1.30815,-0.56477][-0.57623,-0.7818,-0.238217][0.255683,0.545302,0][-1.18086,-1.35544,-0.494599][-0.168664,-0.983212,-0.0696175][0.241732,0.535867,0][-0.912228,-1.35544,-0.895966][-0.128757,-0.983282,-0.128757][0.209745,0.568061,0][-0.643878,-1.38889,-0.627615][-0.245993,-6.26725,-0.246066][0.189815,0.538489,0][-0.643878,-1.38889,-0.627615][-0.245993,-6.26725,-0.246066][0.189815,0.538489,0][-0.832193,-1.38889,-0.34625][-0.322649,-6.26716,-0.133168][0.212239,0.515921,0][-1.18086,-1.35544,-0.494599][-0.168664,-0.983212,-0.0696175][0.241732,0.535867,0][-0.832193,-1.38889,-0.34625][-0.322649,-6.26716,-0.133168][0.212239,0.515921,0][-0.643878,-1.38889,-0.627615][-0.245993,-6.26725,-0.246066][0.189815,0.538489,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.981235,0.209226,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.981235,0.209226,0][-0.832193,-1.38889,-0.34625][-0.322649,-6.26716,-0.133168][0.895562,0.20961,0][-1.06291,-1.25394,-1.04665][-0.560555,-0.609554,-0.560555][0.770801,0.76425,0][-0.594161,-1.25394,-1.36038][-0.303167,-0.608995,-0.732949][0.814848,0.76425,0][-0.581032,-1.30815,-1.32952][-0.238217,-0.781801,-0.57623][0.816081,0.769343,0][-0.581032,-1.30815,-1.32952][-0.238217,-0.781801,-0.57623][0.816081,0.769343,0][-1.03916,-1.30815,-1.0229][-0.440416,-0.782347,-0.440416][0.773032,0.769343,0][-1.06291,-1.25394,-1.04665][-0.560555,-0.609554,-0.560555][0.770801,0.76425,0][-1.03916,-1.30815,-1.0229][-0.440416,-0.782347,-0.440416][0.219172,0.582049,0][-0.581032,-1.30815,-1.32952][-0.238217,-0.781801,-0.57623][0.171409,0.602099,0][-0.510861,-1.35544,-1.1646][-0.0696175,-0.983212,-0.168664][0.167899,0.585627,0][-0.510861,-1.35544,-1.1646][-0.0696175,-0.983212,-0.168664][0.167899,0.585627,0][-0.912228,-1.35544,-0.895966][-0.128757,-0.983282,-0.128757][0.209745,0.568061,0][-1.03916,-1.30815,-1.0229][-0.440416,-0.782347,-0.440416][0.219172,0.582049,0][-0.912228,-1.35544,-0.895966][-0.128757,-0.983282,-0.128757][0.209745,0.568061,0][-0.510861,-1.35544,-1.1646][-0.0696175,-0.983212,-0.168664][0.167899,0.585627,0][-0.362512,-1.38889,-0.815931][-0.132932,-6.26716,-0.322339][0.160481,0.550803,0][-0.362512,-1.38889,-0.815931][-0.132932,-6.26716,-0.322339][0.160481,0.550803,0][-0.643878,-1.38889,-0.627615][-0.245993,-6.26725,-0.246066][0.189815,0.538489,0][-0.912228,-1.35544,-0.895966][-0.128757,-0.983282,-0.128757][0.209745,0.568061,0][-0.643878,-1.38889,-0.627615][-0.245993,-6.26725,-0.246066][0.189815,0.538489,0][-0.362512,-1.38889,-0.815931][-0.132932,-6.26716,-0.322339][0.160481,0.550803,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.850065,0.852599,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.850065,0.852599,0][-0.643878,-1.38889,-0.627615][-0.245993,-6.26725,-0.246066][0.936471,0.85317,0][-0.594161,-1.25394,-1.36038][-0.303167,-0.608995,-0.732949][0.814848,0.76425,0][-0.0146828,-1.25394,-1.4748][0,-0.607984,-0.79395][0.869299,0.76425,0][-0.0146828,-1.30815,-1.44135][0,-0.781537,-0.623859][0.869299,0.769343,0][-0.0146828,-1.30815,-1.44135][0,-0.781537,-0.623859][0.869299,0.769343,0][-0.581032,-1.30815,-1.32952][-0.238217,-0.781801,-0.57623][0.816081,0.769343,0][-0.594161,-1.25394,-1.36038][-0.303167,-0.608995,-0.732949][0.814848,0.76425,0][-0.581032,-1.30815,-1.32952][-0.238217,-0.781801,-0.57623][0.171409,0.602099,0][-0.0146828,-1.30815,-1.44135][0,-0.781537,-0.623859][0.117163,0.602238,0][-0.0146828,-1.35544,-1.26257][0,-0.983157,-0.182766][0.120375,0.585749,0][-0.0146828,-1.35544,-1.26257][0,-0.983157,-0.182766][0.120375,0.585749,0][-0.510861,-1.35544,-1.1646][-0.0696175,-0.983212,-0.168664][0.167899,0.585627,0][-0.581032,-1.30815,-1.32952][-0.238217,-0.781801,-0.57623][0.171409,0.602099,0][-0.510861,-1.35544,-1.1646][-0.0696175,-0.983212,-0.168664][0.167899,0.585627,0][-0.0146828,-1.35544,-1.26257][0,-0.983157,-0.182766][0.120375,0.585749,0][-0.0146828,-1.38889,-0.884611][0.034454,-3.1199,-0.174493][0.127165,0.550889,0][-0.0146828,-1.38889,-0.884611][0.034454,-3.1199,-0.174493][0.127165,0.550889,0][-0.362512,-1.38889,-0.815931][-0.132932,-6.26716,-0.322339][0.160481,0.550803,0][-0.510861,-1.35544,-1.1646][-0.0696175,-0.983212,-0.168664][0.167899,0.585627,0][-0.362512,-1.38889,-0.815931][-0.132932,-6.26716,-0.322339][0.160481,0.550803,0][-0.0146828,-1.38889,-0.884611][0.034454,-3.1199,-0.174493][0.127165,0.550889,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.164336,0.838389,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.164336,0.838389,0][-0.362512,-1.38889,-0.815931][-0.132932,-6.26716,-0.322339][0.0778641,0.836713,0][-0.0146828,0.591536,1.54538][-0.00021597,-0.99997,-0.00778611][0.79981,0.612912,0][0.15141,0.626139,1.53][0.582926,-0.812494,-0.00703914][0.798364,0.597305,0][0.15141,0.622138,2.01891][0.545614,-0.837258,-0.0361274][0.844305,0.597305,0][0.15141,0.622138,2.01891][0.545614,-0.837258,-0.0361274][0.844305,0.597305,0][-0.0146828,0.588076,2.00521][-0.000988665,-0.999233,-0.0391385][0.843018,0.612912,0][-0.0146828,0.591536,1.54538][-0.00021597,-0.99997,-0.00778611][0.79981,0.612912,0][-0.0146828,0.588076,2.00521][-0.000988665,-0.999233,-0.0391385][0.843018,0.612912,0][0.15141,0.622138,2.01891][0.545614,-0.837258,-0.0361274][0.844305,0.597305,0][0.15141,0.594132,2.37777][0.563048,-0.810421,-0.161845][0.878026,0.597305,0][0.15141,0.594132,2.37777][0.563048,-0.810421,-0.161845][0.878026,0.597305,0][-0.0146828,0.563854,2.34509][-0.00436859,-0.983746,-0.179512][0.874955,0.612912,0][-0.0146828,0.588076,2.00521][-0.000988665,-0.999233,-0.0391385][0.843018,0.612912,0][-0.0146828,0.563854,2.34509][-0.00436859,-0.983746,-0.179512][0.874955,0.612912,0][0.15141,0.594132,2.37777][0.563048,-0.810421,-0.161845][0.878026,0.597305,0][0.15141,0.518114,2.59879][0.642746,-0.595148,-0.482365][0.898795,0.597305,0][0.15141,0.518114,2.59879][0.642746,-0.595148,-0.482365][0.898795,0.597305,0][-0.0146827,0.498109,2.55578][-0.0104599,-0.790557,-0.612299][0.894753,0.612912,0][-0.0146828,0.563854,2.34509][-0.00436859,-0.983746,-0.179512][0.874955,0.612912,0][-0.0146827,0.498109,2.55578][-0.0104599,-0.790557,-0.612299][0.975402,0.102983,0][0.15141,0.518114,2.59879][0.642746,-0.595148,-0.482365][0.977282,0.11859,0][0.15141,0.37008,2.6742][0.664199,-0.114594,-0.738721][0.963371,0.11859,0][0.15141,0.37008,2.6742][0.664199,-0.114594,-0.738721][0.963371,0.11859,0][-0.0146827,0.37008,2.62806][-0.00666969,-0.165708,-0.986152][0.963371,0.102983,0][-0.0146827,0.498109,2.55578][-0.0104599,-0.790557,-0.612299][0.975402,0.102983,0][0.15141,0.626139,1.53][0.582926,-0.812494,-0.00703914][0.470218,0.723527,0][0.206774,0.702265,1.49617][0.986769,0.162122,0.00190858][0.477959,0.722363,0][0.206774,0.697074,2.04904][0.99985,0.0171067,-0.00276168][0.463684,0.772317,0][0.206774,0.697074,2.04904][0.99985,0.0171067,-0.00276168][0.463684,0.772317,0][0.15141,0.622138,2.01891][0.545614,-0.837258,-0.0361274][0.457648,0.767716,0][0.15141,0.626139,1.53][0.582926,-0.812494,-0.00703914][0.470218,0.723527,0][0.15141,0.622138,2.01891][0.545614,-0.837258,-0.0361274][0.457648,0.767716,0][0.206774,0.697074,2.04904][0.99985,0.0171067,-0.00276168][0.463684,0.772317,0][0.206774,0.660742,2.44966][0.997247,0.0733981,-0.0105328][0.45039,0.807701,0][0.206774,0.660742,2.44966][0.997247,0.0733981,-0.0105328][0.45039,0.807701,0][0.15141,0.594132,2.37777][0.563048,-0.810421,-0.161845][0.446151,0.799525,0][0.15141,0.622138,2.01891][0.545614,-0.837258,-0.0361274][0.457648,0.767716,0][0.15141,0.594132,2.37777][0.563048,-0.810421,-0.161845][0.446151,0.799525,0][0.206774,0.660742,2.44966][0.997247,0.0733981,-0.0105328][0.45039,0.807701,0][0.206774,0.562124,2.69342][0.989303,0.130069,0.0660402][0.43537,0.82732,0][0.206774,0.562124,2.69342][0.989303,0.130069,0.0660402][0.43537,0.82732,0][0.15141,0.518114,2.59879][0.642746,-0.595148,-0.482365][0.433746,0.817649,0][0.15141,0.594132,2.37777][0.563048,-0.810421,-0.161845][0.446151,0.799525,0][0.15141,0.518114,2.59879][0.642746,-0.595148,-0.482365][0.433746,0.817649,0][0.206774,0.562124,2.69342][0.989303,0.130069,0.0660402][0.43537,0.82732,0][0.206774,0.37008,2.7757][0.995394,0.0165944,0.0944261][0.415919,0.829979,0][0.206774,0.37008,2.7757][0.995394,0.0165944,0.0944261][0.415919,0.829979,0][0.15141,0.37008,2.6742][0.664199,-0.114594,-0.738721][0.418453,0.820784,0][0.15141,0.518114,2.59879][0.642746,-0.595148,-0.482365][0.433746,0.817649,0][0.206774,0.702265,1.49617][0.986769,0.162122,0.00190858][0.477959,0.722363,0][0.15141,0.77839,1.46234][0.490293,0.871509,0.00920303][0.4857,0.721198,0][0.15141,0.772011,2.07918][0.539458,0.840609,0.0486064][0.46972,0.776918,0][0.15141,0.772011,2.07918][0.539458,0.840609,0.0486064][0.46972,0.776918,0][0.206774,0.697074,2.04904][0.99985,0.0171067,-0.00276168][0.463684,0.772317,0][0.206774,0.702265,1.49617][0.986769,0.162122,0.00190858][0.477959,0.722363,0][0.206774,0.697074,2.04904][0.99985,0.0171067,-0.00276168][0.463684,0.772317,0][0.15141,0.772011,2.07918][0.539458,0.840609,0.0486064][0.46972,0.776918,0][0.15141,0.727351,2.52156][0.552739,0.802881,0.223298][0.454629,0.815877,0][0.15141,0.727351,2.52156][0.552739,0.802881,0.223298][0.454629,0.815877,0][0.206774,0.660742,2.44966][0.997247,0.0733981,-0.0105328][0.45039,0.807701,0][0.206774,0.697074,2.04904][0.99985,0.0171067,-0.00276168][0.463684,0.772317,0][0.206774,0.660742,2.44966][0.997247,0.0733981,-0.0105328][0.45039,0.807701,0][0.15141,0.727351,2.52156][0.552739,0.802881,0.223298][0.454629,0.815877,0][0.15141,0.606134,2.78805][0.575136,0.559971,0.596365][0.436994,0.836992,0][0.15141,0.606134,2.78805][0.575136,0.559971,0.596365][0.436994,0.836992,0][0.206774,0.562124,2.69342][0.989303,0.130069,0.0660402][0.43537,0.82732,0][0.206774,0.660742,2.44966][0.997247,0.0733981,-0.0105328][0.45039,0.807701,0][0.206774,0.562124,2.69342][0.989303,0.130069,0.0660402][0.43537,0.82732,0][0.15141,0.606134,2.78805][0.575136,0.559971,0.596365][0.436994,0.836992,0][0.15141,0.37008,2.8772][0.591603,0.0682358,0.803337][0.413384,0.839173,0][0.15141,0.37008,2.8772][0.591603,0.0682358,0.803337][0.413384,0.839173,0][0.206774,0.37008,2.7757][0.995394,0.0165944,0.0944261][0.415919,0.829979,0][0.206774,0.562124,2.69342][0.989303,0.130069,0.0660402][0.43537,0.82732,0][0.15141,0.77839,1.46234][0.490293,0.871509,0.00920303][0.625176,0.677016,0][-0.0146828,0.812993,1.44696][0.000103336,0.999944,0.0105609][0.623731,0.661409,0][-0.0146828,0.806072,2.09287][0.000709788,0.99827,0.0587986][0.684426,0.661409,0][-0.0146828,0.806072,2.09287][0.000709788,0.99827,0.0587986][0.684426,0.661409,0][0.15141,0.772011,2.07918][0.539458,0.840609,0.0486064][0.683139,0.677016,0][0.15141,0.77839,1.46234][0.490293,0.871509,0.00920303][0.625176,0.677016,0][0.15141,0.772011,2.07918][0.539458,0.840609,0.0486064][0.683139,0.677016,0][-0.0146828,0.806072,2.09287][0.000709788,0.99827,0.0587986][0.684426,0.661409,0][-0.0146828,0.757629,2.55424][0.00326865,0.959787,0.28071][0.727779,0.661409,0][-0.0146828,0.757629,2.55424][0.00326865,0.959787,0.28071][0.727779,0.661409,0][0.15141,0.727351,2.52156][0.552739,0.802881,0.223298][0.724708,0.677016,0][0.15141,0.772011,2.07918][0.539458,0.840609,0.0486064][0.683139,0.677016,0][0.15141,0.727351,2.52156][0.552739,0.802881,0.223298][0.724708,0.677016,0][-0.0146828,0.757629,2.55424][0.00326865,0.959787,0.28071][0.727779,0.661409,0][-0.0146827,0.626139,2.83106][0.00426812,0.661739,0.749723][0.753791,0.661409,0][-0.0146827,0.626139,2.83106][0.00426812,0.661739,0.749723][0.753791,0.661409,0][0.15141,0.606134,2.78805][0.575136,0.559971,0.596365][0.749749,0.677016,0][0.15141,0.727351,2.52156][0.552739,0.802881,0.223298][0.724708,0.677016,0][0.15141,0.606134,2.78805][0.575136,0.559971,0.596365][0.600611,0.909933,0][-0.0146827,0.626139,2.83106][0.00426812,0.661739,0.749723][0.602491,0.92554,0][-0.0146827,0.37008,2.92333][0.00205923,0.0727143,0.997351][0.57843,0.92554,0][-0.0146827,0.37008,2.92333][0.00205923,0.0727143,0.997351][0.57843,0.92554,0][0.15141,0.37008,2.8772][0.591603,0.0682358,0.803337][0.57843,0.909933,0][0.15141,0.606134,2.78805][0.575136,0.559971,0.596365][0.600611,0.909933,0][-0.0146828,0.812993,1.44696][0.000103336,0.999944,0.0105609][0.623731,0.661409,0][-0.180775,0.77839,1.46234][-0.49033,0.871493,0.00879211][0.625176,0.645802,0][-0.180775,0.772011,2.07918][-0.538756,0.841178,0.0464937][0.683139,0.645802,0][-0.180775,0.772011,2.07918][-0.538756,0.841178,0.0464937][0.683139,0.645802,0][-0.0146828,0.806072,2.09287][0.000709788,0.99827,0.0587986][0.684426,0.661409,0][-0.0146828,0.812993,1.44696][0.000103336,0.999944,0.0105609][0.623731,0.661409,0][-0.0146828,0.806072,2.09287][0.000709788,0.99827,0.0587986][0.684426,0.661409,0][-0.180775,0.772011,2.07918][-0.538756,0.841178,0.0464937][0.683139,0.645802,0][-0.180775,0.727351,2.52156][-0.549161,0.806807,0.217909][0.724708,0.645802,0][-0.180775,0.727351,2.52156][-0.549161,0.806807,0.217909][0.724708,0.645802,0][-0.0146828,0.757629,2.55424][0.00326865,0.959787,0.28071][0.727779,0.661409,0][-0.0146828,0.806072,2.09287][0.000709788,0.99827,0.0587986][0.684426,0.661409,0][-0.0146828,0.757629,2.55424][0.00326865,0.959787,0.28071][0.727779,0.661409,0][-0.180775,0.727351,2.52156][-0.549161,0.806807,0.217909][0.724708,0.645802,0][-0.180775,0.606134,2.78805][-0.574121,0.560026,0.597291][0.749749,0.645802,0][-0.180775,0.606134,2.78805][-0.574121,0.560026,0.597291][0.749749,0.645802,0][-0.0146827,0.626139,2.83106][0.00426812,0.661739,0.749723][0.753791,0.661409,0][-0.0146828,0.757629,2.55424][0.00326865,0.959787,0.28071][0.727779,0.661409,0][-0.0146827,0.626139,2.83106][0.00426812,0.661739,0.749723][0.602491,0.92554,0][-0.180775,0.606134,2.78805][-0.574121,0.560026,0.597291][0.600611,0.941147,0][-0.180775,0.37008,2.8772][-0.591292,0.0629127,0.804][0.57843,0.941147,0][-0.180775,0.37008,2.8772][-0.591292,0.0629127,0.804][0.57843,0.941147,0][-0.0146827,0.37008,2.92333][0.00205923,0.0727143,0.997351][0.57843,0.92554,0][-0.0146827,0.626139,2.83106][0.00426812,0.661739,0.749723][0.602491,0.92554,0][-0.180775,0.77839,1.46234][-0.49033,0.871493,0.00879211][0.623731,0.50008,0][-0.23614,0.702265,1.49617][-0.98684,0.161691,0.00180566][0.631421,0.501547,0][-0.236139,0.697074,2.04904][-0.999892,0.0145546,-0.00203091][0.643726,0.552022,0][-0.236139,0.697074,2.04904][-0.999892,0.0145546,-0.00203091][0.643726,0.552022,0][-0.180775,0.772011,2.07918][-0.538756,0.841178,0.0464937][0.637514,0.556383,0][-0.180775,0.77839,1.46234][-0.49033,0.871493,0.00879211][0.623731,0.50008,0][-0.180775,0.772011,2.07918][-0.538756,0.841178,0.0464937][0.637514,0.556383,0][-0.236139,0.697074,2.04904][-0.999892,0.0145546,-0.00203091][0.643726,0.552022,0][-0.236139,0.660742,2.44966][-0.998152,0.0600694,-0.00921513][0.655623,0.587901,0][-0.236139,0.660742,2.44966][-0.998152,0.0600694,-0.00921513][0.655623,0.587901,0][-0.180775,0.727351,2.52156][-0.549161,0.806807,0.217909][0.651067,0.595905,0][-0.180775,0.772011,2.07918][-0.538756,0.841178,0.0464937][0.637514,0.556383,0][-0.180775,0.727351,2.52156][-0.549161,0.806807,0.217909][0.651067,0.595905,0][-0.236139,0.660742,2.44966][-0.998152,0.0600694,-0.00921513][0.655623,0.587901,0][-0.236139,0.562124,2.69342][-0.991723,0.113865,0.0593336][0.669862,0.608094,0][-0.236139,0.562124,2.69342][-0.991723,0.113865,0.0593336][0.669862,0.608094,0][-0.180775,0.606134,2.78805][-0.574121,0.560026,0.597291][0.66786,0.617694,0][-0.180775,0.727351,2.52156][-0.549161,0.806807,0.217909][0.651067,0.595905,0][-0.180775,0.606134,2.78805][-0.574121,0.560026,0.597291][0.66786,0.617694,0][-0.236139,0.562124,2.69342][-0.991723,0.113865,0.0593336][0.669862,0.608094,0][-0.236139,0.37008,2.7757][-0.996141,0.0122902,0.0868991][0.689194,0.611513,0][-0.236139,0.37008,2.7757][-0.996141,0.0122902,0.0868991][0.689194,0.611513,0][-0.180775,0.37008,2.8772][-0.591292,0.0629127,0.804][0.691366,0.6208,0][-0.180775,0.606134,2.78805][-0.574121,0.560026,0.597291][0.66786,0.617694,0][-0.23614,0.702265,1.49617][-0.98684,0.161691,0.00180566][0.631421,0.501547,0][-0.180775,0.626139,1.53][-0.583095,-0.812379,-0.00641777][0.63911,0.503014,0][-0.180775,0.622138,2.01891][-0.545373,-0.837512,-0.0337834][0.649938,0.547662,0][-0.180775,0.622138,2.01891][-0.545373,-0.837512,-0.0337834][0.649938,0.547662,0][-0.236139,0.697074,2.04904][-0.999892,0.0145546,-0.00203091][0.643726,0.552022,0][-0.23614,0.702265,1.49617][-0.98684,0.161691,0.00180566][0.631421,0.501547,0][-0.236139,0.697074,2.04904][-0.999892,0.0145546,-0.00203091][0.643726,0.552022,0][-0.180775,0.622138,2.01891][-0.545373,-0.837512,-0.0337834][0.649938,0.547662,0][-0.180775,0.594132,2.37777][-0.562189,-0.811948,-0.157112][0.660179,0.579897,0][-0.180775,0.594132,2.37777][-0.562189,-0.811948,-0.157112][0.660179,0.579897,0][-0.236139,0.660742,2.44966][-0.998152,0.0600694,-0.00921513][0.655623,0.587901,0][-0.236139,0.697074,2.04904][-0.999892,0.0145546,-0.00203091][0.643726,0.552022,0][-0.236139,0.660742,2.44966][-0.998152,0.0600694,-0.00921513][0.655623,0.587901,0][-0.180775,0.594132,2.37777][-0.562189,-0.811948,-0.157112][0.660179,0.579897,0][-0.180775,0.518114,2.59879][-0.646528,-0.589365,-0.484407][0.671864,0.598494,0][-0.180775,0.518114,2.59879][-0.646528,-0.589365,-0.484407][0.671864,0.598494,0][-0.236139,0.562124,2.69342][-0.991723,0.113865,0.0593336][0.669862,0.608094,0][-0.236139,0.660742,2.44966][-0.998152,0.0600694,-0.00921513][0.655623,0.587901,0][-0.236139,0.562124,2.69342][-0.991723,0.113865,0.0593336][0.669862,0.608094,0][-0.180775,0.518114,2.59879][-0.646528,-0.589365,-0.484407][0.671864,0.598494,0][-0.180775,0.37008,2.6742][-0.666187,-0.10132,-0.73887][0.687023,0.602225,0][-0.180775,0.37008,2.6742][-0.666187,-0.10132,-0.73887][0.687023,0.602225,0][-0.236139,0.37008,2.7757][-0.996141,0.0122902,0.0868991][0.689194,0.611513,0][-0.236139,0.562124,2.69342][-0.991723,0.113865,0.0593336][0.669862,0.608094,0][-0.180775,0.626139,1.53][-0.583095,-0.812379,-0.00641777][0.798364,0.628519,0][-0.0146828,0.591536,1.54538][-0.00021597,-0.99997,-0.00778611][0.79981,0.612912,0][-0.0146828,0.588076,2.00521][-0.000988665,-0.999233,-0.0391385][0.843018,0.612912,0][-0.0146828,0.588076,2.00521][-0.000988665,-0.999233,-0.0391385][0.843018,0.612912,0][-0.180775,0.622138,2.01891][-0.545373,-0.837512,-0.0337834][0.844305,0.628519,0][-0.180775,0.626139,1.53][-0.583095,-0.812379,-0.00641777][0.798364,0.628519,0][-0.180775,0.622138,2.01891][-0.545373,-0.837512,-0.0337834][0.844305,0.628519,0][-0.0146828,0.588076,2.00521][-0.000988665,-0.999233,-0.0391385][0.843018,0.612912,0][-0.0146828,0.563854,2.34509][-0.00436859,-0.983746,-0.179512][0.874955,0.612912,0][-0.0146828,0.563854,2.34509][-0.00436859,-0.983746,-0.179512][0.874955,0.612912,0][-0.180775,0.594132,2.37777][-0.562189,-0.811948,-0.157112][0.878026,0.628519,0][-0.180775,0.622138,2.01891][-0.545373,-0.837512,-0.0337834][0.844305,0.628519,0][-0.180775,0.594132,2.37777][-0.562189,-0.811948,-0.157112][0.878026,0.628519,0][-0.0146828,0.563854,2.34509][-0.00436859,-0.983746,-0.179512][0.874955,0.612912,0][-0.0146827,0.498109,2.55578][-0.0104599,-0.790557,-0.612299][0.894753,0.612912,0][-0.0146827,0.498109,2.55578][-0.0104599,-0.790557,-0.612299][0.894753,0.612912,0][-0.180775,0.518114,2.59879][-0.646528,-0.589365,-0.484407][0.898795,0.628519,0][-0.180775,0.594132,2.37777][-0.562189,-0.811948,-0.157112][0.878026,0.628519,0][-0.180775,0.518114,2.59879][-0.646528,-0.589365,-0.484407][0.977282,0.0873754,0][-0.0146827,0.498109,2.55578][-0.0104599,-0.790557,-0.612299][0.975402,0.102983,0][-0.0146827,0.37008,2.62806][-0.00666969,-0.165708,-0.986152][0.963371,0.102983,0][-0.0146827,0.37008,2.62806][-0.00666969,-0.165708,-0.986152][0.963371,0.102983,0][-0.180775,0.37008,2.6742][-0.666187,-0.10132,-0.73887][0.963371,0.0873754,0][-0.180775,0.518114,2.59879][-0.646528,-0.589365,-0.484407][0.977282,0.0873754,0][-0.0146827,0.37008,2.62806][-0.00666969,-0.165708,-0.986152][0.963371,0.102983,0][0.15141,0.37008,2.6742][0.664199,-0.114594,-0.738721][0.963371,0.11859,0][0.15141,0.150011,2.63154][0.637361,0.259352,-0.725609][0.942692,0.11859,0][0.15141,0.150011,2.63154][0.637361,0.259352,-0.725609][0.942692,0.11859,0][-0.0146827,0.169385,2.58961][-0.003357,0.32265,-0.946512][0.944513,0.102983,0][-0.0146827,0.37008,2.62806][-0.00666969,-0.165708,-0.986152][0.963371,0.102983,0][-0.0146827,0.169385,2.58961][-0.003357,0.32265,-0.946512][0.944513,0.102983,0][0.15141,0.150011,2.63154][0.637361,0.259352,-0.725609][0.942692,0.11859,0][0.15141,-0.10239,2.49791][0.607719,0.461988,-0.645945][0.918975,0.11859,0][0.15141,-0.10239,2.49791][0.607719,0.461988,-0.645945][0.918975,0.11859,0][-0.0146827,-0.0728337,2.46812][-0.00745214,0.56387,-0.82583][0.921752,0.102983,0][-0.0146827,0.169385,2.58961][-0.003357,0.32265,-0.946512][0.944513,0.102983,0][-0.0146827,-0.0728337,2.46812][-0.00745214,0.56387,-0.82583][0.921752,0.102983,0][0.15141,-0.10239,2.49791][0.607719,0.461988,-0.645945][0.918975,0.11859,0][0.15141,-0.351547,2.2648][0.558614,0.63666,-0.531615][0.895562,0.11859,0][0.15141,-0.351547,2.2648][0.558614,0.63666,-0.531615][0.895562,0.11859,0][-0.0146827,-0.315052,2.25435][-0.00693682,0.759893,-0.650011][0.898992,0.102983,0][-0.0146827,-0.0728337,2.46812][-0.00745214,0.56387,-0.82583][0.921752,0.102983,0][-0.0146827,-0.315052,2.25435][-0.00693682,0.759893,-0.650011][0.295444,0.897636,0][0.15141,-0.351547,2.2648][0.558614,0.63666,-0.531615][0.296426,0.913243,0][0.15141,-0.561884,1.9237][0.59554,0.681717,-0.424964][0.264374,0.913243,0][0.15141,-0.561884,1.9237][0.59554,0.681717,-0.424964][0.264374,0.913243,0][-0.0146827,-0.515747,1.93908][-0.0052454,0.846459,-0.532429][0.265819,0.897636,0][-0.0146827,-0.315052,2.25435][-0.00693682,0.759893,-0.650011][0.295444,0.897636,0][0.15141,0.37008,2.6742][0.664199,-0.114594,-0.738721][0.418453,0.820784,0][0.206774,0.37008,2.7757][0.995394,0.0165944,0.0944261][0.415919,0.829979,0][0.206774,0.107388,2.72379][0.998576,-0.0197547,0.0495607][0.393418,0.818718,0][0.206774,0.107388,2.72379][0.998576,-0.0197547,0.0495607][0.393418,0.818718,0][0.15141,0.150011,2.63154][0.637361,0.259352,-0.725609][0.399582,0.811425,0][0.15141,0.37008,2.6742][0.664199,-0.114594,-0.738721][0.418453,0.820784,0][0.15141,0.150011,2.63154][0.637361,0.259352,-0.725609][0.399582,0.811425,0][0.206774,0.107388,2.72379][0.998576,-0.0197547,0.0495607][0.393418,0.818718,0][0.206774,-0.167414,2.56347][0.99865,-0.0356239,0.0378159][0.372527,0.797333,0][0.206774,-0.167414,2.56347][0.99865,-0.0356239,0.0378159][0.372527,0.797333,0][0.15141,-0.10239,2.49791][0.607719,0.461988,-0.645945][0.380054,0.793018,0][0.15141,0.150011,2.63154][0.637361,0.259352,-0.725609][0.399582,0.811425,0][0.15141,-0.10239,2.49791][0.607719,0.461988,-0.645945][0.380054,0.793018,0][0.206774,-0.167414,2.56347][0.99865,-0.0356239,0.0378159][0.372527,0.797333,0][0.206774,-0.431836,2.2878][0.998614,-0.0365113,0.037913][0.355456,0.765758,0][0.206774,-0.431836,2.2878][0.998614,-0.0365113,0.037913][0.355456,0.765758,0][0.15141,-0.351547,2.2648][0.558614,0.63666,-0.531615][0.363304,0.76568,0][0.15141,-0.10239,2.49791][0.607719,0.461988,-0.645945][0.380054,0.793018,0][0.15141,-0.351547,2.2648][0.558614,0.63666,-0.531615][0.363304,0.76568,0][0.206774,-0.431836,2.2878][0.998614,-0.0365113,0.037913][0.355456,0.765758,0][0.206774,-0.663385,1.88987][0.93953,-0.297945,0.168854][0.344417,0.723929,0][0.206774,-0.663385,1.88987][0.93953,-0.297945,0.168854][0.344417,0.723929,0][0.15141,-0.561884,1.9237][0.59554,0.681717,-0.424964][0.352767,0.729528,0][0.15141,-0.351547,2.2648][0.558614,0.63666,-0.531615][0.363304,0.76568,0][0.206774,0.37008,2.7757][0.995394,0.0165944,0.0944261][0.415919,0.829979,0][0.15141,0.37008,2.8772][0.591603,0.0682358,0.803337][0.413384,0.839173,0][0.15141,0.0647657,2.81604][0.599523,-0.299166,0.742342][0.387253,0.82601,0][0.15141,0.0647657,2.81604][0.599523,-0.299166,0.742342][0.387253,0.82601,0][0.206774,0.107388,2.72379][0.998576,-0.0197547,0.0495607][0.393418,0.818718,0][0.206774,0.37008,2.7757][0.995394,0.0165944,0.0944261][0.415919,0.829979,0][0.206774,0.107388,2.72379][0.998576,-0.0197547,0.0495607][0.393418,0.818718,0][0.15141,0.0647657,2.81604][0.599523,-0.299166,0.742342][0.387253,0.82601,0][0.15141,-0.232438,2.62902][0.579503,-0.529406,0.619602][0.365,0.801647,0][0.15141,-0.232438,2.62902][0.579503,-0.529406,0.619602][0.365,0.801647,0][0.206774,-0.167414,2.56347][0.99865,-0.0356239,0.0378159][0.372527,0.797333,0][0.206774,0.107388,2.72379][0.998576,-0.0197547,0.0495607][0.393418,0.818718,0][0.206774,-0.167414,2.56347][0.99865,-0.0356239,0.0378159][0.372527,0.797333,0][0.15141,-0.232438,2.62902][0.579503,-0.529406,0.619602][0.365,0.801647,0][0.15141,-0.512125,2.3108][0.543837,-0.68576,0.483708][0.347609,0.765836,0][0.15141,-0.512125,2.3108][0.543837,-0.68576,0.483708][0.347609,0.765836,0][0.206774,-0.431836,2.2878][0.998614,-0.0365113,0.037913][0.355456,0.765758,0][0.206774,-0.167414,2.56347][0.99865,-0.0356239,0.0378159][0.372527,0.797333,0][0.206774,-0.431836,2.2878][0.998614,-0.0365113,0.037913][0.355456,0.765758,0][0.15141,-0.512125,2.3108][0.543837,-0.68576,0.483708][0.347609,0.765836,0][0.15141,-0.764886,1.85604][0.413177,-0.794355,0.445293][0.336067,0.718329,0][0.15141,-0.764886,1.85604][0.413177,-0.794355,0.445293][0.336067,0.718329,0][0.206774,-0.663385,1.88987][0.93953,-0.297945,0.168854][0.344417,0.723929,0][0.206774,-0.431836,2.2878][0.998614,-0.0365113,0.037913][0.355456,0.765758,0][0.15141,0.37008,2.8772][0.591603,0.0682358,0.803337][0.57843,0.909933,0][-0.0146827,0.37008,2.92333][0.00205923,0.0727143,0.997351][0.57843,0.92554,0][-0.0146827,0.0453919,2.85797][0.00199602,-0.376257,0.926513][0.54792,0.92554,0][-0.0146827,0.0453919,2.85797][0.00199602,-0.376257,0.926513][0.54792,0.92554,0][0.15141,0.0647657,2.81604][0.599523,-0.299166,0.742342][0.549741,0.909933,0][0.15141,0.37008,2.8772][0.591603,0.0682358,0.803337][0.57843,0.909933,0][0.15141,0.0647657,2.81604][0.599523,-0.299166,0.742342][0.549741,0.909933,0][-0.0146827,0.0453919,2.85797][0.00199602,-0.376257,0.926513][0.54792,0.92554,0][-0.0146827,-0.261995,2.65882][0.00431721,-0.656952,0.75392][0.519036,0.92554,0][-0.0146827,-0.261995,2.65882][0.00431721,-0.656952,0.75392][0.519036,0.92554,0][0.15141,-0.232438,2.62902][0.579503,-0.529406,0.619602][0.521814,0.909933,0][0.15141,0.0647657,2.81604][0.599523,-0.299166,0.742342][0.549741,0.909933,0][0.15141,-0.232438,2.62902][0.579503,-0.529406,0.619602][0.985476,0.381209,0][-0.0146827,-0.261995,2.65882][0.00431721,-0.656952,0.75392][0.988276,0.396816,0][-0.0146827,-0.54862,2.32125][0.00346103,-0.824244,0.566224][0.956556,0.396816,0][-0.0146827,-0.54862,2.32125][0.00346103,-0.824244,0.566224][0.956556,0.396816,0][0.15141,-0.512125,2.3108][0.543837,-0.68576,0.483708][0.955573,0.381209,0][0.15141,-0.232438,2.62902][0.579503,-0.529406,0.619602][0.985476,0.381209,0][0.15141,-0.512125,2.3108][0.543837,-0.68576,0.483708][0.955573,0.381209,0][-0.0146827,-0.54862,2.32125][0.00346103,-0.824244,0.566224][0.956556,0.396816,0][-0.0146827,-0.811023,1.84066][0.00185043,-0.876277,0.481804][0.911396,0.396816,0][-0.0146827,-0.811023,1.84066][0.00185043,-0.876277,0.481804][0.911396,0.396816,0][0.15141,-0.764886,1.85604][0.413177,-0.794355,0.445293][0.912841,0.381209,0][0.15141,-0.512125,2.3108][0.543837,-0.68576,0.483708][0.955573,0.381209,0][-0.0146827,0.37008,2.92333][0.00205923,0.0727143,0.997351][0.57843,0.92554,0][-0.180775,0.37008,2.8772][-0.591292,0.0629127,0.804][0.57843,0.941147,0][-0.180775,0.0647657,2.81604][-0.598977,-0.294425,0.744675][0.549741,0.941147,0][-0.180775,0.0647657,2.81604][-0.598977,-0.294425,0.744675][0.549741,0.941147,0][-0.0146827,0.0453919,2.85797][0.00199602,-0.376257,0.926513][0.54792,0.92554,0][-0.0146827,0.37008,2.92333][0.00205923,0.0727143,0.997351][0.57843,0.92554,0][-0.0146827,0.0453919,2.85797][0.00199602,-0.376257,0.926513][0.54792,0.92554,0][-0.180775,0.0647657,2.81604][-0.598977,-0.294425,0.744675][0.549741,0.941147,0][-0.180775,-0.232438,2.62902][-0.578165,-0.528114,0.62195][0.521814,0.941147,0][-0.180775,-0.232438,2.62902][-0.578165,-0.528114,0.62195][0.521814,0.941147,0][-0.0146827,-0.261995,2.65882][0.00431721,-0.656952,0.75392][0.519036,0.92554,0][-0.0146827,0.0453919,2.85797][0.00199602,-0.376257,0.926513][0.54792,0.92554,0][-0.0146827,-0.261995,2.65882][0.00431721,-0.656952,0.75392][0.988276,0.396816,0][-0.180775,-0.232438,2.62902][-0.578165,-0.528114,0.62195][0.985476,0.412423,0][-0.180775,-0.512125,2.3108][-0.542828,-0.68834,0.481171][0.955573,0.412423,0][-0.180775,-0.512125,2.3108][-0.542828,-0.68834,0.481171][0.955573,0.412423,0][-0.0146827,-0.54862,2.32125][0.00346103,-0.824244,0.566224][0.956556,0.396816,0][-0.0146827,-0.261995,2.65882][0.00431721,-0.656952,0.75392][0.988276,0.396816,0][-0.0146827,-0.54862,2.32125][0.00346103,-0.824244,0.566224][0.956556,0.396816,0][-0.180775,-0.512125,2.3108][-0.542828,-0.68834,0.481171][0.955573,0.412423,0][-0.180775,-0.764886,1.85604][-0.415744,-0.797035,0.438055][0.912841,0.412423,0][-0.180775,-0.764886,1.85604][-0.415744,-0.797035,0.438055][0.912841,0.412423,0][-0.0146827,-0.811023,1.84066][0.00185043,-0.876277,0.481804][0.911396,0.396816,0][-0.0146827,-0.54862,2.32125][0.00346103,-0.824244,0.566224][0.956556,0.396816,0][-0.180775,0.37008,2.8772][-0.591292,0.0629127,0.804][0.691366,0.6208,0][-0.236139,0.37008,2.7757][-0.996141,0.0122902,0.0868991][0.689194,0.611513,0][-0.236139,0.107388,2.72379][-0.998871,-0.0170558,0.044337][0.712119,0.601142,0][-0.236139,0.107388,2.72379][-0.998871,-0.0170558,0.044337][0.712119,0.601142,0][-0.180775,0.0647657,2.81604][-0.598977,-0.294425,0.744675][0.717993,0.608671,0][-0.180775,0.37008,2.8772][-0.591292,0.0629127,0.804][0.691366,0.6208,0][-0.180775,0.0647657,2.81604][-0.598977,-0.294425,0.744675][0.717993,0.608671,0][-0.236139,0.107388,2.72379][-0.998871,-0.0170558,0.044337][0.712119,0.601142,0][-0.236139,-0.167414,2.56347][-0.99926,-0.0281668,0.0261765][0.733833,0.580593,0][-0.236139,-0.167414,2.56347][-0.99926,-0.0281668,0.0261765][0.733833,0.580593,0][-0.180775,-0.232438,2.62902][-0.578165,-0.528114,0.62195][0.741185,0.585199,0][-0.180775,0.0647657,2.81604][-0.598977,-0.294425,0.744675][0.717993,0.608671,0][-0.180775,-0.232438,2.62902][-0.578165,-0.528114,0.62195][0.741185,0.585199,0][-0.236139,-0.167414,2.56347][-0.99926,-0.0281668,0.0261765][0.733833,0.580593,0][-0.236139,-0.431836,2.2878][-0.999278,-0.0283321,0.0252937][0.752128,0.549712,0][-0.236139,-0.431836,2.2878][-0.999278,-0.0283321,0.0252937][0.752128,0.549712,0][-0.180775,-0.512125,2.3108][-0.542828,-0.68834,0.481171][0.759966,0.550098,0][-0.180775,-0.232438,2.62902][-0.578165,-0.528114,0.62195][0.741185,0.585199,0][-0.180775,-0.512125,2.3108][-0.542828,-0.68834,0.481171][0.759966,0.550098,0][-0.236139,-0.431836,2.2878][-0.999278,-0.0283321,0.0252937][0.752128,0.549712,0][-0.236139,-0.663385,1.88987][-0.944167,-0.289392,0.157482][0.764799,0.508347,0][-0.236139,-0.663385,1.88987][-0.944167,-0.289392,0.157482][0.764799,0.508347,0][-0.180775,-0.764886,1.85604][-0.415744,-0.797035,0.438055][0.773362,0.503079,0][-0.180775,-0.512125,2.3108][-0.542828,-0.68834,0.481171][0.759966,0.550098,0][-0.236139,0.37008,2.7757][-0.996141,0.0122902,0.0868991][0.689194,0.611513,0][-0.180775,0.37008,2.6742][-0.666187,-0.10132,-0.73887][0.687023,0.602225,0][-0.180775,0.150011,2.63154][-0.637142,0.25241,-0.728244][0.706246,0.593614,0][-0.180775,0.150011,2.63154][-0.637142,0.25241,-0.728244][0.706246,0.593614,0][-0.236139,0.107388,2.72379][-0.998871,-0.0170558,0.044337][0.712119,0.601142,0][-0.236139,0.37008,2.7757][-0.996141,0.0122902,0.0868991][0.689194,0.611513,0][-0.236139,0.107388,2.72379][-0.998871,-0.0170558,0.044337][0.712119,0.601142,0][-0.180775,0.150011,2.63154][-0.637142,0.25241,-0.728244][0.706246,0.593614,0][-0.180775,-0.10239,2.49791][-0.608254,0.459725,-0.647054][0.72648,0.575986,0][-0.180775,-0.10239,2.49791][-0.608254,0.459725,-0.647054][0.72648,0.575986,0][-0.236139,-0.167414,2.56347][-0.99926,-0.0281668,0.0261765][0.733833,0.580593,0][-0.236139,0.107388,2.72379][-0.998871,-0.0170558,0.044337][0.712119,0.601142,0][-0.236139,-0.167414,2.56347][-0.99926,-0.0281668,0.0261765][0.733833,0.580593,0][-0.180775,-0.10239,2.49791][-0.608254,0.459725,-0.647054][0.72648,0.575986,0][-0.180775,-0.351547,2.2648][-0.56217,0.640657,-0.522994][0.744289,0.549325,0][-0.180775,-0.351547,2.2648][-0.56217,0.640657,-0.522994][0.744289,0.549325,0][-0.236139,-0.431836,2.2878][-0.999278,-0.0283321,0.0252937][0.752128,0.549712,0][-0.236139,-0.167414,2.56347][-0.99926,-0.0281668,0.0261765][0.733833,0.580593,0][-0.236139,-0.431836,2.2878][-0.999278,-0.0283321,0.0252937][0.752128,0.549712,0][-0.180775,-0.351547,2.2648][-0.56217,0.640657,-0.522994][0.744289,0.549325,0][-0.180775,-0.561884,1.9237][-0.604669,0.682857,-0.409978][0.756236,0.513615,0][-0.180775,-0.561884,1.9237][-0.604669,0.682857,-0.409978][0.756236,0.513615,0][-0.236139,-0.663385,1.88987][-0.944167,-0.289392,0.157482][0.764799,0.508347,0][-0.236139,-0.431836,2.2878][-0.999278,-0.0283321,0.0252937][0.752128,0.549712,0][-0.180775,0.37008,2.6742][-0.666187,-0.10132,-0.73887][0.963371,0.0873754,0][-0.0146827,0.37008,2.62806][-0.00666969,-0.165708,-0.986152][0.963371,0.102983,0][-0.0146827,0.169385,2.58961][-0.003357,0.32265,-0.946512][0.944513,0.102983,0][-0.0146827,0.169385,2.58961][-0.003357,0.32265,-0.946512][0.944513,0.102983,0][-0.180775,0.150011,2.63154][-0.637142,0.25241,-0.728244][0.942692,0.0873754,0][-0.180775,0.37008,2.6742][-0.666187,-0.10132,-0.73887][0.963371,0.0873754,0][-0.180775,0.150011,2.63154][-0.637142,0.25241,-0.728244][0.942692,0.0873754,0][-0.0146827,0.169385,2.58961][-0.003357,0.32265,-0.946512][0.944513,0.102983,0][-0.0146827,-0.0728337,2.46812][-0.00745214,0.56387,-0.82583][0.921752,0.102983,0][-0.0146827,-0.0728337,2.46812][-0.00745214,0.56387,-0.82583][0.921752,0.102983,0][-0.180775,-0.10239,2.49791][-0.608254,0.459725,-0.647054][0.918975,0.0873754,0][-0.180775,0.150011,2.63154][-0.637142,0.25241,-0.728244][0.942692,0.0873754,0][-0.180775,-0.10239,2.49791][-0.608254,0.459725,-0.647054][0.918975,0.0873754,0][-0.0146827,-0.0728337,2.46812][-0.00745214,0.56387,-0.82583][0.921752,0.102983,0][-0.0146827,-0.315052,2.25435][-0.00693682,0.759893,-0.650011][0.898992,0.102983,0][-0.0146827,-0.315052,2.25435][-0.00693682,0.759893,-0.650011][0.898992,0.102983,0][-0.180775,-0.351547,2.2648][-0.56217,0.640657,-0.522994][0.895562,0.0873754,0][-0.180775,-0.10239,2.49791][-0.608254,0.459725,-0.647054][0.918975,0.0873754,0][-0.180775,-0.351547,2.2648][-0.56217,0.640657,-0.522994][0.296426,0.882029,0][-0.0146827,-0.315052,2.25435][-0.00693682,0.759893,-0.650011][0.295444,0.897636,0][-0.0146827,-0.515747,1.93908][-0.0052454,0.846459,-0.532429][0.265819,0.897636,0][-0.0146827,-0.515747,1.93908][-0.0052454,0.846459,-0.532429][0.265819,0.897636,0][-0.180775,-0.561884,1.9237][-0.604669,0.682857,-0.409978][0.264374,0.882029,0][-0.180775,-0.351547,2.2648][-0.56217,0.640657,-0.522994][0.296426,0.882029,0][-0.0146829,0.000985146,-1.67165][-0.0065233,0.972982,0.230787][0.114914,0.751491,0][0.350721,-0.125891,-1.67165][0.710189,0.687211,0.152877][0.14925,0.751491,0][0.315253,0.0153308,-2.17983][0.702113,0.63775,0.316721][0.145917,0.799243,0][0.315253,0.0153308,-2.17983][0.702113,0.63775,0.316721][0.145917,0.799243,0][-0.0146829,0.109407,-2.14378][-0.00151091,0.835863,0.548936][0.114914,0.795856,0][-0.0146829,0.000985146,-1.67165][-0.0065233,0.972982,0.230787][0.114914,0.751491,0][-0.0146829,0.109407,-2.14378][-0.00151091,0.835863,0.548936][0.527876,0.845594,0][0.315253,0.0153308,-2.17983][0.702113,0.63775,0.316721][0.519036,0.814591,0][0.237224,0.315292,-2.39446][0.64533,0.471452,0.601067][0.547223,0.821923,0][0.237224,0.315292,-2.39446][0.64533,0.471452,0.601067][0.547223,0.821923,0][-0.0146829,0.37008,-2.34832][0.0098931,0.482807,0.875671][0.552371,0.845594,0][-0.0146829,0.109407,-2.14378][-0.00151091,0.835863,0.548936][0.527876,0.845594,0][-0.0146829,0.37008,-2.34832][0.0098931,0.482807,0.875671][0.552371,0.845594,0][0.237224,0.315292,-2.39446][0.64533,0.471452,0.601067][0.547223,0.821923,0][0.159195,0.666292,-2.51682][0.629801,0.446089,0.635889][0.580205,0.829255,0][0.159195,0.666292,-2.51682][0.629801,0.446089,0.635889][0.580205,0.829255,0][-0.014683,0.686117,-2.46059][0.0190922,0.479097,0.877554][0.582068,0.845594,0][-0.0146829,0.37008,-2.34832][0.0098931,0.482807,0.875671][0.552371,0.845594,0][-0.014683,0.686117,-2.46059][0.0190922,0.479097,0.877554][0.582068,0.845594,0][0.159195,0.666292,-2.51682][0.629801,0.446089,0.635889][0.580205,0.829255,0][0.123727,0.960631,-2.74817][0.670011,0.601008,0.435746][0.607863,0.832588,0][0.123727,0.960631,-2.74817][0.670011,0.601008,0.435746][0.607863,0.832588,0][-0.014683,0.960631,-2.6559][0.0244969,0.717439,0.696191][0.607863,0.845594,0][-0.014683,0.686117,-2.46059][0.0190922,0.479097,0.877554][0.582068,0.845594,0][0.350721,-0.125891,-1.67165][0.710189,0.687211,0.152877][0.191893,0.882029,0][0.472522,-0.405019,-1.67165][0.99016,-0.0850695,-0.111113][0.211465,0.899489,0][0.425232,-0.191636,-2.25912][0.974726,0.00654015,-0.22331][0.159754,0.927335,0][0.425232,-0.191636,-2.25912][0.974726,0.00654015,-0.22331][0.159754,0.927335,0][0.315253,0.0153308,-2.17983][0.702113,0.63775,0.316721][0.150202,0.908828,0][0.350721,-0.125891,-1.67165][0.710189,0.687211,0.152877][0.191893,0.882029,0][0.315253,0.0153308,-2.17983][0.702113,0.63775,0.316721][0.150202,0.908828,0][0.425232,-0.191636,-2.25912][0.974726,0.00654015,-0.22331][0.159754,0.927335,0][0.321193,0.19476,-2.49596][0.969458,0.154964,-0.190097][0.117845,0.919772,0][0.321193,0.19476,-2.49596][0.969458,0.154964,-0.190097][0.117845,0.919772,0][0.237224,0.315292,-2.39446][0.64533,0.471452,0.601067][0.115743,0.905115,0][0.315253,0.0153308,-2.17983][0.702113,0.63775,0.316721][0.150202,0.908828,0][0.237224,0.315292,-2.39446][0.64533,0.471452,0.601067][0.115743,0.905115,0][0.321193,0.19476,-2.49596][0.969458,0.154964,-0.190097][0.117845,0.919772,0][0.217155,0.622679,-2.64052][0.98187,0.189481,-0.00527159][0.0787969,0.903141,0][0.217155,0.622679,-2.64052][0.98187,0.189481,-0.00527159][0.0787969,0.903141,0][0.159195,0.666292,-2.51682][0.629801,0.446089,0.635889][0.0834768,0.891739,0][0.237224,0.315292,-2.39446][0.64533,0.471452,0.601067][0.115743,0.905115,0][0.159195,0.666292,-2.51682][0.629801,0.446089,0.635889][0.0834768,0.891739,0][0.217155,0.622679,-2.64052][0.98187,0.189481,-0.00527159][0.0787969,0.903141,0][0.169864,0.960631,-2.95118][0.969024,0.246688,0.0117517][0.0356672,0.903784,0][0.169864,0.960631,-2.95118][0.969024,0.246688,0.0117517][0.0356672,0.903784,0][0.123727,0.960631,-2.74817][0.670011,0.601008,0.435746][0.0483657,0.889549,0][0.159195,0.666292,-2.51682][0.629801,0.446089,0.635889][0.0834768,0.891739,0][0.472522,-0.405019,-1.67165][0.99016,-0.0850695,-0.111113][0.211465,0.899489,0][0.350721,-0.684146,-1.67165][0.599412,-0.722795,-0.343906][0.231038,0.91695,0][0.315253,-0.398603,-2.33842][0.591626,-0.567657,-0.57249][0.169306,0.945842,0][0.315253,-0.398603,-2.33842][0.591626,-0.567657,-0.57249][0.169306,0.945842,0][0.425232,-0.191636,-2.25912][0.974726,0.00654015,-0.22331][0.159754,0.927335,0][0.472522,-0.405019,-1.67165][0.99016,-0.0850695,-0.111113][0.211465,0.899489,0][0.425232,-0.191636,-2.25912][0.974726,0.00654015,-0.22331][0.159754,0.927335,0][0.315253,-0.398603,-2.33842][0.591626,-0.567657,-0.57249][0.169306,0.945842,0][0.237224,0.0742273,-2.59746][0.560511,-0.256459,-0.787436][0.119948,0.934429,0][0.237224,0.0742273,-2.59746][0.560511,-0.256459,-0.787436][0.119948,0.934429,0][0.321193,0.19476,-2.49596][0.969458,0.154964,-0.190097][0.117845,0.919772,0][0.425232,-0.191636,-2.25912][0.974726,0.00654015,-0.22331][0.159754,0.927335,0][0.321193,0.19476,-2.49596][0.969458,0.154964,-0.190097][0.117845,0.919772,0][0.237224,0.0742273,-2.59746][0.560511,-0.256459,-0.787436][0.119948,0.934429,0][0.159195,0.579065,-2.76423][0.698141,-0.306373,-0.647097][0.074117,0.914543,0][0.159195,0.579065,-2.76423][0.698141,-0.306373,-0.647097][0.074117,0.914543,0][0.217155,0.622679,-2.64052][0.98187,0.189481,-0.00527159][0.0787969,0.903141,0][0.321193,0.19476,-2.49596][0.969458,0.154964,-0.190097][0.117845,0.919772,0][0.217155,0.622679,-2.64052][0.98187,0.189481,-0.00527159][0.0787969,0.903141,0][0.159195,0.579065,-2.76423][0.698141,-0.306373,-0.647097][0.074117,0.914543,0][0.123727,0.960631,-3.15418][0.753575,-0.499343,-0.427528][0.0229688,0.918019,0][0.123727,0.960631,-3.15418][0.753575,-0.499343,-0.427528][0.0229688,0.918019,0][0.169864,0.960631,-2.95118][0.969024,0.246688,0.0117517][0.0356672,0.903784,0][0.217155,0.622679,-2.64052][0.98187,0.189481,-0.00527159][0.0787969,0.903141,0][0.350721,-0.684146,-1.67165][0.599412,-0.722795,-0.343906][0.980067,0.347872,0][-0.0146829,-0.811023,-1.67165][0.00128447,-0.911668,-0.410926][0.945732,0.347872,0][-0.0146829,-0.492679,-2.37447][-0.000899316,-0.740986,-0.67152][0.945732,0.281831,0][-0.0146829,-0.492679,-2.37447][-0.000899316,-0.740986,-0.67152][0.945732,0.281831,0][0.315253,-0.398603,-2.33842][0.591626,-0.567657,-0.57249][0.976735,0.285218,0][0.350721,-0.684146,-1.67165][0.599412,-0.722795,-0.343906][0.980067,0.347872,0][0.315253,-0.398603,-2.33842][0.591626,-0.567657,-0.57249][0.172447,0.681151,0][-0.0146829,-0.492679,-2.37447][-0.000899316,-0.740986,-0.67152][0.181287,0.712154,0][-0.0146829,0.0194399,-2.6436][-0.00725304,-0.38706,-0.922026][0.133165,0.712154,0][-0.0146829,0.0194399,-2.6436][-0.00725304,-0.38706,-0.922026][0.133165,0.712154,0][0.237224,0.0742273,-2.59746][0.560511,-0.256459,-0.787436][0.128017,0.688483,0][0.315253,-0.398603,-2.33842][0.591626,-0.567657,-0.57249][0.172447,0.681151,0][0.237224,0.0742273,-2.59746][0.560511,-0.256459,-0.787436][0.128017,0.688483,0][-0.0146829,0.0194399,-2.6436][-0.00725304,-0.38706,-0.922026][0.133165,0.712154,0][-0.014683,0.559241,-2.82046][-0.0138542,-0.531556,-0.84691][0.0824415,0.712154,0][-0.014683,0.559241,-2.82046][-0.0138542,-0.531556,-0.84691][0.0824415,0.712154,0][0.159195,0.579065,-2.76423][0.698141,-0.306373,-0.647097][0.0805786,0.695815,0][0.237224,0.0742273,-2.59746][0.560511,-0.256459,-0.787436][0.128017,0.688483,0][0.159195,0.579065,-2.76423][0.698141,-0.306373,-0.647097][0.373371,0.756499,0][-0.014683,0.559241,-2.82046][-0.0138542,-0.531556,-0.84691][0.375407,0.739347,0][-0.014683,0.960631,-3.24645][-0.010505,-0.844201,-0.535924][0.43038,0.737638,0][-0.014683,0.960631,-3.24645][-0.010505,-0.844201,-0.535924][0.43038,0.737638,0][0.123727,0.960631,-3.15418][0.753575,-0.499343,-0.427528][0.424513,0.752001,0][0.159195,0.579065,-2.76423][0.698141,-0.306373,-0.647097][0.373371,0.756499,0][-0.0146829,-0.811023,-1.67165][0.00128447,-0.911668,-0.410926][0.945732,0.347872,0][-0.380086,-0.684146,-1.67165][-0.600931,-0.722823,-0.341188][0.911396,0.347872,0][-0.344619,-0.398603,-2.33842][-0.591838,-0.561139,-0.578664][0.914729,0.285218,0][-0.344619,-0.398603,-2.33842][-0.591838,-0.561139,-0.578664][0.914729,0.285218,0][-0.0146829,-0.492679,-2.37447][-0.000899316,-0.740986,-0.67152][0.945732,0.281831,0][-0.0146829,-0.811023,-1.67165][0.00128447,-0.911668,-0.410926][0.945732,0.347872,0][-0.0146829,-0.492679,-2.37447][-0.000899316,-0.740986,-0.67152][0.181287,0.712154,0][-0.344619,-0.398603,-2.33842][-0.591838,-0.561139,-0.578664][0.172447,0.743157,0][-0.26659,0.0742273,-2.59746][-0.566542,-0.25102,-0.784869][0.128017,0.735825,0][-0.26659,0.0742273,-2.59746][-0.566542,-0.25102,-0.784869][0.128017,0.735825,0][-0.0146829,0.0194399,-2.6436][-0.00725304,-0.38706,-0.922026][0.133165,0.712154,0][-0.0146829,-0.492679,-2.37447][-0.000899316,-0.740986,-0.67152][0.181287,0.712154,0][-0.0146829,0.0194399,-2.6436][-0.00725304,-0.38706,-0.922026][0.133165,0.712154,0][-0.26659,0.0742273,-2.59746][-0.566542,-0.25102,-0.784869][0.128017,0.735825,0][-0.188561,0.579065,-2.76423][-0.70399,-0.302257,-0.642681][0.0805786,0.728493,0][-0.188561,0.579065,-2.76423][-0.70399,-0.302257,-0.642681][0.0805786,0.728493,0][-0.014683,0.559241,-2.82046][-0.0138542,-0.531556,-0.84691][0.0824415,0.712154,0][-0.0146829,0.0194399,-2.6436][-0.00725304,-0.38706,-0.922026][0.133165,0.712154,0][-0.014683,0.559241,-2.82046][-0.0138542,-0.531556,-0.84691][0.375407,0.739347,0][-0.188561,0.579065,-2.76423][-0.70399,-0.302257,-0.642681][0.372399,0.725256,0][-0.153093,0.960631,-3.15418][-0.758117,-0.500042,-0.418589][0.423739,0.727131,0][-0.153093,0.960631,-3.15418][-0.758117,-0.500042,-0.418589][0.423739,0.727131,0][-0.014683,0.960631,-3.24645][-0.010505,-0.844201,-0.535924][0.43038,0.737638,0][-0.014683,0.559241,-2.82046][-0.0138542,-0.531556,-0.84691][0.375407,0.739347,0][-0.380086,-0.684146,-1.67165][-0.600931,-0.722823,-0.341188][0.737464,0.744896,0][-0.501888,-0.405019,-1.67165][-0.990114,-0.0791394,-0.115806][0.718558,0.763075,0][-0.454597,-0.191636,-2.25912][-0.972441,0.012565,-0.232811][0.665843,0.73718,0][-0.454597,-0.191636,-2.25912][-0.972441,0.012565,-0.232811][0.665843,0.73718,0][-0.344619,-0.398603,-2.33842][-0.591838,-0.561139,-0.578664][0.674697,0.718329,0][-0.380086,-0.684146,-1.67165][-0.600931,-0.722823,-0.341188][0.737464,0.744896,0][-0.344619,-0.398603,-2.33842][-0.591838,-0.561139,-0.578664][0.674697,0.718329,0][-0.454597,-0.191636,-2.25912][-0.972441,0.012565,-0.232811][0.665843,0.73718,0][-0.350559,0.19476,-2.49596][-0.96628,0.153601,-0.206662][0.624246,0.746304,0][-0.350559,0.19476,-2.49596][-0.96628,0.153601,-0.206662][0.624246,0.746304,0][-0.26659,0.0742273,-2.59746][-0.566542,-0.25102,-0.784869][0.625799,0.731578,0][-0.344619,-0.398603,-2.33842][-0.591838,-0.561139,-0.578664][0.674697,0.718329,0][-0.26659,0.0742273,-2.59746][-0.566542,-0.25102,-0.784869][0.625799,0.731578,0][-0.350559,0.19476,-2.49596][-0.96628,0.153601,-0.206662][0.624246,0.746304,0][-0.24652,0.622679,-2.64052][-0.986578,0.161443,-0.0244998][0.585846,0.764382,0][-0.24652,0.622679,-2.64052][-0.986578,0.161443,-0.0244998][0.585846,0.764382,0][-0.188561,0.579065,-2.76423][-0.70399,-0.302257,-0.642681][0.580743,0.753162,0][-0.26659,0.0742273,-2.59746][-0.566542,-0.25102,-0.784869][0.625799,0.731578,0][-0.188561,0.579065,-2.76423][-0.70399,-0.302257,-0.642681][0.580743,0.753162,0][-0.24652,0.622679,-2.64052][-0.986578,0.161443,-0.0244998][0.585846,0.764382,0][-0.19923,0.960631,-2.95118][-0.977455,0.211115,-0.00338218][0.542722,0.76535,0][-0.19923,0.960631,-2.95118][-0.977455,0.211115,-0.00338218][0.542722,0.76535,0][-0.153093,0.960631,-3.15418][-0.758117,-0.500042,-0.418589][0.529501,0.7516,0][-0.188561,0.579065,-2.76423][-0.70399,-0.302257,-0.642681][0.580743,0.753162,0][-0.501888,-0.405019,-1.67165][-0.990114,-0.0791394,-0.115806][0.718558,0.763075,0][-0.380086,-0.125891,-1.67165][-0.713551,0.687491,0.134912][0.699651,0.781254,0][-0.344619,0.0153308,-2.17983][-0.705062,0.633073,0.31954][0.656989,0.756031,0][-0.344619,0.0153308,-2.17983][-0.705062,0.633073,0.31954][0.656989,0.756031,0][-0.454597,-0.191636,-2.25912][-0.972441,0.012565,-0.232811][0.665843,0.73718,0][-0.501888,-0.405019,-1.67165][-0.990114,-0.0791394,-0.115806][0.718558,0.763075,0][-0.454597,-0.191636,-2.25912][-0.972441,0.012565,-0.232811][0.665843,0.73718,0][-0.344619,0.0153308,-2.17983][-0.705062,0.633073,0.31954][0.656989,0.756031,0][-0.26659,0.315292,-2.39446][-0.649903,0.461442,0.603902][0.622692,0.761029,0][-0.26659,0.315292,-2.39446][-0.649903,0.461442,0.603902][0.622692,0.761029,0][-0.350559,0.19476,-2.49596][-0.96628,0.153601,-0.206662][0.624246,0.746304,0][-0.454597,-0.191636,-2.25912][-0.972441,0.012565,-0.232811][0.665843,0.73718,0][-0.350559,0.19476,-2.49596][-0.96628,0.153601,-0.206662][0.624246,0.746304,0][-0.26659,0.315292,-2.39446][-0.649903,0.461442,0.603902][0.622692,0.761029,0][-0.188561,0.666292,-2.51682][-0.640072,0.437169,0.631816][0.590948,0.775601,0][-0.188561,0.666292,-2.51682][-0.640072,0.437169,0.631816][0.590948,0.775601,0][-0.24652,0.622679,-2.64052][-0.986578,0.161443,-0.0244998][0.585846,0.764382,0][-0.350559,0.19476,-2.49596][-0.96628,0.153601,-0.206662][0.624246,0.746304,0][-0.24652,0.622679,-2.64052][-0.986578,0.161443,-0.0244998][0.585846,0.764382,0][-0.188561,0.666292,-2.51682][-0.640072,0.437169,0.631816][0.590948,0.775601,0][-0.153093,0.960631,-2.74817][-0.666751,0.612705,0.424306][0.555943,0.7791,0][-0.153093,0.960631,-2.74817][-0.666751,0.612705,0.424306][0.555943,0.7791,0][-0.19923,0.960631,-2.95118][-0.977455,0.211115,-0.00338218][0.542722,0.76535,0][-0.24652,0.622679,-2.64052][-0.986578,0.161443,-0.0244998][0.585846,0.764382,0][-0.380086,-0.125891,-1.67165][-0.713551,0.687491,0.134912][0.0805786,0.751491,0][-0.0146829,0.000985146,-1.67165][-0.0065233,0.972982,0.230787][0.114914,0.751491,0][-0.0146829,0.109407,-2.14378][-0.00151091,0.835863,0.548936][0.114914,0.795856,0][-0.0146829,0.109407,-2.14378][-0.00151091,0.835863,0.548936][0.114914,0.795856,0][-0.344619,0.0153308,-2.17983][-0.705062,0.633073,0.31954][0.0839114,0.799243,0][-0.380086,-0.125891,-1.67165][-0.713551,0.687491,0.134912][0.0805786,0.751491,0][-0.344619,0.0153308,-2.17983][-0.705062,0.633073,0.31954][0.519036,0.876596,0][-0.0146829,0.109407,-2.14378][-0.00151091,0.835863,0.548936][0.527876,0.845594,0][-0.0146829,0.37008,-2.34832][0.0098931,0.482807,0.875671][0.552371,0.845594,0][-0.0146829,0.37008,-2.34832][0.0098931,0.482807,0.875671][0.552371,0.845594,0][-0.26659,0.315292,-2.39446][-0.649903,0.461442,0.603902][0.547223,0.869264,0][-0.344619,0.0153308,-2.17983][-0.705062,0.633073,0.31954][0.519036,0.876596,0][-0.26659,0.315292,-2.39446][-0.649903,0.461442,0.603902][0.547223,0.869264,0][-0.0146829,0.37008,-2.34832][0.0098931,0.482807,0.875671][0.552371,0.845594,0][-0.014683,0.686117,-2.46059][0.0190922,0.479097,0.877554][0.582068,0.845594,0][-0.014683,0.686117,-2.46059][0.0190922,0.479097,0.877554][0.582068,0.845594,0][-0.188561,0.666292,-2.51682][-0.640072,0.437169,0.631816][0.580205,0.861932,0][-0.26659,0.315292,-2.39446][-0.649903,0.461442,0.603902][0.547223,0.869264,0][-0.188561,0.666292,-2.51682][-0.640072,0.437169,0.631816][0.580205,0.861932,0][-0.014683,0.686117,-2.46059][0.0190922,0.479097,0.877554][0.582068,0.845594,0][-0.014683,0.960631,-2.6559][0.0244969,0.717439,0.696191][0.607863,0.845594,0][-0.014683,0.960631,-2.6559][0.0244969,0.717439,0.696191][0.553131,0.72358,0][-0.153093,0.960631,-2.74817][-0.666751,0.612705,0.424306][0.553131,0.739211,0][-0.188561,0.666292,-2.51682][-0.640072,0.437169,0.631816][0.519036,0.729925,0][-0.014683,0.960631,-2.6559][0.0244969,0.717439,0.696191][0.895562,0.163874,0][0.123727,0.960631,-2.74817][0.670011,0.601008,0.435746][0.905678,0.151956,0][0.115077,1.00418,-2.82547][0.552548,0.791937,0.259857][0.912798,0.153603,0][0.115077,1.00418,-2.82547][0.552548,0.791937,0.259857][0.912798,0.153603,0][-0.014683,1.00215,-2.72664][0.0108052,0.904752,0.425801][0.902165,0.164642,0][-0.014683,0.960631,-2.6559][0.0244969,0.717439,0.696191][0.895562,0.163874,0][-0.014683,1.00215,-2.72664][0.0108052,0.904752,0.425801][0.902165,0.164642,0][0.115077,1.00418,-2.82547][0.552548,0.791937,0.259857][0.912798,0.153603,0][0.0960453,1.01924,-2.87169][-0.0216753,0.99972,-0.00953983][0.916905,0.155881,0][0.0960453,1.01924,-2.87169][-0.0216753,0.99972,-0.00953983][0.916905,0.155881,0][-0.014683,1.016,-2.77893][0.00162337,0.999756,-0.0220463][0.907046,0.165209,0][-0.014683,1.00215,-2.72664][0.0108052,0.904752,0.425801][0.902165,0.164642,0][-0.014683,1.016,-2.77893][0.00162337,0.999756,-0.0220463][0.590935,0.874687,0][0.0960453,1.01924,-2.87169][-0.0216753,0.99972,-0.00953983][0.604511,0.874798,0][0.0770139,1.00499,-2.87307][-0.849082,0.332915,-0.410155][0.603179,0.876596,0][0.0770139,1.00499,-2.87307][-0.849082,0.332915,-0.410155][0.603179,0.876596,0][-0.014683,1.00215,-2.79431][0.0115562,0.0258791,-0.999598][0.59182,0.876415,0][-0.014683,1.016,-2.77893][0.00162337,0.999756,-0.0220463][0.590935,0.874687,0][-0.014683,1.00215,-2.79431][0.0115562,0.0258791,-0.999598][0.566641,0.727855,0][0.0770139,1.00499,-2.87307][-0.849082,0.332915,-0.410155][0.566995,0.739211,0][0.0683633,0.960631,-2.81584][-0.637,-0.54862,-0.541522][0.561465,0.735165,0][0.0683633,0.960631,-2.81584][-0.637,-0.54862,-0.541522][0.561465,0.735165,0][-0.014683,0.960631,-2.75433][0.00967195,-0.704553,-0.709586][0.561795,0.725466,0][-0.014683,1.00215,-2.79431][0.0115562,0.0258791,-0.999598][0.566641,0.727855,0][0.123727,0.960631,-2.74817][0.670011,0.601008,0.435746][0.0483657,0.889549,0][0.169864,0.960631,-2.95118][0.969024,0.246688,0.0117517][0.0356672,0.903784,0][0.15833,1.00864,-3.04287][0.889172,0.455223,-0.0463107][0.0265648,0.907211,0][0.15833,1.00864,-3.04287][0.889172,0.455223,-0.0463107][0.0265648,0.907211,0][0.115077,1.00418,-2.82547][0.552548,0.791937,0.259857][0.0404771,0.892245,0][0.123727,0.960631,-2.74817][0.670011,0.601008,0.435746][0.0483657,0.889549,0][0.115077,1.00418,-2.82547][0.552548,0.791937,0.259857][0.912798,0.153603,0][0.15833,1.00864,-3.04287][0.889172,0.455223,-0.0463107][0.93356,0.151926,0][0.132955,1.02638,-3.07575][0.1489,0.988794,0.0106881][0.936352,0.154651,0][0.132955,1.02638,-3.07575][0.1489,0.988794,0.0106881][0.936352,0.154651,0][0.0960453,1.01924,-2.87169][-0.0216753,0.99972,-0.00953983][0.916905,0.155881,0][0.115077,1.00418,-2.82547][0.552548,0.791937,0.259857][0.912798,0.153603,0][0.0960453,1.01924,-2.87169][-0.0216753,0.99972,-0.00953983][0.916905,0.155881,0][0.132955,1.02638,-3.07575][0.1489,0.988794,0.0106881][0.936352,0.154651,0][0.10758,1.01124,-3.04633][-0.72912,0.682946,0.0443757][0.933332,0.156701,0][0.10758,1.01124,-3.04633][-0.72912,0.682946,0.0443757][0.933332,0.156701,0][0.0770139,1.00499,-2.87307][-0.849082,0.332915,-0.410155][0.916828,0.157673,0][0.0960453,1.01924,-2.87169][-0.0216753,0.99972,-0.00953983][0.916905,0.155881,0][0.0770139,1.00499,-2.87307][-0.849082,0.332915,-0.410155][0.0155367,0.94089,0][0.10758,1.01124,-3.04633][-0.72912,0.682946,0.0443757][0.0318283,0.940942,0][0.0960454,0.960631,-2.95118][-0.992385,0.00923261,-0.122825][0.0227072,0.945343,0][0.0960454,0.960631,-2.95118][-0.992385,0.00923261,-0.122825][0.0227072,0.945343,0][0.0683633,0.960631,-2.81584][-0.637,-0.54862,-0.541522][0.01,0.944845,0][0.0770139,1.00499,-2.87307][-0.849082,0.332915,-0.410155][0.0155367,0.94089,0][0.169864,0.960631,-2.95118][0.969024,0.246688,0.0117517][0.0356672,0.903784,0][0.123727,0.960631,-3.15418][0.753575,-0.499343,-0.427528][0.0229688,0.918019,0][0.115077,1.0131,-3.26028][0.857481,-0.180439,-0.481839][0.0126524,0.922176,0][0.115077,1.0131,-3.26028][0.857481,-0.180439,-0.481839][0.0126524,0.922176,0][0.15833,1.00864,-3.04287][0.889172,0.455223,-0.0463107][0.0265648,0.907211,0][0.169864,0.960631,-2.95118][0.969024,0.246688,0.0117517][0.0356672,0.903784,0][0.15833,1.00864,-3.04287][0.889172,0.455223,-0.0463107][0.0265648,0.907211,0][0.115077,1.0131,-3.26028][0.857481,-0.180439,-0.481839][0.0126524,0.922176,0][0.0960453,1.03351,-3.2798][0.499925,0.736751,-0.455273][0.01,0.922269,0][0.0960453,1.03351,-3.2798][0.499925,0.736751,-0.455273][0.954998,0.160312,0][0.132955,1.02638,-3.07575][0.1489,0.988794,0.0106881][0.936352,0.154651,0][0.15833,1.00864,-3.04287][0.889172,0.455223,-0.0463107][0.93356,0.151926,0][0.132955,1.02638,-3.07575][0.1489,0.988794,0.0106881][0.936352,0.154651,0][0.0960453,1.03351,-3.2798][0.499925,0.736751,-0.455273][0.954998,0.160312,0][0.0770139,1.01748,-3.2196][-0.358277,0.907193,0.220541][0.949172,0.161435,0][0.0770139,1.01748,-3.2196][-0.358277,0.907193,0.220541][0.949172,0.161435,0][0.10758,1.01124,-3.04633][-0.72912,0.682946,0.0443757][0.933332,0.156701,0][0.132955,1.02638,-3.07575][0.1489,0.988794,0.0106881][0.936352,0.154651,0][0.10758,1.01124,-3.04633][-0.72912,0.682946,0.0443757][0.0318283,0.940942,0][0.0770139,1.01748,-3.2196][-0.358277,0.907193,0.220541][0.0481199,0.940994,0][0.0683633,0.960631,-3.08651][-0.715797,0.65725,0.23592][0.0354143,0.945842,0][0.0683633,0.960631,-3.08651][-0.715797,0.65725,0.23592][0.0354143,0.945842,0][0.0960454,0.960631,-2.95118][-0.992385,0.00923261,-0.122825][0.0227072,0.945343,0][0.10758,1.01124,-3.04633][-0.72912,0.682946,0.0443757][0.0318283,0.940942,0][0.123727,0.960631,-3.15418][0.753575,-0.499343,-0.427528][0.195858,0.05891,0][-0.014683,0.960631,-3.24645][-0.010505,-0.844201,-0.535924][0.208864,0.0675806,0][-0.014683,1.01513,-3.3591][-0.0155847,-0.685298,-0.728096][0.208864,0.078166,0][-0.014683,1.01513,-3.3591][-0.0155847,-0.685298,-0.728096][0.208864,0.078166,0][0.115077,1.0131,-3.26028][0.857481,-0.180439,-0.481839][0.196671,0.0688801,0][0.123727,0.960631,-3.15418][0.753575,-0.499343,-0.427528][0.195858,0.05891,0][0.115077,1.0131,-3.26028][0.857481,-0.180439,-0.481839][0.640402,0.6208,0][-0.014683,1.01513,-3.3591][-0.0155847,-0.685298,-0.728096][0.640136,0.608608,0][-0.014683,1.03676,-3.37256][-0.0166783,0.458114,-0.888737][0.642167,0.608532,0][-0.014683,1.03676,-3.37256][-0.0166783,0.458114,-0.888737][0.642167,0.608532,0][0.0960453,1.03351,-3.2798][0.499925,0.736751,-0.455273][0.642251,0.618941,0][0.115077,1.0131,-3.26028][0.857481,-0.180439,-0.481839][0.640402,0.6208,0][0.0960453,1.03351,-3.2798][0.499925,0.736751,-0.455273][0.954998,0.160312,0][-0.014683,1.03676,-3.37256][-0.0166783,0.458114,-0.888737][0.962453,0.171654,0][-0.014683,1.02032,-3.29836][0.000800546,0.965582,0.260098][0.955527,0.170848,0][-0.014683,1.02032,-3.29836][0.000800546,0.965582,0.260098][0.955527,0.170848,0][0.0770139,1.01748,-3.2196][-0.358277,0.907193,0.220541][0.949172,0.161435,0][0.0960453,1.03351,-3.2798][0.499925,0.736751,-0.455273][0.954998,0.160312,0][0.0770139,1.01748,-3.2196][-0.358277,0.907193,0.220541][0.949172,0.161435,0][-0.014683,1.02032,-3.29836][0.000800546,0.965582,0.260098][0.955527,0.170848,0][-0.014683,0.960631,-3.14803][-0.00441789,0.928378,0.371611][0.941496,0.169216,0][-0.014683,0.960631,-3.14803][-0.00441789,0.928378,0.371611][0.941496,0.169216,0][0.0683633,0.960631,-3.08651][-0.715797,0.65725,0.23592][0.936656,0.160797,0][0.0770139,1.01748,-3.2196][-0.358277,0.907193,0.220541][0.949172,0.161435,0][-0.014683,0.960631,-3.24645][-0.010505,-0.844201,-0.535924][0.208864,0.0675806,0][-0.153093,0.960631,-3.15418][-0.758117,-0.500042,-0.418589][0.22187,0.05891,0][-0.144443,1.0131,-3.26028][-0.858853,-0.178361,-0.480165][0.221057,0.0688801,0][-0.144443,1.0131,-3.26028][-0.858853,-0.178361,-0.480165][0.221057,0.0688801,0][-0.014683,1.01513,-3.3591][-0.0155847,-0.685298,-0.728096][0.208864,0.078166,0][-0.014683,0.960631,-3.24645][-0.010505,-0.844201,-0.535924][0.208864,0.0675806,0][-0.014683,1.01513,-3.3591][-0.0155847,-0.685298,-0.728096][0.626307,0.59628,0][-0.144443,1.0131,-3.26028][-0.858853,-0.178361,-0.480165][0.626117,0.584086,0][-0.125411,1.03351,-3.2798][-0.497947,0.716801,-0.488103][0.628034,0.585875,0][-0.125411,1.03351,-3.2798][-0.497947,0.716801,-0.488103][0.602564,0.819986,0][-0.014683,1.03676,-3.37256][-0.0166783,0.458114,-0.888737][0.588992,0.820324,0][-0.014683,1.01513,-3.3591][-0.0155847,-0.685298,-0.728096][0.589794,0.818069,0][-0.014683,1.03676,-3.37256][-0.0166783,0.458114,-0.888737][0.962453,0.171654,0][-0.125411,1.03351,-3.2798][-0.497947,0.716801,-0.488103][0.952594,0.180982,0][-0.10638,1.01748,-3.2196][0.361893,0.905399,0.222004][0.947181,0.178552,0][-0.10638,1.01748,-3.2196][0.361893,0.905399,0.222004][0.947181,0.178552,0][-0.014683,1.02032,-3.29836][0.000800546,0.965582,0.260098][0.955527,0.170848,0][-0.014683,1.03676,-3.37256][-0.0166783,0.458114,-0.888737][0.962453,0.171654,0][-0.014683,1.02032,-3.29836][0.000800546,0.965582,0.260098][0.955527,0.170848,0][-0.10638,1.01748,-3.2196][0.361893,0.905399,0.222004][0.947181,0.178552,0][-0.0977293,0.960631,-3.08651][0.710477,0.66318,0.235404][0.934853,0.1763,0][-0.0977293,0.960631,-3.08651][0.710477,0.66318,0.235404][0.934853,0.1763,0][-0.014683,0.960631,-3.14803][-0.00441789,0.928378,0.371611][0.941496,0.169216,0][-0.014683,1.02032,-3.29836][0.000800546,0.965582,0.260098][0.955527,0.170848,0][-0.153093,0.960631,-3.15418][-0.758117,-0.500042,-0.418589][0.529501,0.7516,0][-0.19923,0.960631,-2.95118][-0.977455,0.211115,-0.00338218][0.542722,0.76535,0][-0.187696,1.00864,-3.04287][-0.8972,0.437703,-0.05872][0.533498,0.762266,0][-0.187696,1.00864,-3.04287][-0.8972,0.437703,-0.05872][0.533498,0.762266,0][-0.144443,1.0131,-3.26028][-0.858853,-0.178361,-0.480165][0.519036,0.747831,0][-0.153093,0.960631,-3.15418][-0.758117,-0.500042,-0.418589][0.529501,0.7516,0][-0.144443,1.0131,-3.26028][-0.858853,-0.178361,-0.480165][0.950565,0.182546,0][-0.187696,1.00864,-3.04287][-0.8972,0.437703,-0.05872][0.929803,0.184223,0][-0.162321,1.02638,-3.07575][-0.164002,0.986459,-0.00132614][0.933147,0.182212,0][-0.162321,1.02638,-3.07575][-0.164002,0.986459,-0.00132614][0.599437,0.722151,0][-0.125411,1.03351,-3.2798][-0.497947,0.716801,-0.488103][0.580262,0.722822,0][-0.144443,1.0131,-3.26028][-0.858853,-0.178361,-0.480165][0.582097,0.720904,0][-0.125411,1.03351,-3.2798][-0.497947,0.716801,-0.488103][0.952594,0.180982,0][-0.162321,1.02638,-3.07575][-0.164002,0.986459,-0.00132614][0.933147,0.182212,0][-0.136946,1.01124,-3.04633][0.730319,0.681675,0.0441895][0.930677,0.179524,0][-0.136946,1.01124,-3.04633][0.730319,0.681675,0.0441895][0.930677,0.179524,0][-0.10638,1.01748,-3.2196][0.361893,0.905399,0.222004][0.947181,0.178552,0][-0.125411,1.03351,-3.2798][-0.497947,0.716801,-0.488103][0.952594,0.180982,0][-0.10638,1.01748,-3.2196][0.361893,0.905399,0.222004][0.706973,0.506545,0][-0.136946,1.01124,-3.04633][0.730319,0.681675,0.0441895][0.706995,0.522837,0][-0.125411,0.960631,-2.95118][0.98973,-0.0341885,-0.138801][0.702577,0.53195,0][-0.125411,0.960631,-2.95118][0.98973,-0.0341885,-0.138801][0.702577,0.53195,0][-0.0977293,0.960631,-3.08651][0.710477,0.66318,0.235404][0.702102,0.519242,0][-0.10638,1.01748,-3.2196][0.361893,0.905399,0.222004][0.706973,0.506545,0][-0.19923,0.960631,-2.95118][-0.977455,0.211115,-0.00338218][0.542722,0.76535,0][-0.153093,0.960631,-2.74817][-0.666751,0.612705,0.424306][0.555943,0.7791,0][-0.144443,1.00418,-2.82547][-0.545379,0.797206,0.258889][0.54796,0.776702,0][-0.144443,1.00418,-2.82547][-0.545379,0.797206,0.258889][0.54796,0.776702,0][-0.187696,1.00864,-3.04287][-0.8972,0.437703,-0.05872][0.533498,0.762266,0][-0.19923,0.960631,-2.95118][-0.977455,0.211115,-0.00338218][0.542722,0.76535,0][-0.187696,1.00864,-3.04287][-0.8972,0.437703,-0.05872][0.929803,0.184223,0][-0.144443,1.00418,-2.82547][-0.545379,0.797206,0.258889][0.90998,0.177826,0][-0.125411,1.01924,-2.87169][0.0192883,0.999739,-0.0122715][0.914501,0.176551,0][-0.125411,1.01924,-2.87169][0.0192883,0.999739,-0.0122715][0.914501,0.176551,0][-0.162321,1.02638,-3.07575][-0.164002,0.986459,-0.00132614][0.933147,0.182212,0][-0.187696,1.00864,-3.04287][-0.8972,0.437703,-0.05872][0.929803,0.184223,0][-0.162321,1.02638,-3.07575][-0.164002,0.986459,-0.00132614][0.933147,0.182212,0][-0.125411,1.01924,-2.87169][0.0192883,0.999739,-0.0122715][0.914501,0.176551,0][-0.10638,1.00499,-2.87307][0.845663,0.354892,-0.39863][0.914837,0.17479,0][-0.10638,1.00499,-2.87307][0.845663,0.354892,-0.39863][0.914837,0.17479,0][-0.136946,1.01124,-3.04633][0.730319,0.681675,0.0441895][0.930677,0.179524,0][-0.162321,1.02638,-3.07575][-0.164002,0.986459,-0.00132614][0.933147,0.182212,0][-0.136946,1.01124,-3.04633][0.730319,0.681675,0.0441895][0.706995,0.522837,0][-0.10638,1.00499,-2.87307][0.845663,0.354892,-0.39863][0.707017,0.539129,0][-0.0977293,0.960631,-2.81584][0.610737,-0.5814,-0.537564][0.703052,0.544658,0][-0.0977293,0.960631,-2.81584][0.610737,-0.5814,-0.537564][0.703052,0.544658,0][-0.125411,0.960631,-2.95118][0.98973,-0.0341885,-0.138801][0.702577,0.53195,0][-0.136946,1.01124,-3.04633][0.730319,0.681675,0.0441895][0.706995,0.522837,0][-0.153093,0.960631,-2.74817][-0.666751,0.612705,0.424306][0.902672,0.177794,0][-0.014683,0.960631,-2.6559][0.0244969,0.717439,0.696191][0.895562,0.163874,0][-0.014683,1.00215,-2.72664][0.0108052,0.904752,0.425801][0.902165,0.164642,0][-0.014683,1.00215,-2.72664][0.0108052,0.904752,0.425801][0.902165,0.164642,0][-0.144443,1.00418,-2.82547][-0.545379,0.797206,0.258889][0.90998,0.177826,0][-0.153093,0.960631,-2.74817][-0.666751,0.612705,0.424306][0.902672,0.177794,0][-0.144443,1.00418,-2.82547][-0.545379,0.797206,0.258889][0.90998,0.177826,0][-0.014683,1.00215,-2.72664][0.0108052,0.904752,0.425801][0.902165,0.164642,0][-0.014683,1.016,-2.77893][0.00162337,0.999756,-0.0220463][0.907046,0.165209,0][-0.014683,1.016,-2.77893][0.00162337,0.999756,-0.0220463][0.907046,0.165209,0][-0.125411,1.01924,-2.87169][0.0192883,0.999739,-0.0122715][0.914501,0.176551,0][-0.144443,1.00418,-2.82547][-0.545379,0.797206,0.258889][0.90998,0.177826,0][-0.125411,1.01924,-2.87169][0.0192883,0.999739,-0.0122715][0.138262,0.894508,0][-0.014683,1.016,-2.77893][0.00162337,0.999756,-0.0220463][0.124686,0.894618,0][-0.014683,1.00215,-2.79431][0.0115562,0.0258791,-0.999598][0.12557,0.892886,0][-0.014683,1.00215,-2.79431][0.0115562,0.0258791,-0.999598][0.12557,0.892886,0][-0.10638,1.00499,-2.87307][0.845663,0.354892,-0.39863][0.13693,0.892714,0][-0.125411,1.01924,-2.87169][0.0192883,0.999739,-0.0122715][0.138262,0.894508,0][-0.10638,1.00499,-2.87307][0.845663,0.354892,-0.39863][0.693262,0.561092,0][-0.014683,1.00215,-2.79431][0.0115562,0.0258791,-0.999598][0.704619,0.561424,0][-0.014683,0.960631,-2.75433][0.00967195,-0.704553,-0.709586][0.707017,0.566281,0][-0.014683,0.960631,-2.75433][0.00967195,-0.704553,-0.709586][0.707017,0.566281,0][-0.0977293,0.960631,-2.81584][0.610737,-0.5814,-0.537564][0.69732,0.566597,0][-0.10638,1.00499,-2.87307][0.845663,0.354892,-0.39863][0.693262,0.561092,0][-0.0147041,1.69882,0.00162945][0,1,0][0.717362,0.566597,0][-0.0147041,1.69882,0.00162945][0,1,0][0.717362,0.566597,0][0.13259,1.65038,-0.34377][0.314999,0.564404,-0.763036][0.718074,0.53132,0][0.13259,1.65038,-0.34377][0.314999,0.564404,-0.763036][0.937463,0.0790241,0][-0.0147042,1.65038,-0.372646][1.85173e-005,0.565222,-0.824939][0.923359,0.0790413,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.0147042,1.65038,-0.372646][1.85173e-005,0.565222,-0.824939][0.666202,0.920812,0][0.13259,1.65038,-0.34377][0.314999,0.564404,-0.763036][0.680043,0.920812,0][0.125808,1.53273,-0.327918][0.344848,-0.427912,-0.835447][0.679406,0.931867,0][0.125808,1.53273,-0.327918][0.344848,-0.427912,-0.835447][0.679406,0.931867,0][-0.0147042,1.53273,-0.355478][3.4468e-005,-0.4272,-0.904157][0.666202,0.931867,0][-0.0147042,1.65038,-0.372646][1.85173e-005,0.565222,-0.824939][0.666202,0.920812,0][-0.0147042,1.53273,-0.355478][3.4468e-005,-0.4272,-0.904157][0.666202,0.931867,0][0.125808,1.53273,-0.327918][0.344848,-0.427912,-0.835447][0.679406,0.931867,0][0.0703336,1.3874,-0.197973][0.352406,-0.381883,-0.854386][0.674193,0.945523,0][0.0703336,1.3874,-0.197973][0.352406,-0.381883,-0.854386][0.674193,0.945523,0][-0.0147041,1.3874,-0.214695][0.000120717,-0.38049,-0.924785][0.666202,0.945523,0][-0.0147042,1.53273,-0.355478][3.4468e-005,-0.4272,-0.904157][0.666202,0.931867,0][-0.0147041,1.3874,-0.214695][0.000120717,-0.38049,-0.924785][0.666202,0.945523,0][0.0703336,1.3874,-0.197973][0.352406,-0.381883,-0.854386][0.674193,0.945523,0][0.0715509,1.25591,-0.201097][0.29315,0.640939,-0.709408][0.674307,0.957879,0][0.0715509,1.25591,-0.201097][0.29315,0.640939,-0.709408][0.674307,0.957879,0][-0.0147041,1.25591,-0.218129][8.28264e-005,0.640237,-0.768177][0.666202,0.957879,0][-0.0147041,1.3874,-0.214695][0.000120717,-0.38049,-0.924785][0.666202,0.945523,0][-0.0147041,1.69882,0.00162945][0,1,0][0.639664,0.465357,0][-0.0147041,1.69882,0.00162945][0,1,0][0.639664,0.465357,0][0.251379,1.65038,-0.264454][0.583655,0.564507,-0.583676][0.675016,0.46605,0][0.251379,1.65038,-0.264454][0.583655,0.564507,-0.583676][0.949845,0.0738426,0][0.13259,1.65038,-0.34377][0.314999,0.564404,-0.763036][0.937463,0.0790241,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.13259,1.65038,-0.34377][0.314999,0.564404,-0.763036][0.680043,0.920812,0][0.251379,1.65038,-0.264454][0.583655,0.564507,-0.583676][0.691205,0.920812,0][0.239151,1.53273,-0.252226][0.638828,-0.42866,-0.638866][0.690056,0.931867,0][0.239151,1.53273,-0.252226][0.638828,-0.42866,-0.638866][0.690056,0.931867,0][0.125808,1.53273,-0.327918][0.344848,-0.427912,-0.835447][0.679406,0.931867,0][0.13259,1.65038,-0.34377][0.314999,0.564404,-0.763036][0.680043,0.920812,0][0.125808,1.53273,-0.327918][0.344848,-0.427912,-0.835447][0.0961583,0.643147,0][0.239151,1.53273,-0.252226][0.638828,-0.42866,-0.638866][0.0981121,0.655804,0][0.139002,1.3874,-0.152077][0.653263,-0.382518,-0.653396][0.0790461,0.656117,0][0.139002,1.3874,-0.152077][0.653263,-0.382518,-0.653396][0.0790461,0.656117,0][0.0703336,1.3874,-0.197973][0.352406,-0.381883,-0.854386][0.0778641,0.648447,0][0.125808,1.53273,-0.327918][0.344848,-0.427912,-0.835447][0.0961583,0.643147,0][0.0703336,1.3874,-0.197973][0.352406,-0.381883,-0.854386][0.674193,0.945523,0][0.139002,1.3874,-0.152077][0.653263,-0.382518,-0.653396][0.680646,0.945523,0][0.141324,1.25591,-0.154399][0.542952,0.640553,-0.543043][0.680864,0.957879,0][0.141324,1.25591,-0.154399][0.542952,0.640553,-0.543043][0.680864,0.957879,0][0.0715509,1.25591,-0.201097][0.29315,0.640939,-0.709408][0.674307,0.957879,0][0.0703336,1.3874,-0.197973][0.352406,-0.381883,-0.854386][0.674193,0.945523,0][-0.0147041,1.69882,0.00162945][0,1,0][0.387352,0.693327,0][-0.0147041,1.69882,0.00162945][0,1,0][0.387352,0.693327,0][0.330695,1.65038,-0.145665][0.763024,0.56442,-0.314998][0.352074,0.692656,0][0.330695,1.65038,-0.145665][0.763024,0.56442,-0.314998][0.959294,0.0643113,0][0.251379,1.65038,-0.264454][0.583655,0.564507,-0.583676][0.949845,0.0738426,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.251379,1.65038,-0.264454][0.583655,0.564507,-0.583676][0.146948,0.0860912,0][0.330695,1.65038,-0.145665][0.763024,0.56442,-0.314998][0.146948,0.074929,0][0.314843,1.53273,-0.138883][0.835453,-0.427892,-0.344859][0.158003,0.0742917,0][0.314843,1.53273,-0.138883][0.835453,-0.427892,-0.344859][0.158003,0.0742917,0][0.239151,1.53273,-0.252226][0.638828,-0.42866,-0.638866][0.158003,0.0849421,0][0.251379,1.65038,-0.264454][0.583655,0.564507,-0.583676][0.146948,0.0860912,0][0.239151,1.53273,-0.252226][0.638828,-0.42866,-0.638866][0.0981121,0.655804,0][0.314843,1.53273,-0.138883][0.835453,-0.427892,-0.344859][0.0965661,0.668013,0][0.184899,1.3874,-0.0834083][0.854402,-0.381813,-0.352442][0.0781112,0.663516,0][0.184899,1.3874,-0.0834083][0.854402,-0.381813,-0.352442][0.0781112,0.663516,0][0.139002,1.3874,-0.152077][0.653263,-0.382518,-0.653396][0.0790461,0.656117,0][0.239151,1.53273,-0.252226][0.638828,-0.42866,-0.638866][0.0981121,0.655804,0][0.139002,1.3874,-0.152077][0.653263,-0.382518,-0.653396][0.171659,0.0755315,0][0.184899,1.3874,-0.0834083][0.854402,-0.381813,-0.352442][0.171659,0.069079,0][0.188023,1.25591,-0.0846256][0.709491,0.640823,-0.293204][0.184015,0.0691934,0][0.188023,1.25591,-0.0846256][0.709491,0.640823,-0.293204][0.184015,0.0691934,0][0.141324,1.25591,-0.154399][0.542952,0.640553,-0.543043][0.184015,0.0757497,0][0.139002,1.3874,-0.152077][0.653263,-0.382518,-0.653396][0.171659,0.0755315,0][-0.0147041,1.69882,0.00162945][0,1,0][0.835391,0.194242,0][-0.0147041,1.69882,0.00162945][0,1,0][0.835391,0.194242,0][0.359571,1.65038,0.00162943][0.824939,0.565222,1.85063e-005][0.87056,0.194242,0][0.359571,1.65038,0.00162943][0.824939,0.565222,1.85063e-005][0.964604,0.0512446,0][0.330695,1.65038,-0.145665][0.763024,0.56442,-0.314998][0.959294,0.0643113,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.330695,1.65038,-0.145665][0.763024,0.56442,-0.314998][0.146948,0.074929,0][0.359571,1.65038,0.00162943][0.824939,0.565222,1.85063e-005][0.146948,0.0610883,0][0.342403,1.53273,0.00162943][0.904157,-0.4272,3.44482e-005][0.158003,0.0610883,0][0.342403,1.53273,0.00162943][0.904157,-0.4272,3.44482e-005][0.158003,0.0610883,0][0.314843,1.53273,-0.138883][0.835453,-0.427892,-0.344859][0.158003,0.0742917,0][0.330695,1.65038,-0.145665][0.763024,0.56442,-0.314998][0.146948,0.074929,0][0.314843,1.53273,-0.138883][0.835453,-0.427892,-0.344859][0.158003,0.0742917,0][0.342403,1.53273,0.00162943][0.904157,-0.4272,3.44482e-005][0.158003,0.0610883,0][0.20162,1.3874,0.00162944][0.924785,-0.38049,0.000120786][0.171659,0.0610883,0][0.20162,1.3874,0.00162944][0.924785,-0.38049,0.000120786][0.171659,0.0610883,0][0.184899,1.3874,-0.0834083][0.854402,-0.381813,-0.352442][0.171659,0.069079,0][0.314843,1.53273,-0.138883][0.835453,-0.427892,-0.344859][0.158003,0.0742917,0][0.184899,1.3874,-0.0834083][0.854402,-0.381813,-0.352442][0.171659,0.069079,0][0.20162,1.3874,0.00162944][0.924785,-0.38049,0.000120786][0.171659,0.0610883,0][0.205054,1.25591,0.00162944][0.768177,0.640237,8.28845e-005][0.184015,0.0610883,0][0.205054,1.25591,0.00162944][0.768177,0.640237,8.28845e-005][0.184015,0.0610883,0][0.188023,1.25591,-0.0846256][0.709491,0.640823,-0.293204][0.184015,0.0691934,0][0.184899,1.3874,-0.0834083][0.854402,-0.381813,-0.352442][0.171659,0.069079,0][-0.0147041,1.69882,0.00162945][0,1,0][0.672265,0.535192,0][-0.0147041,1.69882,0.00162945][0,1,0][0.672265,0.535192,0][0.330695,1.65038,0.148924][0.763036,0.564404,0.314999][0.671552,0.570469,0][0.330695,1.65038,0.148924][0.763036,0.564404,0.314999][0.964587,0.0371404,0][0.359571,1.65038,0.00162943][0.824939,0.565222,1.85063e-005][0.964604,0.0512446,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.359571,1.65038,0.00162943][0.824939,0.565222,1.85063e-005][0.146948,0.0610883,0][0.330695,1.65038,0.148924][0.763036,0.564404,0.314999][0.146948,0.0472475,0][0.314843,1.53273,0.142142][0.835446,-0.427912,0.344848][0.158003,0.0478848,0][0.314843,1.53273,0.142142][0.835446,-0.427912,0.344848][0.158003,0.0478848,0][0.342403,1.53273,0.00162943][0.904157,-0.4272,3.44482e-005][0.158003,0.0610883,0][0.359571,1.65038,0.00162943][0.824939,0.565222,1.85063e-005][0.146948,0.0610883,0][0.342403,1.53273,0.00162943][0.904157,-0.4272,3.44482e-005][0.158003,0.0610883,0][0.314843,1.53273,0.142142][0.835446,-0.427912,0.344848][0.158003,0.0478848,0][0.184899,1.3874,0.0866671][0.854386,-0.381883,0.352406][0.171659,0.0530976,0][0.184899,1.3874,0.0866671][0.854386,-0.381883,0.352406][0.171659,0.0530976,0][0.20162,1.3874,0.00162944][0.924785,-0.38049,0.000120786][0.171659,0.0610883,0][0.342403,1.53273,0.00162943][0.904157,-0.4272,3.44482e-005][0.158003,0.0610883,0][0.20162,1.3874,0.00162944][0.924785,-0.38049,0.000120786][0.171659,0.0610883,0][0.184899,1.3874,0.0866671][0.854386,-0.381883,0.352406][0.171659,0.0530976,0][0.188023,1.25591,0.0878845][0.709408,0.640939,0.29315][0.184015,0.0529832,0][0.188023,1.25591,0.0878845][0.709408,0.640939,0.29315][0.184015,0.0529832,0][0.205054,1.25591,0.00162944][0.768177,0.640237,8.28845e-005][0.184015,0.0610883,0][0.20162,1.3874,0.00162944][0.924785,-0.38049,0.000120786][0.171659,0.0610883,0][-0.0147041,1.69882,0.00162945][0,1,0][0.693768,0.509305,0][-0.0147041,1.69882,0.00162945][0,1,0][0.693768,0.509305,0][0.251379,1.65038,0.267713][0.583676,0.564507,0.583656][0.693075,0.544658,0][0.251379,1.65038,0.267713][0.583676,0.564507,0.583656][0.959405,0.0247592,0][0.330695,1.65038,0.148924][0.763036,0.564404,0.314999][0.964587,0.0371404,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.330695,1.65038,0.148924][0.763036,0.564404,0.314999][0.146948,0.0472475,0][0.251379,1.65038,0.267713][0.583676,0.564507,0.583656][0.146948,0.0360853,0][0.239151,1.53273,0.255484][0.638866,-0.42866,0.638828][0.158003,0.0372344,0][0.239151,1.53273,0.255484][0.638866,-0.42866,0.638828][0.158003,0.0372344,0][0.314843,1.53273,0.142142][0.835446,-0.427912,0.344848][0.158003,0.0478848,0][0.330695,1.65038,0.148924][0.763036,0.564404,0.314999][0.146948,0.0472475,0][0.314843,1.53273,0.142142][0.835446,-0.427912,0.344848][0.142306,0.624145,0][0.239151,1.53273,0.255484][0.638866,-0.42866,0.638828][0.14426,0.636803,0][0.139002,1.3874,0.155336][0.653396,-0.382518,0.653263][0.125194,0.637115,0][0.139002,1.3874,0.155336][0.653396,-0.382518,0.653263][0.125194,0.637115,0][0.184899,1.3874,0.0866671][0.854386,-0.381883,0.352406][0.124012,0.629445,0][0.314843,1.53273,0.142142][0.835446,-0.427912,0.344848][0.142306,0.624145,0][0.184899,1.3874,0.0866671][0.854386,-0.381883,0.352406][0.171659,0.0530976,0][0.139002,1.3874,0.155336][0.653396,-0.382518,0.653263][0.171659,0.046645,0][0.141324,1.25591,0.157658][0.543043,0.640553,0.542952][0.184015,0.0464268,0][0.141324,1.25591,0.157658][0.543043,0.640553,0.542952][0.184015,0.0464268,0][0.188023,1.25591,0.0878845][0.709408,0.640939,0.29315][0.184015,0.0529832,0][0.184899,1.3874,0.0866671][0.854386,-0.381883,0.352406][0.171659,0.0530976,0][-0.0147041,1.69882,0.00162945][0,1,0][0.598729,0.6843,0][-0.0147041,1.69882,0.00162945][0,1,0][0.598729,0.6843,0][0.13259,1.65038,0.347029][0.314998,0.56442,0.763024][0.563451,0.683629,0][0.13259,1.65038,0.347029][0.314998,0.56442,0.763024][0.949874,0.0153095,0][0.251379,1.65038,0.267713][0.583676,0.564507,0.583656][0.959405,0.0247592,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.251379,1.65038,0.267713][0.583676,0.564507,0.583656][0.911396,0.437425,0][0.13259,1.65038,0.347029][0.314998,0.56442,0.763024][0.922558,0.437425,0][0.125808,1.53273,0.331176][0.344859,-0.427892,0.835453][0.923196,0.44848,0][0.125808,1.53273,0.331176][0.344859,-0.427892,0.835453][0.923196,0.44848,0][0.239151,1.53273,0.255484][0.638866,-0.42866,0.638828][0.912545,0.44848,0][0.251379,1.65038,0.267713][0.583676,0.564507,0.583656][0.911396,0.437425,0][0.239151,1.53273,0.255484][0.638866,-0.42866,0.638828][0.14426,0.636803,0][0.125808,1.53273,0.331176][0.344859,-0.427892,0.835453][0.142714,0.649011,0][0.0703336,1.3874,0.201232][0.352442,-0.381813,0.854402][0.124259,0.644515,0][0.0703336,1.3874,0.201232][0.352442,-0.381813,0.854402][0.124259,0.644515,0][0.139002,1.3874,0.155336][0.653396,-0.382518,0.653263][0.125194,0.637115,0][0.239151,1.53273,0.255484][0.638866,-0.42866,0.638828][0.14426,0.636803,0][0.139002,1.3874,0.155336][0.653396,-0.382518,0.653263][0.921956,0.462137,0][0.0703336,1.3874,0.201232][0.352442,-0.381813,0.854402][0.928408,0.462137,0][0.071551,1.25591,0.204356][0.293204,0.640823,0.70949][0.928294,0.474492,0][0.071551,1.25591,0.204356][0.293204,0.640823,0.70949][0.928294,0.474492,0][0.141324,1.25591,0.157658][0.543043,0.640553,0.542952][0.921738,0.474492,0][0.139002,1.3874,0.155336][0.653396,-0.382518,0.653263][0.921956,0.462137,0][-0.0147041,1.69882,0.00162945][0,1,0][0.623723,0.194389,0][-0.0147041,1.69882,0.00162945][0,1,0][0.623723,0.194389,0][-0.0147041,1.65038,0.375905][-1.84919e-005,0.565222,0.824939][0.659183,0.19393,0][-0.0147041,1.65038,0.375905][-1.84919e-005,0.565222,0.824939][0.936807,0.01,0][0.13259,1.65038,0.347029][0.314998,0.56442,0.763024][0.949874,0.0153095,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.13259,1.65038,0.347029][0.314998,0.56442,0.763024][0.922558,0.437425,0][-0.0147041,1.65038,0.375905][-1.84919e-005,0.565222,0.824939][0.936399,0.437425,0][-0.0147041,1.53273,0.358736][-3.44304e-005,-0.4272,0.904157][0.936399,0.44848,0][-0.0147041,1.53273,0.358736][-3.44304e-005,-0.4272,0.904157][0.936399,0.44848,0][0.125808,1.53273,0.331176][0.344859,-0.427892,0.835453][0.923196,0.44848,0][0.13259,1.65038,0.347029][0.314998,0.56442,0.763024][0.922558,0.437425,0][0.125808,1.53273,0.331176][0.344859,-0.427892,0.835453][0.923196,0.44848,0][-0.0147041,1.53273,0.358736][-3.44304e-005,-0.4272,0.904157][0.936399,0.44848,0][-0.0147041,1.3874,0.217954][-0.000120737,-0.38049,0.924785][0.936399,0.462137,0][-0.0147041,1.3874,0.217954][-0.000120737,-0.38049,0.924785][0.936399,0.462137,0][0.0703336,1.3874,0.201232][0.352442,-0.381813,0.854402][0.928408,0.462137,0][0.125808,1.53273,0.331176][0.344859,-0.427892,0.835453][0.923196,0.44848,0][0.0703336,1.3874,0.201232][0.352442,-0.381813,0.854402][0.928408,0.462137,0][-0.0147041,1.3874,0.217954][-0.000120737,-0.38049,0.924785][0.936399,0.462137,0][-0.0147041,1.25591,0.221388][-8.28304e-005,0.640237,0.768177][0.936399,0.474492,0][-0.0147041,1.25591,0.221388][-8.28304e-005,0.640237,0.768177][0.936399,0.474492,0][0.071551,1.25591,0.204356][0.293204,0.640823,0.70949][0.928294,0.474492,0][0.0703336,1.3874,0.201232][0.352442,-0.381813,0.854402][0.928408,0.462137,0][-0.0147041,1.69882,0.00162945][0,1,0][0.87056,0.203247,0][-0.0147041,1.69882,0.00162945][0,1,0][0.87056,0.203247,0][-0.161998,1.65038,0.347029][-0.314999,0.564404,0.763036][0.835283,0.202576,0][-0.161998,1.65038,0.347029][-0.314999,0.564404,0.763036][0.922703,0.0100171,0][-0.0147041,1.65038,0.375905][-1.84919e-005,0.565222,0.824939][0.936807,0.01,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.0147041,1.65038,0.375905][-1.84919e-005,0.565222,0.824939][0.936399,0.437425,0][-0.161998,1.65038,0.347029][-0.314999,0.564404,0.763036][0.95024,0.437425,0][-0.155216,1.53273,0.331177][-0.344848,-0.427912,0.835447][0.949603,0.44848,0][-0.155216,1.53273,0.331177][-0.344848,-0.427912,0.835447][0.949603,0.44848,0][-0.0147041,1.53273,0.358736][-3.44304e-005,-0.4272,0.904157][0.936399,0.44848,0][-0.0147041,1.65038,0.375905][-1.84919e-005,0.565222,0.824939][0.936399,0.437425,0][-0.0147041,1.53273,0.358736][-3.44304e-005,-0.4272,0.904157][0.936399,0.44848,0][-0.155216,1.53273,0.331177][-0.344848,-0.427912,0.835447][0.949603,0.44848,0][-0.0997418,1.3874,0.201232][-0.352406,-0.381883,0.854386][0.94439,0.462137,0][-0.0997418,1.3874,0.201232][-0.352406,-0.381883,0.854386][0.94439,0.462137,0][-0.0147041,1.3874,0.217954][-0.000120737,-0.38049,0.924785][0.936399,0.462137,0][-0.0147041,1.53273,0.358736][-3.44304e-005,-0.4272,0.904157][0.936399,0.44848,0][-0.0147041,1.3874,0.217954][-0.000120737,-0.38049,0.924785][0.936399,0.462137,0][-0.0997418,1.3874,0.201232][-0.352406,-0.381883,0.854386][0.94439,0.462137,0][-0.100959,1.25591,0.204356][-0.29315,0.640939,0.709408][0.944504,0.474492,0][-0.100959,1.25591,0.204356][-0.29315,0.640939,0.709408][0.944504,0.474492,0][-0.0147041,1.25591,0.221388][-8.28304e-005,0.640237,0.768177][0.936399,0.474492,0][-0.0147041,1.3874,0.217954][-0.000120737,-0.38049,0.924785][0.936399,0.462137,0][-0.0147041,1.69882,0.00162945][0,1,0][0.675016,0.475078,0][-0.0147041,1.69882,0.00162945][0,1,0][0.675016,0.475078,0][-0.280787,1.65038,0.267713][-0.583655,0.564507,0.583676][0.639664,0.474385,0][-0.280787,1.65038,0.267713][-0.583655,0.564507,0.583676][0.910322,0.0151987,0][-0.161998,1.65038,0.347029][-0.314999,0.564404,0.763036][0.922703,0.0100171,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.161998,1.65038,0.347029][-0.314999,0.564404,0.763036][0.95024,0.437425,0][-0.280787,1.65038,0.267713][-0.583655,0.564507,0.583676][0.961402,0.437425,0][-0.268559,1.53273,0.255484][-0.638828,-0.42866,0.638866][0.960253,0.44848,0][-0.268559,1.53273,0.255484][-0.638828,-0.42866,0.638866][0.960253,0.44848,0][-0.155216,1.53273,0.331177][-0.344848,-0.427912,0.835447][0.949603,0.44848,0][-0.161998,1.65038,0.347029][-0.314999,0.564404,0.763036][0.95024,0.437425,0][-0.155216,1.53273,0.331177][-0.344848,-0.427912,0.835447][0.755068,0.6208,0][-0.268559,1.53273,0.255484][-0.638828,-0.42866,0.638866][0.753114,0.608143,0][-0.16841,1.3874,0.155336][-0.653263,-0.382518,0.653396][0.77218,0.60783,0][-0.16841,1.3874,0.155336][-0.653263,-0.382518,0.653396][0.77218,0.60783,0][-0.0997418,1.3874,0.201232][-0.352406,-0.381883,0.854386][0.773362,0.615501,0][-0.155216,1.53273,0.331177][-0.344848,-0.427912,0.835447][0.755068,0.6208,0][-0.0997418,1.3874,0.201232][-0.352406,-0.381883,0.854386][0.94439,0.462137,0][-0.16841,1.3874,0.155336][-0.653263,-0.382518,0.653396][0.950842,0.462137,0][-0.170732,1.25591,0.157658][-0.542952,0.640553,0.543043][0.951061,0.474492,0][-0.170732,1.25591,0.157658][-0.542952,0.640553,0.543043][0.951061,0.474492,0][-0.100959,1.25591,0.204356][-0.29315,0.640939,0.709408][0.944504,0.474492,0][-0.0997418,1.3874,0.201232][-0.352406,-0.381883,0.854386][0.94439,0.462137,0][-0.0147041,1.69882,0.00162945][0,1,0][0.0452768,0.932556,0][-0.0147041,1.69882,0.00162945][0,1,0][0.0452768,0.932556,0][-0.360104,1.65038,0.148924][-0.763024,0.56442,0.314998][0.01,0.931844,0][-0.360104,1.65038,0.148924][-0.763024,0.56442,0.314998][0.900872,0.02473,0][-0.280787,1.65038,0.267713][-0.583655,0.564507,0.583676][0.910322,0.0151987,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.280787,1.65038,0.267713][-0.583655,0.564507,0.583676][0.157584,0.801497,0][-0.360104,1.65038,0.148924][-0.763024,0.56442,0.314998][0.157584,0.790335,0][-0.344251,1.53273,0.142142][-0.835453,-0.427892,0.344859][0.168639,0.789698,0][-0.344251,1.53273,0.142142][-0.835453,-0.427892,0.344859][0.168639,0.789698,0][-0.268559,1.53273,0.255484][-0.638828,-0.42866,0.638866][0.168639,0.800348,0][-0.280787,1.65038,0.267713][-0.583655,0.564507,0.583676][0.157584,0.801497,0][-0.268559,1.53273,0.255484][-0.638828,-0.42866,0.638866][0.753114,0.608143,0][-0.344251,1.53273,0.142142][-0.835453,-0.427892,0.344859][0.75466,0.595934,0][-0.214307,1.3874,0.0866672][-0.854402,-0.381813,0.352442][0.773115,0.600431,0][-0.214307,1.3874,0.0866672][-0.854402,-0.381813,0.352442][0.773115,0.600431,0][-0.16841,1.3874,0.155336][-0.653263,-0.382518,0.653396][0.77218,0.60783,0][-0.268559,1.53273,0.255484][-0.638828,-0.42866,0.638866][0.753114,0.608143,0][-0.16841,1.3874,0.155336][-0.653263,-0.382518,0.653396][0.182296,0.790937,0][-0.214307,1.3874,0.0866672][-0.854402,-0.381813,0.352442][0.182296,0.784485,0][-0.217431,1.25591,0.0878845][-0.70949,0.640823,0.293204][0.194651,0.784599,0][-0.217431,1.25591,0.0878845][-0.70949,0.640823,0.293204][0.194651,0.784599,0][-0.170732,1.25591,0.157658][-0.542952,0.640553,0.543043][0.194651,0.791156,0][-0.16841,1.3874,0.155336][-0.653263,-0.382518,0.653396][0.182296,0.790937,0][-0.0147041,1.69882,0.00162945][0,1,0][0.0719304,0.945833,0][-0.0147041,1.69882,0.00162945][0,1,0][0.0719304,0.945833,0][-0.38898,1.65038,0.00162947][-0.824939,0.565222,-1.84693e-005][0.1071,0.945833,0][-0.38898,1.65038,0.00162947][-0.824939,0.565222,-1.84693e-005][0.895562,0.0377967,0][-0.360104,1.65038,0.148924][-0.763024,0.56442,0.314998][0.900872,0.02473,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.360104,1.65038,0.148924][-0.763024,0.56442,0.314998][0.157584,0.790335,0][-0.38898,1.65038,0.00162947][-0.824939,0.565222,-1.84693e-005][0.157584,0.776494,0][-0.371811,1.53273,0.00162947][-0.904157,-0.4272,-3.44132e-005][0.168639,0.776494,0][-0.371811,1.53273,0.00162947][-0.904157,-0.4272,-3.44132e-005][0.168639,0.776494,0][-0.344251,1.53273,0.142142][-0.835453,-0.427892,0.344859][0.168639,0.789698,0][-0.360104,1.65038,0.148924][-0.763024,0.56442,0.314998][0.157584,0.790335,0][-0.344251,1.53273,0.142142][-0.835453,-0.427892,0.344859][0.168639,0.789698,0][-0.371811,1.53273,0.00162947][-0.904157,-0.4272,-3.44132e-005][0.168639,0.776494,0][-0.231029,1.3874,0.00162946][-0.924785,-0.38049,-0.000120808][0.182296,0.776494,0][-0.231029,1.3874,0.00162946][-0.924785,-0.38049,-0.000120808][0.182296,0.776494,0][-0.214307,1.3874,0.0866672][-0.854402,-0.381813,0.352442][0.182296,0.784485,0][-0.344251,1.53273,0.142142][-0.835453,-0.427892,0.344859][0.168639,0.789698,0][-0.214307,1.3874,0.0866672][-0.854402,-0.381813,0.352442][0.182296,0.784485,0][-0.231029,1.3874,0.00162946][-0.924785,-0.38049,-0.000120808][0.182296,0.776494,0][-0.234462,1.25591,0.00162946][-0.768177,0.640237,-8.28836e-005][0.194651,0.776494,0][-0.234462,1.25591,0.00162946][-0.768177,0.640237,-8.28836e-005][0.194651,0.776494,0][-0.217431,1.25591,0.0878845][-0.70949,0.640823,0.293204][0.194651,0.784599,0][-0.214307,1.3874,0.0866672][-0.854402,-0.381813,0.352442][0.182296,0.784485,0][-0.0147041,1.69882,0.00162945][0,1,0][0.387352,0.684322,0][-0.0147041,1.69882,0.00162945][0,1,0][0.387352,0.684322,0][-0.360104,1.65038,-0.145665][-0.763036,0.564404,-0.314999][0.352074,0.683651,0][-0.360104,1.65038,-0.145665][-0.763036,0.564404,-0.314999][0.89558,0.0519009,0][-0.38898,1.65038,0.00162947][-0.824939,0.565222,-1.84693e-005][0.895562,0.0377967,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.38898,1.65038,0.00162947][-0.824939,0.565222,-1.84693e-005][0.157584,0.776494,0][-0.360104,1.65038,-0.145665][-0.763036,0.564404,-0.314999][0.157584,0.762653,0][-0.344251,1.53273,-0.138883][-0.835447,-0.427912,-0.344848][0.168639,0.763291,0][-0.344251,1.53273,-0.138883][-0.835447,-0.427912,-0.344848][0.168639,0.763291,0][-0.371811,1.53273,0.00162947][-0.904157,-0.4272,-3.44132e-005][0.168639,0.776494,0][-0.38898,1.65038,0.00162947][-0.824939,0.565222,-1.84693e-005][0.157584,0.776494,0][-0.371811,1.53273,0.00162947][-0.904157,-0.4272,-3.44132e-005][0.168639,0.776494,0][-0.344251,1.53273,-0.138883][-0.835447,-0.427912,-0.344848][0.168639,0.763291,0][-0.214307,1.3874,-0.0834082][-0.854386,-0.381883,-0.352405][0.182296,0.768503,0][-0.214307,1.3874,-0.0834082][-0.854386,-0.381883,-0.352405][0.182296,0.768503,0][-0.231029,1.3874,0.00162946][-0.924785,-0.38049,-0.000120808][0.182296,0.776494,0][-0.371811,1.53273,0.00162947][-0.904157,-0.4272,-3.44132e-005][0.168639,0.776494,0][-0.231029,1.3874,0.00162946][-0.924785,-0.38049,-0.000120808][0.182296,0.776494,0][-0.214307,1.3874,-0.0834082][-0.854386,-0.381883,-0.352405][0.182296,0.768503,0][-0.217431,1.25591,-0.0846256][-0.709408,0.640939,-0.29315][0.194651,0.768389,0][-0.217431,1.25591,-0.0846256][-0.709408,0.640939,-0.29315][0.194651,0.768389,0][-0.234462,1.25591,0.00162946][-0.768177,0.640237,-8.28836e-005][0.194651,0.776494,0][-0.231029,1.3874,0.00162946][-0.924785,-0.38049,-0.000120808][0.182296,0.776494,0][-0.0147041,1.69882,0.00162945][0,1,0][0.563376,0.692634,0][-0.0147041,1.69882,0.00162945][0,1,0][0.563376,0.692634,0][-0.280787,1.65038,-0.264454][-0.583676,0.564507,-0.583655][0.598729,0.693327,0][-0.280787,1.65038,-0.264454][-0.583676,0.564507,-0.583655][0.900761,0.0642821,0][-0.360104,1.65038,-0.145665][-0.763036,0.564404,-0.314999][0.89558,0.0519009,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.360104,1.65038,-0.145665][-0.763036,0.564404,-0.314999][0.157584,0.762653,0][-0.280787,1.65038,-0.264454][-0.583676,0.564507,-0.583655][0.157584,0.751491,0][-0.268559,1.53273,-0.252226][-0.638866,-0.42866,-0.638828][0.168639,0.75264,0][-0.268559,1.53273,-0.252226][-0.638866,-0.42866,-0.638828][0.168639,0.75264,0][-0.344251,1.53273,-0.138883][-0.835447,-0.427912,-0.344848][0.168639,0.763291,0][-0.360104,1.65038,-0.145665][-0.763036,0.564404,-0.314999][0.157584,0.762653,0][-0.344251,1.53273,-0.138883][-0.835447,-0.427912,-0.344848][0.183024,0.643147,0][-0.268559,1.53273,-0.252226][-0.638866,-0.42866,-0.638828][0.184978,0.655804,0][-0.16841,1.3874,-0.152077][-0.653396,-0.382518,-0.653263][0.165912,0.656117,0][-0.16841,1.3874,-0.152077][-0.653396,-0.382518,-0.653263][0.165912,0.656117,0][-0.214307,1.3874,-0.0834082][-0.854386,-0.381883,-0.352405][0.16473,0.648447,0][-0.344251,1.53273,-0.138883][-0.835447,-0.427912,-0.344848][0.183024,0.643147,0][-0.214307,1.3874,-0.0834082][-0.854386,-0.381883,-0.352405][0.182296,0.768503,0][-0.16841,1.3874,-0.152077][-0.653396,-0.382518,-0.653263][0.182296,0.762051,0][-0.170732,1.25591,-0.154399][-0.543043,0.640553,-0.542952][0.194651,0.761833,0][-0.170732,1.25591,-0.154399][-0.543043,0.640553,-0.542952][0.194651,0.761833,0][-0.217431,1.25591,-0.0846256][-0.709408,0.640939,-0.29315][0.194651,0.768389,0][-0.214307,1.3874,-0.0834082][-0.854386,-0.381883,-0.352405][0.182296,0.768503,0][-0.0147041,1.69882,0.00162945][0,1,0][0.734738,0.540786,0][-0.0147041,1.69882,0.00162945][0,1,0][0.734738,0.540786,0][-0.161998,1.65038,-0.34377][-0.314998,0.56442,-0.763024][0.735451,0.50551,0][-0.161998,1.65038,-0.34377][-0.314998,0.56442,-0.763024][0.910292,0.0737318,0][-0.280787,1.65038,-0.264454][-0.583676,0.564507,-0.583655][0.900761,0.0642821,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.280787,1.65038,-0.264454][-0.583676,0.564507,-0.583655][0.641199,0.920812,0][-0.161998,1.65038,-0.34377][-0.314998,0.56442,-0.763024][0.652362,0.920812,0][-0.155216,1.53273,-0.327918][-0.344859,-0.427892,-0.835452][0.652999,0.931867,0][-0.155216,1.53273,-0.327918][-0.344859,-0.427892,-0.835452][0.652999,0.931867,0][-0.268559,1.53273,-0.252226][-0.638866,-0.42866,-0.638828][0.642348,0.931867,0][-0.280787,1.65038,-0.264454][-0.583676,0.564507,-0.583655][0.641199,0.920812,0][-0.268559,1.53273,-0.252226][-0.638866,-0.42866,-0.638828][0.184978,0.655804,0][-0.155216,1.53273,-0.327918][-0.344859,-0.427892,-0.835452][0.183432,0.668013,0][-0.0997418,1.3874,-0.197973][-0.352442,-0.381813,-0.854402][0.164977,0.663516,0][-0.0997418,1.3874,-0.197973][-0.352442,-0.381813,-0.854402][0.164977,0.663516,0][-0.16841,1.3874,-0.152077][-0.653396,-0.382518,-0.653263][0.165912,0.656117,0][-0.268559,1.53273,-0.252226][-0.638866,-0.42866,-0.638828][0.184978,0.655804,0][-0.16841,1.3874,-0.152077][-0.653396,-0.382518,-0.653263][0.651759,0.945523,0][-0.0997418,1.3874,-0.197973][-0.352442,-0.381813,-0.854402][0.658212,0.945523,0][-0.100959,1.25591,-0.201097][-0.293204,0.640823,-0.709491][0.658097,0.957879,0][-0.100959,1.25591,-0.201097][-0.293204,0.640823,-0.709491][0.658097,0.957879,0][-0.170732,1.25591,-0.154399][-0.543043,0.640553,-0.542952][0.651541,0.957879,0][-0.16841,1.3874,-0.152077][-0.653396,-0.382518,-0.653263][0.651759,0.945523,0][-0.0147041,1.69882,0.00162945][0,1,0][0.659183,0.203247,0][-0.0147041,1.69882,0.00162945][0,1,0][0.659183,0.203247,0][-0.0147042,1.65038,-0.372646][1.85173e-005,0.565222,-0.824939][0.623724,0.202723,0][-0.0147042,1.65038,-0.372646][1.85173e-005,0.565222,-0.824939][0.923359,0.0790413,0][-0.161998,1.65038,-0.34377][-0.314998,0.56442,-0.763024][0.910292,0.0737318,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.161998,1.65038,-0.34377][-0.314998,0.56442,-0.763024][0.652362,0.920812,0][-0.0147042,1.65038,-0.372646][1.85173e-005,0.565222,-0.824939][0.666202,0.920812,0][-0.0147042,1.53273,-0.355478][3.4468e-005,-0.4272,-0.904157][0.666202,0.931867,0][-0.0147042,1.53273,-0.355478][3.4468e-005,-0.4272,-0.904157][0.666202,0.931867,0][-0.155216,1.53273,-0.327918][-0.344859,-0.427892,-0.835452][0.652999,0.931867,0][-0.161998,1.65038,-0.34377][-0.314998,0.56442,-0.763024][0.652362,0.920812,0][-0.155216,1.53273,-0.327918][-0.344859,-0.427892,-0.835452][0.652999,0.931867,0][-0.0147042,1.53273,-0.355478][3.4468e-005,-0.4272,-0.904157][0.666202,0.931867,0][-0.0147041,1.3874,-0.214695][0.000120717,-0.38049,-0.924785][0.666202,0.945523,0][-0.0147041,1.3874,-0.214695][0.000120717,-0.38049,-0.924785][0.666202,0.945523,0][-0.0997418,1.3874,-0.197973][-0.352442,-0.381813,-0.854402][0.658212,0.945523,0][-0.155216,1.53273,-0.327918][-0.344859,-0.427892,-0.835452][0.652999,0.931867,0][-0.0997418,1.3874,-0.197973][-0.352442,-0.381813,-0.854402][0.658212,0.945523,0][-0.0147041,1.3874,-0.214695][0.000120717,-0.38049,-0.924785][0.666202,0.945523,0][-0.0147041,1.25591,-0.218129][8.28264e-005,0.640237,-0.768177][0.666202,0.957879,0][-0.0147041,1.25591,-0.218129][8.28264e-005,0.640237,-0.768177][0.666202,0.957879,0][-0.100959,1.25591,-0.201097][-0.293204,0.640823,-0.709491][0.658097,0.957879,0][-0.0997418,1.3874,-0.197973][-0.352442,-0.381813,-0.854402][0.658212,0.945523,0][-0.0147041,1.25591,-0.218129][8.28264e-005,0.640237,-0.768177][0.463867,0.162017,0][0.0715509,1.25591,-0.201097][0.29315,0.640939,-0.709408][0.472129,0.161996,0][0.182065,1.16825,-0.460841][0.0813559,0.97711,-0.196566][0.477655,0.187939,0][0.182065,1.16825,-0.460841][0.0813559,0.97711,-0.196566][0.477655,0.187939,0][-0.0147041,1.16825,-0.499694][0,0.976975,-0.213353][0.458809,0.187987,0][-0.0147041,1.25591,-0.218129][8.28264e-005,0.640237,-0.768177][0.463867,0.162017,0][-0.0147041,1.16825,-0.499694][0,0.976975,-0.213353][0.458809,0.187987,0][0.182065,1.16825,-0.460841][0.0813559,0.97711,-0.196566][0.477655,0.187939,0][0.341098,1.10827,-0.834619][0.059262,0.987891,-0.143382][0.485608,0.22527,0][0.341098,1.10827,-0.834619][0.059262,0.987891,-0.143382][0.485608,0.22527,0][-0.0147042,1.10827,-0.904873][0,0.987835,-0.155508][0.45153,0.225358,0][-0.0147041,1.16825,-0.499694][0,0.976975,-0.213353][0.458809,0.187987,0][-0.0147042,1.10827,-0.904873][0,0.987835,-0.155508][0.45153,0.225358,0][0.341098,1.10827,-0.834619][0.059262,0.987891,-0.143382][0.485608,0.22527,0][0.483958,1.04829,-1.17039][0.132401,0.937895,-0.32066][0.492753,0.258806,0][0.483958,1.04829,-1.17039][0.132401,0.937895,-0.32066][0.492753,0.258806,0][-0.0147042,1.04829,-1.26885][0,0.93772,-0.347391][0.444991,0.258929,0][-0.0147042,1.10827,-0.904873][0,0.987835,-0.155508][0.45153,0.225358,0][-0.0147042,1.04829,-1.26885][0,0.93772,-0.347391][0.444991,0.258929,0][0.483958,1.04829,-1.17039][0.132401,0.937895,-0.32066][0.492753,0.258806,0][0.545954,0.960631,-1.3161][0.185623,0.874881,-0.447356][0.495853,0.273359,0][0.545954,0.960631,-1.3161][0.185623,0.874881,-0.447356][0.495853,0.273359,0][-0.0147042,0.960631,-1.4268][0,0.87437,-0.485259][0.442153,0.273497,0][-0.0147042,1.04829,-1.26885][0,0.93772,-0.347391][0.444991,0.258929,0][0.0715509,1.25591,-0.201097][0.29315,0.640939,-0.709408][0.472129,0.161996,0][0.141324,1.25591,-0.154399][0.542952,0.640553,-0.543043][0.479403,0.158943,0][0.341235,1.16825,-0.35431][0.150261,0.977161,-0.150261][0.49425,0.180972,0][0.341235,1.16825,-0.35431][0.150261,0.977161,-0.150261][0.49425,0.180972,0][0.182065,1.16825,-0.460841][0.0813559,0.97711,-0.196566][0.477655,0.187939,0][0.0715509,1.25591,-0.201097][0.29315,0.640939,-0.709408][0.472129,0.161996,0][0.182065,1.16825,-0.460841][0.0813559,0.97711,-0.196566][0.477655,0.187939,0][0.341235,1.16825,-0.35431][0.150261,0.977161,-0.150261][0.49425,0.180972,0][0.628912,1.10827,-0.641987][0.109526,0.987931,-0.109526][0.515615,0.212674,0][0.628912,1.10827,-0.641987][0.109526,0.987931,-0.109526][0.515615,0.212674,0][0.341098,1.10827,-0.834619][0.059262,0.987891,-0.143382][0.485608,0.22527,0][0.182065,1.16825,-0.460841][0.0813559,0.97711,-0.196566][0.477655,0.187939,0][0.341098,1.10827,-0.834619][0.059262,0.987891,-0.143382][0.485608,0.22527,0][0.628912,1.10827,-0.641987][0.109526,0.987931,-0.109526][0.515615,0.212674,0][0.887334,1.04829,-0.900409][0.24486,0.93813,-0.24486][0.534808,0.241152,0][0.887334,1.04829,-0.900409][0.24486,0.93813,-0.24486][0.534808,0.241152,0][0.483958,1.04829,-1.17039][0.132401,0.937895,-0.32066][0.492753,0.258806,0][0.341098,1.10827,-0.834619][0.059262,0.987891,-0.143382][0.485608,0.22527,0][0.483958,1.04829,-1.17039][0.132401,0.937895,-0.32066][0.492753,0.258806,0][0.887334,1.04829,-0.900409][0.24486,0.93813,-0.24486][0.534808,0.241152,0][0.99948,0.960631,-1.01255][0.342059,0.875209,-0.342059][0.543136,0.25351,0][0.99948,0.960631,-1.01255][0.342059,0.875209,-0.342059][0.543136,0.25351,0][0.545954,0.960631,-1.3161][0.185623,0.874881,-0.447356][0.495853,0.273359,0][0.483958,1.04829,-1.17039][0.132401,0.937895,-0.32066][0.492753,0.258806,0][0.141324,1.25591,-0.154399][0.542952,0.640553,-0.543043][0.479403,0.158943,0][0.188023,1.25591,-0.0846256][0.709491,0.640823,-0.293204][0.484964,0.153346,0][0.447767,1.16825,-0.19514][0.196566,0.97711,-0.0813559][0.506935,0.168206,0][0.447767,1.16825,-0.19514][0.196566,0.97711,-0.0813559][0.506935,0.168206,0][0.341235,1.16825,-0.35431][0.150261,0.977161,-0.150261][0.49425,0.180972,0][0.141324,1.25591,-0.154399][0.542952,0.640553,-0.543043][0.479403,0.158943,0][0.341235,1.16825,-0.35431][0.150261,0.977161,-0.150261][0.49425,0.180972,0][0.447767,1.16825,-0.19514][0.196566,0.97711,-0.0813559][0.506935,0.168206,0][0.821544,1.10827,-0.354173][0.143382,0.987891,-0.059262][0.538553,0.189589,0][0.821544,1.10827,-0.354173][0.143382,0.987891,-0.059262][0.538553,0.189589,0][0.628912,1.10827,-0.641987][0.109526,0.987931,-0.109526][0.515615,0.212674,0][0.341235,1.16825,-0.35431][0.150261,0.977161,-0.150261][0.49425,0.180972,0][0.628912,1.10827,-0.641987][0.109526,0.987931,-0.109526][0.515615,0.212674,0][0.821544,1.10827,-0.354173][0.143382,0.987891,-0.059262][0.538553,0.189589,0][1.15731,1.04829,-0.497033][0.32066,0.937895,-0.132401][0.566955,0.208797,0][1.15731,1.04829,-0.497033][0.32066,0.937895,-0.132401][0.566955,0.208797,0][0.887334,1.04829,-0.900409][0.24486,0.93813,-0.24486][0.534808,0.241152,0][0.628912,1.10827,-0.641987][0.109526,0.987931,-0.109526][0.515615,0.212674,0][0.887334,1.04829,-0.900409][0.24486,0.93813,-0.24486][0.534808,0.241152,0][1.15731,1.04829,-0.497033][0.32066,0.937895,-0.132401][0.566955,0.208797,0][1.30302,0.960631,-0.559029][0.447355,0.874881,-0.185623][0.579281,0.217133,0][1.30302,0.960631,-0.559029][0.447355,0.874881,-0.185623][0.579281,0.217133,0][0.99948,0.960631,-1.01255][0.342059,0.875209,-0.342059][0.543136,0.25351,0][0.887334,1.04829,-0.900409][0.24486,0.93813,-0.24486][0.534808,0.241152,0][0.188023,1.25591,-0.0846256][0.709491,0.640823,-0.293204][0.484964,0.153346,0][0.205054,1.25591,0.00162944][0.768177,0.640237,8.28845e-005][0.488084,0.145697,0][0.486619,1.16825,0.00162943][0.213353,0.976975,0][0.514054,0.150755,0][0.486619,1.16825,0.00162943][0.213353,0.976975,0][0.514054,0.150755,0][0.447767,1.16825,-0.19514][0.196566,0.97711,-0.0813559][0.506935,0.168206,0][0.188023,1.25591,-0.0846256][0.709491,0.640823,-0.293204][0.484964,0.153346,0][0.447767,1.16825,-0.19514][0.196566,0.97711,-0.0813559][0.506935,0.168206,0][0.486619,1.16825,0.00162943][0.213353,0.976975,0][0.514054,0.150755,0][0.891798,1.10827,0.00162941][0.155508,0.987835,0][0.551425,0.158034,0][0.891798,1.10827,0.00162941][0.155508,0.987835,0][0.551425,0.158034,0][0.821544,1.10827,-0.354173][0.143382,0.987891,-0.059262][0.538553,0.189589,0][0.447767,1.16825,-0.19514][0.196566,0.97711,-0.0813559][0.506935,0.168206,0][0.821544,1.10827,-0.354173][0.143382,0.987891,-0.059262][0.538553,0.189589,0][0.891798,1.10827,0.00162941][0.155508,0.987835,0][0.551425,0.158034,0][1.25577,1.04829,0.00162939][0.347391,0.93772,0][0.584995,0.164573,0][1.25577,1.04829,0.00162939][0.347391,0.93772,0][0.584995,0.164573,0][1.15731,1.04829,-0.497033][0.32066,0.937895,-0.132401][0.566955,0.208797,0][0.821544,1.10827,-0.354173][0.143382,0.987891,-0.059262][0.538553,0.189589,0][1.15731,1.04829,-0.497033][0.32066,0.937895,-0.132401][0.566955,0.208797,0][1.25577,1.04829,0.00162939][0.347391,0.93772,0][0.584995,0.164573,0][1.41372,0.960631,0.00162939][0.485259,0.874371,0][0.599564,0.167411,0][1.41372,0.960631,0.00162939][0.485259,0.874371,0][0.599564,0.167411,0][1.30302,0.960631,-0.559029][0.447355,0.874881,-0.185623][0.579281,0.217133,0][1.15731,1.04829,-0.497033][0.32066,0.937895,-0.132401][0.566955,0.208797,0][0.205054,1.25591,0.00162944][0.768177,0.640237,8.28845e-005][0.488084,0.145697,0][0.188023,1.25591,0.0878845][0.709408,0.640939,0.29315][0.488063,0.137435,0][0.447767,1.16825,0.198399][0.196566,0.97711,0.0813559][0.514005,0.131908,0][0.447767,1.16825,0.198399][0.196566,0.97711,0.0813559][0.514005,0.131908,0][0.486619,1.16825,0.00162943][0.213353,0.976975,0][0.514054,0.150755,0][0.205054,1.25591,0.00162944][0.768177,0.640237,8.28845e-005][0.488084,0.145697,0][0.486619,1.16825,0.00162943][0.213353,0.976975,0][0.514054,0.150755,0][0.447767,1.16825,0.198399][0.196566,0.97711,0.0813559][0.514005,0.131908,0][0.821544,1.10827,0.357432][0.143382,0.987891,0.059262][0.551337,0.123955,0][0.821544,1.10827,0.357432][0.143382,0.987891,0.059262][0.551337,0.123955,0][0.891798,1.10827,0.00162941][0.155508,0.987835,0][0.551425,0.158034,0][0.486619,1.16825,0.00162943][0.213353,0.976975,0][0.514054,0.150755,0][0.891798,1.10827,0.00162941][0.155508,0.987835,0][0.551425,0.158034,0][0.821544,1.10827,0.357432][0.143382,0.987891,0.059262][0.551337,0.123955,0][1.15731,1.04829,0.500291][0.32066,0.937895,0.132401][0.584872,0.116811,0][1.15731,1.04829,0.500291][0.32066,0.937895,0.132401][0.584872,0.116811,0][1.25577,1.04829,0.00162939][0.347391,0.93772,0][0.584995,0.164573,0][0.891798,1.10827,0.00162941][0.155508,0.987835,0][0.551425,0.158034,0][1.25577,1.04829,0.00162939][0.347391,0.93772,0][0.584995,0.164573,0][1.15731,1.04829,0.500291][0.32066,0.937895,0.132401][0.584872,0.116811,0][1.30302,0.960631,0.562287][0.447355,0.874881,0.185623][0.599425,0.11371,0][1.30302,0.960631,0.562287][0.447355,0.874881,0.185623][0.599425,0.11371,0][1.41372,0.960631,0.00162939][0.485259,0.874371,0][0.599564,0.167411,0][1.25577,1.04829,0.00162939][0.347391,0.93772,0][0.584995,0.164573,0][0.188023,1.25591,0.0878845][0.709408,0.640939,0.29315][0.488063,0.137435,0][0.141324,1.25591,0.157658][0.543043,0.640553,0.542952][0.485009,0.130161,0][0.341235,1.16825,0.357569][0.150261,0.977161,0.150261][0.507039,0.115314,0][0.341235,1.16825,0.357569][0.150261,0.977161,0.150261][0.507039,0.115314,0][0.447767,1.16825,0.198399][0.196566,0.97711,0.0813559][0.514005,0.131908,0][0.188023,1.25591,0.0878845][0.709408,0.640939,0.29315][0.488063,0.137435,0][0.447767,1.16825,0.198399][0.196566,0.97711,0.0813559][0.514005,0.131908,0][0.341235,1.16825,0.357569][0.150261,0.977161,0.150261][0.507039,0.115314,0][0.628913,1.10827,0.645246][0.109526,0.987931,0.109526][0.538741,0.0939484,0][0.628913,1.10827,0.645246][0.109526,0.987931,0.109526][0.538741,0.0939484,0][0.821544,1.10827,0.357432][0.143382,0.987891,0.059262][0.551337,0.123955,0][0.447767,1.16825,0.198399][0.196566,0.97711,0.0813559][0.514005,0.131908,0][0.821544,1.10827,0.357432][0.143382,0.987891,0.059262][0.551337,0.123955,0][0.628913,1.10827,0.645246][0.109526,0.987931,0.109526][0.538741,0.0939484,0][0.887334,1.04829,0.903668][0.24486,0.93813,0.24486][0.567218,0.0747559,0][0.887334,1.04829,0.903668][0.24486,0.93813,0.24486][0.567218,0.0747559,0][1.15731,1.04829,0.500291][0.32066,0.937895,0.132401][0.584872,0.116811,0][0.821544,1.10827,0.357432][0.143382,0.987891,0.059262][0.551337,0.123955,0][1.15731,1.04829,0.500291][0.32066,0.937895,0.132401][0.584872,0.116811,0][0.887334,1.04829,0.903668][0.24486,0.93813,0.24486][0.567218,0.0747559,0][0.99948,0.960631,1.01581][0.342059,0.875209,0.342059][0.579577,0.0664271,0][0.99948,0.960631,1.01581][0.342059,0.875209,0.342059][0.579577,0.0664271,0][1.30302,0.960631,0.562287][0.447355,0.874881,0.185623][0.599425,0.11371,0][1.15731,1.04829,0.500291][0.32066,0.937895,0.132401][0.584872,0.116811,0][0.141324,1.25591,0.157658][0.543043,0.640553,0.542952][0.485009,0.130161,0][0.071551,1.25591,0.204356][0.293204,0.640823,0.70949][0.479413,0.1246,0][0.182065,1.16825,0.4641][0.0813559,0.97711,0.196566][0.494272,0.102628,0][0.182065,1.16825,0.4641][0.0813559,0.97711,0.196566][0.494272,0.102628,0][0.341235,1.16825,0.357569][0.150261,0.977161,0.150261][0.507039,0.115314,0][0.141324,1.25591,0.157658][0.543043,0.640553,0.542952][0.485009,0.130161,0][0.341235,1.16825,0.357569][0.150261,0.977161,0.150261][0.507039,0.115314,0][0.182065,1.16825,0.4641][0.0813559,0.97711,0.196566][0.494272,0.102628,0][0.341098,1.10827,0.837878][0.059262,0.987891,0.143382][0.515655,0.0710107,0][0.341098,1.10827,0.837878][0.059262,0.987891,0.143382][0.515655,0.0710107,0][0.628913,1.10827,0.645246][0.109526,0.987931,0.109526][0.538741,0.0939484,0][0.341235,1.16825,0.357569][0.150261,0.977161,0.150261][0.507039,0.115314,0][0.628913,1.10827,0.645246][0.109526,0.987931,0.109526][0.538741,0.0939484,0][0.341098,1.10827,0.837878][0.059262,0.987891,0.143382][0.515655,0.0710107,0][0.483958,1.04829,1.17364][0.132401,0.937895,0.32066][0.534864,0.0426084,0][0.483958,1.04829,1.17364][0.132401,0.937895,0.32066][0.534864,0.0426084,0][0.887334,1.04829,0.903668][0.24486,0.93813,0.24486][0.567218,0.0747559,0][0.628913,1.10827,0.645246][0.109526,0.987931,0.109526][0.538741,0.0939484,0][0.887334,1.04829,0.903668][0.24486,0.93813,0.24486][0.567218,0.0747559,0][0.483958,1.04829,1.17364][0.132401,0.937895,0.32066][0.534864,0.0426084,0][0.545954,0.960631,1.31935][0.185623,0.874881,0.447356][0.5432,0.0302829,0][0.545954,0.960631,1.31935][0.185623,0.874881,0.447356][0.5432,0.0302829,0][0.99948,0.960631,1.01581][0.342059,0.875209,0.342059][0.579577,0.0664271,0][0.887334,1.04829,0.903668][0.24486,0.93813,0.24486][0.567218,0.0747559,0][0.071551,1.25591,0.204356][0.293204,0.640823,0.70949][0.479413,0.1246,0][-0.0147041,1.25591,0.221388][-8.28304e-005,0.640237,0.768177][0.471763,0.121479,0][-0.0147041,1.16825,0.502953][0,0.976975,0.213353][0.476822,0.0955098,0][-0.0147041,1.16825,0.502953][0,0.976975,0.213353][0.476822,0.0955098,0][0.182065,1.16825,0.4641][0.0813559,0.97711,0.196566][0.494272,0.102628,0][0.071551,1.25591,0.204356][0.293204,0.640823,0.70949][0.479413,0.1246,0][0.182065,1.16825,0.4641][0.0813559,0.97711,0.196566][0.494272,0.102628,0][-0.0147041,1.16825,0.502953][0,0.976975,0.213353][0.476822,0.0955098,0][-0.0147041,1.10827,0.908132][0,0.987835,0.155508][0.484101,0.0581389,0][-0.0147041,1.10827,0.908132][0,0.987835,0.155508][0.484101,0.0581389,0][0.341098,1.10827,0.837878][0.059262,0.987891,0.143382][0.515655,0.0710107,0][0.182065,1.16825,0.4641][0.0813559,0.97711,0.196566][0.494272,0.102628,0][0.341098,1.10827,0.837878][0.059262,0.987891,0.143382][0.515655,0.0710107,0][-0.0147041,1.10827,0.908132][0,0.987835,0.155508][0.484101,0.0581389,0][-0.0147041,1.04829,1.27211][0,0.93772,0.347391][0.49064,0.0245683,0][-0.0147041,1.04829,1.27211][0,0.93772,0.347391][0.49064,0.0245683,0][0.483958,1.04829,1.17364][0.132401,0.937895,0.32066][0.534864,0.0426084,0][0.341098,1.10827,0.837878][0.059262,0.987891,0.143382][0.515655,0.0710107,0][0.483958,1.04829,1.17364][0.132401,0.937895,0.32066][0.534864,0.0426084,0][-0.0147041,1.04829,1.27211][0,0.93772,0.347391][0.49064,0.0245683,0][-0.0147041,0.960631,1.43006][0,0.874371,0.485259][0.493477,0.01,0][-0.0147041,0.960631,1.43006][0,0.874371,0.485259][0.493477,0.01,0][0.545954,0.960631,1.31935][0.185623,0.874881,0.447356][0.5432,0.0302829,0][0.483958,1.04829,1.17364][0.132401,0.937895,0.32066][0.534864,0.0426084,0][-0.0147041,1.25591,0.221388][-8.28304e-005,0.640237,0.768177][0.471763,0.121479,0][-0.100959,1.25591,0.204356][-0.29315,0.640939,0.709408][0.463502,0.121501,0][-0.211473,1.16825,0.4641][-0.0813559,0.97711,0.196566][0.457975,0.0955583,0][-0.211473,1.16825,0.4641][-0.0813559,0.97711,0.196566][0.457975,0.0955583,0][-0.0147041,1.16825,0.502953][0,0.976975,0.213353][0.476822,0.0955098,0][-0.0147041,1.25591,0.221388][-8.28304e-005,0.640237,0.768177][0.471763,0.121479,0][-0.0147041,1.16825,0.502953][0,0.976975,0.213353][0.476822,0.0955098,0][-0.211473,1.16825,0.4641][-0.0813559,0.97711,0.196566][0.457975,0.0955583,0][-0.370506,1.10827,0.837878][-0.059262,0.987891,0.143382][0.450022,0.0582265,0][-0.370506,1.10827,0.837878][-0.059262,0.987891,0.143382][0.450022,0.0582265,0][-0.0147041,1.10827,0.908132][0,0.987835,0.155508][0.484101,0.0581389,0][-0.0147041,1.16825,0.502953][0,0.976975,0.213353][0.476822,0.0955098,0][-0.0147041,1.10827,0.908132][0,0.987835,0.155508][0.484101,0.0581389,0][-0.370506,1.10827,0.837878][-0.059262,0.987891,0.143382][0.450022,0.0582265,0][-0.513366,1.04829,1.17364][-0.132401,0.937895,0.32066][0.442877,0.0246912,0][-0.513366,1.04829,1.17364][-0.132401,0.937895,0.32066][0.442877,0.0246912,0][-0.0147041,1.04829,1.27211][0,0.93772,0.347391][0.49064,0.0245683,0][-0.0147041,1.10827,0.908132][0,0.987835,0.155508][0.484101,0.0581389,0][-0.0147041,1.04829,1.27211][0,0.93772,0.347391][0.49064,0.0245683,0][-0.513366,1.04829,1.17364][-0.132401,0.937895,0.32066][0.442877,0.0246912,0][-0.575362,0.960631,1.31935][-0.185623,0.874881,0.447356][0.439777,0.0101381,0][-0.575362,0.960631,1.31935][-0.185623,0.874881,0.447356][0.439777,0.0101381,0][-0.0147041,0.960631,1.43006][0,0.874371,0.485259][0.493477,0.01,0][-0.0147041,1.04829,1.27211][0,0.93772,0.347391][0.49064,0.0245683,0][-0.100959,1.25591,0.204356][-0.29315,0.640939,0.709408][0.463502,0.121501,0][-0.170732,1.25591,0.157658][-0.542952,0.640553,0.543043][0.456227,0.124554,0][-0.370644,1.16825,0.357569][-0.150261,0.977161,0.150261][0.44138,0.102524,0][-0.370644,1.16825,0.357569][-0.150261,0.977161,0.150261][0.44138,0.102524,0][-0.211473,1.16825,0.4641][-0.0813559,0.97711,0.196566][0.457975,0.0955583,0][-0.100959,1.25591,0.204356][-0.29315,0.640939,0.709408][0.463502,0.121501,0][-0.211473,1.16825,0.4641][-0.0813559,0.97711,0.196566][0.457975,0.0955583,0][-0.370644,1.16825,0.357569][-0.150261,0.977161,0.150261][0.44138,0.102524,0][-0.658321,1.10827,0.645246][-0.109526,0.987931,0.109526][0.420015,0.0708229,0][-0.658321,1.10827,0.645246][-0.109526,0.987931,0.109526][0.420015,0.0708229,0][-0.370506,1.10827,0.837878][-0.059262,0.987891,0.143382][0.450022,0.0582265,0][-0.211473,1.16825,0.4641][-0.0813559,0.97711,0.196566][0.457975,0.0955583,0][-0.370506,1.10827,0.837878][-0.059262,0.987891,0.143382][0.450022,0.0582265,0][-0.658321,1.10827,0.645246][-0.109526,0.987931,0.109526][0.420015,0.0708229,0][-0.916743,1.04829,0.903668][-0.24486,0.93813,0.24486][0.400823,0.0423452,0][-0.916743,1.04829,0.903668][-0.24486,0.93813,0.24486][0.400823,0.0423452,0][-0.513366,1.04829,1.17364][-0.132401,0.937895,0.32066][0.442877,0.0246912,0][-0.370506,1.10827,0.837878][-0.059262,0.987891,0.143382][0.450022,0.0582265,0][-0.513366,1.04829,1.17364][-0.132401,0.937895,0.32066][0.442877,0.0246912,0][-0.916743,1.04829,0.903668][-0.24486,0.93813,0.24486][0.400823,0.0423452,0][-1.02889,0.960631,1.01581][-0.34206,0.875209,0.34206][0.392494,0.029987,0][-1.02889,0.960631,1.01581][-0.34206,0.875209,0.34206][0.392494,0.029987,0][-0.575362,0.960631,1.31935][-0.185623,0.874881,0.447356][0.439777,0.0101381,0][-0.513366,1.04829,1.17364][-0.132401,0.937895,0.32066][0.442877,0.0246912,0][-0.170732,1.25591,0.157658][-0.542952,0.640553,0.543043][0.456227,0.124554,0][-0.217431,1.25591,0.0878845][-0.70949,0.640823,0.293204][0.450667,0.130151,0][-0.477175,1.16825,0.198399][-0.196566,0.97711,0.0813559][0.428695,0.115291,0][-0.477175,1.16825,0.198399][-0.196566,0.97711,0.0813559][0.428695,0.115291,0][-0.370644,1.16825,0.357569][-0.150261,0.977161,0.150261][0.44138,0.102524,0][-0.170732,1.25591,0.157658][-0.542952,0.640553,0.543043][0.456227,0.124554,0][-0.370644,1.16825,0.357569][-0.150261,0.977161,0.150261][0.44138,0.102524,0][-0.477175,1.16825,0.198399][-0.196566,0.97711,0.0813559][0.428695,0.115291,0][-0.850953,1.10827,0.357432][-0.143382,0.987891,0.059262][0.397077,0.0939083,0][-0.850953,1.10827,0.357432][-0.143382,0.987891,0.059262][0.397077,0.0939083,0][-0.658321,1.10827,0.645246][-0.109526,0.987931,0.109526][0.420015,0.0708229,0][-0.370644,1.16825,0.357569][-0.150261,0.977161,0.150261][0.44138,0.102524,0][-0.658321,1.10827,0.645246][-0.109526,0.987931,0.109526][0.420015,0.0708229,0][-0.850953,1.10827,0.357432][-0.143382,0.987891,0.059262][0.397077,0.0939083,0][-1.18672,1.04829,0.500292][-0.32066,0.937895,0.132401][0.368675,0.0746997,0][-1.18672,1.04829,0.500292][-0.32066,0.937895,0.132401][0.368675,0.0746997,0][-0.916743,1.04829,0.903668][-0.24486,0.93813,0.24486][0.400823,0.0423452,0][-0.658321,1.10827,0.645246][-0.109526,0.987931,0.109526][0.420015,0.0708229,0][-0.916743,1.04829,0.903668][-0.24486,0.93813,0.24486][0.400823,0.0423452,0][-1.18672,1.04829,0.500292][-0.32066,0.937895,0.132401][0.368675,0.0746997,0][-1.33243,0.960631,0.562287][-0.447356,0.874881,0.185623][0.356349,0.0663639,0][-1.33243,0.960631,0.562287][-0.447356,0.874881,0.185623][0.356349,0.0663639,0][-1.02889,0.960631,1.01581][-0.34206,0.875209,0.34206][0.392494,0.029987,0][-0.916743,1.04829,0.903668][-0.24486,0.93813,0.24486][0.400823,0.0423452,0][-0.217431,1.25591,0.0878845][-0.70949,0.640823,0.293204][0.450667,0.130151,0][-0.234462,1.25591,0.00162946][-0.768177,0.640237,-8.28836e-005][0.447546,0.1378,0][-0.516027,1.16825,0.00162947][-0.213353,0.976975,0][0.421576,0.132742,0][-0.516027,1.16825,0.00162947][-0.213353,0.976975,0][0.421576,0.132742,0][-0.477175,1.16825,0.198399][-0.196566,0.97711,0.0813559][0.428695,0.115291,0][-0.217431,1.25591,0.0878845][-0.70949,0.640823,0.293204][0.450667,0.130151,0][-0.477175,1.16825,0.198399][-0.196566,0.97711,0.0813559][0.428695,0.115291,0][-0.516027,1.16825,0.00162947][-0.213353,0.976975,0][0.421576,0.132742,0][-0.921206,1.10827,0.00162949][-0.155508,0.987835,0][0.384205,0.125463,0][-0.921206,1.10827,0.00162949][-0.155508,0.987835,0][0.384205,0.125463,0][-0.850953,1.10827,0.357432][-0.143382,0.987891,0.059262][0.397077,0.0939083,0][-0.477175,1.16825,0.198399][-0.196566,0.97711,0.0813559][0.428695,0.115291,0][-0.850953,1.10827,0.357432][-0.143382,0.987891,0.059262][0.397077,0.0939083,0][-0.921206,1.10827,0.00162949][-0.155508,0.987835,0][0.384205,0.125463,0][-1.28518,1.04829,0.00162951][-0.347391,0.93772,0][0.350635,0.118924,0][-1.28518,1.04829,0.00162951][-0.347391,0.93772,0][0.350635,0.118924,0][-1.18672,1.04829,0.500292][-0.32066,0.937895,0.132401][0.368675,0.0746997,0][-0.850953,1.10827,0.357432][-0.143382,0.987891,0.059262][0.397077,0.0939083,0][-1.18672,1.04829,0.500292][-0.32066,0.937895,0.132401][0.368675,0.0746997,0][-1.28518,1.04829,0.00162951][-0.347391,0.93772,0][0.350635,0.118924,0][-1.44313,0.960631,0.00162951][-0.485259,0.87437,0][0.336067,0.116086,0][-1.44313,0.960631,0.00162951][-0.485259,0.87437,0][0.336067,0.116086,0][-1.33243,0.960631,0.562287][-0.447356,0.874881,0.185623][0.356349,0.0663639,0][-1.18672,1.04829,0.500292][-0.32066,0.937895,0.132401][0.368675,0.0746997,0][-0.234462,1.25591,0.00162946][-0.768177,0.640237,-8.28836e-005][0.447546,0.1378,0][-0.217431,1.25591,-0.0846256][-0.709408,0.640939,-0.29315][0.447567,0.146062,0][-0.477175,1.16825,-0.19514][-0.196566,0.97711,-0.0813559][0.421625,0.151589,0][-0.477175,1.16825,-0.19514][-0.196566,0.97711,-0.0813559][0.421625,0.151589,0][-0.516027,1.16825,0.00162947][-0.213353,0.976975,0][0.421576,0.132742,0][-0.234462,1.25591,0.00162946][-0.768177,0.640237,-8.28836e-005][0.447546,0.1378,0][-0.516027,1.16825,0.00162947][-0.213353,0.976975,0][0.421576,0.132742,0][-0.477175,1.16825,-0.19514][-0.196566,0.97711,-0.0813559][0.421625,0.151589,0][-0.850953,1.10827,-0.354173][-0.143382,0.987891,-0.059262][0.384293,0.159542,0][-0.850953,1.10827,-0.354173][-0.143382,0.987891,-0.059262][0.384293,0.159542,0][-0.921206,1.10827,0.00162949][-0.155508,0.987835,0][0.384205,0.125463,0][-0.516027,1.16825,0.00162947][-0.213353,0.976975,0][0.421576,0.132742,0][-0.921206,1.10827,0.00162949][-0.155508,0.987835,0][0.384205,0.125463,0][-0.850953,1.10827,-0.354173][-0.143382,0.987891,-0.059262][0.384293,0.159542,0][-1.18672,1.04829,-0.497033][-0.32066,0.937895,-0.132401][0.350758,0.166686,0][-1.18672,1.04829,-0.497033][-0.32066,0.937895,-0.132401][0.350758,0.166686,0][-1.28518,1.04829,0.00162951][-0.347391,0.93772,0][0.350635,0.118924,0][-0.921206,1.10827,0.00162949][-0.155508,0.987835,0][0.384205,0.125463,0][-1.28518,1.04829,0.00162951][-0.347391,0.93772,0][0.350635,0.118924,0][-1.18672,1.04829,-0.497033][-0.32066,0.937895,-0.132401][0.350758,0.166686,0][-1.33243,0.960631,-0.559028][-0.447356,0.874881,-0.185623][0.336205,0.169786,0][-1.33243,0.960631,-0.559028][-0.447356,0.874881,-0.185623][0.336205,0.169786,0][-1.44313,0.960631,0.00162951][-0.485259,0.87437,0][0.336067,0.116086,0][-1.28518,1.04829,0.00162951][-0.347391,0.93772,0][0.350635,0.118924,0][-0.217431,1.25591,-0.0846256][-0.709408,0.640939,-0.29315][0.447567,0.146062,0][-0.170732,1.25591,-0.154399][-0.543043,0.640553,-0.542952][0.450621,0.153336,0][-0.370644,1.16825,-0.35431][-0.150261,0.977161,-0.150261][0.428591,0.168183,0][-0.370644,1.16825,-0.35431][-0.150261,0.977161,-0.150261][0.428591,0.168183,0][-0.477175,1.16825,-0.19514][-0.196566,0.97711,-0.0813559][0.421625,0.151589,0][-0.217431,1.25591,-0.0846256][-0.709408,0.640939,-0.29315][0.447567,0.146062,0][-0.477175,1.16825,-0.19514][-0.196566,0.97711,-0.0813559][0.421625,0.151589,0][-0.370644,1.16825,-0.35431][-0.150261,0.977161,-0.150261][0.428591,0.168183,0][-0.658321,1.10827,-0.641987][-0.109526,0.987931,-0.109526][0.39689,0.189549,0][-0.658321,1.10827,-0.641987][-0.109526,0.987931,-0.109526][0.39689,0.189549,0][-0.850953,1.10827,-0.354173][-0.143382,0.987891,-0.059262][0.384293,0.159542,0][-0.477175,1.16825,-0.19514][-0.196566,0.97711,-0.0813559][0.421625,0.151589,0][-0.850953,1.10827,-0.354173][-0.143382,0.987891,-0.059262][0.384293,0.159542,0][-0.658321,1.10827,-0.641987][-0.109526,0.987931,-0.109526][0.39689,0.189549,0][-0.916743,1.04829,-0.900409][-0.24486,0.93813,-0.24486][0.368412,0.208741,0][-0.916743,1.04829,-0.900409][-0.24486,0.93813,-0.24486][0.368412,0.208741,0][-1.18672,1.04829,-0.497033][-0.32066,0.937895,-0.132401][0.350758,0.166686,0][-0.850953,1.10827,-0.354173][-0.143382,0.987891,-0.059262][0.384293,0.159542,0][-1.18672,1.04829,-0.497033][-0.32066,0.937895,-0.132401][0.350758,0.166686,0][-0.916743,1.04829,-0.900409][-0.24486,0.93813,-0.24486][0.368412,0.208741,0][-1.02889,0.960631,-1.01255][-0.342059,0.875209,-0.342059][0.356054,0.21707,0][-1.02889,0.960631,-1.01255][-0.342059,0.875209,-0.342059][0.356054,0.21707,0][-1.33243,0.960631,-0.559028][-0.447356,0.874881,-0.185623][0.336205,0.169786,0][-1.18672,1.04829,-0.497033][-0.32066,0.937895,-0.132401][0.350758,0.166686,0][-0.170732,1.25591,-0.154399][-0.543043,0.640553,-0.542952][0.450621,0.153336,0][-0.100959,1.25591,-0.201097][-0.293204,0.640823,-0.709491][0.456217,0.158897,0][-0.211474,1.16825,-0.460841][-0.0813559,0.97711,-0.196566][0.441358,0.180869,0][-0.211474,1.16825,-0.460841][-0.0813559,0.97711,-0.196566][0.441358,0.180869,0][-0.370644,1.16825,-0.35431][-0.150261,0.977161,-0.150261][0.428591,0.168183,0][-0.170732,1.25591,-0.154399][-0.543043,0.640553,-0.542952][0.450621,0.153336,0][-0.370644,1.16825,-0.35431][-0.150261,0.977161,-0.150261][0.428591,0.168183,0][-0.211474,1.16825,-0.460841][-0.0813559,0.97711,-0.196566][0.441358,0.180869,0][-0.370506,1.10827,-0.834619][-0.059262,0.987891,-0.143382][0.419975,0.212486,0][-0.370506,1.10827,-0.834619][-0.059262,0.987891,-0.143382][0.419975,0.212486,0][-0.658321,1.10827,-0.641987][-0.109526,0.987931,-0.109526][0.39689,0.189549,0][-0.370644,1.16825,-0.35431][-0.150261,0.977161,-0.150261][0.428591,0.168183,0][-0.658321,1.10827,-0.641987][-0.109526,0.987931,-0.109526][0.39689,0.189549,0][-0.370506,1.10827,-0.834619][-0.059262,0.987891,-0.143382][0.419975,0.212486,0][-0.513366,1.04829,-1.17039][-0.132401,0.937895,-0.32066][0.400766,0.240889,0][-0.513366,1.04829,-1.17039][-0.132401,0.937895,-0.32066][0.400766,0.240889,0][-0.916743,1.04829,-0.900409][-0.24486,0.93813,-0.24486][0.368412,0.208741,0][-0.658321,1.10827,-0.641987][-0.109526,0.987931,-0.109526][0.39689,0.189549,0][-0.916743,1.04829,-0.900409][-0.24486,0.93813,-0.24486][0.368412,0.208741,0][-0.513366,1.04829,-1.17039][-0.132401,0.937895,-0.32066][0.400766,0.240889,0][-0.575362,0.960631,-1.3161][-0.185623,0.874881,-0.447355][0.392431,0.253214,0][-0.575362,0.960631,-1.3161][-0.185623,0.874881,-0.447355][0.392431,0.253214,0][-1.02889,0.960631,-1.01255][-0.342059,0.875209,-0.342059][0.356054,0.21707,0][-0.916743,1.04829,-0.900409][-0.24486,0.93813,-0.24486][0.368412,0.208741,0][-0.100959,1.25591,-0.201097][-0.293204,0.640823,-0.709491][0.456217,0.158897,0][-0.0147041,1.25591,-0.218129][8.28264e-005,0.640237,-0.768177][0.463867,0.162017,0][-0.0147041,1.16825,-0.499694][0,0.976975,-0.213353][0.458809,0.187987,0][-0.0147041,1.16825,-0.499694][0,0.976975,-0.213353][0.458809,0.187987,0][-0.211474,1.16825,-0.460841][-0.0813559,0.97711,-0.196566][0.441358,0.180869,0][-0.100959,1.25591,-0.201097][-0.293204,0.640823,-0.709491][0.456217,0.158897,0][-0.211474,1.16825,-0.460841][-0.0813559,0.97711,-0.196566][0.441358,0.180869,0][-0.0147041,1.16825,-0.499694][0,0.976975,-0.213353][0.458809,0.187987,0][-0.0147042,1.10827,-0.904873][0,0.987835,-0.155508][0.45153,0.225358,0][-0.0147042,1.10827,-0.904873][0,0.987835,-0.155508][0.45153,0.225358,0][-0.370506,1.10827,-0.834619][-0.059262,0.987891,-0.143382][0.419975,0.212486,0][-0.211474,1.16825,-0.460841][-0.0813559,0.97711,-0.196566][0.441358,0.180869,0][-0.370506,1.10827,-0.834619][-0.059262,0.987891,-0.143382][0.419975,0.212486,0][-0.0147042,1.10827,-0.904873][0,0.987835,-0.155508][0.45153,0.225358,0][-0.0147042,1.04829,-1.26885][0,0.93772,-0.347391][0.444991,0.258929,0][-0.0147042,1.04829,-1.26885][0,0.93772,-0.347391][0.444991,0.258929,0][-0.513366,1.04829,-1.17039][-0.132401,0.937895,-0.32066][0.400766,0.240889,0][-0.370506,1.10827,-0.834619][-0.059262,0.987891,-0.143382][0.419975,0.212486,0][-0.513366,1.04829,-1.17039][-0.132401,0.937895,-0.32066][0.400766,0.240889,0][-0.0147042,1.04829,-1.26885][0,0.93772,-0.347391][0.444991,0.258929,0][-0.0147042,0.960631,-1.4268][0,0.87437,-0.485259][0.442153,0.273497,0][-0.0147042,0.960631,-1.4268][0,0.87437,-0.485259][0.442153,0.273497,0][-0.575362,0.960631,-1.3161][-0.185623,0.874881,-0.447355][0.392431,0.253214,0][-0.513366,1.04829,-1.17039][-0.132401,0.937895,-0.32066][0.400766,0.240889,0] \ No newline at end of file diff --git a/charcustom/hats/fonts/Lightbulb.mesh b/charcustom/hats/fonts/Lightbulb.mesh new file mode 100644 index 0000000..248505b --- /dev/null +++ b/charcustom/hats/fonts/Lightbulb.mesh @@ -0,0 +1,3 @@ +version 1.00 +624 +[-0.16743,-0.327519,-0.40638][-0.353199,-0.384911,-0.852698][0.675781,0.117188,-0.116257][-0.310132,-0.327519,-0.31103][-0.652627,-0.384911,-0.652627][0.675781,0.148438,-0.214816][-0.460291,0.0729345,-0.461188][-0.64362,-0.414133,-0.64362][0.578125,0.101563,-0.318525][-0.460291,0.0729345,-0.461188][-0.64362,-0.414133,-0.64362][0.578125,0.101563,-0.318525][-0.248696,0.0729344,-0.602572][-0.348325,-0.414133,-0.84093][0.578125,0.0585938,-0.172384][-0.16743,-0.327519,-0.40638][-0.353199,-0.384911,-0.852698][0.675781,0.117188,-0.116257][0.623939,0.635877,0.258072][0.88178,0.298429,0.365245][0.445313,0.316406,0.43031][0.477753,0.635877,0.476855][0.674886,0.298428,0.674885][0.445313,0.382813,0.329345][0.512804,0.345107,0.511906][0.707044,0.0132929,0.707044][0.511719,0.394531,0.353553][0.512804,0.345107,0.511906][0.707044,0.0132929,0.707044][0.511719,0.394531,0.353553][0.669735,0.345107,0.277041][0.923798,0.0132928,0.38265][0.511719,0.324219,0.46194][0.623939,0.635877,0.258072][0.88178,0.298429,0.365245][0.445313,0.316406,0.43031][0.000897694,0.345107,0.723944][1.19727e-007,0.0132926,0.999912][0.511719,0.457031,0][0.277939,0.345107,0.668837][0.38265,0.0132929,0.923798][0.511719,0.441406,0.191342][0.25897,0.635877,0.623041][0.365246,0.298429,0.88178][0.445313,0.425781,0.17824][0.25897,0.635877,0.623041][0.365246,0.298429,0.88178][0.445313,0.425781,0.17824][0.000897726,0.635877,0.674375][0,0.298429,0.954432][0.445313,0.441406,0][0.000897694,0.345107,0.723944][1.19727e-007,0.0132926,0.999912][0.511719,0.457031,0][-0.232111,0.772345,-0.562533][-0.325709,0.524976,-0.78633][0.410156,0.0703125,-0.16093][-0.429646,0.772345,-0.430544][-0.601831,0.524976,-0.601831][0.410156,0.113281,-0.29736][-0.36142,0.893508,-0.362317][-0.499509,0.707801,-0.499508][0.382813,0.132813,-0.250239][-0.36142,0.893508,-0.362317][-0.499509,0.707801,-0.499508][0.382813,0.132813,-0.250239][-0.195187,0.893508,-0.473391][-0.270332,0.707801,-0.652639][0.382813,0.0976563,-0.135428][-0.232111,0.772345,-0.562533][-0.325709,0.524976,-0.78633][0.410156,0.0703125,-0.16093][0.250491,0.0729344,-0.602572][0.348325,-0.414133,-0.84093][0.578125,0.0585938,0.172384][0.462086,0.0729345,-0.461189][0.64362,-0.414133,-0.64362][0.578125,0.101563,0.318525][0.311927,-0.327519,-0.31103][0.652627,-0.384911,-0.652627][0.675781,0.148438,0.214816][0.311927,-0.327519,-0.31103][0.652627,-0.384911,-0.652627][0.675781,0.148438,0.214816][0.169226,-0.327519,-0.40638][0.353199,-0.384911,-0.852698][0.675781,0.117188,0.116257][0.250491,0.0729344,-0.602572][0.348325,-0.414133,-0.84093][0.578125,0.0585938,0.172384][-0.651321,0.0729345,0][-0.910216,-0.414133,0][0.578125,0.242188,-0.450462][-0.601674,0.0729345,-0.249593][-0.84093,-0.414133,-0.348325][0.578125,0.164063,-0.416173][-0.405482,-0.327519,-0.168328][-0.852698,-0.384911,-0.353199][0.675781,0.191406,-0.28067][-0.405482,-0.327519,-0.168328][-0.852698,-0.384911,-0.353199][0.675781,0.191406,-0.28067][-0.438965,-0.327519,-1.46683e-007][-0.922954,-0.384911,0][0.675781,0.242188,-0.303795][-0.651321,0.0729345,0][-0.910216,-0.414133,0][0.578125,0.242188,-0.450462][0.246627,-0.965871,0.176325][1.35231,-0.00144864,1.27655][0.6083,0.688659,0.312711][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][0.194272,-0.719567,0.232066][1.33849,0.0407036,1.07731][0.640199,0.973616,0.246328][0.194272,-0.719567,0.232066][1.33849,0.0407036,1.07731][0.640199,0.973616,0.246328][0.163394,-0.965871,0.254501][0.970792,-0.0275618,1.0336][0.653037,0.688659,0.207176][0.246627,-0.965871,0.176325][1.35231,-0.00144864,1.27655][0.6083,0.688659,0.312711][-0.288513,-0.960096,-0.0028613][3.00199,0.06237,-0.0483578][0.505756,0.69534,-0.365821][-0.268272,-0.705625,-0.10902][1.1485,2.47468e-007,0.218978][0.445005,0.989746,-0.340156][-0.288513,-0.705625,-0.00286175][3.03692,-5.21966e-007,-0.191204][0.505756,0.989746,-0.365821][-0.288513,-0.705625,-0.00286175][3.03692,-5.21966e-007,-0.191204][0.505756,0.989746,-0.365821][-0.233412,-0.960096,0.166723][2.41721,-2.75652e-006,-1.7562][0.602804,0.69534,-0.295955][-0.288513,-0.960096,-0.0028613][3.00199,0.06237,-0.0483578][0.505756,0.69534,-0.365821][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][0.252869,-0.705625,-0.141775][-2.77201,0.0637778,1.22947][0.42626,0.989746,0.320626][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.154639,-0.960096,-0.24643][-0.979475,0.0254762,1.04282][0.366369,0.69534,0.196075][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][-0.246627,-0.965871,-0.182046][-1.37657,-6.31965e-007,-0.756612][0.403214,0.688659,-0.312711][-0.283462,-0.965871,-0.115029][-2.91863,0.0421445,-1.04847][0.441566,0.688659,-0.359416][-0.283462,-0.965871,-0.115029][-2.91863,0.0421445,-1.04847][0.441566,0.688659,-0.359416][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.194273,-0.965871,-0.237786][0.683008,-0.027566,-1.24268][0.371316,0.688659,0.246329][0.0942034,-0.965871,-0.292787][0.778766,-0.0158284,-1.53491][0.33984,0.688659,0.119445][0.0942034,-0.965871,-0.292787][0.778766,-0.0158284,-1.53491][0.33984,0.688659,0.119445][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.603469,0.0729345,0.249593][0.84093,-0.414133,0.348325][0.578125,0.316406,0.416173][0.462086,0.0729345,0.461188][0.64362,-0.414133,0.64362][0.578125,0.378906,0.318525][0.311927,-0.327519,0.311029][0.652627,-0.384911,0.652627][0.675781,0.335938,0.214816][0.311927,-0.327519,0.311029][0.652627,-0.384911,0.652627][0.675781,0.335938,0.214816][0.407277,-0.327519,0.168328][0.852698,-0.384911,0.353199][0.675781,0.292969,0.28067][0.603469,0.0729345,0.249593][0.84093,-0.414133,0.348325][0.578125,0.316406,0.416173][-0.352048,0.992346,0.146195][-0.470992,0.860294,0.195091][0.359375,0.285156,-0.243765][-0.381128,0.992346,0][-0.506284,0.862367,2.76365e-007][0.359375,0.242188,-0.26385][-0.511497,0.893508,0][-0.706411,0.707801,3.22098e-007][0.382813,0.242188,-0.353891][-0.511497,0.893508,0][-0.706411,0.707801,3.22098e-007][0.382813,0.242188,-0.353891][-0.472493,0.893508,0.196085][-0.652639,0.707801,0.270332][0.382813,0.300781,-0.326952][-0.352048,0.992346,0.146195][-0.470992,0.860294,0.195091][0.359375,0.285156,-0.243765][-0.405482,-0.327519,0.168328][-0.852698,-0.384911,0.353199][0.675781,0.292969,-0.28067][-0.310132,-0.327519,0.311029][-0.652627,-0.384911,0.652627][0.675781,0.335938,-0.214816][-0.460291,0.0729345,0.461188][-0.64362,-0.414133,0.64362][0.578125,0.378906,-0.318525][-0.460291,0.0729345,0.461188][-0.64362,-0.414133,0.64362][0.578125,0.378906,-0.318525][-0.601674,0.0729345,0.249593][-0.84093,-0.414133,0.348325][0.578125,0.316406,-0.416172][-0.405482,-0.327519,0.168328][-0.852698,-0.384911,0.353199][0.675781,0.292969,-0.28067][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.089155,-0.960096,0.271532][-0.917945,0.0987633,-2.86836][0.662784,0.69534,0.113044][0.089155,-0.960096,0.271532][-0.917945,0.0987633,-2.86836][0.662784,0.69534,0.113044][0.0539733,-0.705625,0.28056][-0.608982,-0.0382545,-1.29499][0.66795,0.989746,0.0684355][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.252869,-0.705625,-0.141775][-2.77201,0.0637778,1.22947][0.42626,0.989746,0.320626][0.000897469,0.992346,-0.382025][-4.1064e-007,0.860294,-0.509798][0.359375,0.125,0][0.147092,0.992346,-0.352946][0.193746,0.862367,-0.467745][0.359375,0.132813,0.100971][0.196982,0.893508,-0.473391][0.270332,0.707801,-0.652639][0.382813,0.0976563,0.135428][0.196982,0.893508,-0.473391][0.270332,0.707801,-0.652639][0.382813,0.0976563,0.135428][0.000897469,0.893508,-0.512394][-3.07457e-007,0.707801,-0.706412][0.382813,0.0859375,0][0.000897469,0.992346,-0.382025][-4.1064e-007,0.860294,-0.509798][0.359375,0.125,0][0.169226,-0.327519,-0.40638][0.353199,-0.384911,-0.852698][0.675781,0.117188,0.116257][0.000897662,-0.327519,-0.439862][0,-0.384911,-0.922954][0.675781,0.109375,0][0.00089763,0.0729344,-0.652219][-1.38505e-007,-0.414133,-0.910216][0.578125,0.0429688,0][0.00089763,0.0729344,-0.652219][-1.38505e-007,-0.414133,-0.910216][0.578125,0.0429688,0][0.250491,0.0729344,-0.602572][0.348325,-0.414133,-0.84093][0.578125,0.0585938,0.172384][0.169226,-0.327519,-0.40638][0.353199,-0.384911,-0.852698][0.675781,0.117188,0.116257][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][0.128675,-0.997687,-0.0735481][-1.1242,1.62162,0.796276][0.465304,0.651851,0.163154][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][-0.00307729,-1.08103,0.0461988][0.240725,2.74883,-2.33553][0.533832,0.555425,-0.00390192][-0.0397684,-1.08103,0.0260326][1.51576,1.99344,-1.42988][0.522291,0.555425,-0.0504244][-0.0397684,-1.08103,0.0260326][1.51576,1.99344,-1.42988][0.522291,0.555425,-0.0504244][-0.142194,-0.997686,0.0336773][0.473271,0.634097,-0.572304][0.526666,0.651851,-0.180295][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][-0.16743,-0.327519,0.40638][-0.353199,-0.384911,0.852698][0.675781,0.363281,-0.116258][0.000897597,-0.327519,0.439862][-1.22173e-007,-0.384911,0.922954][0.675781,0.371094,0][0.000897662,0.0729346,0.652219][0,-0.414133,0.910216][0.578125,0.4375,0][0.000897662,0.0729346,0.652219][0,-0.414133,0.910216][0.578125,0.4375,0][-0.248696,0.0729346,0.602572][-0.348325,-0.414133,0.84093][0.578125,0.421875,-0.172384][-0.16743,-0.327519,0.40638][-0.353199,-0.384911,0.852698][0.675781,0.363281,-0.116258][0.124248,-1.01163,0.0874114][0,-1.88496,0][0.557417,0.635722,0.15754][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][0.0474583,-1.01163,0.143202][0,-1.88495,0][0.589344,0.635722,0.0601748][0.124248,-1.01163,0.0874114][0,-1.88496,0][0.557417,0.635722,0.15754][0.363215,0.893508,-0.362318][0.499508,0.707801,-0.499509][0.382813,0.132813,0.250238][0.196982,0.893508,-0.473391][0.270332,0.707801,-0.652639][0.382813,0.0976563,0.135428][0.147092,0.992346,-0.352946][0.193746,0.862367,-0.467745][0.359375,0.132813,0.100971][0.147092,0.992346,-0.352946][0.193746,0.862367,-0.467745][0.359375,0.132813,0.100971][0.27103,0.992346,-0.270133][0.360481,0.860295,-0.360481][0.359375,0.160156,0.18657][0.363215,0.893508,-0.362318][0.499508,0.707801,-0.499509][0.382813,0.132813,0.250238][-0.195187,0.893508,0.473391][-0.270332,0.707801,0.652639][0.382813,0.382813,-0.135428][0.00089779,0.893508,0.512394][0,0.707802,0.706411][0.382813,0.394531,1.30734e-007][0.00089779,0.992346,0.382025][0,0.862367,0.506284][0.359375,0.355469,1.28697e-007][0.00089779,0.992346,0.382025][0,0.862367,0.506284][0.359375,0.355469,1.28697e-007][-0.145297,0.992346,0.352945][-0.195091,0.860294,0.470992][0.359375,0.347656,-0.100971][-0.195187,0.893508,0.473391][-0.270332,0.707801,0.652639][0.382813,0.382813,-0.135428][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.304848,-0.965871,-0.0028613][-3.10139,-1.72778e-007,-0.0971787][0.505756,0.688659,-0.386533][-0.295256,-0.965871,0.0730079][-2.9869,-0.00162242,0.848612][0.549174,0.688659,-0.374371][-0.295256,-0.965871,0.0730079][-2.9869,-0.00162242,0.848612][0.549174,0.688659,-0.374371][-0.267186,-0.719567,0.143918][-2.73391,0.0682712,1.4123][0.589754,0.973616,-0.338779][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][-0.233412,-0.705625,0.166722][0.564037,0,-0.776326][0.602804,0.989746,-0.295955][-0.0891561,-0.705625,0.271531][0.923294,0,-1.2708][0.662783,0.989746,-0.113046][0.724842,0.345107,-2.09082e-007][0.999912,0.0132928,-1.94556e-007][0.511719,0.242188,0.5][0.669735,0.345107,-0.277042][0.923798,0.0132927,-0.38265][0.511719,0.15625,0.46194][0.623939,0.635877,-0.258072][0.88178,0.298428,-0.365246][0.445313,0.164063,0.43031][0.623939,0.635877,-0.258072][0.88178,0.298428,-0.365246][0.445313,0.164063,0.43031][0.675272,0.635877,-2.51923e-007][0.954432,0.298428,0][0.445313,0.242188,0.465764][0.724842,0.345107,-2.09082e-007][0.999912,0.0132928,-1.94556e-007][0.511719,0.242188,0.5][0.407277,-0.327519,-0.168328][0.852698,-0.384911,-0.353199][0.675781,0.191406,0.28067][0.311927,-0.327519,-0.31103][0.652627,-0.384911,-0.652627][0.675781,0.148438,0.214816][0.462086,0.0729345,-0.461189][0.64362,-0.414133,-0.64362][0.578125,0.101563,0.318525][0.462086,0.0729345,-0.461189][0.64362,-0.414133,-0.64362][0.578125,0.101563,0.318525][0.603469,0.0729345,-0.249593][0.84093,-0.414133,-0.348325][0.578125,0.164063,0.416173][0.407277,-0.327519,-0.168328][0.852698,-0.384911,-0.353199][0.675781,0.191406,0.28067][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.283462,-0.965871,-0.115029][-2.91863,0.0421445,-1.04847][0.441566,0.688659,-0.359416][-0.304848,-0.965871,-0.0028613][-3.10139,-1.72778e-007,-0.0971787][0.505756,0.688659,-0.386533][-0.0474584,-1.01163,-0.148923][0,-1.56625,-1.91709e-006][0.422169,0.635722,-0.0601751][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][0.0776361,-1.01163,-0.2418][0,-2.57626,-3.24159e-006][0.369019,0.635722,0.0984388][0.0776361,-1.01163,-0.2418][0,-2.57626,-3.24159e-006][0.369019,0.635722,0.0984388][0.0474587,-1.01163,-0.148923][0,-1.88495,-2.41937e-006][0.422169,0.635722,0.0601752][-0.0474584,-1.01163,-0.148923][0,-1.56625,-1.91709e-006][0.422169,0.635722,-0.0601751][0.0313262,-1.08103,0.0350218][-0.387482,1.36624,-1.19263][0.527436,0.555425,0.03972][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][0.0935603,-0.997687,0.110279][-0.268953,0.948249,-0.827764][0.570503,0.651851,0.11863][-0.475958,0.635877,-0.476855][-0.674885,0.298429,-0.674885][0.445313,0.0976563,-0.329345][-0.257175,0.635877,-0.623041][-0.365246,0.298429,-0.88178][0.445313,0.0546875,-0.17824][-0.276144,0.345107,-0.668838][-0.38265,0.0132926,-0.923798][0.511719,0.0390625,-0.191342][-0.276144,0.345107,-0.668838][-0.38265,0.0132926,-0.923798][0.511719,0.0390625,-0.191342][-0.511009,0.345107,-0.511906][-0.707044,0.0132925,-0.707044][0.511719,0.0859375,-0.353553][-0.475958,0.635877,-0.476855][-0.674885,0.298429,-0.674885][0.445313,0.0976563,-0.329345][-0.723047,0.345107,0][-0.999912,0.0132927,1.99545e-007][0.511719,0.242188,-0.5][-0.66794,0.345107,0.277042][-0.923798,0.0132927,0.38265][0.511719,0.324219,-0.46194][-0.622143,0.635877,0.258072][-0.88178,0.298428,0.365246][0.445313,0.316406,-0.43031][-0.622143,0.635877,0.258072][-0.88178,0.298428,0.365246][0.445313,0.316406,-0.43031][-0.673477,0.635877,0][-0.954432,0.298429,2.08117e-007][0.445313,0.242188,-0.465764][-0.723047,0.345107,0][-0.999912,0.0132927,1.99545e-007][0.511719,0.242188,-0.5][-0.475957,0.635877,0.476855][-0.674885,0.298429,0.674885][0.445313,0.382813,-0.329345][-0.622143,0.635877,0.258072][-0.88178,0.298428,0.365246][0.445313,0.316406,-0.43031][-0.66794,0.345107,0.277042][-0.923798,0.0132927,0.38265][0.511719,0.324219,-0.46194][-0.66794,0.345107,0.277042][-0.923798,0.0132927,0.38265][0.511719,0.324219,-0.46194][-0.511008,0.345107,0.511906][-0.707044,0.0132929,0.707044][0.511719,0.394531,-0.353553][-0.475957,0.635877,0.476855][-0.674885,0.298429,0.674885][0.445313,0.382813,-0.329345][0.000897726,0.635877,0.674375][0,0.298429,0.954432][0.445313,0.441406,0][-0.257174,0.635877,0.623041][-0.365245,0.298429,0.88178][0.445313,0.425781,-0.17824][-0.276144,0.345107,0.668837][-0.38265,0.0132928,0.923798][0.511719,0.441406,-0.191342][-0.276144,0.345107,0.668837][-0.38265,0.0132928,0.923798][0.511719,0.441406,-0.191342][0.000897694,0.345107,0.723944][1.19727e-007,0.0132926,0.999912][0.511719,0.457031,0][0.000897726,0.635877,0.674375][0,0.298429,0.954432][0.445313,0.441406,0][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][-0.0190849,-0.965871,0.301389][0.215566,0.0663278,1.70513][0.67987,0.688659,-0.0241988][0.0942028,-0.965871,0.287067][0.162612,0.0393523,1.5621][0.671674,0.688659,0.119445][0.0942028,-0.965871,0.287067][0.162612,0.0393523,1.5621][0.671674,0.688659,0.119445][0.0942027,-0.719567,0.287067][0.0988735,0,1.56768][0.671674,0.973616,0.119444][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][-0.246627,-0.965871,0.176325][-1.63183,-0.0187538,0.89269][0.608299,0.688659,-0.312712][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.267186,-0.719567,0.143918][-2.73391,0.0682712,1.4123][0.589754,0.973616,-0.338779][-0.267186,-0.719567,0.143918][-2.73391,0.0682712,1.4123][0.589754,0.973616,-0.338779][-0.295256,-0.965871,0.0730079][-2.9869,-0.00162242,0.848612][0.549174,0.688659,-0.374371][-0.246627,-0.965871,0.176325][-1.63183,-0.0187538,0.89269][0.608299,0.688659,-0.312712][0.0474583,-1.01163,0.143202][0,-1.88495,0][0.589344,0.635722,0.0601748][-0.0104617,-1.09497,0.0520751][-0.414197,-2.93353,2.23964][0.537195,0.539295,-0.0132649][0.0407537,-1.09497,0.0354343][1.16261,-2.30384,1.49851][0.527672,0.539295,0.0516736][0.0407537,-1.09497,0.0354343][1.16261,-2.30384,1.49851][0.527672,0.539295,0.0516736][0.124248,-1.01163,0.0874114][0,-1.88496,0][0.557417,0.635722,0.15754][0.0474583,-1.01163,0.143202][0,-1.88495,0][0.589344,0.635722,0.0601748][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][-0.0474584,-1.01163,-0.148923][0,-1.56625,-1.91709e-006][0.422169,0.635722,-0.0601751][0.0474587,-1.01163,-0.148923][0,-1.88495,-2.41937e-006][0.422169,0.635722,0.0601752][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][-0.0891554,-0.960096,-0.277253][1.00465,0.0310418,2.86182][0.34873,0.69534,-0.113045][0.0539742,-0.960096,-0.286279][-0.148651,0.015181,2.03203][0.343564,0.69534,0.0684366][0.0539742,-0.960096,-0.286279][-0.148651,0.015181,2.03203][0.343564,0.69534,0.0684366][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][0.0246865,-0.719567,-0.396424][-0.0655812,-2.76261,-0.0752249][0.280531,0.973616,0.0313012][0.168011,-0.719567,-0.359615][-1.89844e-006,-2.70168,5.89198e-006][0.301596,0.973616,0.21303][0.168011,-0.719567,-0.359615][-1.89844e-006,-2.70168,5.89198e-006][0.301596,0.973616,0.21303][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][-0.248696,0.0729344,-0.602572][-0.348325,-0.414133,-0.84093][0.578125,0.0585938,-0.172384][0.00089763,0.0729344,-0.652219][-1.38505e-007,-0.414133,-0.910216][0.578125,0.0429688,0][0.000897662,-0.327519,-0.439862][0,-0.384911,-0.922954][0.675781,0.109375,0][0.000897662,-0.327519,-0.439862][0,-0.384911,-0.922954][0.675781,0.109375,0][-0.16743,-0.327519,-0.40638][-0.353199,-0.384911,-0.852698][0.675781,0.117188,-0.116257][-0.248696,0.0729344,-0.602572][-0.348325,-0.414133,-0.84093][0.578125,0.0585938,-0.172384][0.277939,0.345107,-0.668838][0.382649,0.0132924,-0.923798][0.511719,0.0390625,0.191342][0.000897533,0.345107,-0.723945][-2.69386e-007,0.0132926,-0.999912][0.511719,0.0234375,0][0.000897501,0.635877,-0.674375][-2.52714e-007,0.298429,-0.954432][0.445313,0.0390625,0][0.000897501,0.635877,-0.674375][-2.52714e-007,0.298429,-0.954432][0.445313,0.0390625,0][0.258969,0.635877,-0.623041][0.365245,0.298429,-0.88178][0.445313,0.0546875,0.17824][0.277939,0.345107,-0.668838][0.382649,0.0132924,-0.923798][0.511719,0.0390625,0.191342][0.477752,0.635877,-0.476855][0.674885,0.298428,-0.674886][0.445313,0.0976563,0.329345][0.623939,0.635877,-0.258072][0.88178,0.298428,-0.365246][0.445313,0.164063,0.43031][0.669735,0.345107,-0.277042][0.923798,0.0132927,-0.38265][0.511719,0.15625,0.46194][0.669735,0.345107,-0.277042][0.923798,0.0132927,-0.38265][0.511719,0.15625,0.46194][0.512804,0.345107,-0.511906][0.707044,0.0132925,-0.707044][0.511719,0.0859375,0.353553][0.477752,0.635877,-0.476855][0.674885,0.298428,-0.674886][0.445313,0.0976563,0.329345][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][-0.0151901,-1.08103,-0.0496103][-0.686028,1.37585,1.45757][0.479003,0.555425,-0.0192604][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][0.128675,-0.997687,-0.0735481][-1.1242,1.62162,0.796276][0.465304,0.651851,0.163154][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][-0.0891554,-0.960096,-0.277253][1.00465,0.0310418,2.86182][0.34873,0.69534,-0.113045][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][-0.183863,-0.705625,-0.225199][0.75592,-0.0576382,1.65712][0.378518,0.989746,-0.233129][-0.183863,-0.705625,-0.225199][0.75592,-0.0576382,1.65712][0.378518,0.989746,-0.233129][-0.233412,-0.960096,-0.172443][2.44015,0.118576,1.77287][0.408709,0.69534,-0.295955][-0.0891554,-0.960096,-0.277253][1.00465,0.0310418,2.86182][0.34873,0.69534,-0.113045][-0.673477,0.635877,0][-0.954432,0.298429,2.08117e-007][0.445313,0.242188,-0.465764][-0.622144,0.635877,-0.258072][-0.88178,0.298428,-0.365245][0.445313,0.164063,-0.43031][-0.66794,0.345107,-0.277042][-0.923798,0.0132927,-0.382649][0.511719,0.15625,-0.46194][-0.66794,0.345107,-0.277042][-0.923798,0.0132927,-0.382649][0.511719,0.15625,-0.46194][-0.723047,0.345107,0][-0.999912,0.0132927,1.99545e-007][0.511719,0.242188,-0.5][-0.673477,0.635877,0][-0.954432,0.298429,2.08117e-007][0.445313,0.242188,-0.465764][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][0.283462,-0.965871,0.109309][1.543,1.14744e-006,0.294191][0.569948,0.688659,0.359416][0.304848,-0.965871,-0.00286031][1.96523,0.0736891,0.212888][0.505757,0.688659,0.386533][0.304848,-0.965871,-0.00286031][1.96523,0.0736891,0.212888][0.505757,0.688659,0.386533][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][0.0539733,-0.705625,0.28056][-0.608982,-0.0382545,-1.29499][0.66795,0.989746,0.0684355][-0.0737725,-0.705625,0.384514][0,2.63903,0][0.72744,0.989746,-0.0935401][0.121856,-0.705625,0.372176][0,2.70203,0][0.720379,0.989746,0.154508][0.121856,-0.705625,0.372176][0,2.70203,0][0.720379,0.989746,0.154508][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.0539733,-0.705625,0.28056][-0.608982,-0.0382545,-1.29499][0.66795,0.989746,0.0684355][0.147093,0.992346,0.352945][0.195091,0.860294,0.470992][0.359375,0.347656,0.100971][0.00089779,0.992346,0.382025][0,0.862367,0.506284][0.359375,0.355469,1.28697e-007][0.00089779,0.893508,0.512394][0,0.707802,0.706411][0.382813,0.394531,1.30734e-007][0.00089779,0.893508,0.512394][0,0.707802,0.706411][0.382813,0.394531,1.30734e-007][0.196983,0.893508,0.473391][0.270332,0.707801,0.652639][0.382813,0.382813,0.135428][0.147093,0.992346,0.352945][0.195091,0.860294,0.470992][0.359375,0.347656,0.100971][0.609779,0.772345,-2.68454e-007][0.851117,0.524976,0][0.410156,0.242188,0.42053][0.56343,0.772345,-0.233009][0.78633,0.524976,-0.325709][0.410156,0.171875,0.388519][0.474288,0.893508,-0.196085][0.652639,0.707802,-0.270332][0.382813,0.183594,0.326952][0.474288,0.893508,-0.196085][0.652639,0.707802,-0.270332][0.382813,0.183594,0.326952][0.513292,0.893508,-2.79862e-007][0.706411,0.707802,-1.22007e-007][0.382813,0.242188,0.353891][0.609779,0.772345,-2.68454e-007][0.851117,0.524976,0][0.410156,0.242188,0.42053][0.250491,0.0729346,0.602572][0.348325,-0.414133,0.84093][0.578125,0.421875,0.172384][0.000897662,0.0729346,0.652219][0,-0.414133,0.910216][0.578125,0.4375,0][0.000897597,-0.327519,0.439862][-1.22173e-007,-0.384911,0.922954][0.675781,0.371094,0][0.000897597,-0.327519,0.439862][-1.22173e-007,-0.384911,0.922954][0.675781,0.371094,0][0.169226,-0.327519,0.40638][0.353199,-0.384911,0.852698][0.675781,0.363281,0.116258][0.250491,0.0729346,0.602572][0.348325,-0.414133,0.84093][0.578125,0.421875,0.172384][0.603469,0.0729345,-0.249593][0.84093,-0.414133,-0.348325][0.578125,0.164063,0.416173][0.653117,0.0729345,-1.58325e-007][0.910216,-0.414133,0][0.578125,0.242188,0.450462][0.44076,-0.327519,0][0.922954,-0.384911,0][0.675781,0.242188,0.303795][0.44076,-0.327519,0][0.922954,-0.384911,0][0.675781,0.242188,0.303795][0.407277,-0.327519,-0.168328][0.852698,-0.384911,-0.353199][0.675781,0.191406,0.28067][0.603469,0.0729345,-0.249593][0.84093,-0.414133,-0.348325][0.578125,0.164063,0.416173][-0.472493,0.893508,-0.196085][-0.652639,0.707802,-0.270332][0.382813,0.183594,-0.326952][-0.511497,0.893508,0][-0.706411,0.707801,3.22098e-007][0.382813,0.242188,-0.353891][-0.381128,0.992346,0][-0.506284,0.862367,2.76365e-007][0.359375,0.242188,-0.26385][-0.381128,0.992346,0][-0.506284,0.862367,2.76365e-007][0.359375,0.242188,-0.26385][-0.352048,0.992346,-0.146195][-0.470992,0.860294,-0.195091][0.359375,0.195313,-0.243765][-0.472493,0.893508,-0.196085][-0.652639,0.707802,-0.270332][0.382813,0.183594,-0.326952][0.353843,0.992346,-0.146195][0.467745,0.862367,-0.193747][0.359375,0.195313,0.243765][0.27103,0.992346,-0.270133][0.360481,0.860295,-0.360481][0.359375,0.160156,0.18657][0.152843,1.06184,-0.151946][0.196256,0.960604,-0.196782][0.339844,0.195313,0.104943][0.152843,1.06184,-0.151946][0.196256,0.960604,-0.196782][0.339844,0.195313,0.104943][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.353843,0.992346,-0.146195][0.467745,0.862367,-0.193747][0.359375,0.195313,0.243765][0.155795,-0.997687,0.185536][-3.55936e-007,1.93084,2.94343e-007][0.613571,0.651851,0.19754][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][0.0935603,-0.997687,0.110279][-0.268953,0.948249,-0.827764][0.570503,0.651851,0.11863][0.0935603,-0.997687,0.110279][-0.268953,0.948249,-0.827764][0.570503,0.651851,0.11863][0.0755448,-0.997687,0.229644][5.66025e-007,2.63903,6.34952e-007][0.638812,0.651851,0.0957871][0.155795,-0.997687,0.185536][-3.55936e-007,1.93084,2.94343e-007][0.613571,0.651851,0.19754][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][0.288513,-0.960096,-0.00286031][-2.97947,-0.0385478,0.0826941][0.505757,0.69534,0.36582][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][-0.124248,-1.01163,0.0874114][-0.821706,-0.989101,0.325478][0.557417,0.635722,-0.157541][-0.152362,-1.01163,0.0164348][-0.758478,-0.912992,0.300433][0.516799,0.635722,-0.193188][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.194273,-0.965871,0.232066][-1.11313,-2.33251,1.26113][0.640198,0.688659,-0.246329][-0.246627,-0.965871,0.176325][-1.63183,-0.0187538,0.89269][0.608299,0.688659,-0.312712][-0.246627,-0.965871,0.176325][-1.63183,-0.0187538,0.89269][0.608299,0.688659,-0.312712][-0.203254,-1.01163,0.144812][-0.742224,-1.32126,0.896906][0.590265,0.635722,-0.257716][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.355212,-0.639573,-0.147506][-2.86258,-0.180472,-1.18572][0.75,0.195313,-0.245951][-0.384553,-0.639573,-1.9744e-007][-3.09843,-0.180471,-7.45058e-007][0.75,0.242188,-0.266216][-0.394071,-0.476163,-1.70898e-007][-0.984138,-0.177402,-1.22317e-007][0.710938,0.242188,-0.272789][-0.394071,-0.476163,-1.70898e-007][-0.984138,-0.177402,-1.22317e-007][0.710938,0.242188,-0.272789][-0.364006,-0.476163,-0.151148][-0.909225,-0.177402,-0.376614][0.710938,0.195313,-0.252024][-0.355212,-0.639573,-0.147506][-2.86258,-0.180472,-1.18572][0.75,0.195313,-0.245951][0.000897726,-0.639573,-0.385451][2.38419e-007,-0.180471,-3.09843][0.75,0.125,0][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][-0.15025,-0.476163,-0.364904][-0.376614,-0.177402,-0.909225][0.710938,0.132813,-0.104392][-0.15025,-0.476163,-0.364904][-0.376614,-0.177402,-0.909225][0.710938,0.132813,-0.104392][0.000897694,-0.476163,-0.394969][0,-0.177402,-0.984138][0.710938,0.121094,0][0.000897726,-0.639573,-0.385451][2.38419e-007,-0.180471,-3.09843][0.75,0.125,0][-0.145297,0.992346,0.352945][-0.195091,0.860294,0.470992][0.359375,0.347656,-0.100971][-0.269235,0.992346,0.270133][-0.357997,0.862367,0.357997][0.359375,0.320313,-0.18657][-0.36142,0.893508,0.362318][-0.499508,0.707801,0.499509][0.382813,0.347656,-0.250238][-0.36142,0.893508,0.362318][-0.499508,0.707801,0.499509][0.382813,0.347656,-0.250238][-0.195187,0.893508,0.473391][-0.270332,0.707801,0.652639][0.382813,0.382813,-0.135428][-0.145297,0.992346,0.352945][-0.195091,0.860294,0.470992][0.359375,0.347656,-0.100971][-0.511008,0.345107,0.511906][-0.707044,0.0132929,0.707044][0.511719,0.394531,-0.353553][-0.276144,0.345107,0.668837][-0.38265,0.0132928,0.923798][0.511719,0.441406,-0.191342][-0.257174,0.635877,0.623041][-0.365245,0.298429,0.88178][0.445313,0.425781,-0.17824][-0.257174,0.635877,0.623041][-0.365245,0.298429,0.88178][0.445313,0.425781,-0.17824][-0.475957,0.635877,0.476855][-0.674885,0.298429,0.674885][0.445313,0.382813,-0.329345][-0.511008,0.345107,0.511906][-0.707044,0.0132929,0.707044][0.511719,0.394531,-0.353553][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.381929,-0.719567,-0.101][0,-2.76445,-2.4992e-007][0.449594,0.973616,0.484268][0.391212,-0.719567,0.0466847][-2.0264e-007,-2.70167,-6.14861e-007][0.53411,0.973616,0.496038][0.391212,-0.719567,0.0466847][-2.0264e-007,-2.70167,-6.14861e-007][0.53411,0.973616,0.496038][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.288513,-0.960096,-0.00286031][-2.97947,-0.0385478,0.0826941][0.505757,0.69534,0.36582][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.353843,0.992346,0.146194][0.454927,0.868775,0.19563][0.359375,0.285156,0.243766][0.27103,0.992346,0.270133][0.354832,0.868775,0.345433][0.359375,0.320313,0.18657][0.363215,0.893508,0.362317][0.499509,0.707801,0.499508][0.382813,0.347656,0.250239][0.363215,0.893508,0.362317][0.499509,0.707801,0.499508][0.382813,0.347656,0.250239][0.474288,0.893508,0.196085][0.652639,0.707801,0.270332][0.382813,0.300781,0.326952][0.353843,0.992346,0.146194][0.454927,0.868775,0.19563][0.359375,0.285156,0.243766][0.246627,-0.965871,-0.182046][1.70773,0.0174602,-1.00279][0.403214,0.688659,0.312711][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.295256,-0.965871,-0.0787291][1.283,-0.02756,-0.603884][0.462339,0.688659,0.374371][0.246627,-0.965871,-0.182046][1.70773,0.0174602,-1.00279][0.403214,0.688659,0.312711][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][0.124248,-1.01163,-0.0931325][0,-1.88497,3.9712e-006][0.454097,0.635722,0.15754][0.0474587,-1.01163,-0.148923][0,-1.88495,-2.41937e-006][0.422169,0.635722,0.0601752][0.0474587,-1.01163,-0.148923][0,-1.88495,-2.41937e-006][0.422169,0.635722,0.0601752][0.0776361,-1.01163,-0.2418][0,-2.57626,-3.24159e-006][0.369019,0.635722,0.0984388][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][0.407277,-0.327519,0.168328][0.852698,-0.384911,0.353199][0.675781,0.292969,0.28067][0.44076,-0.327519,0][0.922954,-0.384911,0][0.675781,0.242188,0.303795][0.653117,0.0729345,-1.58325e-007][0.910216,-0.414133,0][0.578125,0.242188,0.450462][0.653117,0.0729345,-1.58325e-007][0.910216,-0.414133,0][0.578125,0.242188,0.450462][0.603469,0.0729345,0.249593][0.84093,-0.414133,0.348325][0.578125,0.316406,0.416173][0.407277,-0.327519,0.168328][0.852698,-0.384911,0.353199][0.675781,0.292969,0.28067][0.675272,0.635877,-2.51923e-007][0.954432,0.298428,0][0.445313,0.242188,0.465764][0.623939,0.635877,0.258072][0.88178,0.298429,0.365245][0.445313,0.316406,0.43031][0.669735,0.345107,0.277041][0.923798,0.0132928,0.38265][0.511719,0.324219,0.46194][0.669735,0.345107,0.277041][0.923798,0.0132928,0.38265][0.511719,0.324219,0.46194][0.724842,0.345107,-2.09082e-007][0.999912,0.0132928,-1.94556e-007][0.511719,0.242188,0.5][0.675272,0.635877,-2.51923e-007][0.954432,0.298428,0][0.445313,0.242188,0.465764][-0.0942032,-0.965871,-0.292787][-0.162617,0.039342,-1.5621][0.33984,0.688659,-0.119445][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][0.0190842,-0.965871,-0.307109][-0.215568,0.0663143,-1.70513][0.331644,0.688659,0.0241978][-0.0942032,-0.965871,-0.292787][-0.162617,0.039342,-1.5621][0.33984,0.688659,-0.119445][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.246627,-0.965871,-0.182046][-1.37657,-6.31965e-007,-0.756612][0.403214,0.688659,-0.312711][-0.163394,-0.965871,-0.260221][-0.745187,-1.84165,-1.03905][0.358477,0.688659,-0.207176][-0.163394,-0.965871,-0.260221][-0.745187,-1.84165,-1.03905][0.358477,0.688659,-0.207176][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.251303,-0.705625,0.301028][0,2.63869,0][0.679664,0.989746,-0.31864][-0.0891561,-0.705625,0.271531][0.923294,0,-1.2708][0.662783,0.989746,-0.113046][-0.233412,-0.705625,0.166722][0.564037,0,-0.776326][0.602804,0.989746,-0.295955][-0.233412,-0.705625,0.166722][0.564037,0,-0.776326][0.602804,0.989746,-0.295955][-0.366673,-0.705625,0.142234][0,2.70168,0][0.58879,0.989746,-0.464923][-0.251303,-0.705625,0.301028][0,2.63869,0][0.679664,0.989746,-0.31864][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.391212,-0.719567,-0.0524062][0,-2.70168,0][0.477403,0.973616,-0.496038][-0.319025,-0.719567,-0.234647][-1.00138e-006,-2.70202,1.37827e-006][0.373112,0.973616,-0.404508][-0.319025,-0.719567,-0.234647][-1.00138e-006,-2.70202,1.37827e-006][0.373112,0.973616,-0.404508][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.278388,-0.476163,-0.279285][-0.695891,-0.177402,-0.695891][0.710938,0.15625,-0.192891][-0.15025,-0.476163,-0.364904][-0.376614,-0.177402,-0.909225][0.710938,0.132813,-0.104392][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][-0.271657,-0.639573,-0.272555][-2.19092,-0.180471,-2.19092][0.75,0.160156,-0.188243][-0.278388,-0.476163,-0.279285][-0.695891,-0.177402,-0.695891][0.710938,0.15625,-0.192891][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][-0.0755457,-0.997687,0.229643][0,0.913519,6.33295e-007][0.638812,0.651851,-0.0957884][0.0755448,-0.997687,0.229644][5.66025e-007,2.63903,6.34952e-007][0.638812,0.651851,0.0957871][0.0755448,-0.997687,0.229644][5.66025e-007,2.63903,6.34952e-007][0.638812,0.651851,0.0957871][0.0935603,-0.997687,0.110279][-0.268953,0.948249,-0.827764][0.570503,0.651851,0.11863][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][-0.233412,-0.960096,0.166723][2.41721,-2.75652e-006,-1.7562][0.602804,0.69534,-0.295955][-0.288513,-0.705625,-0.00286175][3.03692,-5.21966e-007,-0.191204][0.505756,0.989746,-0.365821][-0.233412,-0.705625,0.166722][0.564037,0,-0.776326][0.602804,0.989746,-0.295955][-0.233412,-0.705625,0.166722][0.564037,0,-0.776326][0.602804,0.989746,-0.295955][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][-0.233412,-0.960096,0.166723][2.41721,-2.75652e-006,-1.7562][0.602804,0.69534,-0.295955][0.353843,0.992346,0.146194][0.454927,0.868775,0.19563][0.359375,0.285156,0.243766][0.382923,0.992346,-2.84752e-007][0.509798,0.860294,-2.38632e-007][0.359375,0.242188,0.26385][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.474288,0.893508,0.196085][0.652639,0.707801,0.270332][0.382813,0.300781,0.326952][0.513292,0.893508,-2.79862e-007][0.706411,0.707802,-1.22007e-007][0.382813,0.242188,0.353891][0.382923,0.992346,-2.84752e-007][0.509798,0.860294,-2.38632e-007][0.359375,0.242188,0.26385][0.382923,0.992346,-2.84752e-007][0.509798,0.860294,-2.38632e-007][0.359375,0.242188,0.26385][0.353843,0.992346,0.146194][0.454927,0.868775,0.19563][0.359375,0.285156,0.243766][0.474288,0.893508,0.196085][0.652639,0.707801,0.270332][0.382813,0.300781,0.326952][-0.381128,0.992346,0][-0.506284,0.862367,2.76365e-007][0.359375,0.242188,-0.26385][-0.352048,0.992346,0.146195][-0.470992,0.860294,0.195091][0.359375,0.285156,-0.243765][-0.197629,1.06184,0.0822325][-0.257299,0.960402,0.106892][0.339844,0.265625,-0.137114][-0.197629,1.06184,0.0822325][-0.257299,0.960402,0.106892][0.339844,0.265625,-0.137114][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][-0.381128,0.992346,0][-0.506284,0.862367,2.76365e-007][0.359375,0.242188,-0.26385][-0.145297,0.992346,0.352945][-0.195091,0.860294,0.470992][0.359375,0.347656,-0.100971][0.00089779,0.992346,0.382025][0,0.862367,0.506284][0.359375,0.355469,1.28697e-007][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][0.0474587,-1.01163,-0.148923][0,-1.88495,-2.41937e-006][0.422169,0.635722,0.0601752][0.124248,-1.01163,-0.0931325][0,-1.88497,3.9712e-006][0.454097,0.635722,0.15754][0.124248,-1.01163,-0.0931325][0,-1.88497,3.9712e-006][0.454097,0.635722,0.15754][0.0554795,-1.09497,0.00416632][0.63869,-0.999986,-0.405183][0.509778,0.539295,0.0703452][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][-0.0104617,-1.09497,0.0520751][-0.414197,-2.93353,2.23964][0.537195,0.539295,-0.0132649][0.0474583,-1.01163,0.143202][0,-1.88495,0][0.589344,0.635722,0.0601748][-0.0474588,-1.01163,0.143202][-0.126802,-1.19142,1.03822][0.589344,0.635722,-0.0601756][-0.0474588,-1.01163,0.143202][-0.126802,-1.19142,1.03822][0.589344,0.635722,-0.0601756][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][-0.0104617,-1.09497,0.0520751][-0.414197,-2.93353,2.23964][0.537195,0.539295,-0.0132649][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][0.0737718,-0.705625,-0.390236][1.23468e-006,2.63902,-5.7784e-006][0.284073,0.989745,0.093539][-0.121857,-0.705625,-0.377897][-0.0549384,0.0142342,-0.432687][0.291134,0.989745,-0.154508][-0.345619,-0.705625,-0.192727][-2.55181e-007,2.63904,-1.27114e-006][0.397101,0.989746,-0.438228][-0.268272,-0.705625,-0.10902][1.1485,2.47468e-007,0.218978][0.445005,0.989746,-0.340156][-0.183863,-0.705625,-0.225199][0.75592,-0.0576382,1.65712][0.378518,0.989746,-0.233129][-0.183863,-0.705625,-0.225199][0.75592,-0.0576382,1.65712][0.378518,0.989746,-0.233129][-0.211359,-0.705625,-0.335771][-1.61078e-006,2.76444,-5.29739e-006][0.315241,0.989745,-0.267993][-0.345619,-0.705625,-0.192727][-2.55181e-007,2.63904,-1.27114e-006][0.397101,0.989746,-0.438228][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][0.0942028,-0.965871,0.287067][0.162612,0.0393523,1.5621][0.671674,0.688659,0.119445][-0.0190849,-0.965871,0.301389][0.215566,0.0663278,1.70513][0.67987,0.688659,-0.0241988][-0.0190849,-0.965871,0.301389][0.215566,0.0663278,1.70513][0.67987,0.688659,-0.0241988][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][0.163394,-0.965871,0.254501][0.970792,-0.0275618,1.0336][0.653037,0.688659,0.207176][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.246627,-0.965871,0.176325][1.35231,-0.00144864,1.27655][0.6083,0.688659,0.312711][0.163394,-0.965871,0.254501][0.970792,-0.0275618,1.0336][0.653037,0.688659,0.207176][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][0.246627,-0.965871,-0.182046][1.70773,0.0174602,-1.00279][0.403214,0.688659,0.312711][0.295256,-0.965871,-0.0787291][1.283,-0.02756,-0.603884][0.462339,0.688659,0.374371][0.295256,-0.965871,-0.0787291][1.283,-0.02756,-0.603884][0.462339,0.688659,0.374371][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][-0.438965,-0.327519,-1.46683e-007][-0.922954,-0.384911,0][0.675781,0.242188,-0.303795][-0.405482,-0.327519,0.168328][-0.852698,-0.384911,0.353199][0.675781,0.292969,-0.28067][-0.601674,0.0729345,0.249593][-0.84093,-0.414133,0.348325][0.578125,0.316406,-0.416172][-0.601674,0.0729345,0.249593][-0.84093,-0.414133,0.348325][0.578125,0.316406,-0.416172][-0.651321,0.0729345,0][-0.910216,-0.414133,0][0.578125,0.242188,-0.450462][-0.438965,-0.327519,-1.46683e-007][-0.922954,-0.384911,0][0.675781,0.242188,-0.303795][0.258969,0.635877,-0.623041][0.365245,0.298429,-0.88178][0.445313,0.0546875,0.17824][0.477752,0.635877,-0.476855][0.674885,0.298428,-0.674886][0.445313,0.0976563,0.329345][0.512804,0.345107,-0.511906][0.707044,0.0132925,-0.707044][0.511719,0.0859375,0.353553][0.512804,0.345107,-0.511906][0.707044,0.0132925,-0.707044][0.511719,0.0859375,0.353553][0.277939,0.345107,-0.668838][0.382649,0.0132924,-0.923798][0.511719,0.0390625,0.191342][0.258969,0.635877,-0.623041][0.365245,0.298429,-0.88178][0.445313,0.0546875,0.17824][-0.257175,0.635877,-0.623041][-0.365246,0.298429,-0.88178][0.445313,0.0546875,-0.17824][0.000897501,0.635877,-0.674375][-2.52714e-007,0.298429,-0.954432][0.445313,0.0390625,0][0.000897533,0.345107,-0.723945][-2.69386e-007,0.0132926,-0.999912][0.511719,0.0234375,0][0.000897533,0.345107,-0.723945][-2.69386e-007,0.0132926,-0.999912][0.511719,0.0234375,0][-0.276144,0.345107,-0.668838][-0.38265,0.0132926,-0.923798][0.511719,0.0390625,-0.191342][-0.257175,0.635877,-0.623041][-0.365246,0.298429,-0.88178][0.445313,0.0546875,-0.17824][-0.310132,-0.327519,-0.31103][-0.652627,-0.384911,-0.652627][0.675781,0.148438,-0.214816][-0.405482,-0.327519,-0.168328][-0.852698,-0.384911,-0.353199][0.675781,0.191406,-0.28067][-0.601674,0.0729345,-0.249593][-0.84093,-0.414133,-0.348325][0.578125,0.164063,-0.416173][-0.601674,0.0729345,-0.249593][-0.84093,-0.414133,-0.348325][0.578125,0.164063,-0.416173][-0.460291,0.0729345,-0.461188][-0.64362,-0.414133,-0.64362][0.578125,0.101563,-0.318525][-0.310132,-0.327519,-0.31103][-0.652627,-0.384911,-0.652627][0.675781,0.148438,-0.214816][-0.622144,0.635877,-0.258072][-0.88178,0.298428,-0.365245][0.445313,0.164063,-0.43031][-0.475958,0.635877,-0.476855][-0.674885,0.298429,-0.674885][0.445313,0.0976563,-0.329345][-0.511009,0.345107,-0.511906][-0.707044,0.0132925,-0.707044][0.511719,0.0859375,-0.353553][-0.511009,0.345107,-0.511906][-0.707044,0.0132925,-0.707044][0.511719,0.0859375,-0.353553][-0.66794,0.345107,-0.277042][-0.923798,0.0132927,-0.382649][0.511719,0.15625,-0.46194][-0.622144,0.635877,-0.258072][-0.88178,0.298428,-0.365245][0.445313,0.164063,-0.43031][0.169226,-0.327519,0.40638][0.353199,-0.384911,0.852698][0.675781,0.363281,0.116258][0.311927,-0.327519,0.311029][0.652627,-0.384911,0.652627][0.675781,0.335938,0.214816][0.462086,0.0729345,0.461188][0.64362,-0.414133,0.64362][0.578125,0.378906,0.318525][0.462086,0.0729345,0.461188][0.64362,-0.414133,0.64362][0.578125,0.378906,0.318525][0.250491,0.0729346,0.602572][0.348325,-0.414133,0.84093][0.578125,0.421875,0.172384][0.169226,-0.327519,0.40638][0.353199,-0.384911,0.852698][0.675781,0.363281,0.116258][0.477753,0.635877,0.476855][0.674886,0.298428,0.674885][0.445313,0.382813,0.329345][0.25897,0.635877,0.623041][0.365246,0.298429,0.88178][0.445313,0.425781,0.17824][0.277939,0.345107,0.668837][0.38265,0.0132929,0.923798][0.511719,0.441406,0.191342][0.277939,0.345107,0.668837][0.38265,0.0132929,0.923798][0.511719,0.441406,0.191342][0.512804,0.345107,0.511906][0.707044,0.0132929,0.707044][0.511719,0.394531,0.353553][0.477753,0.635877,0.476855][0.674886,0.298428,0.674885][0.445313,0.382813,0.329345][-0.310132,-0.327519,0.311029][-0.652627,-0.384911,0.652627][0.675781,0.335938,-0.214816][-0.16743,-0.327519,0.40638][-0.353199,-0.384911,0.852698][0.675781,0.363281,-0.116258][-0.248696,0.0729346,0.602572][-0.348325,-0.414133,0.84093][0.578125,0.421875,-0.172384][-0.248696,0.0729346,0.602572][-0.348325,-0.414133,0.84093][0.578125,0.421875,-0.172384][-0.460291,0.0729345,0.461188][-0.64362,-0.414133,0.64362][0.578125,0.378906,-0.318525][-0.310132,-0.327519,0.311029][-0.652627,-0.384911,0.652627][0.675781,0.335938,-0.214816][0.0942027,-0.719567,0.287067][0.0988735,0,1.56768][0.671674,0.973616,0.119444][0.211358,-0.719567,0.330049][0,-2.70168,3.07296e-007][0.696272,0.973616,0.267992][0.0246852,-0.719567,0.390703][0,-2.63869,1.38328e-006][0.730982,0.973616,0.0312996][0.0246852,-0.719567,0.390703][0,-2.63869,1.38328e-006][0.730982,0.973616,0.0312996][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][0.0942027,-0.719567,0.287067][0.0988735,0,1.56768][0.671674,0.973616,0.119444][-0.319026,-0.719567,0.228924][6.59074e-007,-2.70202,-1.0256e-006][0.6384,0.973616,-0.404509][-0.267186,-0.719567,0.143918][-2.73391,0.0682712,1.4123][0.589754,0.973616,-0.338779][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.168012,-0.719567,0.353894][1.502e-007,-2.63903,2.9097e-007][0.709917,0.973616,-0.213031][-0.319026,-0.719567,0.228924][6.59074e-007,-2.70202,-1.0256e-006][0.6384,0.973616,-0.404509][-0.233412,-0.960096,-0.172443][2.44015,0.118576,1.77287][0.408709,0.69534,-0.295955][-0.183863,-0.705625,-0.225199][0.75592,-0.0576382,1.65712][0.378518,0.989746,-0.233129][-0.268272,-0.705625,-0.10902][1.1485,2.47468e-007,0.218978][0.445005,0.989746,-0.340156][-0.268272,-0.705625,-0.10902][1.1485,2.47468e-007,0.218978][0.445005,0.989746,-0.340156][-0.288513,-0.960096,-0.0028613][3.00199,0.06237,-0.0483578][0.505756,0.69534,-0.365821][-0.233412,-0.960096,-0.172443][2.44015,0.118576,1.77287][0.408709,0.69534,-0.295955][-0.233412,-0.960096,0.166723][2.41721,-2.75652e-006,-1.7562][0.602804,0.69534,-0.295955][-0.19778,-0.997686,0.140835][1.14849,1.34565,-0.373162][0.58799,0.651851,-0.250775][-0.244469,-0.997686,-0.00286131][1.14849,1.34566,-0.373165][0.505756,0.651851,-0.309975][-0.244469,-0.997686,-0.00286131][1.14849,1.34566,-0.373165][0.505756,0.651851,-0.309975][-0.288513,-0.960096,-0.0028613][3.00199,0.06237,-0.0483578][0.505756,0.69534,-0.365821][-0.233412,-0.960096,0.166723][2.41721,-2.75652e-006,-1.7562][0.602804,0.69534,-0.295955][-0.0457079,-1.08103,-0.0209476][1.98281,1.83956,0.123813][0.495406,0.555425,-0.0579554][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][-0.118774,-0.997687,-0.0891553][0.728612,1.2298,0.722252][0.456373,0.651851,-0.1506][-0.118774,-0.997687,-0.0891553][0.728612,1.2298,0.722252][0.456373,0.651851,-0.1506][-0.0397684,-1.08103,0.0260326][1.51576,1.99344,-1.42988][0.522291,0.555425,-0.0504244][-0.0457079,-1.08103,-0.0209476][1.98281,1.83956,0.123813][0.495406,0.555425,-0.0579554][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][0.0313262,-1.08103,0.0350218][-0.387482,1.36624,-1.19263][0.527436,0.555425,0.03972][-0.00307729,-1.08103,0.0461988][0.240725,2.74883,-2.33553][0.533832,0.555425,-0.00390192][-0.124248,-1.01163,0.0874114][-0.821706,-0.989101,0.325478][0.557417,0.635722,-0.157541][-0.203254,-1.01163,0.144812][-0.742224,-1.32126,0.896906][0.590265,0.635722,-0.257716][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.152362,-1.01163,0.0164348][-0.758478,-0.912992,0.300433][0.516799,0.635722,-0.193188][-0.124248,-1.01163,0.0874114][-0.821706,-0.989101,0.325478][0.557417,0.635722,-0.157541][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][-0.0474584,-1.01163,-0.148923][0,-1.56625,-1.91709e-006][0.422169,0.635722,-0.0601751][-0.124248,-1.01163,-0.0931325][3.84463e-007,-1.88496,1.89736e-007][0.454097,0.635722,-0.157541][-0.124248,-1.01163,-0.0931325][3.84463e-007,-1.88496,1.89736e-007][0.454097,0.635722,-0.157541][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][0.000897533,-0.476163,0.394969][-1.63089e-007,-0.177402,0.984138][0.710938,0.359375,0][-0.15025,-0.476163,0.364903][-0.376614,-0.177402,0.909225][0.710938,0.351563,-0.104392][-0.146608,-0.639573,0.35611][-1.18572,-0.180472,2.86257][0.75,0.347656,-0.101876][-0.146608,-0.639573,0.35611][-1.18572,-0.180472,2.86257][0.75,0.347656,-0.101876][0.000897501,-0.639573,0.385451][-1.04308e-006,-0.180472,3.09843][0.75,0.355469,0][0.000897533,-0.476163,0.394969][-1.63089e-007,-0.177402,0.984138][0.710938,0.359375,0][-0.278388,-0.476163,0.279285][-0.695891,-0.177402,0.695891][0.710938,0.324219,-0.192891][-0.364006,-0.476163,0.151148][-0.909225,-0.177402,0.376613][0.710938,0.285156,-0.252025][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.271657,-0.639573,0.272555][-2.19092,-0.180472,2.19092][0.75,0.324219,-0.188243][-0.278388,-0.476163,0.279285][-0.695891,-0.177402,0.695891][0.710938,0.324219,-0.192891][-0.366673,-0.705625,0.142234][0,2.70168,0][0.58879,0.989746,-0.464923][-0.233412,-0.705625,0.166722][0.564037,0,-0.776326][0.602804,0.989746,-0.295955][-0.288513,-0.705625,-0.00286175][3.03692,-5.21966e-007,-0.191204][0.505756,0.989746,-0.365821][-0.288513,-0.705625,-0.00286175][3.03692,-5.21966e-007,-0.191204][0.505756,0.989746,-0.365821][-0.394337,-0.705625,-0.00286175][0,2.70202,0][0.505756,0.989746,-0.5][-0.366673,-0.705625,0.142234][0,2.70168,0][0.58879,0.989746,-0.464923][-0.268272,-0.705625,-0.10902][1.1485,2.47468e-007,0.218978][0.445005,0.989746,-0.340156][-0.345619,-0.705625,-0.192727][-2.55181e-007,2.63904,-1.27114e-006][0.397101,0.989746,-0.438228][-0.394337,-0.705625,-0.00286175][0,2.70202,0][0.505756,0.989746,-0.5][-0.394337,-0.705625,-0.00286175][0,2.70202,0][0.505756,0.989746,-0.5][-0.288513,-0.705625,-0.00286175][3.03692,-5.21966e-007,-0.191204][0.505756,0.989746,-0.365821][-0.268272,-0.705625,-0.10902][1.1485,2.47468e-007,0.218978][0.445005,0.989746,-0.340156][-0.269235,0.992346,-0.270133][-0.345433,0.868775,-0.354832][0.359375,0.160156,-0.18657][-0.145297,0.992346,-0.352945][-0.195631,0.868775,-0.454927][0.359375,0.132813,-0.100971][-0.195187,0.893508,-0.473391][-0.270332,0.707801,-0.652639][0.382813,0.0976563,-0.135428][-0.195187,0.893508,-0.473391][-0.270332,0.707801,-0.652639][0.382813,0.0976563,-0.135428][-0.36142,0.893508,-0.362317][-0.499509,0.707801,-0.499508][0.382813,0.132813,-0.250239][-0.269235,0.992346,-0.270133][-0.345433,0.868775,-0.354832][0.359375,0.160156,-0.18657][-0.00656703,1.09497,-0.00309184][-0.0525476,0.998228,-0.0279048][0.332031,0.238281,-0.00515553][0.00836223,1.09497,0.00309166][0.0562531,0.998192,0.0211596][0.332031,0.242188,0.00515552][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][-0.00656703,1.09497,-0.00309184][-0.0525476,0.998228,-0.0279048][0.332031,0.238281,-0.00515553][0.319025,-0.719567,-0.234647][-3.17464e-007,-2.70202,1.97826e-006][0.373112,0.973616,0.404508][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.168011,-0.719567,-0.359615][-1.89844e-006,-2.70168,5.89198e-006][0.301596,0.973616,0.21303][0.319025,-0.719567,-0.234647][-3.17464e-007,-2.70202,1.97826e-006][0.373112,0.973616,0.404508][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][-0.152362,-1.01163,0.0164348][-0.758478,-0.912992,0.300433][0.516799,0.635722,-0.193188][-0.124248,-1.01163,-0.0931325][3.84463e-007,-1.88496,1.89736e-007][0.454097,0.635722,-0.157541][-0.124248,-1.01163,-0.0931325][3.84463e-007,-1.88496,1.89736e-007][0.454097,0.635722,-0.157541][-0.0238267,-1.09497,-0.0534527][-0.942554,-1.28145,-0.306257][0.476804,0.539295,-0.0302111][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][0.00359454,-1.09497,-0.00193675][3.32423e-007,-5.09231,-2.57965e-006][0.506285,0.539295,0.00455764][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][0.0554795,-1.09497,0.00416632][0.63869,-0.999986,-0.405183][0.509778,0.539295,0.0703452][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][0.227319,-0.997687,0.0870924][5.79255e-007,1.3194,7.24754e-007][0.557234,0.651851,0.288229][0.242532,-0.997686,-0.0335756][0,1.78302,0][0.488179,0.651851,0.307519][0.242532,-0.997686,-0.0335756][0,1.78302,0][0.488179,0.651851,0.307519][0.128675,-0.997687,-0.0735481][-1.1242,1.62162,0.796276][0.465304,0.651851,0.163154][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][-0.142194,-0.997686,0.0336773][0.473271,0.634097,-0.572304][0.526666,0.651851,-0.180295][-0.244469,-0.997686,-0.00286131][1.14849,1.34566,-0.373165][0.505756,0.651851,-0.309975][-0.19778,-0.997686,0.140835][1.14849,1.34565,-0.373162][0.58799,0.651851,-0.250775][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.251303,-0.705625,-0.306749][2.49553e-006,2.63869,-4.6952e-006][0.33185,0.989745,0.318639][0.0737718,-0.705625,-0.390236][1.23468e-006,2.63902,-5.7784e-006][0.284073,0.989745,0.093539][0.0737718,-0.705625,-0.390236][1.23468e-006,2.63902,-5.7784e-006][0.284073,0.989745,0.093539][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.251303,-0.705625,-0.306749][2.49553e-006,2.63869,-4.6952e-006][0.33185,0.989745,0.318639][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.252869,-0.705625,-0.141775][-2.77201,0.0637778,1.22947][0.42626,0.989746,0.320626][0.252869,-0.705625,-0.141775][-2.77201,0.0637778,1.22947][0.42626,0.989746,0.320626][0.366672,-0.705625,-0.147956][0,2.70168,-1.43973e-006][0.422722,0.989746,0.464923][0.251303,-0.705625,-0.306749][2.49553e-006,2.63869,-4.6952e-006][0.33185,0.989745,0.318639][-0.233412,-0.960096,-0.172443][2.44015,0.118576,1.77287][0.408709,0.69534,-0.295955][-0.19778,-0.997687,-0.146555][0.70981,1.34566,0.976972][0.423524,0.651851,-0.250775][-0.0755451,-0.997687,-0.235364][0.709808,1.34567,0.976961][0.372702,0.651851,-0.0957876][-0.0755451,-0.997687,-0.235364][0.709808,1.34567,0.976961][0.372702,0.651851,-0.0957876][-0.0891554,-0.960096,-0.277253][1.00465,0.0310418,2.86182][0.34873,0.69534,-0.113045][-0.233412,-0.960096,-0.172443][2.44015,0.118576,1.77287][0.408709,0.69534,-0.295955][0.19778,-0.997687,-0.146555][-0.740362,1.41431,0.852107][0.423524,0.651851,0.250775][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][0.154639,-0.960096,-0.24643][-0.979475,0.0254762,1.04282][0.366369,0.69534,0.196075][0.154639,-0.960096,-0.24643][-0.979475,0.0254762,1.04282][0.366369,0.69534,0.196075][0.0755453,-0.997687,-0.235364][-0.284195,0.713133,0.391162][0.372702,0.651851,0.0957878][0.19778,-0.997687,-0.146555][-0.740362,1.41431,0.852107][0.423524,0.651851,0.250775][0.273453,-0.639573,-0.272555][2.19092,-0.180471,-2.19092][0.75,0.160156,0.188243][0.148403,-0.639573,-0.35611][1.18572,-0.180471,-2.86258][0.75,0.132813,0.101876][0.152046,-0.476163,-0.364904][0.376613,-0.177402,-0.909225][0.710938,0.132813,0.104392][0.152046,-0.476163,-0.364904][0.376613,-0.177402,-0.909225][0.710938,0.132813,0.104392][0.280183,-0.476163,-0.279285][0.695891,-0.177402,-0.695891][0.710938,0.15625,0.192891][0.273453,-0.639573,-0.272555][2.19092,-0.180471,-2.19092][0.75,0.160156,0.188243][0.000897694,-0.476163,-0.394969][0,-0.177402,-0.984138][0.710938,0.121094,0][0.152046,-0.476163,-0.364904][0.376613,-0.177402,-0.909225][0.710938,0.132813,0.104392][0.148403,-0.639573,-0.35611][1.18572,-0.180471,-2.86258][0.75,0.132813,0.101876][0.148403,-0.639573,-0.35611][1.18572,-0.180471,-2.86258][0.75,0.132813,0.101876][0.000897726,-0.639573,-0.385451][2.38419e-007,-0.180471,-3.09843][0.75,0.125,0][0.000897694,-0.476163,-0.394969][0,-0.177402,-0.984138][0.710938,0.121094,0][0.273452,-0.639573,0.272555][2.19092,-0.180472,2.19092][0.75,0.324219,0.188243][0.357008,-0.639573,0.147506][2.86257,-0.180472,1.18572][0.75,0.285156,0.245951][0.365801,-0.476163,0.151148][0.909225,-0.177402,0.376614][0.710938,0.285156,0.252025][0.365801,-0.476163,0.151148][0.909225,-0.177402,0.376614][0.710938,0.285156,0.252025][0.280183,-0.476163,0.279285][0.695891,-0.177402,0.695891][0.710938,0.324219,0.192891][0.273452,-0.639573,0.272555][2.19092,-0.180472,2.19092][0.75,0.324219,0.188243][0.395866,-0.476163,0][0.984138,-0.177402,0][0.710938,0.242188,0.272789][0.365801,-0.476163,0.151148][0.909225,-0.177402,0.376614][0.710938,0.285156,0.252025][0.357008,-0.639573,0.147506][2.86257,-0.180472,1.18572][0.75,0.285156,0.245951][0.357008,-0.639573,0.147506][2.86257,-0.180472,1.18572][0.75,0.285156,0.245951][0.386348,-0.639573,0][3.09843,-0.180471,9.98378e-007][0.75,0.242188,0.266216][0.395866,-0.476163,0][0.984138,-0.177402,0][0.710938,0.242188,0.272789][0.000897501,-0.639573,0.385451][-1.04308e-006,-0.180472,3.09843][0.75,0.355469,0][0.148403,-0.639573,0.35611][1.18572,-0.180472,2.86257][0.75,0.347656,0.101876][0.152046,-0.476163,0.364903][0.376613,-0.177402,0.909225][0.710938,0.351563,0.104392][0.152046,-0.476163,0.364903][0.376613,-0.177402,0.909225][0.710938,0.351563,0.104392][0.000897533,-0.476163,0.394969][-1.63089e-007,-0.177402,0.984138][0.710938,0.359375,0][0.000897501,-0.639573,0.385451][-1.04308e-006,-0.180472,3.09843][0.75,0.355469,0][0.280183,-0.476163,0.279285][0.695891,-0.177402,0.695891][0.710938,0.324219,0.192891][0.152046,-0.476163,0.364903][0.376613,-0.177402,0.909225][0.710938,0.351563,0.104392][0.148403,-0.639573,0.35611][1.18572,-0.180472,2.86257][0.75,0.347656,0.101876][0.148403,-0.639573,0.35611][1.18572,-0.180472,2.86257][0.75,0.347656,0.101876][0.273452,-0.639573,0.272555][2.19092,-0.180472,2.19092][0.75,0.324219,0.188243][0.280183,-0.476163,0.279285][0.695891,-0.177402,0.695891][0.710938,0.324219,0.192891][0.386348,-0.639573,0][3.09843,-0.180471,9.98378e-007][0.75,0.242188,0.266216][0.357008,-0.639573,-0.147506][2.86258,-0.180472,-1.18572][0.75,0.195313,0.245951][0.365801,-0.476163,-0.151148][0.909225,-0.177402,-0.376613][0.710938,0.195313,0.252025][0.365801,-0.476163,-0.151148][0.909225,-0.177402,-0.376613][0.710938,0.195313,0.252025][0.395866,-0.476163,0][0.984138,-0.177402,0][0.710938,0.242188,0.272789][0.386348,-0.639573,0][3.09843,-0.180471,9.98378e-007][0.75,0.242188,0.266216][0.280183,-0.476163,-0.279285][0.695891,-0.177402,-0.695891][0.710938,0.15625,0.192891][0.365801,-0.476163,-0.151148][0.909225,-0.177402,-0.376613][0.710938,0.195313,0.252025][0.357008,-0.639573,-0.147506][2.86258,-0.180472,-1.18572][0.75,0.195313,0.245951][0.357008,-0.639573,-0.147506][2.86258,-0.180472,-1.18572][0.75,0.195313,0.245951][0.273453,-0.639573,-0.272555][2.19092,-0.180471,-2.19092][0.75,0.160156,0.188243][0.280183,-0.476163,-0.279285][0.695891,-0.177402,-0.695891][0.710938,0.15625,0.192891][-0.211359,-0.719567,-0.335771][0.0536263,-2.82178,-0.146154][0.315241,0.973616,-0.267993][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][-0.319025,-0.719567,-0.234647][-1.00138e-006,-2.70202,1.37827e-006][0.373112,0.973616,-0.404508][-0.211359,-0.719567,-0.335771][0.0536263,-2.82178,-0.146154][0.315241,0.973616,-0.267993][0.0246865,-0.719567,-0.396424][-0.0655812,-2.76261,-0.0752249][0.280531,0.973616,0.0313012][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][-0.121857,-0.705625,-0.377897][-0.0549384,0.0142342,-0.432687][0.291134,0.989745,-0.154508][0.0246865,-0.719567,-0.396424][-0.0655812,-2.76261,-0.0752249][0.280531,0.973616,0.0313012][0.27103,0.992346,-0.270133][0.360481,0.860295,-0.360481][0.359375,0.160156,0.18657][0.353843,0.992346,-0.146195][0.467745,0.862367,-0.193747][0.359375,0.195313,0.243765][0.474288,0.893508,-0.196085][0.652639,0.707802,-0.270332][0.382813,0.183594,0.326952][0.474288,0.893508,-0.196085][0.652639,0.707802,-0.270332][0.382813,0.183594,0.326952][0.363215,0.893508,-0.362318][0.499508,0.707801,-0.499509][0.382813,0.132813,0.250238][0.27103,0.992346,-0.270133][0.360481,0.860295,-0.360481][0.359375,0.160156,0.18657][-0.352048,0.992346,-0.146195][-0.470992,0.860294,-0.195091][0.359375,0.195313,-0.243765][-0.269235,0.992346,-0.270133][-0.345433,0.868775,-0.354832][0.359375,0.160156,-0.18657][-0.36142,0.893508,-0.362317][-0.499509,0.707801,-0.499508][0.382813,0.132813,-0.250239][-0.36142,0.893508,-0.362317][-0.499509,0.707801,-0.499508][0.382813,0.132813,-0.250239][-0.472493,0.893508,-0.196085][-0.652639,0.707802,-0.270332][0.382813,0.183594,-0.326952][-0.352048,0.992346,-0.146195][-0.470992,0.860294,-0.195091][0.359375,0.195313,-0.243765][0.153579,-1.01163,-0.00286032][1.00736,-1.20386,-0.215745][0.505757,0.635722,0.194731][0.0407537,-1.09497,0.0354343][1.16261,-2.30384,1.49851][0.527672,0.539295,0.0516736][0.0554795,-1.09497,0.00416632][0.63869,-0.999986,-0.405183][0.509778,0.539295,0.0703452][0.0554795,-1.09497,0.00416632][0.63869,-0.999986,-0.405183][0.509778,0.539295,0.0703452][0.124248,-1.01163,-0.0931325][0,-1.88497,3.9712e-006][0.454097,0.635722,0.15754][0.153579,-1.01163,-0.00286032][1.00736,-1.20386,-0.215745][0.505757,0.635722,0.194731][0.211358,-0.719567,0.330049][0,-2.70168,3.07296e-007][0.696272,0.973616,0.267992][0.0942027,-0.719567,0.287067][0.0988735,0,1.56768][0.671674,0.973616,0.119444][0.194272,-0.719567,0.232066][1.33849,0.0407036,1.07731][0.640199,0.973616,0.246328][0.194272,-0.719567,0.232066][1.33849,0.0407036,1.07731][0.640199,0.973616,0.246328][0.319025,-0.719567,0.228925][0,-2.70202,0][0.638401,0.973616,0.404508][0.211358,-0.719567,0.330049][0,-2.70168,3.07296e-007][0.696272,0.973616,0.267992][-0.152362,-1.01163,0.0164348][-0.758478,-0.912992,0.300433][0.516799,0.635722,-0.193188][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.124248,-1.01163,-0.0931325][3.84463e-007,-1.88496,1.89736e-007][0.454097,0.635722,-0.157541][-0.152362,-1.01163,0.0164348][-0.758478,-0.912992,0.300433][0.516799,0.635722,-0.193188][-0.00325303,-1.09497,-0.00107407][-7.18668e-006,-4.45226,-3.94523e-006][0.506779,0.539295,-0.00412474][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][-0.0238267,-1.09497,-0.0534527][-0.942554,-1.28145,-0.306257][0.476804,0.539295,-0.0302111][-0.00325303,-1.09497,-0.00107407][-7.18668e-006,-4.45226,-3.94523e-006][0.506779,0.539295,-0.00412474][-0.0104617,-1.09497,0.0520751][-0.414197,-2.93353,2.23964][0.537195,0.539295,-0.0132649][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.0474588,-1.01163,0.143202][-0.126802,-1.19142,1.03822][0.589344,0.635722,-0.0601756][0.0474583,-1.01163,0.143202][0,-1.88495,0][0.589344,0.635722,0.0601748][0.0474583,-1.01163,0.143202][0,-1.88495,0][0.589344,0.635722,0.0601748][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.203254,-1.01163,0.144812][-0.742224,-1.32126,0.896906][0.590265,0.635722,-0.257716][-0.124248,-1.01163,0.0874114][-0.821706,-0.989101,0.325478][0.557417,0.635722,-0.157541][-0.0474588,-1.01163,0.143202][-0.126802,-1.19142,1.03822][0.589344,0.635722,-0.0601756][-0.0474588,-1.01163,0.143202][-0.126802,-1.19142,1.03822][0.589344,0.635722,-0.0601756][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.203254,-1.01163,0.144812][-0.742224,-1.32126,0.896906][0.590265,0.635722,-0.257716][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.251302,-0.705625,0.30103][0,2.76444,0][0.679664,0.989746,0.318638][0.345618,-0.705625,0.187006][0,2.70168,0][0.614412,0.989746,0.438228][0.345618,-0.705625,0.187006][0,2.70168,0][0.614412,0.989746,0.438228][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.000897469,0.893508,-0.512394][-3.07457e-007,0.707801,-0.706412][0.382813,0.0859375,0][-0.195187,0.893508,-0.473391][-0.270332,0.707801,-0.652639][0.382813,0.0976563,-0.135428][-0.145297,0.992346,-0.352945][-0.195631,0.868775,-0.454927][0.359375,0.132813,-0.100971][-0.145297,0.992346,-0.352945][-0.195631,0.868775,-0.454927][0.359375,0.132813,-0.100971][0.000897469,0.992346,-0.382025][-4.1064e-007,0.860294,-0.509798][0.359375,0.125,0][0.000897469,0.893508,-0.512394][-3.07457e-007,0.707801,-0.706412][0.382813,0.0859375,0][-0.145297,0.992346,-0.352945][-0.195631,0.868775,-0.454927][0.359375,0.132813,-0.100971][-0.269235,0.992346,-0.270133][-0.345433,0.868775,-0.354832][0.359375,0.160156,-0.18657][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][-0.145297,0.992346,-0.352945][-0.195631,0.868775,-0.454927][0.359375,0.132813,-0.100971][0.27103,0.992346,0.270133][0.354832,0.868775,0.345433][0.359375,0.320313,0.18657][0.353843,0.992346,0.146194][0.454927,0.868775,0.19563][0.359375,0.285156,0.243766][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.0831302,1.06184,0.198526][0.122344,0.961666,0.245419][0.339844,0.300781,0.0567948][0.27103,0.992346,0.270133][0.354832,0.868775,0.345433][0.359375,0.320313,0.18657][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][-0.197629,1.06184,0.0822325][-0.257299,0.960402,0.106892][0.339844,0.265625,-0.137114][-0.00656703,1.09497,-0.00309184][-0.0525476,0.998228,-0.0279048][0.332031,0.238281,-0.00515553][0.194273,-0.965871,-0.237786][0.683008,-0.027566,-1.24268][0.371316,0.688659,0.246329][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][0.0776361,-1.01163,-0.2418][0,-2.57626,-3.24159e-006][0.369019,0.635722,0.0984388][0.0776361,-1.01163,-0.2418][0,-2.57626,-3.24159e-006][0.369019,0.635722,0.0984388][0.0942034,-0.965871,-0.292787][0.778766,-0.0158284,-1.53491][0.33984,0.688659,0.119445][0.194273,-0.965871,-0.237786][0.683008,-0.027566,-1.24268][0.371316,0.688659,0.246329][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][-0.0942032,-0.965871,-0.292787][-0.162617,0.039342,-1.5621][0.33984,0.688659,-0.119445][0.0190842,-0.965871,-0.307109][-0.215568,0.0663143,-1.70513][0.331644,0.688659,0.0241978][0.227319,-0.997687,0.0870924][5.79255e-007,1.3194,7.24754e-007][0.557234,0.651851,0.288229][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.288513,-0.960096,-0.00286031][-2.97947,-0.0385478,0.0826941][0.505757,0.69534,0.36582][0.288513,-0.960096,-0.00286031][-2.97947,-0.0385478,0.0826941][0.505757,0.69534,0.36582][0.242532,-0.997686,-0.0335756][0,1.78302,0][0.488179,0.651851,0.307519][0.227319,-0.997687,0.0870924][5.79255e-007,1.3194,7.24754e-007][0.557234,0.651851,0.288229][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][-0.0891561,-0.705625,0.271531][0.923294,0,-1.2708][0.662783,0.989746,-0.113046][0.0539733,-0.705625,0.28056][-0.608982,-0.0382545,-1.29499][0.66795,0.989746,0.0684355][0.0539733,-0.705625,0.28056][-0.608982,-0.0382545,-1.29499][0.66795,0.989746,0.0684355][0.089155,-0.960096,0.271532][-0.917945,0.0987633,-2.86836][0.662784,0.69534,0.113044][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][0.089155,-0.960096,0.271532][-0.917945,0.0987633,-2.86836][0.662784,0.69534,0.113044][0.0755448,-0.997687,0.229644][5.66025e-007,2.63903,6.34952e-007][0.638812,0.651851,0.0957871][-0.0755457,-0.997687,0.229643][0,0.913519,6.33295e-007][0.638812,0.651851,-0.0957884][-0.0755457,-0.997687,0.229643][0,0.913519,6.33295e-007][0.638812,0.651851,-0.0957884][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][0.089155,-0.960096,0.271532][-0.917945,0.0987633,-2.86836][0.662784,0.69534,0.113044][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][-0.0151901,-1.08103,-0.0496103][-0.686028,1.37585,1.45757][0.479003,0.555425,-0.0192604][-0.142194,-0.997686,0.0336773][0.473271,0.634097,-0.572304][0.526666,0.651851,-0.180295][-0.19778,-0.997686,0.140835][1.14849,1.34565,-0.373162][0.58799,0.651851,-0.250775][-0.0755457,-0.997687,0.229643][0,0.913519,6.33295e-007][0.638812,0.651851,-0.0957884][-0.0755457,-0.997687,0.229643][0,0.913519,6.33295e-007][0.638812,0.651851,-0.0957884][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][-0.142194,-0.997686,0.0336773][0.473271,0.634097,-0.572304][0.526666,0.651851,-0.180295][-0.19778,-0.997687,-0.146555][0.70981,1.34566,0.976972][0.423524,0.651851,-0.250775][-0.118774,-0.997687,-0.0891553][0.728612,1.2298,0.722252][0.456373,0.651851,-0.1506][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][-0.0755451,-0.997687,-0.235364][0.709808,1.34567,0.976961][0.372702,0.651851,-0.0957876][-0.19778,-0.997687,-0.146555][0.70981,1.34566,0.976972][0.423524,0.651851,-0.250775][0.366672,-0.705625,-0.147956][0,2.70168,-1.43973e-006][0.422722,0.989746,0.464923][0.252869,-0.705625,-0.141775][-2.77201,0.0637778,1.22947][0.42626,0.989746,0.320626][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.394337,-0.705625,-0.00286076][0,2.70202,0][0.505757,0.989746,0.5][0.366672,-0.705625,-0.147956][0,2.70168,-1.43973e-006][0.422722,0.989746,0.464923][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][-0.121857,-0.705625,-0.377897][-0.0549384,0.0142342,-0.432687][0.291134,0.989745,-0.154508][-0.211359,-0.705625,-0.335771][-1.61078e-006,2.76444,-5.29739e-006][0.315241,0.989745,-0.267993][-0.211359,-0.705625,-0.335771][-1.61078e-006,2.76444,-5.29739e-006][0.315241,0.989745,-0.267993][-0.183863,-0.705625,-0.225199][0.75592,-0.0576382,1.65712][0.378518,0.989746,-0.233129][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][-0.269235,0.992346,0.270133][-0.357997,0.862367,0.357997][0.359375,0.320313,-0.18657][-0.352048,0.992346,0.146195][-0.470992,0.860294,0.195091][0.359375,0.285156,-0.243765][-0.472493,0.893508,0.196085][-0.652639,0.707801,0.270332][0.382813,0.300781,-0.326952][-0.472493,0.893508,0.196085][-0.652639,0.707801,0.270332][0.382813,0.300781,-0.326952][-0.36142,0.893508,0.362318][-0.499508,0.707801,0.499509][0.382813,0.347656,-0.250238][-0.269235,0.992346,0.270133][-0.357997,0.862367,0.357997][0.359375,0.320313,-0.18657][0.27103,0.992346,0.270133][0.354832,0.868775,0.345433][0.359375,0.320313,0.18657][0.147093,0.992346,0.352945][0.195091,0.860294,0.470992][0.359375,0.347656,0.100971][0.196983,0.893508,0.473391][0.270332,0.707801,0.652639][0.382813,0.382813,0.135428][0.196983,0.893508,0.473391][0.270332,0.707801,0.652639][0.382813,0.382813,0.135428][0.363215,0.893508,0.362317][0.499509,0.707801,0.499508][0.382813,0.347656,0.250239][0.27103,0.992346,0.270133][0.354832,0.868775,0.345433][0.359375,0.320313,0.18657][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][0.153579,-1.01163,-0.00286032][1.00736,-1.20386,-0.215745][0.505757,0.635722,0.194731][0.124248,-1.01163,-0.0931325][0,-1.88497,3.9712e-006][0.454097,0.635722,0.15754][0.124248,-1.01163,-0.0931325][0,-1.88497,3.9712e-006][0.454097,0.635722,0.15754][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][-0.295256,-0.965871,0.0730079][-2.9869,-0.00162242,0.848612][0.549174,0.688659,-0.374371][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.203254,-1.01163,0.144812][-0.742224,-1.32126,0.896906][0.590265,0.635722,-0.257716][-0.203254,-1.01163,0.144812][-0.742224,-1.32126,0.896906][0.590265,0.635722,-0.257716][-0.246627,-0.965871,0.176325][-1.63183,-0.0187538,0.89269][0.608299,0.688659,-0.312712][-0.295256,-0.965871,0.0730079][-2.9869,-0.00162242,0.848612][0.549174,0.688659,-0.374371][-0.283462,-0.965871,-0.115029][-2.91863,0.0421445,-1.04847][0.441566,0.688659,-0.359416][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.304848,-0.965871,-0.0028613][-3.10139,-1.72778e-007,-0.0971787][0.505756,0.688659,-0.386533][-0.283462,-0.965871,-0.115029][-2.91863,0.0421445,-1.04847][0.441566,0.688659,-0.359416][0.00114685,-1.08103,0.000669093][-8.14725e-006,3.92547,-3.57608e-007][0.507777,0.555425,0.00145409][-0.00307729,-1.08103,0.0461988][0.240725,2.74883,-2.33553][0.533832,0.555425,-0.00390192][0.0313262,-1.08103,0.0350218][-0.387482,1.36624,-1.19263][0.527436,0.555425,0.03972][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][-0.0457079,-1.08103,-0.0209476][1.98281,1.83956,0.123813][0.495406,0.555425,-0.0579554][-0.0397684,-1.08103,0.0260326][1.51576,1.99344,-1.42988][0.522291,0.555425,-0.0504244][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.38193,-0.719567,0.0952784][9.82625e-007,-2.76445,1.7678e-007][0.561919,0.973616,-0.484268][-0.391212,-0.719567,-0.0524062][0,-2.70168,0][0.477403,0.973616,-0.496038][-0.267186,-0.719567,0.143918][-2.73391,0.0682712,1.4123][0.589754,0.973616,-0.338779][-0.319026,-0.719567,0.228924][6.59074e-007,-2.70202,-1.0256e-006][0.6384,0.973616,-0.404509][-0.38193,-0.719567,0.0952784][9.82625e-007,-2.76445,1.7678e-007][0.561919,0.973616,-0.484268][-0.38193,-0.719567,0.0952784][9.82625e-007,-2.76445,1.7678e-007][0.561919,0.973616,-0.484268][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.267186,-0.719567,0.143918][-2.73391,0.0682712,1.4123][0.589754,0.973616,-0.338779][-0.271657,-0.639573,-0.272555][-2.19092,-0.180471,-2.19092][0.75,0.160156,-0.188243][-0.355212,-0.639573,-0.147506][-2.86258,-0.180472,-1.18572][0.75,0.195313,-0.245951][-0.364006,-0.476163,-0.151148][-0.909225,-0.177402,-0.376614][0.710938,0.195313,-0.252024][-0.364006,-0.476163,-0.151148][-0.909225,-0.177402,-0.376614][0.710938,0.195313,-0.252024][-0.278388,-0.476163,-0.279285][-0.695891,-0.177402,-0.695891][0.710938,0.15625,-0.192891][-0.271657,-0.639573,-0.272555][-2.19092,-0.180471,-2.19092][0.75,0.160156,-0.188243][0.283462,-0.965871,0.109309][1.543,1.14744e-006,0.294191][0.569948,0.688659,0.359416][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][0.304848,-0.965871,-0.00286031][1.96523,0.0736891,0.212888][0.505757,0.688659,0.386533][0.283462,-0.965871,0.109309][1.543,1.14744e-006,0.294191][0.569948,0.688659,0.359416][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][-0.163394,-0.965871,-0.260221][-0.745187,-1.84165,-1.03905][0.358477,0.688659,-0.207176][-0.246627,-0.965871,-0.182046][-1.37657,-6.31965e-007,-0.756612][0.403214,0.688659,-0.312711][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.0942039,-0.965871,0.287067][-0.335052,-0.74046,0.609598][0.671674,0.688659,-0.119446][-0.194273,-0.965871,0.232066][-1.11313,-2.33251,1.26113][0.640198,0.688659,-0.246329][-0.0942039,-0.965871,0.287067][-0.335052,-0.74046,0.609598][0.671674,0.688659,-0.119446][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.194273,-0.965871,0.232066][-1.11313,-2.33251,1.26113][0.640198,0.688659,-0.246329][-0.0942039,-0.965871,0.287067][-0.335052,-0.74046,0.609598][0.671674,0.688659,-0.119446][0.0755453,-0.997687,-0.235364][-0.284195,0.713133,0.391162][0.372702,0.651851,0.0957878][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][0.128675,-0.997687,-0.0735481][-1.1242,1.62162,0.796276][0.465304,0.651851,0.163154][0.128675,-0.997687,-0.0735481][-1.1242,1.62162,0.796276][0.465304,0.651851,0.163154][0.19778,-0.997687,-0.146555][-0.740362,1.41431,0.852107][0.423524,0.651851,0.250775][0.0755453,-0.997687,-0.235364][-0.284195,0.713133,0.391162][0.372702,0.651851,0.0957878][-0.364006,-0.476163,0.151148][-0.909225,-0.177402,0.376613][0.710938,0.285156,-0.252025][-0.394071,-0.476163,-1.70898e-007][-0.984138,-0.177402,-1.22317e-007][0.710938,0.242188,-0.272789][-0.384553,-0.639573,-1.9744e-007][-3.09843,-0.180471,-7.45058e-007][0.75,0.242188,-0.266216][-0.384553,-0.639573,-1.9744e-007][-3.09843,-0.180471,-7.45058e-007][0.75,0.242188,-0.266216][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.364006,-0.476163,0.151148][-0.909225,-0.177402,0.376613][0.710938,0.285156,-0.252025][-0.15025,-0.476163,0.364903][-0.376614,-0.177402,0.909225][0.710938,0.351563,-0.104392][-0.278388,-0.476163,0.279285][-0.695891,-0.177402,0.695891][0.710938,0.324219,-0.192891][-0.271657,-0.639573,0.272555][-2.19092,-0.180472,2.19092][0.75,0.324219,-0.188243][-0.271657,-0.639573,0.272555][-2.19092,-0.180472,2.19092][0.75,0.324219,-0.188243][-0.146608,-0.639573,0.35611][-1.18572,-0.180472,2.86257][0.75,0.347656,-0.101876][-0.15025,-0.476163,0.364903][-0.376614,-0.177402,0.909225][0.710938,0.351563,-0.104392][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][-0.0942032,-0.965871,-0.292787][-0.162617,0.039342,-1.5621][0.33984,0.688659,-0.119445][-0.163394,-0.965871,-0.260221][-0.745187,-1.84165,-1.03905][0.358477,0.688659,-0.207176][-0.163394,-0.965871,-0.260221][-0.745187,-1.84165,-1.03905][0.358477,0.688659,-0.207176][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][0.513292,0.893508,-2.79862e-007][0.706411,0.707802,-1.22007e-007][0.382813,0.242188,0.353891][0.474288,0.893508,0.196085][0.652639,0.707801,0.270332][0.382813,0.300781,0.326952][0.56343,0.772345,0.233008][0.78633,0.524976,0.325708][0.410156,0.3125,0.388519][0.56343,0.772345,0.233008][0.78633,0.524976,0.325708][0.410156,0.3125,0.388519][0.609779,0.772345,-2.68454e-007][0.851117,0.524976,0][0.410156,0.242188,0.42053][0.513292,0.893508,-2.79862e-007][0.706411,0.707802,-1.22007e-007][0.382813,0.242188,0.353891][-0.195187,0.893508,-0.473391][-0.270332,0.707801,-0.652639][0.382813,0.0976563,-0.135428][0.000897469,0.893508,-0.512394][-3.07457e-007,0.707801,-0.706412][0.382813,0.0859375,0][0.000897501,0.772345,-0.608881][-1.95954e-007,0.524976,-0.851117][0.410156,0.0585938,0][0.000897501,0.772345,-0.608881][-1.95954e-007,0.524976,-0.851117][0.410156,0.0585938,0][-0.232111,0.772345,-0.562533][-0.325709,0.524976,-0.78633][0.410156,0.0703125,-0.16093][-0.195187,0.893508,-0.473391][-0.270332,0.707801,-0.652639][0.382813,0.0976563,-0.135428][0.704936,0.205627,-1.84635e-007][0.968047,-0.250769,-1.38031e-007][0.546875,0.242188,0.486251][0.651344,0.205627,-0.269424][0.894359,-0.250769,-0.370456][0.546875,0.160156,0.449238][0.669735,0.345107,-0.277042][0.923798,0.0132927,-0.38265][0.511719,0.15625,0.46194][0.669735,0.345107,-0.277042][0.923798,0.0132927,-0.38265][0.511719,0.15625,0.46194][0.724842,0.345107,-2.09082e-007][0.999912,0.0132928,-1.94556e-007][0.511719,0.242188,0.5][0.704936,0.205627,-1.84635e-007][0.968047,-0.250769,-1.38031e-007][0.546875,0.242188,0.486251][0.724842,0.345107,-2.09082e-007][0.999912,0.0132928,-1.94556e-007][0.511719,0.242188,0.5][0.669735,0.345107,0.277041][0.923798,0.0132928,0.38265][0.511719,0.324219,0.46194][0.651344,0.205627,0.269423][0.894359,-0.250769,0.370455][0.546875,0.320313,0.449238][0.651344,0.205627,0.269423][0.894359,-0.250769,0.370455][0.546875,0.320313,0.449238][0.704936,0.205627,-1.84635e-007][0.968047,-0.250769,-1.38031e-007][0.546875,0.242188,0.486251][0.724842,0.345107,-2.09082e-007][0.999912,0.0132928,-1.94556e-007][0.511719,0.242188,0.5][0.000897597,0.205627,-0.704038][-1.23242e-007,-0.250769,-0.968047][0.546875,0.0273438,0][-0.268526,0.205627,-0.650446][-0.370456,-0.250769,-0.894359][0.546875,0.046875,-0.18608][-0.276144,0.345107,-0.668838][-0.38265,0.0132926,-0.923798][0.511719,0.0390625,-0.191342][-0.276144,0.345107,-0.668838][-0.38265,0.0132926,-0.923798][0.511719,0.0390625,-0.191342][0.000897533,0.345107,-0.723945][-2.69386e-007,0.0132926,-0.999912][0.511719,0.0234375,0][0.000897597,0.205627,-0.704038][-1.23242e-007,-0.250769,-0.968047][0.546875,0.0273438,0][0.000897533,0.345107,-0.723945][-2.69386e-007,0.0132926,-0.999912][0.511719,0.0234375,0][0.277939,0.345107,-0.668838][0.382649,0.0132924,-0.923798][0.511719,0.0390625,0.191342][0.270321,0.205627,-0.650446][0.370455,-0.250769,-0.894359][0.546875,0.046875,0.18608][0.270321,0.205627,-0.650446][0.370455,-0.250769,-0.894359][0.546875,0.046875,0.18608][0.000897597,0.205627,-0.704038][-1.23242e-007,-0.250769,-0.968047][0.546875,0.0273438,0][0.000897533,0.345107,-0.723945][-2.69386e-007,0.0132926,-0.999912][0.511719,0.0234375,0][0.498728,0.205627,0.49783][0.684513,-0.250769,0.684513][0.546875,0.390625,0.343832][0.651344,0.205627,0.269423][0.894359,-0.250769,0.370455][0.546875,0.320313,0.449238][0.669735,0.345107,0.277041][0.923798,0.0132928,0.38265][0.511719,0.324219,0.46194][0.669735,0.345107,0.277041][0.923798,0.0132928,0.38265][0.511719,0.324219,0.46194][0.512804,0.345107,0.511906][0.707044,0.0132929,0.707044][0.511719,0.394531,0.353553][0.498728,0.205627,0.49783][0.684513,-0.250769,0.684513][0.546875,0.390625,0.343832][0.512804,0.345107,0.511906][0.707044,0.0132929,0.707044][0.511719,0.394531,0.353553][0.277939,0.345107,0.668837][0.38265,0.0132929,0.923798][0.511719,0.441406,0.191342][0.270321,0.205627,0.650446][0.370456,-0.250769,0.894359][0.546875,0.4375,0.18608][0.270321,0.205627,0.650446][0.370456,-0.250769,0.894359][0.546875,0.4375,0.18608][0.498728,0.205627,0.49783][0.684513,-0.250769,0.684513][0.546875,0.390625,0.343832][0.512804,0.345107,0.511906][0.707044,0.0132929,0.707044][0.511719,0.394531,0.353553][0.277939,0.345107,-0.668838][0.382649,0.0132924,-0.923798][0.511719,0.0390625,0.191342][0.512804,0.345107,-0.511906][0.707044,0.0132925,-0.707044][0.511719,0.0859375,0.353553][0.498728,0.205627,-0.49783][0.684512,-0.250769,-0.684513][0.546875,0.0898438,0.343832][0.498728,0.205627,-0.49783][0.684512,-0.250769,-0.684513][0.546875,0.0898438,0.343832][0.270321,0.205627,-0.650446][0.370455,-0.250769,-0.894359][0.546875,0.046875,0.18608][0.277939,0.345107,-0.668838][0.382649,0.0132924,-0.923798][0.511719,0.0390625,0.191342][-0.496933,0.205627,-0.49783][-0.684513,-0.250769,-0.684512][0.546875,0.0898438,-0.343832][-0.649549,0.205627,-0.269424][-0.894359,-0.250769,-0.370455][0.546875,0.160156,-0.449238][-0.66794,0.345107,-0.277042][-0.923798,0.0132927,-0.382649][0.511719,0.15625,-0.46194][-0.66794,0.345107,-0.277042][-0.923798,0.0132927,-0.382649][0.511719,0.15625,-0.46194][-0.511009,0.345107,-0.511906][-0.707044,0.0132925,-0.707044][0.511719,0.0859375,-0.353553][-0.496933,0.205627,-0.49783][-0.684513,-0.250769,-0.684512][0.546875,0.0898438,-0.343832][-0.511009,0.345107,-0.511906][-0.707044,0.0132925,-0.707044][0.511719,0.0859375,-0.353553][-0.276144,0.345107,-0.668838][-0.38265,0.0132926,-0.923798][0.511719,0.0390625,-0.191342][-0.268526,0.205627,-0.650446][-0.370456,-0.250769,-0.894359][0.546875,0.046875,-0.18608][-0.268526,0.205627,-0.650446][-0.370456,-0.250769,-0.894359][0.546875,0.046875,-0.18608][-0.496933,0.205627,-0.49783][-0.684513,-0.250769,-0.684512][0.546875,0.0898438,-0.343832][-0.511009,0.345107,-0.511906][-0.707044,0.0132925,-0.707044][0.511719,0.0859375,-0.353553][0.000897662,0.205627,0.704038][0,-0.250769,0.968047][0.546875,0.453125,0][0.270321,0.205627,0.650446][0.370456,-0.250769,0.894359][0.546875,0.4375,0.18608][0.277939,0.345107,0.668837][0.38265,0.0132929,0.923798][0.511719,0.441406,0.191342][0.277939,0.345107,0.668837][0.38265,0.0132929,0.923798][0.511719,0.441406,0.191342][0.000897694,0.345107,0.723944][1.19727e-007,0.0132926,0.999912][0.511719,0.457031,0][0.000897662,0.205627,0.704038][0,-0.250769,0.968047][0.546875,0.453125,0][0.000897694,0.345107,0.723944][1.19727e-007,0.0132926,0.999912][0.511719,0.457031,0][-0.276144,0.345107,0.668837][-0.38265,0.0132928,0.923798][0.511719,0.441406,-0.191342][-0.268526,0.205627,0.650446][-0.370455,-0.250769,0.894359][0.546875,0.4375,-0.18608][-0.268526,0.205627,0.650446][-0.370455,-0.250769,0.894359][0.546875,0.4375,-0.18608][0.000897662,0.205627,0.704038][0,-0.250769,0.968047][0.546875,0.453125,0][0.000897694,0.345107,0.723944][1.19727e-007,0.0132926,0.999912][0.511719,0.457031,0][0.651344,0.205627,-0.269424][0.894359,-0.250769,-0.370456][0.546875,0.160156,0.449238][0.498728,0.205627,-0.49783][0.684512,-0.250769,-0.684513][0.546875,0.0898438,0.343832][0.512804,0.345107,-0.511906][0.707044,0.0132925,-0.707044][0.511719,0.0859375,0.353553][0.512804,0.345107,-0.511906][0.707044,0.0132925,-0.707044][0.511719,0.0859375,0.353553][0.669735,0.345107,-0.277042][0.923798,0.0132927,-0.38265][0.511719,0.15625,0.46194][0.651344,0.205627,-0.269424][0.894359,-0.250769,-0.370456][0.546875,0.160156,0.449238][-0.649549,0.205627,-0.269424][-0.894359,-0.250769,-0.370455][0.546875,0.160156,-0.449238][-0.70314,0.205627,0][-0.968047,-0.250769,1.47891e-007][0.546875,0.242188,-0.486251][-0.723047,0.345107,0][-0.999912,0.0132927,1.99545e-007][0.511719,0.242188,-0.5][-0.723047,0.345107,0][-0.999912,0.0132927,1.99545e-007][0.511719,0.242188,-0.5][-0.66794,0.345107,-0.277042][-0.923798,0.0132927,-0.382649][0.511719,0.15625,-0.46194][-0.649549,0.205627,-0.269424][-0.894359,-0.250769,-0.370455][0.546875,0.160156,-0.449238][-0.276144,0.345107,0.668837][-0.38265,0.0132928,0.923798][0.511719,0.441406,-0.191342][-0.511008,0.345107,0.511906][-0.707044,0.0132929,0.707044][0.511719,0.394531,-0.353553][-0.496932,0.205627,0.49783][-0.684513,-0.250769,0.684513][0.546875,0.390625,-0.343832][-0.496932,0.205627,0.49783][-0.684513,-0.250769,0.684513][0.546875,0.390625,-0.343832][-0.268526,0.205627,0.650446][-0.370455,-0.250769,0.894359][0.546875,0.4375,-0.18608][-0.276144,0.345107,0.668837][-0.38265,0.0132928,0.923798][0.511719,0.441406,-0.191342][-0.649549,0.205627,0.269424][-0.894359,-0.250769,0.370456][0.546875,0.320313,-0.449238][-0.496932,0.205627,0.49783][-0.684513,-0.250769,0.684513][0.546875,0.390625,-0.343832][-0.511008,0.345107,0.511906][-0.707044,0.0132929,0.707044][0.511719,0.394531,-0.353553][-0.511008,0.345107,0.511906][-0.707044,0.0132929,0.707044][0.511719,0.394531,-0.353553][-0.66794,0.345107,0.277042][-0.923798,0.0132927,0.38265][0.511719,0.324219,-0.46194][-0.649549,0.205627,0.269424][-0.894359,-0.250769,0.370456][0.546875,0.320313,-0.449238][-0.66794,0.345107,0.277042][-0.923798,0.0132927,0.38265][0.511719,0.324219,-0.46194][-0.723047,0.345107,0][-0.999912,0.0132927,1.99545e-007][0.511719,0.242188,-0.5][-0.70314,0.205627,0][-0.968047,-0.250769,1.47891e-007][0.546875,0.242188,-0.486251][-0.70314,0.205627,0][-0.968047,-0.250769,1.47891e-007][0.546875,0.242188,-0.486251][-0.649549,0.205627,0.269424][-0.894359,-0.250769,0.370456][0.546875,0.320313,-0.449238][-0.66794,0.345107,0.277042][-0.923798,0.0132927,0.38265][0.511719,0.324219,-0.46194][0.0755448,-0.997687,0.229644][5.66025e-007,2.63903,6.34952e-007][0.638812,0.651851,0.0957871][0.089155,-0.960096,0.271532][-0.917945,0.0987633,-2.86836][0.662784,0.69534,0.113044][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.155795,-0.997687,0.185536][-3.55936e-007,1.93084,2.94343e-007][0.613571,0.651851,0.19754][0.0755448,-0.997687,0.229644][5.66025e-007,2.63903,6.34952e-007][0.638812,0.651851,0.0957871][-0.288513,-0.960096,-0.0028613][3.00199,0.06237,-0.0483578][0.505756,0.69534,-0.365821][-0.244469,-0.997686,-0.00286131][1.14849,1.34566,-0.373165][0.505756,0.651851,-0.309975][-0.19778,-0.997687,-0.146555][0.70981,1.34566,0.976972][0.423524,0.651851,-0.250775][-0.19778,-0.997687,-0.146555][0.70981,1.34566,0.976972][0.423524,0.651851,-0.250775][-0.233412,-0.960096,-0.172443][2.44015,0.118576,1.77287][0.408709,0.69534,-0.295955][-0.288513,-0.960096,-0.0028613][3.00199,0.06237,-0.0483578][0.505756,0.69534,-0.365821][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][-0.0755457,-0.997687,0.229643][0,0.913519,6.33295e-007][0.638812,0.651851,-0.0957884][-0.19778,-0.997686,0.140835][1.14849,1.34565,-0.373162][0.58799,0.651851,-0.250775][-0.19778,-0.997686,0.140835][1.14849,1.34565,-0.373162][0.58799,0.651851,-0.250775][-0.233412,-0.960096,0.166723][2.41721,-2.75652e-006,-1.7562][0.602804,0.69534,-0.295955][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][0.391212,-0.719567,0.0466847][-2.0264e-007,-2.70167,-6.14861e-007][0.53411,0.973616,0.496038][0.319025,-0.719567,0.228925][0,-2.70202,0][0.638401,0.973616,0.404508][0.319025,-0.719567,0.228925][0,-2.70202,0][0.638401,0.973616,0.404508][0.194272,-0.719567,0.232066][1.33849,0.0407036,1.07731][0.640199,0.973616,0.246328][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][0.0246852,-0.719567,0.390703][0,-2.63869,1.38328e-006][0.730982,0.973616,0.0312996][-0.168012,-0.719567,0.353894][1.502e-007,-2.63903,2.9097e-007][0.709917,0.973616,-0.213031][-0.168012,-0.719567,0.353894][1.502e-007,-2.63903,2.9097e-007][0.709917,0.973616,-0.213031][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.345618,-0.705625,0.187006][0,2.70168,0][0.614412,0.989746,0.438228][0.394337,-0.705625,-0.00286076][0,2.70202,0][0.505757,0.989746,0.5][-0.0737725,-0.705625,0.384514][0,2.63903,0][0.72744,0.989746,-0.0935401][0.0539733,-0.705625,0.28056][-0.608982,-0.0382545,-1.29499][0.66795,0.989746,0.0684355][-0.0891561,-0.705625,0.271531][0.923294,0,-1.2708][0.662783,0.989746,-0.113046][-0.0891561,-0.705625,0.271531][0.923294,0,-1.2708][0.662783,0.989746,-0.113046][-0.251303,-0.705625,0.301028][0,2.63869,0][0.679664,0.989746,-0.31864][-0.0737725,-0.705625,0.384514][0,2.63903,0][0.72744,0.989746,-0.0935401][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.152843,1.06184,-0.151946][0.196256,0.960604,-0.196782][0.339844,0.195313,0.104943][0.00836223,1.09497,0.00309166][0.0562531,0.998192,0.0211596][0.332031,0.242188,0.00515552][0.0831302,1.06184,0.198526][0.122344,0.961666,0.245419][0.339844,0.300781,0.0567948][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.00836223,1.09497,0.00309166][0.0562531,0.998192,0.0211596][0.332031,0.242188,0.00515552][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][0.19778,-0.997687,-0.146555][-0.740362,1.41431,0.852107][0.423524,0.651851,0.250775][0.242532,-0.997686,-0.0335756][0,1.78302,0][0.488179,0.651851,0.307519][0.242532,-0.997686,-0.0335756][0,1.78302,0][0.488179,0.651851,0.307519][0.288513,-0.960096,-0.00286031][-2.97947,-0.0385478,0.0826941][0.505757,0.69534,0.36582][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][-0.352048,0.992346,0.146195][-0.470992,0.860294,0.195091][0.359375,0.285156,-0.243765][-0.269235,0.992346,0.270133][-0.357997,0.862367,0.357997][0.359375,0.320313,-0.18657][-0.197629,1.06184,0.0822325][-0.257299,0.960402,0.106892][0.339844,0.265625,-0.137114][0.147093,0.992346,0.352945][0.195091,0.860294,0.470992][0.359375,0.347656,0.100971][0.27103,0.992346,0.270133][0.354832,0.868775,0.345433][0.359375,0.320313,0.18657][0.0831302,1.06184,0.198526][0.122344,0.961666,0.245419][0.339844,0.300781,0.0567948][-0.0755451,-0.997687,-0.235364][0.709808,1.34567,0.976961][0.372702,0.651851,-0.0957876][0.0539742,-0.960096,-0.286279][-0.148651,0.015181,2.03203][0.343564,0.69534,0.0684366][-0.0891554,-0.960096,-0.277253][1.00465,0.0310418,2.86182][0.34873,0.69534,-0.113045][0.353843,0.992346,-0.146195][0.467745,0.862367,-0.193747][0.359375,0.195313,0.243765][0.382923,0.992346,-2.84752e-007][0.509798,0.860294,-2.38632e-007][0.359375,0.242188,0.26385][0.513292,0.893508,-2.79862e-007][0.706411,0.707802,-1.22007e-007][0.382813,0.242188,0.353891][0.513292,0.893508,-2.79862e-007][0.706411,0.707802,-1.22007e-007][0.382813,0.242188,0.353891][0.474288,0.893508,-0.196085][0.652639,0.707802,-0.270332][0.382813,0.183594,0.326952][0.353843,0.992346,-0.146195][0.467745,0.862367,-0.193747][0.359375,0.195313,0.243765][0.382923,0.992346,-2.84752e-007][0.509798,0.860294,-2.38632e-007][0.359375,0.242188,0.26385][0.353843,0.992346,-0.146195][0.467745,0.862367,-0.193747][0.359375,0.195313,0.243765][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.27103,0.992346,-0.270133][0.360481,0.860295,-0.360481][0.359375,0.160156,0.18657][0.147092,0.992346,-0.352946][0.193746,0.862367,-0.467745][0.359375,0.132813,0.100971][0.152843,1.06184,-0.151946][0.196256,0.960604,-0.196782][0.339844,0.195313,0.104943][0.000897469,0.992346,-0.382025][-4.1064e-007,0.860294,-0.509798][0.359375,0.125,0][-0.145297,0.992346,-0.352945][-0.195631,0.868775,-0.454927][0.359375,0.132813,-0.100971][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][-0.352048,0.992346,-0.146195][-0.470992,0.860294,-0.195091][0.359375,0.195313,-0.243765][-0.381128,0.992346,0][-0.506284,0.862367,2.76365e-007][0.359375,0.242188,-0.26385][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][0.00836223,1.09497,0.00309166][0.0562531,0.998192,0.0211596][0.332031,0.242188,0.00515552][-0.00656703,1.09497,-0.00309184][-0.0525476,0.998228,-0.0279048][0.332031,0.238281,-0.00515553][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][0.0831302,1.06184,0.198526][0.122344,0.961666,0.245419][0.339844,0.300781,0.0567948][0.00836223,1.09497,0.00309166][0.0562531,0.998192,0.0211596][0.332031,0.242188,0.00515552][0.00089779,0.992346,0.382025][0,0.862367,0.506284][0.359375,0.355469,1.28697e-007][0.147093,0.992346,0.352945][0.195091,0.860294,0.470992][0.359375,0.347656,0.100971][0.0831302,1.06184,0.198526][0.122344,0.961666,0.245419][0.339844,0.300781,0.0567948][0.0831302,1.06184,0.198526][0.122344,0.961666,0.245419][0.339844,0.300781,0.0567948][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][0.00089779,0.992346,0.382025][0,0.862367,0.506284][0.359375,0.355469,1.28697e-007][-0.118774,-0.997687,-0.0891553][0.728612,1.2298,0.722252][0.456373,0.651851,-0.1506][-0.19778,-0.997687,-0.146555][0.70981,1.34566,0.976972][0.423524,0.651851,-0.250775][-0.244469,-0.997686,-0.00286131][1.14849,1.34566,-0.373165][0.505756,0.651851,-0.309975][-0.244469,-0.997686,-0.00286131][1.14849,1.34566,-0.373165][0.505756,0.651851,-0.309975][-0.142194,-0.997686,0.0336773][0.473271,0.634097,-0.572304][0.526666,0.651851,-0.180295][-0.118774,-0.997687,-0.0891553][0.728612,1.2298,0.722252][0.456373,0.651851,-0.1506][-0.0397684,-1.08103,0.0260326][1.51576,1.99344,-1.42988][0.522291,0.555425,-0.0504244][-0.118774,-0.997687,-0.0891553][0.728612,1.2298,0.722252][0.456373,0.651851,-0.1506][-0.142194,-0.997686,0.0336773][0.473271,0.634097,-0.572304][0.526666,0.651851,-0.180295][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.124248,-1.01163,0.0874114][0,-1.88496,0][0.557417,0.635722,0.15754][0.153579,-1.01163,-0.00286032][1.00736,-1.20386,-0.215745][0.505757,0.635722,0.194731][0.153579,-1.01163,-0.00286032][1.00736,-1.20386,-0.215745][0.505757,0.635722,0.194731][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.0313262,-1.08103,0.0350218][-0.387482,1.36624,-1.19263][0.527436,0.555425,0.03972][0.0935603,-0.997687,0.110279][-0.268953,0.948249,-0.827764][0.570503,0.651851,0.11863][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][0.0313262,-1.08103,0.0350218][-0.387482,1.36624,-1.19263][0.527436,0.555425,0.03972][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][0.00114685,-1.08103,0.000669093][-8.14725e-006,3.92547,-3.57608e-007][0.507777,0.555425,0.00145409][0.00114685,-1.08103,0.000669093][-8.14725e-006,3.92547,-3.57608e-007][0.507777,0.555425,0.00145409][0.0313262,-1.08103,0.0350218][-0.387482,1.36624,-1.19263][0.527436,0.555425,0.03972][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][0.0755453,-0.997687,-0.235364][-0.284195,0.713133,0.391162][0.372702,0.651851,0.0957878][0.154639,-0.960096,-0.24643][-0.979475,0.0254762,1.04282][0.366369,0.69534,0.196075][0.0539742,-0.960096,-0.286279][-0.148651,0.015181,2.03203][0.343564,0.69534,0.0684366][0.0539742,-0.960096,-0.286279][-0.148651,0.015181,2.03203][0.343564,0.69534,0.0684366][-0.0755451,-0.997687,-0.235364][0.709808,1.34567,0.976961][0.372702,0.651851,-0.0957876][0.0755453,-0.997687,-0.235364][-0.284195,0.713133,0.391162][0.372702,0.651851,0.0957878][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][0.0755453,-0.997687,-0.235364][-0.284195,0.713133,0.391162][0.372702,0.651851,0.0957878][-0.0755451,-0.997687,-0.235364][0.709808,1.34567,0.976961][0.372702,0.651851,-0.0957876][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][-0.211359,-0.719567,-0.335771][0.0536263,-2.82178,-0.146154][0.315241,0.973616,-0.267993][-0.121857,-0.705625,-0.377897][-0.0549384,0.0142342,-0.432687][0.291134,0.989745,-0.154508][0.00359454,-1.09497,-0.00193675][3.32423e-007,-5.09231,-2.57965e-006][0.506285,0.539295,0.00455764][0.0554795,-1.09497,0.00416632][0.63869,-0.999986,-0.405183][0.509778,0.539295,0.0703452][0.0407537,-1.09497,0.0354343][1.16261,-2.30384,1.49851][0.527672,0.539295,0.0516736][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.319025,-0.719567,-0.234647][-3.17464e-007,-2.70202,1.97826e-006][0.373112,0.973616,0.404508][0.381929,-0.719567,-0.101][0,-2.76445,-2.4992e-007][0.449594,0.973616,0.484268][0.366672,-0.705625,-0.147956][0,2.70168,-1.43973e-006][0.422722,0.989746,0.464923][0.381929,-0.719567,-0.101][0,-2.76445,-2.4992e-007][0.449594,0.973616,0.484268][0.319025,-0.719567,-0.234647][-3.17464e-007,-2.70202,1.97826e-006][0.373112,0.973616,0.404508][0.319025,-0.719567,-0.234647][-3.17464e-007,-2.70202,1.97826e-006][0.373112,0.973616,0.404508][0.251303,-0.705625,-0.306749][2.49553e-006,2.63869,-4.6952e-006][0.33185,0.989745,0.318639][0.366672,-0.705625,-0.147956][0,2.70168,-1.43973e-006][0.422722,0.989746,0.464923][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.121856,-0.705625,0.372176][0,2.70203,0][0.720379,0.989746,0.154508][0.251302,-0.705625,0.30103][0,2.76444,0][0.679664,0.989746,0.318638][0.211358,-0.719567,0.330049][0,-2.70168,3.07296e-007][0.696272,0.973616,0.267992][0.251302,-0.705625,0.30103][0,2.76444,0][0.679664,0.989746,0.318638][0.121856,-0.705625,0.372176][0,2.70203,0][0.720379,0.989746,0.154508][0.121856,-0.705625,0.372176][0,2.70203,0][0.720379,0.989746,0.154508][0.0246852,-0.719567,0.390703][0,-2.63869,1.38328e-006][0.730982,0.973616,0.0312996][0.211358,-0.719567,0.330049][0,-2.70168,3.07296e-007][0.696272,0.973616,0.267992][-0.366673,-0.705625,0.142234][0,2.70168,0][0.58879,0.989746,-0.464923][-0.38193,-0.719567,0.0952784][9.82625e-007,-2.76445,1.7678e-007][0.561919,0.973616,-0.484268][-0.319026,-0.719567,0.228924][6.59074e-007,-2.70202,-1.0256e-006][0.6384,0.973616,-0.404509][-0.319026,-0.719567,0.228924][6.59074e-007,-2.70202,-1.0256e-006][0.6384,0.973616,-0.404509][-0.251303,-0.705625,0.301028][0,2.63869,0][0.679664,0.989746,-0.31864][-0.366673,-0.705625,0.142234][0,2.70168,0][0.58879,0.989746,-0.464923][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][0.00359454,-1.09497,-0.00193675][3.32423e-007,-5.09231,-2.57965e-006][0.506285,0.539295,0.00455764][-0.00325303,-1.09497,-0.00107407][-7.18668e-006,-4.45226,-3.94523e-006][0.506779,0.539295,-0.00412474][-0.00325303,-1.09497,-0.00107407][-7.18668e-006,-4.45226,-3.94523e-006][0.506779,0.539295,-0.00412474][-0.0238267,-1.09497,-0.0534527][-0.942554,-1.28145,-0.306257][0.476804,0.539295,-0.0302111][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][-0.0238267,-1.09497,-0.0534527][-0.942554,-1.28145,-0.306257][0.476804,0.539295,-0.0302111][-0.124248,-1.01163,-0.0931325][3.84463e-007,-1.88496,1.89736e-007][0.454097,0.635722,-0.157541][-0.0474584,-1.01163,-0.148923][0,-1.56625,-1.91709e-006][0.422169,0.635722,-0.0601751][-0.0474584,-1.01163,-0.148923][0,-1.56625,-1.91709e-006][0.422169,0.635722,-0.0601751][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][-0.0238267,-1.09497,-0.0534527][-0.942554,-1.28145,-0.306257][0.476804,0.539295,-0.0302111][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.0539742,-0.960096,-0.286279][-0.148651,0.015181,2.03203][0.343564,0.69534,0.0684366][0.154639,-0.960096,-0.24643][-0.979475,0.0254762,1.04282][0.366369,0.69534,0.196075][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][0.0190842,-0.965871,-0.307109][-0.215568,0.0663143,-1.70513][0.331644,0.688659,0.0241978][0.0942034,-0.965871,-0.292787][0.778766,-0.0158284,-1.53491][0.33984,0.688659,0.119445][0.0942034,-0.965871,-0.292787][0.778766,-0.0158284,-1.53491][0.33984,0.688659,0.119445][0.0776361,-1.01163,-0.2418][0,-2.57626,-3.24159e-006][0.369019,0.635722,0.0984388][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][0.431441,0.772345,-0.430544][0.60183,0.524976,-0.601831][0.410156,0.113281,0.29736][0.233906,0.772345,-0.562533][0.325708,0.524976,-0.78633][0.410156,0.0703125,0.16093][0.196982,0.893508,-0.473391][0.270332,0.707801,-0.652639][0.382813,0.0976563,0.135428][0.196982,0.893508,-0.473391][0.270332,0.707801,-0.652639][0.382813,0.0976563,0.135428][0.363215,0.893508,-0.362318][0.499508,0.707801,-0.499509][0.382813,0.132813,0.250238][0.431441,0.772345,-0.430544][0.60183,0.524976,-0.601831][0.410156,0.113281,0.29736][0.363215,0.893508,-0.362318][0.499508,0.707801,-0.499509][0.382813,0.132813,0.250238][0.474288,0.893508,-0.196085][0.652639,0.707802,-0.270332][0.382813,0.183594,0.326952][0.56343,0.772345,-0.233009][0.78633,0.524976,-0.325709][0.410156,0.171875,0.388519][0.56343,0.772345,-0.233009][0.78633,0.524976,-0.325709][0.410156,0.171875,0.388519][0.431441,0.772345,-0.430544][0.60183,0.524976,-0.601831][0.410156,0.113281,0.29736][0.363215,0.893508,-0.362318][0.499508,0.707801,-0.499509][0.382813,0.132813,0.250238][-0.429646,0.772345,0.430544][-0.601831,0.524976,0.601831][0.410156,0.371094,-0.29736][-0.232111,0.772345,0.562532][-0.325708,0.524976,0.78633][0.410156,0.410156,-0.16093][-0.195187,0.893508,0.473391][-0.270332,0.707801,0.652639][0.382813,0.382813,-0.135428][-0.195187,0.893508,0.473391][-0.270332,0.707801,0.652639][0.382813,0.382813,-0.135428][-0.36142,0.893508,0.362318][-0.499508,0.707801,0.499509][0.382813,0.347656,-0.250238][-0.429646,0.772345,0.430544][-0.601831,0.524976,0.601831][0.410156,0.371094,-0.29736][-0.36142,0.893508,0.362318][-0.499508,0.707801,0.499509][0.382813,0.347656,-0.250238][-0.472493,0.893508,0.196085][-0.652639,0.707801,0.270332][0.382813,0.300781,-0.326952][-0.561635,0.772345,0.233009][-0.78633,0.524976,0.325709][0.410156,0.3125,-0.388519][-0.561635,0.772345,0.233009][-0.78633,0.524976,0.325709][0.410156,0.3125,-0.388519][-0.429646,0.772345,0.430544][-0.601831,0.524976,0.601831][0.410156,0.371094,-0.29736][-0.36142,0.893508,0.362318][-0.499508,0.707801,0.499509][0.382813,0.347656,-0.250238][0.233906,0.772345,0.562532][0.325709,0.524976,0.786329][0.410156,0.410156,0.16093][0.431441,0.772345,0.430544][0.601831,0.524976,0.60183][0.410156,0.371094,0.29736][0.363215,0.893508,0.362317][0.499509,0.707801,0.499508][0.382813,0.347656,0.250239][0.363215,0.893508,0.362317][0.499509,0.707801,0.499508][0.382813,0.347656,0.250239][0.196983,0.893508,0.473391][0.270332,0.707801,0.652639][0.382813,0.382813,0.135428][0.233906,0.772345,0.562532][0.325709,0.524976,0.786329][0.410156,0.410156,0.16093][0.196983,0.893508,0.473391][0.270332,0.707801,0.652639][0.382813,0.382813,0.135428][0.00089779,0.893508,0.512394][0,0.707802,0.706411][0.382813,0.394531,1.30734e-007][0.00089779,0.772345,0.608881][2.40043e-007,0.524976,0.851117][0.410156,0.421875,1.32713e-007][0.00089779,0.772345,0.608881][2.40043e-007,0.524976,0.851117][0.410156,0.421875,1.32713e-007][0.233906,0.772345,0.562532][0.325709,0.524976,0.786329][0.410156,0.410156,0.16093][0.196983,0.893508,0.473391][0.270332,0.707801,0.652639][0.382813,0.382813,0.135428][-0.429646,0.772345,-0.430544][-0.601831,0.524976,-0.601831][0.410156,0.113281,-0.29736][-0.561635,0.772345,-0.233009][-0.78633,0.524976,-0.325708][0.410156,0.171875,-0.388519][-0.472493,0.893508,-0.196085][-0.652639,0.707802,-0.270332][0.382813,0.183594,-0.326952][-0.472493,0.893508,-0.196085][-0.652639,0.707802,-0.270332][0.382813,0.183594,-0.326952][-0.36142,0.893508,-0.362317][-0.499509,0.707801,-0.499508][0.382813,0.132813,-0.250239][-0.429646,0.772345,-0.430544][-0.601831,0.524976,-0.601831][0.410156,0.113281,-0.29736][-0.561635,0.772345,-0.233009][-0.78633,0.524976,-0.325708][0.410156,0.171875,-0.388519][-0.607983,0.772345,0][-0.851117,0.524976,2.9393e-007][0.410156,0.242188,-0.42053][-0.511497,0.893508,0][-0.706411,0.707801,3.22098e-007][0.382813,0.242188,-0.353891][-0.511497,0.893508,0][-0.706411,0.707801,3.22098e-007][0.382813,0.242188,-0.353891][-0.472493,0.893508,-0.196085][-0.652639,0.707802,-0.270332][0.382813,0.183594,-0.326952][-0.561635,0.772345,-0.233009][-0.78633,0.524976,-0.325708][0.410156,0.171875,-0.388519][0.000897469,0.893508,-0.512394][-3.07457e-007,0.707801,-0.706412][0.382813,0.0859375,0][0.196982,0.893508,-0.473391][0.270332,0.707801,-0.652639][0.382813,0.0976563,0.135428][0.233906,0.772345,-0.562533][0.325708,0.524976,-0.78633][0.410156,0.0703125,0.16093][0.233906,0.772345,-0.562533][0.325708,0.524976,-0.78633][0.410156,0.0703125,0.16093][0.000897501,0.772345,-0.608881][-1.95954e-007,0.524976,-0.851117][0.410156,0.0585938,0][0.000897469,0.893508,-0.512394][-3.07457e-007,0.707801,-0.706412][0.382813,0.0859375,0][0.431441,0.772345,0.430544][0.601831,0.524976,0.60183][0.410156,0.371094,0.29736][0.56343,0.772345,0.233008][0.78633,0.524976,0.325708][0.410156,0.3125,0.388519][0.474288,0.893508,0.196085][0.652639,0.707801,0.270332][0.382813,0.300781,0.326952][0.474288,0.893508,0.196085][0.652639,0.707801,0.270332][0.382813,0.300781,0.326952][0.363215,0.893508,0.362317][0.499509,0.707801,0.499508][0.382813,0.347656,0.250239][0.431441,0.772345,0.430544][0.601831,0.524976,0.60183][0.410156,0.371094,0.29736][-0.232111,0.772345,0.562532][-0.325708,0.524976,0.78633][0.410156,0.410156,-0.16093][0.00089779,0.772345,0.608881][2.40043e-007,0.524976,0.851117][0.410156,0.421875,1.32713e-007][0.00089779,0.893508,0.512394][0,0.707802,0.706411][0.382813,0.394531,1.30734e-007][0.00089779,0.893508,0.512394][0,0.707802,0.706411][0.382813,0.394531,1.30734e-007][-0.195187,0.893508,0.473391][-0.270332,0.707801,0.652639][0.382813,0.382813,-0.135428][-0.232111,0.772345,0.562532][-0.325708,0.524976,0.78633][0.410156,0.410156,-0.16093][-0.472493,0.893508,0.196085][-0.652639,0.707801,0.270332][0.382813,0.300781,-0.326952][-0.511497,0.893508,0][-0.706411,0.707801,3.22098e-007][0.382813,0.242188,-0.353891][-0.607983,0.772345,0][-0.851117,0.524976,2.9393e-007][0.410156,0.242188,-0.42053][-0.607983,0.772345,0][-0.851117,0.524976,2.9393e-007][0.410156,0.242188,-0.42053][-0.561635,0.772345,0.233009][-0.78633,0.524976,0.325709][0.410156,0.3125,-0.388519][-0.472493,0.893508,0.196085][-0.652639,0.707801,0.270332][0.382813,0.300781,-0.326952][-0.384553,-0.639573,-1.9744e-007][-3.09843,-0.180471,-7.45058e-007][0.75,0.242188,-0.266216][-0.355212,-0.639573,-0.147506][-2.86258,-0.180472,-1.18572][0.75,0.195313,-0.245951][-0.306394,-0.708682,-0.127285][-0.733932,-0.607392,-0.304005][0.769531,0.203125,-0.212234][-0.306394,-0.708682,-0.127285][-0.733932,-0.607392,-0.304005][0.769531,0.203125,-0.212234][-0.331713,-0.708682,-2.08616e-007][-0.794402,-0.607392,-1.69649e-007][0.769531,0.242188,-0.229721][-0.384553,-0.639573,-1.9744e-007][-3.09843,-0.180471,-7.45058e-007][0.75,0.242188,-0.266216][-0.331713,-0.708682,-2.08616e-007][-0.794402,-0.607392,-1.69649e-007][0.769531,0.242188,-0.229721][-0.306394,-0.708682,0.127284][-0.733932,-0.607392,0.304004][0.769531,0.277344,-0.212234][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.384553,-0.639573,-1.9744e-007][-3.09843,-0.180471,-7.45058e-007][0.75,0.242188,-0.266216][-0.331713,-0.708682,-2.08616e-007][-0.794402,-0.607392,-1.69649e-007][0.769531,0.242188,-0.229721][0.236089,-0.708682,-0.235191][0.561727,-0.607392,-0.561727][0.769531,0.171875,0.162437][0.128182,-0.708682,-0.307292][0.304004,-0.607392,-0.733932][0.769531,0.148438,0.0879104][0.148403,-0.639573,-0.35611][1.18572,-0.180471,-2.86258][0.75,0.132813,0.101876][0.148403,-0.639573,-0.35611][1.18572,-0.180471,-2.86258][0.75,0.132813,0.101876][0.273453,-0.639573,-0.272555][2.19092,-0.180471,-2.19092][0.75,0.160156,0.188243][0.236089,-0.708682,-0.235191][0.561727,-0.607392,-0.561727][0.769531,0.171875,0.162437][0.273453,-0.639573,-0.272555][2.19092,-0.180471,-2.19092][0.75,0.160156,0.188243][0.357008,-0.639573,-0.147506][2.86258,-0.180472,-1.18572][0.75,0.195313,0.245951][0.30819,-0.708682,-0.127284][0.733933,-0.607391,-0.304004][0.769531,0.203125,0.212235][0.30819,-0.708682,-0.127284][0.733933,-0.607391,-0.304004][0.769531,0.203125,0.212235][0.236089,-0.708682,-0.235191][0.561727,-0.607392,-0.561727][0.769531,0.171875,0.162437][0.273453,-0.639573,-0.272555][2.19092,-0.180471,-2.19092][0.75,0.160156,0.188243][-0.234294,-0.708682,0.235191][-0.561728,-0.607392,0.561727][0.769531,0.3125,-0.162437][-0.126387,-0.708682,0.307292][-0.304005,-0.607392,0.733932][0.769531,0.332031,-0.0879104][-0.146608,-0.639573,0.35611][-1.18572,-0.180472,2.86257][0.75,0.347656,-0.101876][-0.146608,-0.639573,0.35611][-1.18572,-0.180472,2.86257][0.75,0.347656,-0.101876][-0.271657,-0.639573,0.272555][-2.19092,-0.180472,2.19092][0.75,0.324219,-0.188243][-0.234294,-0.708682,0.235191][-0.561728,-0.607392,0.561727][0.769531,0.3125,-0.162437][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.234294,-0.708682,0.235191][-0.561728,-0.607392,0.561727][0.769531,0.3125,-0.162437][-0.271657,-0.639573,0.272555][-2.19092,-0.180472,2.19092][0.75,0.324219,-0.188243][0.236089,-0.708682,0.235191][0.561727,-0.607391,0.561728][0.769531,0.3125,0.162437][0.30819,-0.708682,0.127284][0.733932,-0.607392,0.304005][0.769531,0.277344,0.212234][0.357008,-0.639573,0.147506][2.86257,-0.180472,1.18572][0.75,0.285156,0.245951][0.357008,-0.639573,0.147506][2.86257,-0.180472,1.18572][0.75,0.285156,0.245951][0.273452,-0.639573,0.272555][2.19092,-0.180472,2.19092][0.75,0.324219,0.188243][0.236089,-0.708682,0.235191][0.561727,-0.607391,0.561728][0.769531,0.3125,0.162437][0.273452,-0.639573,0.272555][2.19092,-0.180472,2.19092][0.75,0.324219,0.188243][0.148403,-0.639573,0.35611][1.18572,-0.180472,2.86257][0.75,0.347656,0.101876][0.128182,-0.708682,0.307292][0.304005,-0.607392,0.733932][0.769531,0.332031,0.0879104][0.128182,-0.708682,0.307292][0.304005,-0.607392,0.733932][0.769531,0.332031,0.0879104][0.236089,-0.708682,0.235191][0.561727,-0.607391,0.561728][0.769531,0.3125,0.162437][0.273452,-0.639573,0.272555][2.19092,-0.180472,2.19092][0.75,0.324219,0.188243][-0.234293,-0.708682,-0.235191][-0.561727,-0.607392,-0.561727][0.769531,0.171875,-0.162437][-0.306394,-0.708682,-0.127285][-0.733932,-0.607392,-0.304005][0.769531,0.203125,-0.212234][-0.355212,-0.639573,-0.147506][-2.86258,-0.180472,-1.18572][0.75,0.195313,-0.245951][-0.355212,-0.639573,-0.147506][-2.86258,-0.180472,-1.18572][0.75,0.195313,-0.245951][-0.271657,-0.639573,-0.272555][-2.19092,-0.180471,-2.19092][0.75,0.160156,-0.188243][-0.234293,-0.708682,-0.235191][-0.561727,-0.607392,-0.561727][0.769531,0.171875,-0.162437][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][-0.234293,-0.708682,-0.235191][-0.561727,-0.607392,-0.561727][0.769531,0.171875,-0.162437][-0.271657,-0.639573,-0.272555][-2.19092,-0.180471,-2.19092][0.75,0.160156,-0.188243][0.128182,-0.708682,-0.307292][0.304004,-0.607392,-0.733932][0.769531,0.148438,0.0879104][0.000897726,-0.708682,-0.332611][2.79029e-007,-0.607392,-0.794402][0.769531,0.140625,0][0.000897726,-0.639573,-0.385451][2.38419e-007,-0.180471,-3.09843][0.75,0.125,0][0.000897726,-0.639573,-0.385451][2.38419e-007,-0.180471,-3.09843][0.75,0.125,0][0.148403,-0.639573,-0.35611][1.18572,-0.180471,-2.86258][0.75,0.132813,0.101876][0.128182,-0.708682,-0.307292][0.304004,-0.607392,-0.733932][0.769531,0.148438,0.0879104][0.30819,-0.708682,0.127284][0.733932,-0.607392,0.304005][0.769531,0.277344,0.212234][0.333508,-0.708682,0][0.794402,-0.607392,0][0.769531,0.242188,0.229721][0.386348,-0.639573,0][3.09843,-0.180471,9.98378e-007][0.75,0.242188,0.266216][0.386348,-0.639573,0][3.09843,-0.180471,9.98378e-007][0.75,0.242188,0.266216][0.357008,-0.639573,0.147506][2.86257,-0.180472,1.18572][0.75,0.285156,0.245951][0.30819,-0.708682,0.127284][0.733932,-0.607392,0.304005][0.769531,0.277344,0.212234][-0.234293,-0.708682,-0.235191][-0.561727,-0.607392,-0.561727][0.769531,0.171875,-0.162437][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][-0.126387,-0.708682,-0.307292][-0.304004,-0.607392,-0.733932][0.769531,0.148438,-0.0879103][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][0.000897726,-0.639573,-0.385451][2.38419e-007,-0.180471,-3.09843][0.75,0.125,0][0.000897726,-0.708682,-0.332611][2.79029e-007,-0.607392,-0.794402][0.769531,0.140625,0][0.000897726,-0.708682,-0.332611][2.79029e-007,-0.607392,-0.794402][0.769531,0.140625,0][-0.126387,-0.708682,-0.307292][-0.304004,-0.607392,-0.733932][0.769531,0.148438,-0.0879103][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][0.148403,-0.639573,0.35611][1.18572,-0.180472,2.86257][0.75,0.347656,0.101876][0.000897501,-0.639573,0.385451][-1.04308e-006,-0.180472,3.09843][0.75,0.355469,0][0.000897501,-0.708682,0.33261][-2.5001e-007,-0.607392,0.794402][0.769531,0.339844,0][0.000897501,-0.708682,0.33261][-2.5001e-007,-0.607392,0.794402][0.769531,0.339844,0][0.128182,-0.708682,0.307292][0.304005,-0.607392,0.733932][0.769531,0.332031,0.0879104][0.148403,-0.639573,0.35611][1.18572,-0.180472,2.86257][0.75,0.347656,0.101876][-0.234294,-0.708682,0.235191][-0.561728,-0.607392,0.561727][0.769531,0.3125,-0.162437][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.306394,-0.708682,0.127284][-0.733932,-0.607392,0.304004][0.769531,0.277344,-0.212234][-0.126387,-0.708682,0.307292][-0.304005,-0.607392,0.733932][0.769531,0.332031,-0.0879104][0.000897501,-0.708682,0.33261][-2.5001e-007,-0.607392,0.794402][0.769531,0.339844,0][0.000897501,-0.639573,0.385451][-1.04308e-006,-0.180472,3.09843][0.75,0.355469,0][0.000897501,-0.639573,0.385451][-1.04308e-006,-0.180472,3.09843][0.75,0.355469,0][-0.146608,-0.639573,0.35611][-1.18572,-0.180472,2.86257][0.75,0.347656,-0.101876][-0.126387,-0.708682,0.307292][-0.304005,-0.607392,0.733932][0.769531,0.332031,-0.0879104][0.357008,-0.639573,-0.147506][2.86258,-0.180472,-1.18572][0.75,0.195313,0.245951][0.386348,-0.639573,0][3.09843,-0.180471,9.98378e-007][0.75,0.242188,0.266216][0.333508,-0.708682,0][0.794402,-0.607392,0][0.769531,0.242188,0.229721][0.333508,-0.708682,0][0.794402,-0.607392,0][0.769531,0.242188,0.229721][0.30819,-0.708682,-0.127284][0.733933,-0.607391,-0.304004][0.769531,0.203125,0.212235][0.357008,-0.639573,-0.147506][2.86258,-0.180472,-1.18572][0.75,0.195313,0.245951][0.0246852,-0.719567,0.390703][0,-2.63869,1.38328e-006][0.730982,0.973616,0.0312996][0.121856,-0.705625,0.372176][0,2.70203,0][0.720379,0.989746,0.154508][-0.0737725,-0.705625,0.384514][0,2.63903,0][0.72744,0.989746,-0.0935401][-0.0737725,-0.705625,0.384514][0,2.63903,0][0.72744,0.989746,-0.0935401][-0.168012,-0.719567,0.353894][1.502e-007,-2.63903,2.9097e-007][0.709917,0.973616,-0.213031][0.0246852,-0.719567,0.390703][0,-2.63869,1.38328e-006][0.730982,0.973616,0.0312996][0.251303,-0.705625,-0.306749][2.49553e-006,2.63869,-4.6952e-006][0.33185,0.989745,0.318639][0.319025,-0.719567,-0.234647][-3.17464e-007,-2.70202,1.97826e-006][0.373112,0.973616,0.404508][0.168011,-0.719567,-0.359615][-1.89844e-006,-2.70168,5.89198e-006][0.301596,0.973616,0.21303][0.168011,-0.719567,-0.359615][-1.89844e-006,-2.70168,5.89198e-006][0.301596,0.973616,0.21303][0.0737718,-0.705625,-0.390236][1.23468e-006,2.63902,-5.7784e-006][0.284073,0.989745,0.093539][0.251303,-0.705625,-0.306749][2.49553e-006,2.63869,-4.6952e-006][0.33185,0.989745,0.318639][-0.251303,-0.705625,0.301028][0,2.63869,0][0.679664,0.989746,-0.31864][-0.319026,-0.719567,0.228924][6.59074e-007,-2.70202,-1.0256e-006][0.6384,0.973616,-0.404509][-0.168012,-0.719567,0.353894][1.502e-007,-2.63903,2.9097e-007][0.709917,0.973616,-0.213031][-0.168012,-0.719567,0.353894][1.502e-007,-2.63903,2.9097e-007][0.709917,0.973616,-0.213031][-0.0737725,-0.705625,0.384514][0,2.63903,0][0.72744,0.989746,-0.0935401][-0.251303,-0.705625,0.301028][0,2.63869,0][0.679664,0.989746,-0.31864][0.0942027,-0.719567,0.287067][0.0988735,0,1.56768][0.671674,0.973616,0.119444][0.0942028,-0.965871,0.287067][0.162612,0.0393523,1.5621][0.671674,0.688659,0.119445][0.163394,-0.965871,0.254501][0.970792,-0.0275618,1.0336][0.653037,0.688659,0.207176][0.163394,-0.965871,0.254501][0.970792,-0.0275618,1.0336][0.653037,0.688659,0.207176][0.194272,-0.719567,0.232066][1.33849,0.0407036,1.07731][0.640199,0.973616,0.246328][0.0942027,-0.719567,0.287067][0.0988735,0,1.56768][0.671674,0.973616,0.119444][0.0407537,-1.09497,0.0354343][1.16261,-2.30384,1.49851][0.527672,0.539295,0.0516736][0.153579,-1.01163,-0.00286032][1.00736,-1.20386,-0.215745][0.505757,0.635722,0.194731][0.124248,-1.01163,0.0874114][0,-1.88496,0][0.557417,0.635722,0.15754][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.227319,-0.997687,0.0870924][5.79255e-007,1.3194,7.24754e-007][0.557234,0.651851,0.288229][0.155795,-0.997687,0.185536][-3.55936e-007,1.93084,2.94343e-007][0.613571,0.651851,0.19754][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][0.155795,-0.997687,0.185536][-3.55936e-007,1.93084,2.94343e-007][0.613571,0.651851,0.19754][0.227319,-0.997687,0.0870924][5.79255e-007,1.3194,7.24754e-007][0.557234,0.651851,0.288229][0.128675,-0.997687,-0.0735481][-1.1242,1.62162,0.796276][0.465304,0.651851,0.163154][0.242532,-0.997686,-0.0335756][0,1.78302,0][0.488179,0.651851,0.307519][0.19778,-0.997687,-0.146555][-0.740362,1.41431,0.852107][0.423524,0.651851,0.250775][-0.197629,1.06184,0.0822325][-0.257299,0.960402,0.106892][0.339844,0.265625,-0.137114][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][-0.00656703,1.09497,-0.00309184][-0.0525476,0.998228,-0.0279048][0.332031,0.238281,-0.00515553][-0.269235,0.992346,0.270133][-0.357997,0.862367,0.357997][0.359375,0.320313,-0.18657][-0.145297,0.992346,0.352945][-0.195091,0.860294,0.470992][0.359375,0.347656,-0.100971][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][-0.197629,1.06184,0.0822325][-0.257299,0.960402,0.106892][0.339844,0.265625,-0.137114][-0.269235,0.992346,0.270133][-0.357997,0.862367,0.357997][0.359375,0.320313,-0.18657][0.152843,1.06184,-0.151946][0.196256,0.960604,-0.196782][0.339844,0.195313,0.104943][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][0.00836223,1.09497,0.00309166][0.0562531,0.998192,0.0211596][0.332031,0.242188,0.00515552][0.147092,0.992346,-0.352946][0.193746,0.862367,-0.467745][0.359375,0.132813,0.100971][0.000897469,0.992346,-0.382025][-4.1064e-007,0.860294,-0.509798][0.359375,0.125,0][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][0.152843,1.06184,-0.151946][0.196256,0.960604,-0.196782][0.339844,0.195313,0.104943][0.147092,0.992346,-0.352946][0.193746,0.862367,-0.467745][0.359375,0.132813,0.100971][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][-0.0474588,-1.01163,0.143202][-0.126802,-1.19142,1.03822][0.589344,0.635722,-0.0601756][-0.124248,-1.01163,0.0874114][-0.821706,-0.989101,0.325478][0.557417,0.635722,-0.157541][0.00359454,-1.09497,-0.00193675][3.32423e-007,-5.09231,-2.57965e-006][0.506285,0.539295,0.00455764][0.0407537,-1.09497,0.0354343][1.16261,-2.30384,1.49851][0.527672,0.539295,0.0516736][-0.0104617,-1.09497,0.0520751][-0.414197,-2.93353,2.23964][0.537195,0.539295,-0.0132649][-0.278388,-0.476163,0.279285][-0.695891,-0.177402,0.695891][0.710938,0.324219,-0.192891][-0.15025,-0.476163,0.364903][-0.376614,-0.177402,0.909225][0.710938,0.351563,-0.104392][-0.16743,-0.327519,0.40638][-0.353199,-0.384911,0.852698][0.675781,0.363281,-0.116258][-0.16743,-0.327519,0.40638][-0.353199,-0.384911,0.852698][0.675781,0.363281,-0.116258][-0.310132,-0.327519,0.311029][-0.652627,-0.384911,0.652627][0.675781,0.335938,-0.214816][-0.278388,-0.476163,0.279285][-0.695891,-0.177402,0.695891][0.710938,0.324219,-0.192891][-0.310132,-0.327519,0.311029][-0.652627,-0.384911,0.652627][0.675781,0.335938,-0.214816][-0.405482,-0.327519,0.168328][-0.852698,-0.384911,0.353199][0.675781,0.292969,-0.28067][-0.364006,-0.476163,0.151148][-0.909225,-0.177402,0.376613][0.710938,0.285156,-0.252025][-0.364006,-0.476163,0.151148][-0.909225,-0.177402,0.376613][0.710938,0.285156,-0.252025][-0.278388,-0.476163,0.279285][-0.695891,-0.177402,0.695891][0.710938,0.324219,-0.192891][-0.310132,-0.327519,0.311029][-0.652627,-0.384911,0.652627][0.675781,0.335938,-0.214816][0.395866,-0.476163,0][0.984138,-0.177402,0][0.710938,0.242188,0.272789][0.365801,-0.476163,-0.151148][0.909225,-0.177402,-0.376613][0.710938,0.195313,0.252025][0.407277,-0.327519,-0.168328][0.852698,-0.384911,-0.353199][0.675781,0.191406,0.28067][0.407277,-0.327519,-0.168328][0.852698,-0.384911,-0.353199][0.675781,0.191406,0.28067][0.44076,-0.327519,0][0.922954,-0.384911,0][0.675781,0.242188,0.303795][0.395866,-0.476163,0][0.984138,-0.177402,0][0.710938,0.242188,0.272789][0.44076,-0.327519,0][0.922954,-0.384911,0][0.675781,0.242188,0.303795][0.407277,-0.327519,0.168328][0.852698,-0.384911,0.353199][0.675781,0.292969,0.28067][0.365801,-0.476163,0.151148][0.909225,-0.177402,0.376614][0.710938,0.285156,0.252025][0.365801,-0.476163,0.151148][0.909225,-0.177402,0.376614][0.710938,0.285156,0.252025][0.395866,-0.476163,0][0.984138,-0.177402,0][0.710938,0.242188,0.272789][0.44076,-0.327519,0][0.922954,-0.384911,0][0.675781,0.242188,0.303795][-0.364006,-0.476163,-0.151148][-0.909225,-0.177402,-0.376614][0.710938,0.195313,-0.252024][-0.394071,-0.476163,-1.70898e-007][-0.984138,-0.177402,-1.22317e-007][0.710938,0.242188,-0.272789][-0.438965,-0.327519,-1.46683e-007][-0.922954,-0.384911,0][0.675781,0.242188,-0.303795][-0.438965,-0.327519,-1.46683e-007][-0.922954,-0.384911,0][0.675781,0.242188,-0.303795][-0.405482,-0.327519,-0.168328][-0.852698,-0.384911,-0.353199][0.675781,0.191406,-0.28067][-0.364006,-0.476163,-0.151148][-0.909225,-0.177402,-0.376614][0.710938,0.195313,-0.252024][-0.405482,-0.327519,-0.168328][-0.852698,-0.384911,-0.353199][0.675781,0.191406,-0.28067][-0.310132,-0.327519,-0.31103][-0.652627,-0.384911,-0.652627][0.675781,0.148438,-0.214816][-0.278388,-0.476163,-0.279285][-0.695891,-0.177402,-0.695891][0.710938,0.15625,-0.192891][-0.278388,-0.476163,-0.279285][-0.695891,-0.177402,-0.695891][0.710938,0.15625,-0.192891][-0.364006,-0.476163,-0.151148][-0.909225,-0.177402,-0.376614][0.710938,0.195313,-0.252024][-0.405482,-0.327519,-0.168328][-0.852698,-0.384911,-0.353199][0.675781,0.191406,-0.28067][0.365801,-0.476163,-0.151148][0.909225,-0.177402,-0.376613][0.710938,0.195313,0.252025][0.280183,-0.476163,-0.279285][0.695891,-0.177402,-0.695891][0.710938,0.15625,0.192891][0.311927,-0.327519,-0.31103][0.652627,-0.384911,-0.652627][0.675781,0.148438,0.214816][0.311927,-0.327519,-0.31103][0.652627,-0.384911,-0.652627][0.675781,0.148438,0.214816][0.407277,-0.327519,-0.168328][0.852698,-0.384911,-0.353199][0.675781,0.191406,0.28067][0.365801,-0.476163,-0.151148][0.909225,-0.177402,-0.376613][0.710938,0.195313,0.252025][-0.405482,-0.327519,0.168328][-0.852698,-0.384911,0.353199][0.675781,0.292969,-0.28067][-0.438965,-0.327519,-1.46683e-007][-0.922954,-0.384911,0][0.675781,0.242188,-0.303795][-0.394071,-0.476163,-1.70898e-007][-0.984138,-0.177402,-1.22317e-007][0.710938,0.242188,-0.272789][-0.394071,-0.476163,-1.70898e-007][-0.984138,-0.177402,-1.22317e-007][0.710938,0.242188,-0.272789][-0.364006,-0.476163,0.151148][-0.909225,-0.177402,0.376613][0.710938,0.285156,-0.252025][-0.405482,-0.327519,0.168328][-0.852698,-0.384911,0.353199][0.675781,0.292969,-0.28067][-0.310132,-0.327519,-0.31103][-0.652627,-0.384911,-0.652627][0.675781,0.148438,-0.214816][-0.16743,-0.327519,-0.40638][-0.353199,-0.384911,-0.852698][0.675781,0.117188,-0.116257][-0.15025,-0.476163,-0.364904][-0.376614,-0.177402,-0.909225][0.710938,0.132813,-0.104392][-0.15025,-0.476163,-0.364904][-0.376614,-0.177402,-0.909225][0.710938,0.132813,-0.104392][-0.278388,-0.476163,-0.279285][-0.695891,-0.177402,-0.695891][0.710938,0.15625,-0.192891][-0.310132,-0.327519,-0.31103][-0.652627,-0.384911,-0.652627][0.675781,0.148438,-0.214816][0.000897533,-0.476163,0.394969][-1.63089e-007,-0.177402,0.984138][0.710938,0.359375,0][0.152046,-0.476163,0.364903][0.376613,-0.177402,0.909225][0.710938,0.351563,0.104392][0.169226,-0.327519,0.40638][0.353199,-0.384911,0.852698][0.675781,0.363281,0.116258][0.169226,-0.327519,0.40638][0.353199,-0.384911,0.852698][0.675781,0.363281,0.116258][0.000897597,-0.327519,0.439862][-1.22173e-007,-0.384911,0.922954][0.675781,0.371094,0][0.000897533,-0.476163,0.394969][-1.63089e-007,-0.177402,0.984138][0.710938,0.359375,0][0.000897597,-0.327519,0.439862][-1.22173e-007,-0.384911,0.922954][0.675781,0.371094,0][-0.16743,-0.327519,0.40638][-0.353199,-0.384911,0.852698][0.675781,0.363281,-0.116258][-0.15025,-0.476163,0.364903][-0.376614,-0.177402,0.909225][0.710938,0.351563,-0.104392][-0.15025,-0.476163,0.364903][-0.376614,-0.177402,0.909225][0.710938,0.351563,-0.104392][0.000897533,-0.476163,0.394969][-1.63089e-007,-0.177402,0.984138][0.710938,0.359375,0][0.000897597,-0.327519,0.439862][-1.22173e-007,-0.384911,0.922954][0.675781,0.371094,0][0.152046,-0.476163,-0.364904][0.376613,-0.177402,-0.909225][0.710938,0.132813,0.104392][0.000897694,-0.476163,-0.394969][0,-0.177402,-0.984138][0.710938,0.121094,0][0.000897662,-0.327519,-0.439862][0,-0.384911,-0.922954][0.675781,0.109375,0][0.000897662,-0.327519,-0.439862][0,-0.384911,-0.922954][0.675781,0.109375,0][0.169226,-0.327519,-0.40638][0.353199,-0.384911,-0.852698][0.675781,0.117188,0.116257][0.152046,-0.476163,-0.364904][0.376613,-0.177402,-0.909225][0.710938,0.132813,0.104392][0.169226,-0.327519,-0.40638][0.353199,-0.384911,-0.852698][0.675781,0.117188,0.116257][0.311927,-0.327519,-0.31103][0.652627,-0.384911,-0.652627][0.675781,0.148438,0.214816][0.280183,-0.476163,-0.279285][0.695891,-0.177402,-0.695891][0.710938,0.15625,0.192891][0.280183,-0.476163,-0.279285][0.695891,-0.177402,-0.695891][0.710938,0.15625,0.192891][0.152046,-0.476163,-0.364904][0.376613,-0.177402,-0.909225][0.710938,0.132813,0.104392][0.169226,-0.327519,-0.40638][0.353199,-0.384911,-0.852698][0.675781,0.117188,0.116257][0.280183,-0.476163,0.279285][0.695891,-0.177402,0.695891][0.710938,0.324219,0.192891][0.365801,-0.476163,0.151148][0.909225,-0.177402,0.376614][0.710938,0.285156,0.252025][0.407277,-0.327519,0.168328][0.852698,-0.384911,0.353199][0.675781,0.292969,0.28067][0.407277,-0.327519,0.168328][0.852698,-0.384911,0.353199][0.675781,0.292969,0.28067][0.311927,-0.327519,0.311029][0.652627,-0.384911,0.652627][0.675781,0.335938,0.214816][0.280183,-0.476163,0.279285][0.695891,-0.177402,0.695891][0.710938,0.324219,0.192891][0.311927,-0.327519,0.311029][0.652627,-0.384911,0.652627][0.675781,0.335938,0.214816][0.169226,-0.327519,0.40638][0.353199,-0.384911,0.852698][0.675781,0.363281,0.116258][0.152046,-0.476163,0.364903][0.376613,-0.177402,0.909225][0.710938,0.351563,0.104392][0.152046,-0.476163,0.364903][0.376613,-0.177402,0.909225][0.710938,0.351563,0.104392][0.280183,-0.476163,0.279285][0.695891,-0.177402,0.695891][0.710938,0.324219,0.192891][0.311927,-0.327519,0.311029][0.652627,-0.384911,0.652627][0.675781,0.335938,0.214816][-0.16743,-0.327519,-0.40638][-0.353199,-0.384911,-0.852698][0.675781,0.117188,-0.116257][0.000897662,-0.327519,-0.439862][0,-0.384911,-0.922954][0.675781,0.109375,0][0.000897694,-0.476163,-0.394969][0,-0.177402,-0.984138][0.710938,0.121094,0][0.000897694,-0.476163,-0.394969][0,-0.177402,-0.984138][0.710938,0.121094,0][-0.15025,-0.476163,-0.364904][-0.376614,-0.177402,-0.909225][0.710938,0.132813,-0.104392][-0.16743,-0.327519,-0.40638][-0.353199,-0.384911,-0.852698][0.675781,0.117188,-0.116257][0.381929,-0.719567,-0.101][0,-2.76445,-2.4992e-007][0.449594,0.973616,0.484268][0.366672,-0.705625,-0.147956][0,2.70168,-1.43973e-006][0.422722,0.989746,0.464923][0.394337,-0.705625,-0.00286076][0,2.70202,0][0.505757,0.989746,0.5][0.394337,-0.705625,-0.00286076][0,2.70202,0][0.505757,0.989746,0.5][0.391212,-0.719567,0.0466847][-2.0264e-007,-2.70167,-6.14861e-007][0.53411,0.973616,0.496038][0.381929,-0.719567,-0.101][0,-2.76445,-2.4992e-007][0.449594,0.973616,0.484268][0.345618,-0.705625,0.187006][0,2.70168,0][0.614412,0.989746,0.438228][0.319025,-0.719567,0.228925][0,-2.70202,0][0.638401,0.973616,0.404508][0.391212,-0.719567,0.0466847][-2.0264e-007,-2.70167,-6.14861e-007][0.53411,0.973616,0.496038][0.391212,-0.719567,0.0466847][-2.0264e-007,-2.70167,-6.14861e-007][0.53411,0.973616,0.496038][0.394337,-0.705625,-0.00286076][0,2.70202,0][0.505757,0.989746,0.5][0.345618,-0.705625,0.187006][0,2.70168,0][0.614412,0.989746,0.438228][0.251302,-0.705625,0.30103][0,2.76444,0][0.679664,0.989746,0.318638][0.211358,-0.719567,0.330049][0,-2.70168,3.07296e-007][0.696272,0.973616,0.267992][0.319025,-0.719567,0.228925][0,-2.70202,0][0.638401,0.973616,0.404508][0.319025,-0.719567,0.228925][0,-2.70202,0][0.638401,0.973616,0.404508][0.345618,-0.705625,0.187006][0,2.70168,0][0.614412,0.989746,0.438228][0.251302,-0.705625,0.30103][0,2.76444,0][0.679664,0.989746,0.318638][-0.38193,-0.719567,0.0952784][9.82625e-007,-2.76445,1.7678e-007][0.561919,0.973616,-0.484268][-0.366673,-0.705625,0.142234][0,2.70168,0][0.58879,0.989746,-0.464923][-0.394337,-0.705625,-0.00286175][0,2.70202,0][0.505756,0.989746,-0.5][-0.394337,-0.705625,-0.00286175][0,2.70202,0][0.505756,0.989746,-0.5][-0.391212,-0.719567,-0.0524062][0,-2.70168,0][0.477403,0.973616,-0.496038][-0.38193,-0.719567,0.0952784][9.82625e-007,-2.76445,1.7678e-007][0.561919,0.973616,-0.484268][-0.345619,-0.705625,-0.192727][-2.55181e-007,2.63904,-1.27114e-006][0.397101,0.989746,-0.438228][-0.319025,-0.719567,-0.234647][-1.00138e-006,-2.70202,1.37827e-006][0.373112,0.973616,-0.404508][-0.391212,-0.719567,-0.0524062][0,-2.70168,0][0.477403,0.973616,-0.496038][-0.391212,-0.719567,-0.0524062][0,-2.70168,0][0.477403,0.973616,-0.496038][-0.394337,-0.705625,-0.00286175][0,2.70202,0][0.505756,0.989746,-0.5][-0.345619,-0.705625,-0.192727][-2.55181e-007,2.63904,-1.27114e-006][0.397101,0.989746,-0.438228][-0.211359,-0.705625,-0.335771][-1.61078e-006,2.76444,-5.29739e-006][0.315241,0.989745,-0.267993][-0.211359,-0.719567,-0.335771][0.0536263,-2.82178,-0.146154][0.315241,0.973616,-0.267993][-0.319025,-0.719567,-0.234647][-1.00138e-006,-2.70202,1.37827e-006][0.373112,0.973616,-0.404508][-0.319025,-0.719567,-0.234647][-1.00138e-006,-2.70202,1.37827e-006][0.373112,0.973616,-0.404508][-0.345619,-0.705625,-0.192727][-2.55181e-007,2.63904,-1.27114e-006][0.397101,0.989746,-0.438228][-0.211359,-0.705625,-0.335771][-1.61078e-006,2.76444,-5.29739e-006][0.315241,0.989745,-0.267993][0.0737718,-0.705625,-0.390236][1.23468e-006,2.63902,-5.7784e-006][0.284073,0.989745,0.093539][0.0246865,-0.719567,-0.396424][-0.0655812,-2.76261,-0.0752249][0.280531,0.973616,0.0313012][-0.121857,-0.705625,-0.377897][-0.0549384,0.0142342,-0.432687][0.291134,0.989745,-0.154508][0.0737718,-0.705625,-0.390236][1.23468e-006,2.63902,-5.7784e-006][0.284073,0.989745,0.093539][0.168011,-0.719567,-0.359615][-1.89844e-006,-2.70168,5.89198e-006][0.301596,0.973616,0.21303][0.0246865,-0.719567,-0.396424][-0.0655812,-2.76261,-0.0752249][0.280531,0.973616,0.0313012][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][-0.0457079,-1.08103,-0.0209476][1.98281,1.83956,0.123813][0.495406,0.555425,-0.0579554][-0.0151901,-1.08103,-0.0496103][-0.686028,1.37585,1.45757][0.479003,0.555425,-0.0192604][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][-0.0151901,-1.08103,-0.0496103][-0.686028,1.37585,1.45757][0.479003,0.555425,-0.0192604][-0.0457079,-1.08103,-0.0209476][1.98281,1.83956,0.123813][0.495406,0.555425,-0.0579554][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][-0.0397684,-1.08103,0.0260326][1.51576,1.99344,-1.42988][0.522291,0.555425,-0.0504244][-0.00307729,-1.08103,0.0461988][0.240725,2.74883,-2.33553][0.533832,0.555425,-0.00390192][-0.211359,-0.719567,-0.335771][0.0536263,-2.82178,-0.146154][0.315241,0.973616,-0.267993][-0.211359,-0.705625,-0.335771][-1.61078e-006,2.76444,-5.29739e-006][0.315241,0.989745,-0.267993][-0.121857,-0.705625,-0.377897][-0.0549384,0.0142342,-0.432687][0.291134,0.989745,-0.154508][-0.70314,0.205627,0][-0.968047,-0.250769,1.47891e-007][0.546875,0.242188,-0.486251][-0.649549,0.205627,-0.269424][-0.894359,-0.250769,-0.370455][0.546875,0.160156,-0.449238][-0.601674,0.0729345,-0.249593][-0.84093,-0.414133,-0.348325][0.578125,0.164063,-0.416173][-0.601674,0.0729345,-0.249593][-0.84093,-0.414133,-0.348325][0.578125,0.164063,-0.416173][-0.651321,0.0729345,0][-0.910216,-0.414133,0][0.578125,0.242188,-0.450462][-0.70314,0.205627,0][-0.968047,-0.250769,1.47891e-007][0.546875,0.242188,-0.486251][-0.651321,0.0729345,0][-0.910216,-0.414133,0][0.578125,0.242188,-0.450462][-0.601674,0.0729345,0.249593][-0.84093,-0.414133,0.348325][0.578125,0.316406,-0.416172][-0.649549,0.205627,0.269424][-0.894359,-0.250769,0.370456][0.546875,0.320313,-0.449238][-0.649549,0.205627,0.269424][-0.894359,-0.250769,0.370456][0.546875,0.320313,-0.449238][-0.70314,0.205627,0][-0.968047,-0.250769,1.47891e-007][0.546875,0.242188,-0.486251][-0.651321,0.0729345,0][-0.910216,-0.414133,0][0.578125,0.242188,-0.450462][0.603469,0.0729345,0.249593][0.84093,-0.414133,0.348325][0.578125,0.316406,0.416173][0.653117,0.0729345,-1.58325e-007][0.910216,-0.414133,0][0.578125,0.242188,0.450462][0.704936,0.205627,-1.84635e-007][0.968047,-0.250769,-1.38031e-007][0.546875,0.242188,0.486251][0.704936,0.205627,-1.84635e-007][0.968047,-0.250769,-1.38031e-007][0.546875,0.242188,0.486251][0.651344,0.205627,0.269423][0.894359,-0.250769,0.370455][0.546875,0.320313,0.449238][0.603469,0.0729345,0.249593][0.84093,-0.414133,0.348325][0.578125,0.316406,0.416173][0.651344,0.205627,0.269423][0.894359,-0.250769,0.370455][0.546875,0.320313,0.449238][0.498728,0.205627,0.49783][0.684513,-0.250769,0.684513][0.546875,0.390625,0.343832][0.462086,0.0729345,0.461188][0.64362,-0.414133,0.64362][0.578125,0.378906,0.318525][0.462086,0.0729345,0.461188][0.64362,-0.414133,0.64362][0.578125,0.378906,0.318525][0.603469,0.0729345,0.249593][0.84093,-0.414133,0.348325][0.578125,0.316406,0.416173][0.651344,0.205627,0.269423][0.894359,-0.250769,0.370455][0.546875,0.320313,0.449238][-0.649549,0.205627,-0.269424][-0.894359,-0.250769,-0.370455][0.546875,0.160156,-0.449238][-0.496933,0.205627,-0.49783][-0.684513,-0.250769,-0.684512][0.546875,0.0898438,-0.343832][-0.460291,0.0729345,-0.461188][-0.64362,-0.414133,-0.64362][0.578125,0.101563,-0.318525][-0.460291,0.0729345,-0.461188][-0.64362,-0.414133,-0.64362][0.578125,0.101563,-0.318525][-0.601674,0.0729345,-0.249593][-0.84093,-0.414133,-0.348325][0.578125,0.164063,-0.416173][-0.649549,0.205627,-0.269424][-0.894359,-0.250769,-0.370455][0.546875,0.160156,-0.449238][0.000897662,0.0729346,0.652219][0,-0.414133,0.910216][0.578125,0.4375,0][0.250491,0.0729346,0.602572][0.348325,-0.414133,0.84093][0.578125,0.421875,0.172384][0.270321,0.205627,0.650446][0.370456,-0.250769,0.894359][0.546875,0.4375,0.18608][0.270321,0.205627,0.650446][0.370456,-0.250769,0.894359][0.546875,0.4375,0.18608][0.000897662,0.205627,0.704038][0,-0.250769,0.968047][0.546875,0.453125,0][0.000897662,0.0729346,0.652219][0,-0.414133,0.910216][0.578125,0.4375,0][0.000897662,0.205627,0.704038][0,-0.250769,0.968047][0.546875,0.453125,0][-0.268526,0.205627,0.650446][-0.370455,-0.250769,0.894359][0.546875,0.4375,-0.18608][-0.248696,0.0729346,0.602572][-0.348325,-0.414133,0.84093][0.578125,0.421875,-0.172384][-0.248696,0.0729346,0.602572][-0.348325,-0.414133,0.84093][0.578125,0.421875,-0.172384][0.000897662,0.0729346,0.652219][0,-0.414133,0.910216][0.578125,0.4375,0][0.000897662,0.205627,0.704038][0,-0.250769,0.968047][0.546875,0.453125,0][-0.601674,0.0729345,0.249593][-0.84093,-0.414133,0.348325][0.578125,0.316406,-0.416172][-0.460291,0.0729345,0.461188][-0.64362,-0.414133,0.64362][0.578125,0.378906,-0.318525][-0.496932,0.205627,0.49783][-0.684513,-0.250769,0.684513][0.546875,0.390625,-0.343832][-0.496932,0.205627,0.49783][-0.684513,-0.250769,0.684513][0.546875,0.390625,-0.343832][-0.649549,0.205627,0.269424][-0.894359,-0.250769,0.370456][0.546875,0.320313,-0.449238][-0.601674,0.0729345,0.249593][-0.84093,-0.414133,0.348325][0.578125,0.316406,-0.416172][0.653117,0.0729345,-1.58325e-007][0.910216,-0.414133,0][0.578125,0.242188,0.450462][0.603469,0.0729345,-0.249593][0.84093,-0.414133,-0.348325][0.578125,0.164063,0.416173][0.651344,0.205627,-0.269424][0.894359,-0.250769,-0.370456][0.546875,0.160156,0.449238][0.651344,0.205627,-0.269424][0.894359,-0.250769,-0.370456][0.546875,0.160156,0.449238][0.704936,0.205627,-1.84635e-007][0.968047,-0.250769,-1.38031e-007][0.546875,0.242188,0.486251][0.653117,0.0729345,-1.58325e-007][0.910216,-0.414133,0][0.578125,0.242188,0.450462][0.250491,0.0729344,-0.602572][0.348325,-0.414133,-0.84093][0.578125,0.0585938,0.172384][0.00089763,0.0729344,-0.652219][-1.38505e-007,-0.414133,-0.910216][0.578125,0.0429688,0][0.000897597,0.205627,-0.704038][-1.23242e-007,-0.250769,-0.968047][0.546875,0.0273438,0][0.000897597,0.205627,-0.704038][-1.23242e-007,-0.250769,-0.968047][0.546875,0.0273438,0][0.270321,0.205627,-0.650446][0.370455,-0.250769,-0.894359][0.546875,0.046875,0.18608][0.250491,0.0729344,-0.602572][0.348325,-0.414133,-0.84093][0.578125,0.0585938,0.172384][0.270321,0.205627,-0.650446][0.370455,-0.250769,-0.894359][0.546875,0.046875,0.18608][0.498728,0.205627,-0.49783][0.684512,-0.250769,-0.684513][0.546875,0.0898438,0.343832][0.462086,0.0729345,-0.461189][0.64362,-0.414133,-0.64362][0.578125,0.101563,0.318525][0.462086,0.0729345,-0.461189][0.64362,-0.414133,-0.64362][0.578125,0.101563,0.318525][0.250491,0.0729344,-0.602572][0.348325,-0.414133,-0.84093][0.578125,0.0585938,0.172384][0.270321,0.205627,-0.650446][0.370455,-0.250769,-0.894359][0.546875,0.046875,0.18608][-0.496933,0.205627,-0.49783][-0.684513,-0.250769,-0.684512][0.546875,0.0898438,-0.343832][-0.268526,0.205627,-0.650446][-0.370456,-0.250769,-0.894359][0.546875,0.046875,-0.18608][-0.248696,0.0729344,-0.602572][-0.348325,-0.414133,-0.84093][0.578125,0.0585938,-0.172384][-0.248696,0.0729344,-0.602572][-0.348325,-0.414133,-0.84093][0.578125,0.0585938,-0.172384][-0.460291,0.0729345,-0.461188][-0.64362,-0.414133,-0.64362][0.578125,0.101563,-0.318525][-0.496933,0.205627,-0.49783][-0.684513,-0.250769,-0.684512][0.546875,0.0898438,-0.343832][-0.268526,0.205627,-0.650446][-0.370456,-0.250769,-0.894359][0.546875,0.046875,-0.18608][0.000897597,0.205627,-0.704038][-1.23242e-007,-0.250769,-0.968047][0.546875,0.0273438,0][0.00089763,0.0729344,-0.652219][-1.38505e-007,-0.414133,-0.910216][0.578125,0.0429688,0][0.00089763,0.0729344,-0.652219][-1.38505e-007,-0.414133,-0.910216][0.578125,0.0429688,0][-0.248696,0.0729344,-0.602572][-0.348325,-0.414133,-0.84093][0.578125,0.0585938,-0.172384][-0.268526,0.205627,-0.650446][-0.370456,-0.250769,-0.894359][0.546875,0.046875,-0.18608][-0.268526,0.205627,0.650446][-0.370455,-0.250769,0.894359][0.546875,0.4375,-0.18608][-0.496932,0.205627,0.49783][-0.684513,-0.250769,0.684513][0.546875,0.390625,-0.343832][-0.460291,0.0729345,0.461188][-0.64362,-0.414133,0.64362][0.578125,0.378906,-0.318525][-0.460291,0.0729345,0.461188][-0.64362,-0.414133,0.64362][0.578125,0.378906,-0.318525][-0.248696,0.0729346,0.602572][-0.348325,-0.414133,0.84093][0.578125,0.421875,-0.172384][-0.268526,0.205627,0.650446][-0.370455,-0.250769,0.894359][0.546875,0.4375,-0.18608][0.498728,0.205627,-0.49783][0.684512,-0.250769,-0.684513][0.546875,0.0898438,0.343832][0.651344,0.205627,-0.269424][0.894359,-0.250769,-0.370456][0.546875,0.160156,0.449238][0.603469,0.0729345,-0.249593][0.84093,-0.414133,-0.348325][0.578125,0.164063,0.416173][0.603469,0.0729345,-0.249593][0.84093,-0.414133,-0.348325][0.578125,0.164063,0.416173][0.462086,0.0729345,-0.461189][0.64362,-0.414133,-0.64362][0.578125,0.101563,0.318525][0.498728,0.205627,-0.49783][0.684512,-0.250769,-0.684513][0.546875,0.0898438,0.343832][0.498728,0.205627,0.49783][0.684513,-0.250769,0.684513][0.546875,0.390625,0.343832][0.270321,0.205627,0.650446][0.370456,-0.250769,0.894359][0.546875,0.4375,0.18608][0.250491,0.0729346,0.602572][0.348325,-0.414133,0.84093][0.578125,0.421875,0.172384][0.250491,0.0729346,0.602572][0.348325,-0.414133,0.84093][0.578125,0.421875,0.172384][0.462086,0.0729345,0.461188][0.64362,-0.414133,0.64362][0.578125,0.378906,0.318525][0.498728,0.205627,0.49783][0.684513,-0.250769,0.684513][0.546875,0.390625,0.343832][0.00359454,-1.09497,-0.00193675][3.32423e-007,-5.09231,-2.57965e-006][0.506285,0.539295,0.00455764][0.00114685,-1.08103,0.000669093][-8.14725e-006,3.92547,-3.57608e-007][0.507777,0.555425,0.00145409][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][-0.00325303,-1.09497,-0.00107407][-7.18668e-006,-4.45226,-3.94523e-006][0.506779,0.539295,-0.00412474][0.00359454,-1.09497,-0.00193675][3.32423e-007,-5.09231,-2.57965e-006][0.506285,0.539295,0.00455764][0.00114685,-1.08103,0.000669093][-0.123357,0.16136,-0.979156][0.507777,0.555425,0.00145409][0.00359454,-1.09497,-0.00193675][-0.123357,0.16136,-0.979156][0.506285,0.539295,0.00455764][-0.00325303,-1.09497,-0.00107407][-0.123357,0.16136,-0.979156][0.506779,0.539295,-0.00412474][-0.0104617,-1.09497,0.0520751][2.87481e-007,-1,2.28191e-006][0.0257163,0.99,0][-0.00325303,-1.09497,-0.00107407][2.87481e-007,-1,2.28191e-006][0.0430392,0.99,0][0.00359454,-1.09497,-0.00193675][2.87481e-007,-1,2.28191e-006][0.0433204,0.99,0][-0.00325303,-1.09497,-0.00107407][0.760289,-0.161267,-0.629248][0.506779,0.539295,-0.00412474][-0.00325303,-1.08103,-0.00464706][0.760289,-0.161267,-0.629248][0.504734,0.555425,-0.00412474][0.00114685,-1.08103,0.000669093][0.760289,-0.161268,-0.629248][0.507777,0.555425,0.00145409][-0.00307729,-1.08103,0.0461988][2.84465e-006,1,-2.35435e-006][0.533832,0.555425,-0.00390192][0.00114685,-1.08103,0.000669093][2.84465e-006,1,-2.35435e-006][0.507777,0.555425,0.00145409][-0.00325303,-1.08103,-0.00464706][2.84465e-006,1,-2.35435e-006][0.504734,0.555425,-0.00412474][-0.269235,0.992346,-0.270133][-0.345433,0.868775,-0.354832][0.359375,0.160156,-0.18657][-0.352048,0.992346,-0.146195][-0.470992,0.860294,-0.195091][0.359375,0.195313,-0.243765][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][0.295256,-0.965871,-0.0787291][1.283,-0.02756,-0.603884][0.462339,0.688659,0.374371][0.304848,-0.965871,-0.00286031][1.96523,0.0736891,0.212888][0.505757,0.688659,0.386533][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.304848,-0.965871,-0.00286031][1.96523,0.0736891,0.212888][0.505757,0.688659,0.386533][0.295256,-0.965871,-0.0787291][1.283,-0.02756,-0.603884][0.462339,0.688659,0.374371][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.295256,-0.965871,0.0730079][-2.9869,-0.00162242,0.848612][0.549174,0.688659,-0.374371][-0.304848,-0.965871,-0.0028613][-3.10139,-1.72778e-007,-0.0971787][0.505756,0.688659,-0.386533][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.283462,-0.965871,-0.115029][-2.91863,0.0421445,-1.04847][0.441566,0.688659,-0.359416][-0.246627,-0.965871,-0.182046][-1.37657,-6.31965e-007,-0.756612][0.403214,0.688659,-0.312711][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.283462,-0.965871,0.109309][1.543,1.14744e-006,0.294191][0.569948,0.688659,0.359416][0.246627,-0.965871,0.176325][1.35231,-0.00144864,1.27655][0.6083,0.688659,0.312711][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][0.246627,-0.965871,0.176325][1.35231,-0.00144864,1.27655][0.6083,0.688659,0.312711][0.283462,-0.965871,0.109309][1.543,1.14744e-006,0.294191][0.569948,0.688659,0.359416][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][0.163394,-0.965871,0.254501][0.970792,-0.0275618,1.0336][0.653037,0.688659,0.207176][0.0942028,-0.965871,0.287067][0.162612,0.0393523,1.5621][0.671674,0.688659,0.119445][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][-0.163394,-0.965871,-0.260221][-0.745187,-1.84165,-1.03905][0.358477,0.688659,-0.207176][-0.0942032,-0.965871,-0.292787][-0.162617,0.039342,-1.5621][0.33984,0.688659,-0.119445][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][0.0942034,-0.965871,-0.292787][0.778766,-0.0158284,-1.53491][0.33984,0.688659,0.119445][0.0190842,-0.965871,-0.307109][-0.215568,0.0663143,-1.70513][0.331644,0.688659,0.0241978][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.246627,-0.965871,0.176325][-1.63183,-0.0187538,0.89269][0.608299,0.688659,-0.312712][-0.194273,-0.965871,0.232066][-1.11313,-2.33251,1.26113][0.640198,0.688659,-0.246329][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][0.194273,-0.965871,-0.237786][0.683008,-0.027566,-1.24268][0.371316,0.688659,0.246329][0.246627,-0.965871,-0.182046][1.70773,0.0174602,-1.00279][0.403214,0.688659,0.312711][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.246627,-0.965871,-0.182046][1.70773,0.0174602,-1.00279][0.403214,0.688659,0.312711][0.194273,-0.965871,-0.237786][0.683008,-0.027566,-1.24268][0.371316,0.688659,0.246329][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.0190849,-0.965871,0.301389][0.215566,0.0663278,1.70513][0.67987,0.688659,-0.0241988][-0.0942039,-0.965871,0.287067][-0.335052,-0.74046,0.609598][0.671674,0.688659,-0.119446][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][-0.0942039,-0.965871,0.287067][-0.335052,-0.74046,0.609598][0.671674,0.688659,-0.119446][-0.0190849,-0.965871,0.301389][0.215566,0.0663278,1.70513][0.67987,0.688659,-0.0241988][0.623939,0.635877,-0.258072][0.88178,0.298428,-0.365246][0.445313,0.164063,0.43031][0.477752,0.635877,-0.476855][0.674885,0.298428,-0.674886][0.445313,0.0976563,0.329345][0.431441,0.772345,-0.430544][0.60183,0.524976,-0.601831][0.410156,0.113281,0.29736][0.431441,0.772345,-0.430544][0.60183,0.524976,-0.601831][0.410156,0.113281,0.29736][0.56343,0.772345,-0.233009][0.78633,0.524976,-0.325709][0.410156,0.171875,0.388519][0.623939,0.635877,-0.258072][0.88178,0.298428,-0.365246][0.445313,0.164063,0.43031][0.56343,0.772345,-0.233009][0.78633,0.524976,-0.325709][0.410156,0.171875,0.388519][0.609779,0.772345,-2.68454e-007][0.851117,0.524976,0][0.410156,0.242188,0.42053][0.675272,0.635877,-2.51923e-007][0.954432,0.298428,0][0.445313,0.242188,0.465764][0.675272,0.635877,-2.51923e-007][0.954432,0.298428,0][0.445313,0.242188,0.465764][0.623939,0.635877,-0.258072][0.88178,0.298428,-0.365246][0.445313,0.164063,0.43031][0.56343,0.772345,-0.233009][0.78633,0.524976,-0.325709][0.410156,0.171875,0.388519][-0.475957,0.635877,0.476855][-0.674885,0.298429,0.674885][0.445313,0.382813,-0.329345][-0.257174,0.635877,0.623041][-0.365245,0.298429,0.88178][0.445313,0.425781,-0.17824][-0.232111,0.772345,0.562532][-0.325708,0.524976,0.78633][0.410156,0.410156,-0.16093][-0.232111,0.772345,0.562532][-0.325708,0.524976,0.78633][0.410156,0.410156,-0.16093][-0.429646,0.772345,0.430544][-0.601831,0.524976,0.601831][0.410156,0.371094,-0.29736][-0.475957,0.635877,0.476855][-0.674885,0.298429,0.674885][0.445313,0.382813,-0.329345][-0.429646,0.772345,0.430544][-0.601831,0.524976,0.601831][0.410156,0.371094,-0.29736][-0.561635,0.772345,0.233009][-0.78633,0.524976,0.325709][0.410156,0.3125,-0.388519][-0.622143,0.635877,0.258072][-0.88178,0.298428,0.365246][0.445313,0.316406,-0.43031][-0.622143,0.635877,0.258072][-0.88178,0.298428,0.365246][0.445313,0.316406,-0.43031][-0.475957,0.635877,0.476855][-0.674885,0.298429,0.674885][0.445313,0.382813,-0.329345][-0.429646,0.772345,0.430544][-0.601831,0.524976,0.601831][0.410156,0.371094,-0.29736][0.477752,0.635877,-0.476855][0.674885,0.298428,-0.674886][0.445313,0.0976563,0.329345][0.258969,0.635877,-0.623041][0.365245,0.298429,-0.88178][0.445313,0.0546875,0.17824][0.233906,0.772345,-0.562533][0.325708,0.524976,-0.78633][0.410156,0.0703125,0.16093][0.233906,0.772345,-0.562533][0.325708,0.524976,-0.78633][0.410156,0.0703125,0.16093][0.431441,0.772345,-0.430544][0.60183,0.524976,-0.601831][0.410156,0.113281,0.29736][0.477752,0.635877,-0.476855][0.674885,0.298428,-0.674886][0.445313,0.0976563,0.329345][0.000897726,0.635877,0.674375][0,0.298429,0.954432][0.445313,0.441406,0][0.25897,0.635877,0.623041][0.365246,0.298429,0.88178][0.445313,0.425781,0.17824][0.233906,0.772345,0.562532][0.325709,0.524976,0.786329][0.410156,0.410156,0.16093][0.233906,0.772345,0.562532][0.325709,0.524976,0.786329][0.410156,0.410156,0.16093][0.00089779,0.772345,0.608881][2.40043e-007,0.524976,0.851117][0.410156,0.421875,1.32713e-007][0.000897726,0.635877,0.674375][0,0.298429,0.954432][0.445313,0.441406,0][0.00089779,0.772345,0.608881][2.40043e-007,0.524976,0.851117][0.410156,0.421875,1.32713e-007][-0.232111,0.772345,0.562532][-0.325708,0.524976,0.78633][0.410156,0.410156,-0.16093][-0.257174,0.635877,0.623041][-0.365245,0.298429,0.88178][0.445313,0.425781,-0.17824][-0.257174,0.635877,0.623041][-0.365245,0.298429,0.88178][0.445313,0.425781,-0.17824][0.000897726,0.635877,0.674375][0,0.298429,0.954432][0.445313,0.441406,0][0.00089779,0.772345,0.608881][2.40043e-007,0.524976,0.851117][0.410156,0.421875,1.32713e-007][0.477753,0.635877,0.476855][0.674886,0.298428,0.674885][0.445313,0.382813,0.329345][0.623939,0.635877,0.258072][0.88178,0.298429,0.365245][0.445313,0.316406,0.43031][0.56343,0.772345,0.233008][0.78633,0.524976,0.325708][0.410156,0.3125,0.388519][0.56343,0.772345,0.233008][0.78633,0.524976,0.325708][0.410156,0.3125,0.388519][0.431441,0.772345,0.430544][0.601831,0.524976,0.60183][0.410156,0.371094,0.29736][0.477753,0.635877,0.476855][0.674886,0.298428,0.674885][0.445313,0.382813,0.329345][0.431441,0.772345,0.430544][0.601831,0.524976,0.60183][0.410156,0.371094,0.29736][0.233906,0.772345,0.562532][0.325709,0.524976,0.786329][0.410156,0.410156,0.16093][0.25897,0.635877,0.623041][0.365246,0.298429,0.88178][0.445313,0.425781,0.17824][0.25897,0.635877,0.623041][0.365246,0.298429,0.88178][0.445313,0.425781,0.17824][0.477753,0.635877,0.476855][0.674886,0.298428,0.674885][0.445313,0.382813,0.329345][0.431441,0.772345,0.430544][0.601831,0.524976,0.60183][0.410156,0.371094,0.29736][-0.561635,0.772345,0.233009][-0.78633,0.524976,0.325709][0.410156,0.3125,-0.388519][-0.607983,0.772345,0][-0.851117,0.524976,2.9393e-007][0.410156,0.242188,-0.42053][-0.673477,0.635877,0][-0.954432,0.298429,2.08117e-007][0.445313,0.242188,-0.465764][-0.673477,0.635877,0][-0.954432,0.298429,2.08117e-007][0.445313,0.242188,-0.465764][-0.622143,0.635877,0.258072][-0.88178,0.298428,0.365246][0.445313,0.316406,-0.43031][-0.561635,0.772345,0.233009][-0.78633,0.524976,0.325709][0.410156,0.3125,-0.388519][-0.257175,0.635877,-0.623041][-0.365246,0.298429,-0.88178][0.445313,0.0546875,-0.17824][-0.475958,0.635877,-0.476855][-0.674885,0.298429,-0.674885][0.445313,0.0976563,-0.329345][-0.429646,0.772345,-0.430544][-0.601831,0.524976,-0.601831][0.410156,0.113281,-0.29736][-0.429646,0.772345,-0.430544][-0.601831,0.524976,-0.601831][0.410156,0.113281,-0.29736][-0.232111,0.772345,-0.562533][-0.325709,0.524976,-0.78633][0.410156,0.0703125,-0.16093][-0.257175,0.635877,-0.623041][-0.365246,0.298429,-0.88178][0.445313,0.0546875,-0.17824][-0.232111,0.772345,-0.562533][-0.325709,0.524976,-0.78633][0.410156,0.0703125,-0.16093][0.000897501,0.772345,-0.608881][-1.95954e-007,0.524976,-0.851117][0.410156,0.0585938,0][0.000897501,0.635877,-0.674375][-2.52714e-007,0.298429,-0.954432][0.445313,0.0390625,0][0.000897501,0.635877,-0.674375][-2.52714e-007,0.298429,-0.954432][0.445313,0.0390625,0][-0.257175,0.635877,-0.623041][-0.365246,0.298429,-0.88178][0.445313,0.0546875,-0.17824][-0.232111,0.772345,-0.562533][-0.325709,0.524976,-0.78633][0.410156,0.0703125,-0.16093][-0.607983,0.772345,0][-0.851117,0.524976,2.9393e-007][0.410156,0.242188,-0.42053][-0.561635,0.772345,-0.233009][-0.78633,0.524976,-0.325708][0.410156,0.171875,-0.388519][-0.622144,0.635877,-0.258072][-0.88178,0.298428,-0.365245][0.445313,0.164063,-0.43031][-0.622144,0.635877,-0.258072][-0.88178,0.298428,-0.365245][0.445313,0.164063,-0.43031][-0.673477,0.635877,0][-0.954432,0.298429,2.08117e-007][0.445313,0.242188,-0.465764][-0.607983,0.772345,0][-0.851117,0.524976,2.9393e-007][0.410156,0.242188,-0.42053][-0.475958,0.635877,-0.476855][-0.674885,0.298429,-0.674885][0.445313,0.0976563,-0.329345][-0.622144,0.635877,-0.258072][-0.88178,0.298428,-0.365245][0.445313,0.164063,-0.43031][-0.561635,0.772345,-0.233009][-0.78633,0.524976,-0.325708][0.410156,0.171875,-0.388519][-0.561635,0.772345,-0.233009][-0.78633,0.524976,-0.325708][0.410156,0.171875,-0.388519][-0.429646,0.772345,-0.430544][-0.601831,0.524976,-0.601831][0.410156,0.113281,-0.29736][-0.475958,0.635877,-0.476855][-0.674885,0.298429,-0.674885][0.445313,0.0976563,-0.329345][0.623939,0.635877,0.258072][0.88178,0.298429,0.365245][0.445313,0.316406,0.43031][0.675272,0.635877,-2.51923e-007][0.954432,0.298428,0][0.445313,0.242188,0.465764][0.609779,0.772345,-2.68454e-007][0.851117,0.524976,0][0.410156,0.242188,0.42053][0.609779,0.772345,-2.68454e-007][0.851117,0.524976,0][0.410156,0.242188,0.42053][0.56343,0.772345,0.233008][0.78633,0.524976,0.325708][0.410156,0.3125,0.388519][0.623939,0.635877,0.258072][0.88178,0.298429,0.365245][0.445313,0.316406,0.43031][0.000897501,0.772345,-0.608881][-1.95954e-007,0.524976,-0.851117][0.410156,0.0585938,0][0.233906,0.772345,-0.562533][0.325708,0.524976,-0.78633][0.410156,0.0703125,0.16093][0.258969,0.635877,-0.623041][0.365245,0.298429,-0.88178][0.445313,0.0546875,0.17824][0.258969,0.635877,-0.623041][0.365245,0.298429,-0.88178][0.445313,0.0546875,0.17824][0.000897501,0.635877,-0.674375][-2.52714e-007,0.298429,-0.954432][0.445313,0.0390625,0][0.000897501,0.772345,-0.608881][-1.95954e-007,0.524976,-0.851117][0.410156,0.0585938,0] \ No newline at end of file diff --git a/charcustom/hats/fonts/PaperBag.mesh b/charcustom/hats/fonts/PaperBag.mesh new file mode 100644 index 0000000..caf22e2 --- /dev/null +++ b/charcustom/hats/fonts/PaperBag.mesh @@ -0,0 +1,3 @@ +version 1.00 +696 +[1.55725,-1.71948,-1.31556][-1.05464,-1.68926,0.167229][1,0,0][1.4489,-1.63021,-1.0088][-1.57996,-2.39871,0.733937][1,0.142857,0][1.01676,-1.34195,-0.910514][0.146499,-0.984685,-0.0945186][0.875,0.142857,0][1.01676,-1.34195,-0.910514][0.146499,-0.984685,-0.0945186][0.875,0.142857,0][1.07789,-1.43431,-1.31887][0.869614,-2.23699,0.278618][0.875,0,0][1.55725,-1.71948,-1.31556][-1.05464,-1.68926,0.167229][1,0,0][1.07789,-1.43431,-1.31887][0.869614,-2.23699,0.278618][0.875,0,0][1.01676,-1.34195,-0.910514][0.146499,-0.984685,-0.0945186][0.875,0.142857,0][0.691402,-1.78166,-0.997908][0.133718,-0.988202,-0.0746696][0.75,0.142857,0][0.691402,-1.78166,-0.997908][0.133718,-0.988202,-0.0746696][0.75,0.142857,0][0.799749,-1.64903,-1.39704][-0.219088,-2.48168,-0.589658][0.75,0,0][1.07789,-1.43431,-1.31887][0.869614,-2.23699,0.278618][0.875,0,0][0.799749,-1.64903,-1.39704][-0.219088,-2.48168,-0.589658][0.75,0,0][0.691402,-1.78166,-0.997908][0.133718,-0.988202,-0.0746696][0.75,0.142857,0][0.269132,-1.49668,-1.02265][-0.0210753,-0.969116,-0.245703][0.625,0.142857,0][0.269132,-1.49668,-1.02265][-0.0210753,-0.969116,-0.245703][0.625,0.142857,0][0.329608,-1.47863,-1.36857][0.887299,-2.48049,0.123581][0.625,0,0][0.799749,-1.64903,-1.39704][-0.219088,-2.48168,-0.589658][0.75,0,0][0.329608,-1.47863,-1.36857][0.887299,-2.48049,0.123581][0.625,0,0][0.269132,-1.49668,-1.02265][-0.0210753,-0.969116,-0.245703][0.625,0.142857,0][-0.0660983,-1.71811,-0.866518][0.0957395,-0.984017,0.15015][0.5,0.142857,0][-0.0660983,-1.71811,-0.866518][0.0957395,-0.984017,0.15015][0.5,0.142857,0][0.0422493,-1.74044,-1.36736][-0.257425,-2.44378,-0.139213][0.5,0,0][0.329608,-1.47863,-1.36857][0.887299,-2.48049,0.123581][0.625,0,0][0.0422493,-1.74044,-1.36736][-0.257425,-2.44378,-0.139213][0.5,0,0][-0.0660983,-1.71811,-0.866518][0.0957395,-0.984017,0.15015][0.5,0.142857,0][-0.488368,-1.54901,-0.859612][0.0267913,-0.996661,-0.0771352][0.375,0.142857,0][-0.488368,-1.54901,-0.859612][0.0267913,-0.996661,-0.0771352][0.375,0.142857,0][-0.427892,-1.42492,-1.3346][0.705262,-2.29828,-0.310348][0.375,0,0][0.0422493,-1.74044,-1.36736][-0.257425,-2.44378,-0.139213][0.5,0,0][-0.427892,-1.42492,-1.3346][0.705262,-2.29828,-0.310348][0.375,0,0][-0.488368,-1.54901,-0.859612][0.0267913,-0.996661,-0.0771352][0.375,0.142857,0][-0.823598,-1.76564,-0.811005][0.0299089,-0.983065,0.180801][0.25,0.142857,0][-0.823598,-1.76564,-0.811005][0.0299089,-0.983065,0.180801][0.25,0.142857,0][-0.715251,-1.74243,-1.34909][-0.370836,-2.3181,-0.122578][0.25,0,0][-0.427892,-1.42492,-1.3346][0.705262,-2.29828,-0.310348][0.375,0,0][-0.715251,-1.74243,-1.34909][-0.370836,-2.3181,-0.122578][0.25,0,0][-0.823598,-1.76564,-0.811005][0.0299089,-0.983065,0.180801][0.25,0.142857,0][-1.24587,-1.42296,-1.10385][0.00430179,-0.999104,-0.0420943][0.125,0.142857,0][-1.24587,-1.42296,-1.10385][0.00430179,-0.999104,-0.0420943][0.125,0.142857,0][-1.18539,-1.43034,-1.39019][0.580442,-2.44767,-0.070826][0.125,0,0][-0.715251,-1.74243,-1.34909][-0.370836,-2.3181,-0.122578][0.25,0,0][-1.18539,-1.43034,-1.39019][0.580442,-2.44767,-0.070826][0.125,0,0][-1.24587,-1.42296,-1.10385][0.00430179,-0.999104,-0.0420943][0.125,0.142857,0][-1.5811,-1.70132,-1.04564][1.70962,-2.37644,-0.256489][0,0.142857,0][-1.5811,-1.70132,-1.04564][1.70962,-2.37644,-0.256489][0,0.142857,0][-1.47275,-1.59917,-1.32227][0.47848,-0.867954,-0.13309][0,0,0][-1.18539,-1.43034,-1.39019][0.580442,-2.44767,-0.070826][0.125,0,0][1.4489,-1.63021,-1.0088][-1.57996,-2.39871,0.733937][1,0.142857,0][1.70952,-1.64483,-0.558129][-1.51847,-2.29029,-0.519997][1,0.285714,0][1.34235,-1.36635,-0.566735][0.112236,-0.99366,0.00652026][0.875,0.285714,0][1.34235,-1.36635,-0.566735][0.112236,-0.99366,0.00652026][0.875,0.285714,0][1.01676,-1.34195,-0.910514][0.146499,-0.984685,-0.0945186][0.875,0.142857,0][1.4489,-1.63021,-1.0088][-1.57996,-2.39871,0.733937][1,0.142857,0][1.01676,-1.34195,-0.910514][0.146499,-0.984685,-0.0945186][0.875,0.142857,0][1.34235,-1.36635,-0.566735][0.112236,-0.99366,0.00652026][0.875,0.285714,0][0.952022,-1.81727,-0.62614][0.139961,-0.981879,-0.127771][0.75,0.285714,0][0.952022,-1.81727,-0.62614][0.139961,-0.981879,-0.127771][0.75,0.285714,0][0.691402,-1.78166,-0.997908][0.133718,-0.988202,-0.0746696][0.75,0.142857,0][1.01676,-1.34195,-0.910514][0.146499,-0.984685,-0.0945186][0.875,0.142857,0][0.691402,-1.78166,-0.997908][0.133718,-0.988202,-0.0746696][0.75,0.142857,0][0.952022,-1.81727,-0.62614][0.139961,-0.981879,-0.127771][0.75,0.285714,0][0.567903,-1.59051,-0.585605][-0.0580518,-0.986226,0.154882][0.625,0.285714,0][0.567903,-1.59051,-0.585605][-0.0580518,-0.986226,0.154882][0.625,0.285714,0][0.269132,-1.49668,-1.02265][-0.0210753,-0.969116,-0.245703][0.625,0.142857,0][0.691402,-1.78166,-0.997908][0.133718,-0.988202,-0.0746696][0.75,0.142857,0][0.269132,-1.49668,-1.02265][-0.0210753,-0.969116,-0.245703][0.625,0.142857,0][0.567903,-1.59051,-0.585605][-0.0580518,-0.986226,0.154882][0.625,0.285714,0][0.194522,-1.73473,-0.705925][-0.0733629,-0.997026,-0.0236087][0.5,0.285714,0][0.194522,-1.73473,-0.705925][-0.0733629,-0.997026,-0.0236087][0.5,0.285714,0][-0.0660983,-1.71811,-0.866518][0.0957395,-0.984017,0.15015][0.5,0.142857,0][0.269132,-1.49668,-1.02265][-0.0210753,-0.969116,-0.245703][0.625,0.142857,0][-0.0660983,-1.71811,-0.866518][0.0957395,-0.984017,0.15015][0.5,0.142857,0][0.194522,-1.73473,-0.705925][-0.0733629,-0.997026,-0.0236087][0.5,0.285714,0][-0.189597,-1.50866,-0.642624][0.0448723,-0.958489,0.281576][0.375,0.285714,0][-0.189597,-1.50866,-0.642624][0.0448723,-0.958489,0.281576][0.375,0.285714,0][-0.488368,-1.54901,-0.859612][0.0267913,-0.996661,-0.0771352][0.375,0.142857,0][-0.0660983,-1.71811,-0.866518][0.0957395,-0.984017,0.15015][0.5,0.142857,0][-0.488368,-1.54901,-0.859612][0.0267913,-0.996661,-0.0771352][0.375,0.142857,0][-0.189597,-1.50866,-0.642624][0.0448723,-0.958489,0.281576][0.375,0.285714,0][-0.562978,-1.65723,-0.598769][-0.0432896,-0.99645,-0.0721976][0.25,0.285714,0][-0.562978,-1.65723,-0.598769][-0.0432896,-0.99645,-0.0721976][0.25,0.285714,0][-0.823598,-1.76564,-0.811005][0.0299089,-0.983065,0.180801][0.25,0.142857,0][-0.488368,-1.54901,-0.859612][0.0267913,-0.996661,-0.0771352][0.375,0.142857,0][-0.823598,-1.76564,-0.811005][0.0299089,-0.983065,0.180801][0.25,0.142857,0][-0.562978,-1.65723,-0.598769][-0.0432896,-0.99645,-0.0721976][0.25,0.285714,0][-0.947097,-1.36951,-0.54696][0.0866243,-0.958169,0.272778][0.125,0.285714,0][-0.947097,-1.36951,-0.54696][0.0866243,-0.958169,0.272778][0.125,0.285714,0][-1.24587,-1.42296,-1.10385][0.00430179,-0.999104,-0.0420943][0.125,0.142857,0][-0.823598,-1.76564,-0.811005][0.0299089,-0.983065,0.180801][0.25,0.142857,0][-1.24587,-1.42296,-1.10385][0.00430179,-0.999104,-0.0420943][0.125,0.142857,0][-0.947097,-1.36951,-0.54696][0.0866243,-0.958169,0.272778][0.125,0.285714,0][-1.32048,-1.68846,-0.535494][1.8512,-2.24932,-0.394104][0,0.285714,0][-1.32048,-1.68846,-0.535494][1.8512,-2.24932,-0.394104][0,0.285714,0][-1.5811,-1.70132,-1.04564][1.70962,-2.37644,-0.256489][0,0.142857,0][-1.24587,-1.42296,-1.10385][0.00430179,-0.999104,-0.0420943][0.125,0.142857,0][1.70952,-1.64483,-0.558129][-1.51847,-2.29029,-0.519997][1,0.285714,0][1.61851,-1.7501,-0.158419][-0.915007,-2.52099,0.517523][1,0.428571,0][1.10353,-1.48856,-0.161725][0.108223,-0.986591,-0.122176][0.875,0.428571,0][1.10353,-1.48856,-0.161725][0.108223,-0.986591,-0.122176][0.875,0.428571,0][1.34235,-1.36635,-0.566735][0.112236,-0.99366,0.00652026][0.875,0.285714,0][1.70952,-1.64483,-0.558129][-1.51847,-2.29029,-0.519997][1,0.285714,0][1.34235,-1.36635,-0.566735][0.112236,-0.99366,0.00652026][0.875,0.285714,0][1.10353,-1.48856,-0.161725][0.108223,-0.986591,-0.122176][0.875,0.428571,0][0.861006,-1.73839,-0.239896][0.0743569,-0.977243,0.198661][0.75,0.428571,0][0.861006,-1.73839,-0.239896][0.0743569,-0.977243,0.198661][0.75,0.428571,0][0.952022,-1.81727,-0.62614][0.139961,-0.981879,-0.127771][0.75,0.285714,0][1.34235,-1.36635,-0.566735][0.112236,-0.99366,0.00652026][0.875,0.285714,0][0.952022,-1.81727,-0.62614][0.139961,-0.981879,-0.127771][0.75,0.285714,0][0.861006,-1.73839,-0.239896][0.0743569,-0.977243,0.198661][0.75,0.428571,0][0.357725,-1.45508,-0.211425][0.0683121,-0.982443,0.173607][0.625,0.428571,0][0.357725,-1.45508,-0.211425][0.0683121,-0.982443,0.173607][0.625,0.428571,0][0.567903,-1.59051,-0.585605][-0.0580518,-0.986226,0.154882][0.625,0.285714,0][0.952022,-1.81727,-0.62614][0.139961,-0.981879,-0.127771][0.75,0.285714,0][0.567903,-1.59051,-0.585605][-0.0580518,-0.986226,0.154882][0.625,0.285714,0][0.357725,-1.45508,-0.211425][0.0683121,-0.982443,0.173607][0.625,0.428571,0][0.103506,-1.64677,-0.210221][-0.0622459,-0.997123,0.0432508][0.5,0.428571,0][0.103506,-1.64677,-0.210221][-0.0622459,-0.997123,0.0432508][0.5,0.428571,0][0.194522,-1.73473,-0.705925][-0.0733629,-0.997026,-0.0236087][0.5,0.285714,0][0.567903,-1.59051,-0.585605][-0.0580518,-0.986226,0.154882][0.625,0.285714,0][0.194522,-1.73473,-0.705925][-0.0733629,-0.997026,-0.0236087][0.5,0.285714,0][0.103506,-1.64677,-0.210221][-0.0622459,-0.997123,0.0432508][0.5,0.428571,0][-0.399775,-1.33949,-0.177461][0.0204913,-0.997913,0.0612355][0.375,0.428571,0][-0.399775,-1.33949,-0.177461][0.0204913,-0.997913,0.0612355][0.375,0.428571,0][-0.189597,-1.50866,-0.642624][0.0448723,-0.958489,0.281576][0.375,0.285714,0][0.194522,-1.73473,-0.705925][-0.0733629,-0.997026,-0.0236087][0.5,0.285714,0][-0.189597,-1.50866,-0.642624][0.0448723,-0.958489,0.281576][0.375,0.285714,0][-0.399775,-1.33949,-0.177461][0.0204913,-0.997913,0.0612355][0.375,0.428571,0][-0.653994,-1.68854,-0.191949][0.0626162,-0.97672,0.205178][0.25,0.428571,0][-0.653994,-1.68854,-0.191949][0.0626162,-0.97672,0.205178][0.25,0.428571,0][-0.562978,-1.65723,-0.598769][-0.0432896,-0.99645,-0.0721976][0.25,0.285714,0][-0.189597,-1.50866,-0.642624][0.0448723,-0.958489,0.281576][0.375,0.285714,0][-0.562978,-1.65723,-0.598769][-0.0432896,-0.99645,-0.0721976][0.25,0.285714,0][-0.653994,-1.68854,-0.191949][0.0626162,-0.97672,0.205178][0.25,0.428571,0][-1.15727,-1.38876,-0.233047][0.112008,-0.992025,-0.0577907][0.125,0.428571,0][-1.15727,-1.38876,-0.233047][0.112008,-0.992025,-0.0577907][0.125,0.428571,0][-0.947097,-1.36951,-0.54696][0.0866243,-0.958169,0.272778][0.125,0.285714,0][-0.562978,-1.65723,-0.598769][-0.0432896,-0.99645,-0.0721976][0.25,0.285714,0][-0.947097,-1.36951,-0.54696][0.0866243,-0.958169,0.272778][0.125,0.285714,0][-1.15727,-1.38876,-0.233047][0.112008,-0.992025,-0.0577907][0.125,0.428571,0][-1.41149,-1.69361,-0.16513][2.14015,-1.90034,0.57995][0,0.428571,0][-1.41149,-1.69361,-0.16513][2.14015,-1.90034,0.57995][0,0.428571,0][-1.32048,-1.68846,-0.535494][1.8512,-2.24932,-0.394104][0,0.285714,0][-0.947097,-1.36951,-0.54696][0.0866243,-0.958169,0.272778][0.125,0.285714,0][1.61851,-1.7501,-0.158419][-0.915007,-2.52099,0.517523][1,0.428571,0][1.56947,-1.49246,0.201533][-0.232078,-2.79896,0.697531][1,0.571429,0][1.29694,-1.47788,0.198923][0.194227,-0.942014,0.27365][0.875,0.571429,0][1.29694,-1.47788,0.198923][0.194227,-0.942014,0.27365][0.875,0.571429,0][1.10353,-1.48856,-0.161725][0.108223,-0.986591,-0.122176][0.875,0.428571,0][1.61851,-1.7501,-0.158419][-0.915007,-2.52099,0.517523][1,0.428571,0][1.10353,-1.48856,-0.161725][0.108223,-0.986591,-0.122176][0.875,0.428571,0][1.29694,-1.47788,0.198923][0.194227,-0.942014,0.27365][0.875,0.571429,0][0.811965,-1.75651,0.14373][0.01885,-0.982649,-0.184514][0.75,0.571429,0][0.811965,-1.75651,0.14373][0.01885,-0.982649,-0.184514][0.75,0.571429,0][0.861006,-1.73839,-0.239896][0.0743569,-0.977243,0.198661][0.75,0.428571,0][1.10353,-1.48856,-0.161725][0.108223,-0.986591,-0.122176][0.875,0.428571,0][0.861006,-1.73839,-0.239896][0.0743569,-0.977243,0.198661][0.75,0.428571,0][0.811965,-1.75651,0.14373][0.01885,-0.982649,-0.184514][0.75,0.571429,0][0.532727,-1.3304,0.231037][-0.0935641,-0.970711,-0.221282][0.625,0.571429,0][0.532727,-1.3304,0.231037][-0.0935641,-0.970711,-0.221282][0.625,0.571429,0][0.357725,-1.45508,-0.211425][0.0683121,-0.982443,0.173607][0.625,0.428571,0][0.861006,-1.73839,-0.239896][0.0743569,-0.977243,0.198661][0.75,0.428571,0][0.357725,-1.45508,-0.211425][0.0683121,-0.982443,0.173607][0.625,0.428571,0][0.532727,-1.3304,0.231037][-0.0935641,-0.970711,-0.221282][0.625,0.571429,0][0.0544652,-1.72956,0.0561451][0.0172395,-0.990018,-0.139884][0.5,0.571429,0][0.0544652,-1.72956,0.0561451][0.0172395,-0.990018,-0.139884][0.5,0.571429,0][0.103506,-1.64677,-0.210221][-0.0622459,-0.997123,0.0432508][0.5,0.428571,0][0.357725,-1.45508,-0.211425][0.0683121,-0.982443,0.173607][0.625,0.428571,0][0.103506,-1.64677,-0.210221][-0.0622459,-0.997123,0.0432508][0.5,0.428571,0][0.0544652,-1.72956,0.0561451][0.0172395,-0.990018,-0.139884][0.5,0.571429,0][-0.224773,-1.49606,0.129131][-0.183096,-0.96683,-0.178088][0.375,0.571429,0][-0.224773,-1.49606,0.129131][-0.183096,-0.96683,-0.178088][0.375,0.571429,0][-0.399775,-1.33949,-0.177461][0.0204913,-0.997913,0.0612355][0.375,0.428571,0][0.103506,-1.64677,-0.210221][-0.0622459,-0.997123,0.0432508][0.5,0.428571,0][-0.399775,-1.33949,-0.177461][0.0204913,-0.997913,0.0612355][0.375,0.428571,0][-0.224773,-1.49606,0.129131][-0.183096,-0.96683,-0.178088][0.375,0.571429,0][-0.703035,-1.59478,0.134377][-0.0553761,-0.982974,-0.175202][0.25,0.571429,0][-0.703035,-1.59478,0.134377][-0.0553761,-0.982974,-0.175202][0.25,0.571429,0][-0.653994,-1.68854,-0.191949][0.0626162,-0.97672,0.205178][0.25,0.428571,0][-0.399775,-1.33949,-0.177461][0.0204913,-0.997913,0.0612355][0.375,0.428571,0][-0.653994,-1.68854,-0.191949][0.0626162,-0.97672,0.205178][0.25,0.428571,0][-0.703035,-1.59478,0.134377][-0.0553761,-0.982974,-0.175202][0.25,0.571429,0][-0.982273,-1.40302,0.204029][0.0583267,-0.996403,0.0614809][0.125,0.571429,0][-0.982273,-1.40302,0.204029][0.0583267,-0.996403,0.0614809][0.125,0.571429,0][-1.15727,-1.38876,-0.233047][0.112008,-0.992025,-0.0577907][0.125,0.428571,0][-0.653994,-1.68854,-0.191949][0.0626162,-0.97672,0.205178][0.25,0.428571,0][-1.15727,-1.38876,-0.233047][0.112008,-0.992025,-0.0577907][0.125,0.428571,0][-0.982273,-1.40302,0.204029][0.0583267,-0.996403,0.0614809][0.125,0.571429,0][-1.46053,-1.76794,0.232154][1.93984,-2.18505,-0.0459622][0,0.571429,0][-1.46053,-1.76794,0.232154][1.93984,-2.18505,-0.0459622][0,0.571429,0][-1.41149,-1.69361,-0.16513][2.14015,-1.90034,0.57995][0,0.428571,0][-1.15727,-1.38876,-0.233047][0.112008,-0.992025,-0.0577907][0.125,0.428571,0][1.56947,-1.49246,0.201533][-0.232078,-2.79896,0.697531][1,0.571429,0][1.51488,-1.48273,0.613009][-0.806205,-2.42499,-0.515454][1,0.714286,0][0.97965,-1.41324,0.609704][0.284837,-0.915219,0.28503][0.875,0.714286,0][0.97965,-1.41324,0.609704][0.284837,-0.915219,0.28503][0.875,0.714286,0][1.29694,-1.47788,0.198923][0.194227,-0.942014,0.27365][0.875,0.571429,0][1.56947,-1.49246,0.201533][-0.232078,-2.79896,0.697531][1,0.571429,0][1.29694,-1.47788,0.198923][0.194227,-0.942014,0.27365][0.875,0.571429,0][0.97965,-1.41324,0.609704][0.284837,-0.915219,0.28503][0.875,0.714286,0][0.757381,-1.70263,0.531533][0.166107,-0.954138,0.249055][0.75,0.714286,0][0.757381,-1.70263,0.531533][0.166107,-0.954138,0.249055][0.75,0.714286,0][0.811965,-1.75651,0.14373][0.01885,-0.982649,-0.184514][0.75,0.571429,0][1.29694,-1.47788,0.198923][0.194227,-0.942014,0.27365][0.875,0.571429,0][0.811965,-1.75651,0.14373][0.01885,-0.982649,-0.184514][0.75,0.571429,0][0.757381,-1.70263,0.531533][0.166107,-0.954138,0.249055][0.75,0.714286,0][0.236037,-1.61572,0.560004][0.0129163,-0.999662,-0.0225499][0.625,0.714286,0][0.236037,-1.61572,0.560004][0.0129163,-0.999662,-0.0225499][0.625,0.714286,0][0.532727,-1.3304,0.231037][-0.0935641,-0.970711,-0.221282][0.625,0.571429,0][0.811965,-1.75651,0.14373][0.01885,-0.982649,-0.184514][0.75,0.571429,0][0.532727,-1.3304,0.231037][-0.0935641,-0.970711,-0.221282][0.625,0.571429,0][0.236037,-1.61572,0.560004][0.0129163,-0.999662,-0.0225499][0.625,0.714286,0][-0.000119392,-1.68593,0.561208][-0.0540058,-0.993836,-0.0968188][0.5,0.714286,0][-0.000119392,-1.68593,0.561208][-0.0540058,-0.993836,-0.0968188][0.5,0.714286,0][0.0544652,-1.72956,0.0561451][0.0172395,-0.990018,-0.139884][0.5,0.571429,0][0.532727,-1.3304,0.231037][-0.0935641,-0.970711,-0.221282][0.625,0.571429,0][0.0544652,-1.72956,0.0561451][0.0172395,-0.990018,-0.139884][0.5,0.571429,0][-0.000119392,-1.68593,0.561208][-0.0540058,-0.993836,-0.0968188][0.5,0.714286,0][-0.521463,-1.41499,0.593968][0.0454728,-0.998494,0.0306929][0.375,0.714286,0][-0.521463,-1.41499,0.593968][0.0454728,-0.998494,0.0306929][0.375,0.714286,0][-0.224773,-1.49606,0.129131][-0.183096,-0.96683,-0.178088][0.375,0.571429,0][0.0544652,-1.72956,0.0561451][0.0172395,-0.990018,-0.139884][0.5,0.571429,0][-0.224773,-1.49606,0.129131][-0.183096,-0.96683,-0.178088][0.375,0.571429,0][-0.521463,-1.41499,0.593968][0.0454728,-0.998494,0.0306929][0.375,0.714286,0][-0.757619,-1.63451,0.579479][0.135553,-0.987619,-0.078952][0.25,0.714286,0][-0.757619,-1.63451,0.579479][0.135553,-0.987619,-0.078952][0.25,0.714286,0][-0.703035,-1.59478,0.134377][-0.0553761,-0.982974,-0.175202][0.25,0.571429,0][-0.224773,-1.49606,0.129131][-0.183096,-0.96683,-0.178088][0.375,0.571429,0][-0.703035,-1.59478,0.134377][-0.0553761,-0.982974,-0.175202][0.25,0.571429,0][-0.757619,-1.63451,0.579479][0.135553,-0.987619,-0.078952][0.25,0.714286,0][-1.27896,-1.45159,0.538382][0.105216,-0.988604,-0.107668][0.125,0.714286,0][-1.27896,-1.45159,0.538382][0.105216,-0.988604,-0.107668][0.125,0.714286,0][-0.982273,-1.40302,0.204029][0.0583267,-0.996403,0.0614809][0.125,0.571429,0][-0.703035,-1.59478,0.134377][-0.0553761,-0.982974,-0.175202][0.25,0.571429,0][-0.982273,-1.40302,0.204029][0.0583267,-0.996403,0.0614809][0.125,0.571429,0][-1.27896,-1.45159,0.538382][0.105216,-0.988604,-0.107668][0.125,0.714286,0][-1.51512,-1.69513,0.606298][1.90534,-1.70506,1.41318][0,0.714286,0][-1.51512,-1.69513,0.606298][1.90534,-1.70506,1.41318][0,0.714286,0][-1.46053,-1.76794,0.232154][1.93984,-2.18505,-0.0459622][0,0.571429,0][-0.982273,-1.40302,0.204029][0.0583267,-0.996403,0.0614809][0.125,0.571429,0][1.51488,-1.48273,0.613009][-0.806205,-2.42499,-0.515454][1,0.714286,0][1.23661,-1.59718,0.906729][-1.83672,-1.94816,-0.368415][1,0.857143,0][0.920818,-1.33739,0.985008][0.047224,-0.973016,-0.225852][0.875,0.857143,0][0.920818,-1.33739,0.985008][0.047224,-0.973016,-0.225852][0.875,0.857143,0][0.97965,-1.41324,0.609704][0.284837,-0.915219,0.28503][0.875,0.714286,0][1.51488,-1.48273,0.613009][-0.806205,-2.42499,-0.515454][1,0.714286,0][0.97965,-1.41324,0.609704][0.284837,-0.915219,0.28503][0.875,0.714286,0][0.920818,-1.33739,0.985008][0.047224,-0.973016,-0.225852][0.875,0.857143,0][0.479106,-1.71542,0.921863][0.0473032,-0.986343,0.157766][0.75,0.857143,0][0.479106,-1.71542,0.921863][0.0473032,-0.986343,0.157766][0.75,0.857143,0][0.757381,-1.70263,0.531533][0.166107,-0.954138,0.249055][0.75,0.714286,0][0.97965,-1.41324,0.609704][0.284837,-0.915219,0.28503][0.875,0.714286,0][0.757381,-1.70263,0.531533][0.166107,-0.954138,0.249055][0.75,0.714286,0][0.479106,-1.71542,0.921863][0.0473032,-0.986343,0.157766][0.75,0.857143,0][0.165678,-1.44191,0.960731][-0.0697353,-0.996207,-0.0520469][0.625,0.857143,0][0.165678,-1.44191,0.960731][-0.0697353,-0.996207,-0.0520469][0.625,0.857143,0][0.236037,-1.61572,0.560004][0.0129163,-0.999662,-0.0225499][0.625,0.714286,0][0.757381,-1.70263,0.531533][0.166107,-0.954138,0.249055][0.75,0.714286,0][0.236037,-1.61572,0.560004][0.0129163,-0.999662,-0.0225499][0.625,0.714286,0][0.165678,-1.44191,0.960731][-0.0697353,-0.996207,-0.0520469][0.625,0.857143,0][-0.278394,-1.6473,1.0311][-0.104923,-0.969381,0.222017][0.5,0.857143,0][-0.278394,-1.6473,1.0311][-0.104923,-0.969381,0.222017][0.5,0.857143,0][-0.000119392,-1.68593,0.561208][-0.0540058,-0.993836,-0.0968188][0.5,0.714286,0][0.236037,-1.61572,0.560004][0.0129163,-0.999662,-0.0225499][0.625,0.714286,0][-0.000119392,-1.68593,0.561208][-0.0540058,-0.993836,-0.0968188][0.5,0.714286,0][-0.278394,-1.6473,1.0311][-0.104923,-0.969381,0.222017][0.5,0.857143,0][-0.591821,-1.48462,1.09783][0.0648398,-0.989967,-0.125545][0.375,0.857143,0][-0.591821,-1.48462,1.09783][0.0648398,-0.989967,-0.125545][0.375,0.857143,0][-0.521463,-1.41499,0.593968][0.0454728,-0.998494,0.0306929][0.375,0.714286,0][-0.000119392,-1.68593,0.561208][-0.0540058,-0.993836,-0.0968188][0.5,0.714286,0][-0.521463,-1.41499,0.593968][0.0454728,-0.998494,0.0306929][0.375,0.714286,0][-0.591821,-1.48462,1.09783][0.0648398,-0.989967,-0.125545][0.375,0.857143,0][-1.03589,-1.77431,1.12089][0.0128867,-0.98343,0.180829][0.25,0.857143,0][-1.03589,-1.77431,1.12089][0.0128867,-0.98343,0.180829][0.25,0.857143,0][-0.757619,-1.63451,0.579479][0.135553,-0.987619,-0.078952][0.25,0.714286,0][-0.521463,-1.41499,0.593968][0.0454728,-0.998494,0.0306929][0.375,0.714286,0][-0.757619,-1.63451,0.579479][0.135553,-0.987619,-0.078952][0.25,0.714286,0][-1.03589,-1.77431,1.12089][0.0128867,-0.98343,0.180829][0.25,0.857143,0][-1.34932,-1.58688,0.784191][-0.030581,-0.990578,-0.133491][0.125,0.857143,0][-1.34932,-1.58688,0.784191][-0.030581,-0.990578,-0.133491][0.125,0.857143,0][-1.27896,-1.45159,0.538382][0.105216,-0.988604,-0.107668][0.125,0.714286,0][-0.757619,-1.63451,0.579479][0.135553,-0.987619,-0.078952][0.25,0.714286,0][-1.27896,-1.45159,0.538382][0.105216,-0.988604,-0.107668][0.125,0.714286,0][-1.34932,-1.58688,0.784191][-0.030581,-0.990578,-0.133491][0.125,0.857143,0][-1.79339,-1.74473,0.84309][1.21881,-2.24716,0.225003][0,0.857143,0][-1.79339,-1.74473,0.84309][1.21881,-2.24716,0.225003][0,0.857143,0][-1.51512,-1.69513,0.606298][1.90534,-1.70506,1.41318][0,0.714286,0][-1.27896,-1.45159,0.538382][0.105216,-0.988604,-0.107668][0.125,0.714286,0][1.23661,-1.59718,0.906729][-1.83672,-1.94816,-0.368415][1,0.857143,0][1.45698,-1.69764,1.38444][-0.684889,-0.7093,0.166795][1,1,0][1.29876,-1.54563,1.38113][-1.04756,-2.23706,-0.290321][0.875,1,0][1.29876,-1.54563,1.38113][-1.04756,-2.23706,-0.290321][0.875,1,0][0.920818,-1.33739,0.985008][0.047224,-0.973016,-0.225852][0.875,0.857143,0][1.23661,-1.59718,0.906729][-1.83672,-1.94816,-0.368415][1,0.857143,0][0.920818,-1.33739,0.985008][0.047224,-0.973016,-0.225852][0.875,0.857143,0][1.29876,-1.54563,1.38113][-1.04756,-2.23706,-0.290321][0.875,1,0][0.699484,-1.67292,1.30296][0.385468,-2.23186,-0.539658][0.75,1,0][0.699484,-1.67292,1.30296][0.385468,-2.23186,-0.539658][0.75,1,0][0.479106,-1.71542,0.921863][0.0473032,-0.986343,0.157766][0.75,0.857143,0][0.920818,-1.33739,0.985008][0.047224,-0.973016,-0.225852][0.875,0.857143,0][0.479106,-1.71542,0.921863][0.0473032,-0.986343,0.157766][0.75,0.857143,0][0.699484,-1.67292,1.30296][0.385468,-2.23186,-0.539658][0.75,1,0][0.528175,-1.54963,1.33143][-0.831132,-2.3374,0.247897][0.625,1,0][0.528175,-1.54963,1.33143][-0.831132,-2.3374,0.247897][0.625,1,0][0.165678,-1.44191,0.960731][-0.0697353,-0.996207,-0.0520469][0.625,0.857143,0][0.479106,-1.71542,0.921863][0.0473032,-0.986343,0.157766][0.75,0.857143,0][0.165678,-1.44191,0.960731][-0.0697353,-0.996207,-0.0520469][0.625,0.857143,0][0.528175,-1.54963,1.33143][-0.831132,-2.3374,0.247897][0.625,1,0][-0.0580164,-1.72968,1.33264][-0.211281,-2.10231,-0.497345][0.5,1,0][-0.0580164,-1.72968,1.33264][-0.211281,-2.10231,-0.497345][0.5,1,0][-0.278394,-1.6473,1.0311][-0.104923,-0.969381,0.222017][0.5,0.857143,0][0.165678,-1.44191,0.960731][-0.0697353,-0.996207,-0.0520469][0.625,0.857143,0][-0.278394,-1.6473,1.0311][-0.104923,-0.969381,0.222017][0.5,0.857143,0][-0.0580164,-1.72968,1.33264][-0.211281,-2.10231,-0.497345][0.5,1,0][-0.229325,-1.39006,1.3654][-0.544839,-1.9617,0.671864][0.375,1,0][-0.229325,-1.39006,1.3654][-0.544839,-1.9617,0.671864][0.375,1,0][-0.591821,-1.48462,1.09783][0.0648398,-0.989967,-0.125545][0.375,0.857143,0][-0.278394,-1.6473,1.0311][-0.104923,-0.969381,0.222017][0.5,0.857143,0][-0.591821,-1.48462,1.09783][0.0648398,-0.989967,-0.125545][0.375,0.857143,0][-0.229325,-1.39006,1.3654][-0.544839,-1.9617,0.671864][0.375,1,0][-0.815516,-1.75312,1.35091][0.287513,-1.78927,-0.102337][0.25,1,0][-0.815516,-1.75312,1.35091][0.287513,-1.78927,-0.102337][0.25,1,0][-1.03589,-1.77431,1.12089][0.0128867,-0.98343,0.180829][0.25,0.857143,0][-0.591821,-1.48462,1.09783][0.0648398,-0.989967,-0.125545][0.375,0.857143,0][-1.03589,-1.77431,1.12089][0.0128867,-0.98343,0.180829][0.25,0.857143,0][-0.815516,-1.75312,1.35091][0.287513,-1.78927,-0.102337][0.25,1,0][-0.986825,-1.36465,1.30981][-0.988153,-1.30215,1.34076][0.125,1,0][-0.986825,-1.36465,1.30981][-0.988153,-1.30215,1.34076][0.125,1,0][-1.34932,-1.58688,0.784191][-0.030581,-0.990578,-0.133491][0.125,0.857143,0][-1.03589,-1.77431,1.12089][0.0128867,-0.98343,0.180829][0.25,0.857143,0][-1.34932,-1.58688,0.784191][-0.030581,-0.990578,-0.133491][0.125,0.857143,0][-0.986825,-1.36465,1.30981][-0.988153,-1.30215,1.34076][0.125,1,0][-1.57302,-1.67568,1.37773][0.805443,-1.82295,0.0308321][0,1,0][-1.57302,-1.67568,1.37773][0.805443,-1.82295,0.0308321][0,1,0][-1.79339,-1.74473,0.84309][1.21881,-2.24716,0.225003][0,0.857143,0][-1.34932,-1.58688,0.784191][-0.030581,-0.990578,-0.133491][0.125,0.857143,0][1.61533,1.58052,-1.52725][0.0521218,1.95133,-0.435331][0,0,0][1.23658,1.60015,-1.4799][-0.230379,2.79164,-0.100553][0.125,0,0][1.20802,1.69252,-1.07401][-0.206657,0.978392,0.00650204][0.125,0.142857,0][1.20802,1.69252,-1.07401][-0.206657,0.978392,0.00650204][0.125,0.142857,0][1.58677,1.66979,-1.1259][0.127683,2.97295,-0.168222][0,0.142857,0][1.61533,1.58052,-1.52725][0.0521218,1.95133,-0.435331][0,0,0][1.23658,1.60015,-1.4799][-0.230379,2.79164,-0.100553][0.125,0,0][0.857826,1.65097,-1.46317][0.098348,2.82879,0.7328][0.25,0,0][0.82927,1.51834,-1.10074][-0.0712085,0.976706,0.202421][0.25,0.142857,0][0.82927,1.51834,-1.10074][-0.0712085,0.976706,0.202421][0.25,0.142857,0][1.20802,1.69252,-1.07401][-0.206657,0.978392,0.00650204][0.125,0.142857,0][1.23658,1.60015,-1.4799][-0.230379,2.79164,-0.100553][0.125,0,0][0.857826,1.65097,-1.46317][0.098348,2.82879,0.7328][0.25,0,0][0.479076,1.57134,-1.38999][-0.15979,2.97218,0.0192374][0.375,0,0][0.45052,1.55329,-1.02176][0.0905792,0.988532,0.120832][0.375,0.142857,0][0.45052,1.55329,-1.02176][0.0905792,0.988532,0.120832][0.375,0.142857,0][0.82927,1.51834,-1.10074][-0.0712085,0.976706,0.202421][0.25,0.142857,0][0.857826,1.65097,-1.46317][0.098348,2.82879,0.7328][0.25,0,0][0.479076,1.57134,-1.38999][-0.15979,2.97218,0.0192374][0.375,0,0][0.100326,1.55956,-1.37106][-0.134256,2.92771,0.0932585][0.5,0,0][0.0717699,1.58189,-1.02854][-0.067617,0.997709,-0.00219857][0.5,0.142857,0][0.0717699,1.58189,-1.02854][-0.067617,0.997709,-0.00219857][0.5,0.142857,0][0.45052,1.55329,-1.02176][0.0905792,0.988532,0.120832][0.375,0.142857,0][0.479076,1.57134,-1.38999][-0.15979,2.97218,0.0192374][0.375,0,0][0.100326,1.55956,-1.37106][-0.134256,2.92771,0.0932585][0.5,0,0][-0.278424,1.62505,-1.42623][0.0710019,2.91364,0.539217][0.625,0,0][-0.30698,1.50096,-0.921261][0.007411,0.999479,-0.0314288][0.625,0.142857,0][-0.30698,1.50096,-0.921261][0.007411,0.999479,-0.0314288][0.625,0.142857,0][0.0717699,1.58189,-1.02854][-0.067617,0.997709,-0.00219857][0.5,0.142857,0][0.100326,1.55956,-1.37106][-0.134256,2.92771,0.0932585][0.5,0,0][-0.278424,1.62505,-1.42623][0.0710019,2.91364,0.539217][0.625,0,0][-0.657174,1.55757,-1.25884][0.216491,2.9488,0.128663][0.75,0,0][-0.68573,1.53436,-0.909552][0.116809,0.988794,-0.0929672][0.75,0.142857,0][-0.68573,1.53436,-0.909552][0.116809,0.988794,-0.0929672][0.75,0.142857,0][-0.30698,1.50096,-0.921261][0.007411,0.999479,-0.0314288][0.625,0.142857,0][-0.278424,1.62505,-1.42623][0.0710019,2.91364,0.539217][0.625,0,0][-0.657174,1.55757,-1.25884][0.216491,2.9488,0.128663][0.75,0,0][-1.03592,1.61962,-1.50821][0.404232,2.87754,0.289462][0.875,0,0][-1.06448,1.62701,-1.07348][0.064208,0.997262,-0.0366776][0.875,0.142857,0][-1.06448,1.62701,-1.07348][0.064208,0.997262,-0.0366776][0.875,0.142857,0][-0.68573,1.53436,-0.909552][0.116809,0.988794,-0.0929672][0.75,0.142857,0][-0.657174,1.55757,-1.25884][0.216491,2.9488,0.128663][0.75,0,0][-1.03592,1.61962,-1.50821][0.404232,2.87754,0.289462][0.875,0,0][-1.41467,1.70083,-1.36114][0.314986,0.894494,0.317277][1,0,0][-1.44323,1.59868,-1.04481][0.164754,2.88857,0.302624][1,0.142857,0][-1.44323,1.59868,-1.04481][0.164754,2.88857,0.302624][1,0.142857,0][-1.06448,1.62701,-1.07348][0.064208,0.997262,-0.0366776][0.875,0.142857,0][-1.03592,1.61962,-1.50821][0.404232,2.87754,0.289462][0.875,0,0][1.58677,1.66979,-1.1259][0.127683,2.97295,-0.168222][0,0.142857,0][1.20802,1.69252,-1.07401][-0.206657,0.978392,0.00650204][0.125,0.142857,0][1.41588,1.66812,-0.694891][-0.10998,0.986356,0.122499][0.125,0.285714,0][1.41588,1.66812,-0.694891][-0.10998,0.986356,0.122499][0.125,0.285714,0][1.79463,1.65517,-0.70663][0.107868,2.88323,0.684451][0,0.285714,0][1.58677,1.66979,-1.1259][0.127683,2.97295,-0.168222][0,0.142857,0][1.20802,1.69252,-1.07401][-0.206657,0.978392,0.00650204][0.125,0.142857,0][0.82927,1.51834,-1.10074][-0.0712085,0.976706,0.202421][0.25,0.142857,0][1.03713,1.48273,-0.780876][-0.240772,0.97051,-0.0118355][0.25,0.285714,0][1.03713,1.48273,-0.780876][-0.240772,0.97051,-0.0118355][0.25,0.285714,0][1.41588,1.66812,-0.694891][-0.10998,0.986356,0.122499][0.125,0.285714,0][1.20802,1.69252,-1.07401][-0.206657,0.978392,0.00650204][0.125,0.142857,0][0.82927,1.51834,-1.10074][-0.0712085,0.976706,0.202421][0.25,0.142857,0][0.45052,1.55329,-1.02176][0.0905792,0.988532,0.120832][0.375,0.142857,0][0.658375,1.45946,-0.68281][0.111721,0.993217,-0.0322242][0.375,0.285714,0][0.658375,1.45946,-0.68281][0.111721,0.993217,-0.0322242][0.375,0.285714,0][1.03713,1.48273,-0.780876][-0.240772,0.97051,-0.0118355][0.25,0.285714,0][0.82927,1.51834,-1.10074][-0.0712085,0.976706,0.202421][0.25,0.142857,0][0.45052,1.55329,-1.02176][0.0905792,0.988532,0.120832][0.375,0.142857,0][0.0717699,1.58189,-1.02854][-0.067617,0.997709,-0.00219857][0.5,0.142857,0][0.279625,1.56527,-0.544742][0.129647,0.989767,-0.0596091][0.5,0.285714,0][0.279625,1.56527,-0.544742][0.129647,0.989767,-0.0596091][0.5,0.285714,0][0.658375,1.45946,-0.68281][0.111721,0.993217,-0.0322242][0.375,0.285714,0][0.45052,1.55329,-1.02176][0.0905792,0.988532,0.120832][0.375,0.142857,0][0.0717699,1.58189,-1.02854][-0.067617,0.997709,-0.00219857][0.5,0.142857,0][-0.30698,1.50096,-0.921261][0.007411,0.999479,-0.0314288][0.625,0.142857,0][-0.0991249,1.54131,-0.643458][-0.035696,0.984364,-0.172489][0.625,0.285714,0][-0.0991249,1.54131,-0.643458][-0.035696,0.984364,-0.172489][0.625,0.285714,0][0.279625,1.56527,-0.544742][0.129647,0.989767,-0.0596091][0.5,0.285714,0][0.0717699,1.58189,-1.02854][-0.067617,0.997709,-0.00219857][0.5,0.142857,0][-0.30698,1.50096,-0.921261][0.007411,0.999479,-0.0314288][0.625,0.142857,0][-0.68573,1.53436,-0.909552][0.116809,0.988794,-0.0929672][0.75,0.142857,0][-0.477875,1.64277,-0.545808][0.145155,0.987265,-0.0651][0.75,0.285714,0][-0.477875,1.64277,-0.545808][0.145155,0.987265,-0.0651][0.75,0.285714,0][-0.0991249,1.54131,-0.643458][-0.035696,0.984364,-0.172489][0.625,0.285714,0][-0.30698,1.50096,-0.921261][0.007411,0.999479,-0.0314288][0.625,0.142857,0][-0.68573,1.53436,-0.909552][0.116809,0.988794,-0.0929672][0.75,0.142857,0][-1.06448,1.62701,-1.07348][0.064208,0.997262,-0.0366776][0.875,0.142857,0][-0.856625,1.68045,-0.586973][-0.000996195,0.991871,-0.127246][0.875,0.285714,0][-0.856625,1.68045,-0.586973][-0.000996195,0.991871,-0.127246][0.875,0.285714,0][-0.477875,1.64277,-0.545808][0.145155,0.987265,-0.0651][0.75,0.285714,0][-0.68573,1.53436,-0.909552][0.116809,0.988794,-0.0929672][0.75,0.142857,0][-1.06448,1.62701,-1.07348][0.064208,0.997262,-0.0366776][0.875,0.142857,0][-1.44323,1.59868,-1.04481][0.164754,2.88857,0.302624][1,0.142857,0][-1.23537,1.61154,-0.692617][-0.398113,2.96628,-0.115282][1,0.285714,0][-1.23537,1.61154,-0.692617][-0.398113,2.96628,-0.115282][1,0.285714,0][-0.856625,1.68045,-0.586973][-0.000996195,0.991871,-0.127246][0.875,0.285714,0][-1.06448,1.62701,-1.07348][0.064208,0.997262,-0.0366776][0.875,0.142857,0][1.79463,1.65517,-0.70663][0.107868,2.88323,0.684451][0,0.285714,0][1.41588,1.66812,-0.694891][-0.10998,0.986356,0.122499][0.125,0.285714,0][1.10982,1.5459,-0.322755][0.0210167,0.984825,0.172271][0.125,0.428571,0][1.10982,1.5459,-0.322755][0.0210167,0.984825,0.172271][0.125,0.428571,0][1.48857,1.5499,-0.370111][-0.515797,2.75415,0.0534013][0,0.428571,0][1.79463,1.65517,-0.70663][0.107868,2.88323,0.684451][0,0.285714,0][1.41588,1.66812,-0.694891][-0.10998,0.986356,0.122499][0.125,0.285714,0][1.03713,1.48273,-0.780876][-0.240772,0.97051,-0.0118355][0.25,0.285714,0][0.73107,1.56161,-0.306031][0.0360526,0.993522,-0.107766][0.25,0.428571,0][0.73107,1.56161,-0.306031][0.0360526,0.993522,-0.107766][0.25,0.428571,0][1.10982,1.5459,-0.322755][0.0210167,0.984825,0.172271][0.125,0.428571,0][1.41588,1.66812,-0.694891][-0.10998,0.986356,0.122499][0.125,0.285714,0][1.03713,1.48273,-0.780876][-0.240772,0.97051,-0.0118355][0.25,0.285714,0][0.658375,1.45946,-0.68281][0.111721,0.993217,-0.0322242][0.375,0.285714,0][0.35232,1.59489,-0.232848][-0.0288358,0.983666,-0.17768][0.375,0.428571,0][0.35232,1.59489,-0.232848][-0.0288358,0.983666,-0.17768][0.375,0.428571,0][0.73107,1.56161,-0.306031][0.0360526,0.993522,-0.107766][0.25,0.428571,0][1.03713,1.48273,-0.780876][-0.240772,0.97051,-0.0118355][0.25,0.285714,0][0.658375,1.45946,-0.68281][0.111721,0.993217,-0.0322242][0.375,0.285714,0][0.279625,1.56527,-0.544742][0.129647,0.989767,-0.0596091][0.5,0.285714,0][-0.0264297,1.65323,-0.213913][0.120311,0.990786,0.062202][0.5,0.428571,0][-0.0264297,1.65323,-0.213913][0.120311,0.990786,0.062202][0.5,0.428571,0][0.35232,1.59489,-0.232848][-0.0288358,0.983666,-0.17768][0.375,0.428571,0][0.658375,1.45946,-0.68281][0.111721,0.993217,-0.0322242][0.375,0.285714,0][0.279625,1.56527,-0.544742][0.129647,0.989767,-0.0596091][0.5,0.285714,0][-0.0991249,1.54131,-0.643458][-0.035696,0.984364,-0.172489][0.625,0.285714,0][-0.40518,1.71048,-0.269083][-0.00534056,0.99051,-0.13734][0.625,0.428571,0][-0.40518,1.71048,-0.269083][-0.00534056,0.99051,-0.13734][0.625,0.428571,0][-0.0264297,1.65323,-0.213913][0.120311,0.990786,0.062202][0.5,0.428571,0][0.279625,1.56527,-0.544742][0.129647,0.989767,-0.0596091][0.5,0.285714,0][-0.0991249,1.54131,-0.643458][-0.035696,0.984364,-0.172489][0.625,0.285714,0][-0.477875,1.64277,-0.545808][0.145155,0.987265,-0.0651][0.75,0.285714,0][-0.78393,1.61146,-0.101692][-0.0475648,0.992273,-0.114594][0.75,0.428571,0][-0.78393,1.61146,-0.101692][-0.0475648,0.992273,-0.114594][0.75,0.428571,0][-0.40518,1.71048,-0.269083][-0.00534056,0.99051,-0.13734][0.625,0.428571,0][-0.0991249,1.54131,-0.643458][-0.035696,0.984364,-0.172489][0.625,0.285714,0][-0.477875,1.64277,-0.545808][0.145155,0.987265,-0.0651][0.75,0.285714,0][-0.856625,1.68045,-0.586973][-0.000996195,0.991871,-0.127246][0.875,0.285714,0][-1.16268,1.66121,-0.351071][-0.041417,0.996352,0.0746114][0.875,0.428571,0][-1.16268,1.66121,-0.351071][-0.041417,0.996352,0.0746114][0.875,0.428571,0][-0.78393,1.61146,-0.101692][-0.0475648,0.992273,-0.114594][0.75,0.428571,0][-0.477875,1.64277,-0.545808][0.145155,0.987265,-0.0651][0.75,0.285714,0][-0.856625,1.68045,-0.586973][-0.000996195,0.991871,-0.127246][0.875,0.285714,0][-1.23537,1.61154,-0.692617][-0.398113,2.96628,-0.115282][1,0.285714,0][-1.54143,1.60639,-0.204][-0.421004,2.90899,-0.0544358][1,0.428571,0][-1.54143,1.60639,-0.204][-0.421004,2.90899,-0.0544358][1,0.428571,0][-1.16268,1.66121,-0.351071][-0.041417,0.996352,0.0746114][0.875,0.428571,0][-0.856625,1.68045,-0.586973][-0.000996195,0.991871,-0.127246][0.875,0.285714,0][1.48857,1.5499,-0.370111][-0.515797,2.75415,0.0534013][0,0.428571,0][1.10982,1.5459,-0.322755][0.0210167,0.984825,0.172271][0.125,0.428571,0][1.29976,1.55658,0.0563956][-0.203206,0.963385,-0.174921][0.125,0.571429,0][1.29976,1.55658,0.0563956][-0.203206,0.963385,-0.174921][0.125,0.571429,0][1.67851,1.80754,0.0607543][-1.50257,2.39949,-0.968175][0,0.571429,0][1.48857,1.5499,-0.370111][-0.515797,2.75415,0.0534013][0,0.428571,0][1.10982,1.5459,-0.322755][0.0210167,0.984825,0.172271][0.125,0.428571,0][0.73107,1.56161,-0.306031][0.0360526,0.993522,-0.107766][0.25,0.428571,0][0.921008,1.54349,0.00327147][0.0783623,0.996807,0.0153031][0.25,0.571429,0][0.921008,1.54349,0.00327147][0.0783623,0.996807,0.0153031][0.25,0.571429,0][1.29976,1.55658,0.0563956][-0.203206,0.963385,-0.174921][0.125,0.571429,0][1.10982,1.5459,-0.322755][0.0210167,0.984825,0.172271][0.125,0.428571,0][0.73107,1.56161,-0.306031][0.0360526,0.993522,-0.107766][0.25,0.428571,0][0.35232,1.59489,-0.232848][-0.0288358,0.983666,-0.17768][0.375,0.428571,0][0.542258,1.71957,0.127193][0.0827466,0.994733,0.0604864][0.375,0.571429,0][0.542258,1.71957,0.127193][0.0827466,0.994733,0.0604864][0.375,0.571429,0][0.921008,1.54349,0.00327147][0.0783623,0.996807,0.0153031][0.25,0.571429,0][0.73107,1.56161,-0.306031][0.0360526,0.993522,-0.107766][0.25,0.428571,0][0.35232,1.59489,-0.232848][-0.0288358,0.983666,-0.17768][0.375,0.428571,0][-0.0264297,1.65323,-0.213913][0.120311,0.990786,0.062202][0.5,0.428571,0][0.163508,1.57044,0.232474][-0.121037,0.98961,-0.0776019][0.5,0.571429,0][0.163508,1.57044,0.232474][-0.121037,0.98961,-0.0776019][0.5,0.571429,0][0.542258,1.71957,0.127193][0.0827466,0.994733,0.0604864][0.375,0.571429,0][0.35232,1.59489,-0.232848][-0.0288358,0.983666,-0.17768][0.375,0.428571,0][-0.0264297,1.65323,-0.213913][0.120311,0.990786,0.062202][0.5,0.428571,0][-0.40518,1.71048,-0.269083][-0.00534056,0.99051,-0.13734][0.625,0.428571,0][-0.215242,1.55391,0.113041][0.146314,0.983227,0.108888][0.625,0.571429,0][-0.215242,1.55391,0.113041][0.146314,0.983227,0.108888][0.625,0.571429,0][0.163508,1.57044,0.232474][-0.121037,0.98961,-0.0776019][0.5,0.571429,0][-0.0264297,1.65323,-0.213913][0.120311,0.990786,0.062202][0.5,0.428571,0][-0.40518,1.71048,-0.269083][-0.00534056,0.99051,-0.13734][0.625,0.428571,0][-0.78393,1.61146,-0.101692][-0.0475648,0.992273,-0.114594][0.75,0.428571,0][-0.593992,1.70522,0.241056][0.0302206,0.999135,0.0285687][0.75,0.571429,0][-0.593992,1.70522,0.241056][0.0302206,0.999135,0.0285687][0.75,0.571429,0][-0.215242,1.55391,0.113041][0.146314,0.983227,0.108888][0.625,0.571429,0][-0.40518,1.71048,-0.269083][-0.00534056,0.99051,-0.13734][0.625,0.428571,0][-0.78393,1.61146,-0.101692][-0.0475648,0.992273,-0.114594][0.75,0.428571,0][-1.16268,1.66121,-0.351071][-0.041417,0.996352,0.0746114][0.875,0.428571,0][-0.972742,1.64695,0.0788173][-0.0956076,0.994781,-0.0356354][0.875,0.571429,0][-0.972742,1.64695,0.0788173][-0.0956076,0.994781,-0.0356354][0.875,0.571429,0][-0.593992,1.70522,0.241056][0.0302206,0.999135,0.0285687][0.75,0.571429,0][-0.78393,1.61146,-0.101692][-0.0475648,0.992273,-0.114594][0.75,0.428571,0][-1.16268,1.66121,-0.351071][-0.041417,0.996352,0.0746114][0.875,0.428571,0][-1.54143,1.60639,-0.204][-0.421004,2.90899,-0.0544358][1,0.428571,0][-1.35149,1.53206,0.140048][-0.635304,2.81644,0.0712694][1,0.571429,0][-1.35149,1.53206,0.140048][-0.635304,2.81644,0.0712694][1,0.571429,0][-0.972742,1.64695,0.0788173][-0.0956076,0.994781,-0.0356354][0.875,0.571429,0][-1.16268,1.66121,-0.351071][-0.041417,0.996352,0.0746114][0.875,0.428571,0][1.67851,1.80754,0.0607543][-1.50257,2.39949,-0.968175][0,0.571429,0][1.29976,1.55658,0.0563956][-0.203206,0.963385,-0.174921][0.125,0.571429,0][1.08493,1.62122,0.448673][-0.319954,0.908145,-0.270006][0.125,0.714286,0][1.08493,1.62122,0.448673][-0.319954,0.908145,-0.270006][0.125,0.714286,0][1.46368,1.81727,0.401317][-0.98004,2.60788,-0.438301][0,0.714286,0][1.67851,1.80754,0.0607543][-1.50257,2.39949,-0.968175][0,0.571429,0][1.29976,1.55658,0.0563956][-0.203206,0.963385,-0.174921][0.125,0.571429,0][0.921008,1.54349,0.00327147][0.0783623,0.996807,0.0153031][0.25,0.571429,0][0.706176,1.59737,0.465397][-0.159039,0.971837,-0.173896][0.25,0.714286,0][0.706176,1.59737,0.465397][-0.159039,0.971837,-0.173896][0.25,0.714286,0][1.08493,1.62122,0.448673][-0.319954,0.908145,-0.270006][0.125,0.714286,0][1.29976,1.55658,0.0563956][-0.203206,0.963385,-0.174921][0.125,0.571429,0][0.921008,1.54349,0.00327147][0.0783623,0.996807,0.0153031][0.25,0.571429,0][0.542258,1.71957,0.127193][0.0827466,0.994733,0.0604864][0.375,0.571429,0][0.327425,1.43425,0.538581][0.122946,0.990668,0.0588306][0.375,0.714286,0][0.327425,1.43425,0.538581][0.122946,0.990668,0.0588306][0.375,0.714286,0][0.706176,1.59737,0.465397][-0.159039,0.971837,-0.173896][0.25,0.714286,0][0.921008,1.54349,0.00327147][0.0783623,0.996807,0.0153031][0.25,0.571429,0][0.542258,1.71957,0.127193][0.0827466,0.994733,0.0604864][0.375,0.571429,0][0.163508,1.57044,0.232474][-0.121037,0.98961,-0.0776019][0.5,0.571429,0][-0.0513245,1.61407,0.557516][0.0303641,0.999137,0.0283324][0.5,0.714286,0][-0.0513245,1.61407,0.557516][0.0303641,0.999137,0.0283324][0.5,0.714286,0][0.327425,1.43425,0.538581][0.122946,0.990668,0.0588306][0.375,0.714286,0][0.542258,1.71957,0.127193][0.0827466,0.994733,0.0604864][0.375,0.571429,0][0.163508,1.57044,0.232474][-0.121037,0.98961,-0.0776019][0.5,0.571429,0][-0.215242,1.55391,0.113041][0.146314,0.983227,0.108888][0.625,0.571429,0][-0.430074,1.63498,0.502345][0.0462145,0.998291,0.0357595][0.625,0.714286,0][-0.430074,1.63498,0.502345][0.0462145,0.998291,0.0357595][0.625,0.714286,0][-0.0513245,1.61407,0.557516][0.0303641,0.999137,0.0283324][0.5,0.714286,0][0.163508,1.57044,0.232474][-0.121037,0.98961,-0.0776019][0.5,0.571429,0][-0.215242,1.55391,0.113041][0.146314,0.983227,0.108888][0.625,0.571429,0][-0.593992,1.70522,0.241056][0.0302206,0.999135,0.0285687][0.75,0.571429,0][-0.808824,1.66549,0.669736][-0.00973265,0.983108,0.182768][0.75,0.714286,0][-0.808824,1.66549,0.669736][-0.00973265,0.983108,0.182768][0.75,0.714286,0][-0.430074,1.63498,0.502345][0.0462145,0.998291,0.0357595][0.625,0.714286,0][-0.215242,1.55391,0.113041][0.146314,0.983227,0.108888][0.625,0.571429,0][-0.593992,1.70522,0.241056][0.0302206,0.999135,0.0285687][0.75,0.571429,0][-0.972742,1.64695,0.0788173][-0.0956076,0.994781,-0.0356354][0.875,0.571429,0][-1.18757,1.59838,0.420357][-0.0312368,0.985191,0.16859][0.875,0.714286,0][-1.18757,1.59838,0.420357][-0.0312368,0.985191,0.16859][0.875,0.714286,0][-0.808824,1.66549,0.669736][-0.00973265,0.983108,0.182768][0.75,0.714286,0][-0.593992,1.70522,0.241056][0.0302206,0.999135,0.0285687][0.75,0.571429,0][-0.972742,1.64695,0.0788173][-0.0956076,0.994781,-0.0356354][0.875,0.571429,0][-1.35149,1.53206,0.140048][-0.635304,2.81644,0.0712694][1,0.571429,0][-1.56632,1.60487,0.567428][-0.14469,2.85067,0.0556274][1,0.714286,0][-1.56632,1.60487,0.567428][-0.14469,2.85067,0.0556274][1,0.714286,0][-1.18757,1.59838,0.420357][-0.0312368,0.985191,0.16859][0.875,0.714286,0][-0.972742,1.64695,0.0788173][-0.0956076,0.994781,-0.0356354][0.875,0.571429,0][1.46368,1.81727,0.401317][-0.98004,2.60788,-0.438301][0,0.714286,0][1.08493,1.62122,0.448673][-0.319954,0.908145,-0.270006][0.125,0.714286,0][0.95405,1.69707,0.79417][-0.149733,0.986539,0.0657267][0.125,0.857143,0][0.95405,1.69707,0.79417][-0.149733,0.986539,0.0657267][0.125,0.857143,0][1.3328,1.70282,0.849167][-0.336528,2.71319,1.16465][0,0.857143,0][1.46368,1.81727,0.401317][-0.98004,2.60788,-0.438301][0,0.714286,0][1.08493,1.62122,0.448673][-0.319954,0.908145,-0.270006][0.125,0.714286,0][0.706176,1.59737,0.465397][-0.159039,0.971837,-0.173896][0.25,0.714286,0][0.5753,1.58458,0.825646][-0.123601,0.991948,0.0275899][0.25,0.857143,0][0.5753,1.58458,0.825646][-0.123601,0.991948,0.0275899][0.25,0.857143,0][0.95405,1.69707,0.79417][-0.149733,0.986539,0.0657267][0.125,0.857143,0][1.08493,1.62122,0.448673][-0.319954,0.908145,-0.270006][0.125,0.714286,0][0.706176,1.59737,0.465397][-0.159039,0.971837,-0.173896][0.25,0.714286,0][0.327425,1.43425,0.538581][0.122946,0.990668,0.0588306][0.375,0.714286,0][0.19655,1.60805,0.954709][0.0417674,0.998032,-0.0467788][0.375,0.857143,0][0.19655,1.60805,0.954709][0.0417674,0.998032,-0.0467788][0.375,0.857143,0][0.5753,1.58458,0.825646][-0.123601,0.991948,0.0275899][0.25,0.857143,0][0.706176,1.59737,0.465397][-0.159039,0.971837,-0.173896][0.25,0.714286,0][0.327425,1.43425,0.538581][0.122946,0.990668,0.0588306][0.375,0.714286,0][-0.0513245,1.61407,0.557516][0.0303641,0.999137,0.0283324][0.5,0.714286,0][-0.1822,1.6527,0.887302][0.0654594,0.995229,-0.0723506][0.5,0.857143,0][-0.1822,1.6527,0.887302][0.0654594,0.995229,-0.0723506][0.5,0.857143,0][0.19655,1.60805,0.954709][0.0417674,0.998032,-0.0467788][0.375,0.857143,0][0.327425,1.43425,0.538581][0.122946,0.990668,0.0588306][0.375,0.714286,0][-0.0513245,1.61407,0.557516][0.0303641,0.999137,0.0283324][0.5,0.714286,0][-0.430074,1.63498,0.502345][0.0462145,0.998291,0.0357595][0.625,0.714286,0][-0.56095,1.56535,1.02138][-0.17244,0.984959,-0.0109156][0.625,0.857143,0][-0.56095,1.56535,1.02138][-0.17244,0.984959,-0.0109156][0.625,0.857143,0][-0.1822,1.6527,0.887302][0.0654594,0.995229,-0.0723506][0.5,0.857143,0][-0.0513245,1.61407,0.557516][0.0303641,0.999137,0.0283324][0.5,0.714286,0][-0.430074,1.63498,0.502345][0.0462145,0.998291,0.0357595][0.625,0.714286,0][-0.808824,1.66549,0.669736][-0.00973265,0.983108,0.182768][0.75,0.714286,0][-0.9397,1.52569,1.0085][0.0846863,0.996073,-0.0258174][0.75,0.857143,0][-0.9397,1.52569,1.0085][0.0846863,0.996073,-0.0258174][0.75,0.857143,0][-0.56095,1.56535,1.02138][-0.17244,0.984959,-0.0109156][0.625,0.857143,0][-0.430074,1.63498,0.502345][0.0462145,0.998291,0.0357595][0.625,0.714286,0][-0.808824,1.66549,0.669736][-0.00973265,0.983108,0.182768][0.75,0.714286,0][-1.18757,1.59838,0.420357][-0.0312368,0.985191,0.16859][0.875,0.714286,0][-1.31845,1.46308,0.843906][-0.0467746,0.996434,-0.0702286][0.875,0.857143,0][-1.31845,1.46308,0.843906][-0.0467746,0.996434,-0.0702286][0.875,0.857143,0][-0.9397,1.52569,1.0085][0.0846863,0.996073,-0.0258174][0.75,0.857143,0][-0.808824,1.66549,0.669736][-0.00973265,0.983108,0.182768][0.75,0.714286,0][-1.18757,1.59838,0.420357][-0.0312368,0.985191,0.16859][0.875,0.714286,0][-1.56632,1.60487,0.567428][-0.14469,2.85067,0.0556274][1,0.714286,0][-1.6972,1.55527,0.914096][0.546907,2.81112,0.269092][1,0.857143,0][-1.6972,1.55527,0.914096][0.546907,2.81112,0.269092][1,0.857143,0][-1.31845,1.46308,0.843906][-0.0467746,0.996434,-0.0702286][0.875,0.857143,0][-1.18757,1.59838,0.420357][-0.0312368,0.985191,0.16859][0.875,0.714286,0][1.3328,1.70282,0.849167][-0.336528,2.71319,1.16465][0,0.857143,0][0.95405,1.69707,0.79417][-0.149733,0.986539,0.0657267][0.125,0.857143,0][1.237,1.48883,1.2201][0.0552885,2.65564,1.14941][0.125,1,0][1.237,1.48883,1.2201][0.0552885,2.65564,1.14941][0.125,1,0][1.61575,1.60236,1.17275][-0.204605,0.869812,0.448959][0,1,0][1.3328,1.70282,0.849167][-0.336528,2.71319,1.16465][0,0.857143,0][0.95405,1.69707,0.79417][-0.149733,0.986539,0.0657267][0.125,0.857143,0][0.5753,1.58458,0.825646][-0.123601,0.991948,0.0275899][0.25,0.857143,0][0.858255,1.62708,1.23683][-0.230414,2.81908,0.416403][0.25,1,0][0.858255,1.62708,1.23683][-0.230414,2.81908,0.416403][0.25,1,0][1.237,1.48883,1.2201][0.0552885,2.65564,1.14941][0.125,1,0][0.95405,1.69707,0.79417][-0.149733,0.986539,0.0657267][0.125,0.857143,0][0.5753,1.58458,0.825646][-0.123601,0.991948,0.0275899][0.25,0.857143,0][0.19655,1.60805,0.954709][0.0417674,0.998032,-0.0467788][0.375,0.857143,0][0.479505,1.50034,1.31001][0.0162523,2.89325,0.446263][0.375,1,0][0.479505,1.50034,1.31001][0.0162523,2.89325,0.446263][0.375,1,0][0.858255,1.62708,1.23683][-0.230414,2.81908,0.416403][0.25,1,0][0.5753,1.58458,0.825646][-0.123601,0.991948,0.0275899][0.25,0.857143,0][0.19655,1.60805,0.954709][0.0417674,0.998032,-0.0467788][0.375,0.857143,0][-0.1822,1.6527,0.887302][0.0654594,0.995229,-0.0723506][0.5,0.857143,0][0.100755,1.57032,1.32894][0.506043,2.93301,0.307101][0.5,1,0][0.100755,1.57032,1.32894][0.506043,2.93301,0.307101][0.5,1,0][0.479505,1.50034,1.31001][0.0162523,2.89325,0.446263][0.375,1,0][0.19655,1.60805,0.954709][0.0417674,0.998032,-0.0467788][0.375,0.857143,0][-0.1822,1.6527,0.887302][0.0654594,0.995229,-0.0723506][0.5,0.857143,0][-0.56095,1.56535,1.02138][-0.17244,0.984959,-0.0109156][0.625,0.857143,0][-0.277995,1.6599,1.27377][-0.322283,2.89315,-0.0681588][0.625,1,0][-0.277995,1.6599,1.27377][-0.322283,2.89315,-0.0681588][0.625,1,0][0.100755,1.57032,1.32894][0.506043,2.93301,0.307101][0.5,1,0][-0.1822,1.6527,0.887302][0.0654594,0.995229,-0.0723506][0.5,0.857143,0][-0.56095,1.56535,1.02138][-0.17244,0.984959,-0.0109156][0.625,0.857143,0][-0.9397,1.52569,1.0085][0.0846863,0.996073,-0.0258174][0.75,0.857143,0][-0.656745,1.54688,1.44116][0.127968,2.70632,-0.388807][0.75,1,0][-0.656745,1.54688,1.44116][0.127968,2.70632,-0.388807][0.75,1,0][-0.277995,1.6599,1.27377][-0.322283,2.89315,-0.0681588][0.625,1,0][-0.56095,1.56535,1.02138][-0.17244,0.984959,-0.0109156][0.625,0.857143,0][-0.9397,1.52569,1.0085][0.0846863,0.996073,-0.0258174][0.75,0.857143,0][-1.31845,1.46308,0.843906][-0.0467746,0.996434,-0.0702286][0.875,0.857143,0][-1.0355,1.68532,1.19179][0.386144,2.4344,-1.33826][0.875,1,0][-1.0355,1.68532,1.19179][0.386144,2.4344,-1.33826][0.875,1,0][-0.656745,1.54688,1.44116][0.127968,2.70632,-0.388807][0.75,1,0][-0.9397,1.52569,1.0085][0.0846863,0.996073,-0.0258174][0.75,0.857143,0][-1.31845,1.46308,0.843906][-0.0467746,0.996434,-0.0702286][0.875,0.857143,0][-1.6972,1.55527,0.914096][0.546907,2.81112,0.269092][1,0.857143,0][-1.41425,1.62432,1.33886][-0.099167,1.84109,-0.61895][1,1,0][-1.41425,1.62432,1.33886][-0.099167,1.84109,-0.61895][1,1,0][-1.0355,1.68532,1.19179][0.386144,2.4344,-1.33826][0.875,1,0][-1.31845,1.46308,0.843906][-0.0467746,0.996434,-0.0702286][0.875,0.857143,0][1.55725,-1.71948,-1.31556][-1.05464,-1.68926,0.167229][0,0,0][1.07789,-1.43431,-1.31887][0.869614,-2.23699,0.278618][0.125,0,0][1.04576,-1.28735,-1.35466][0.130383,0.120244,-0.984145][0.125,0.125,0][1.04576,-1.28735,-1.35466][0.130383,0.120244,-0.984145][0.125,0.125,0][1.42451,-1.30698,-1.2519][0.372874,0.67451,-2.79596][0,0.125,0][1.55725,-1.71948,-1.31556][-1.05464,-1.68926,0.167229][0,0,0][1.07789,-1.43431,-1.31887][0.869614,-2.23699,0.278618][0.125,0,0][0.799749,-1.64903,-1.39704][-0.219088,-2.48168,-0.589658][0.25,0,0][0.667008,-1.23653,-1.35923][0.170469,0.0657278,-0.983168][0.25,0.125,0][0.667008,-1.23653,-1.35923][0.170469,0.0657278,-0.983168][0.25,0.125,0][1.04576,-1.28735,-1.35466][0.130383,0.120244,-0.984145][0.125,0.125,0][1.07789,-1.43431,-1.31887][0.869614,-2.23699,0.278618][0.125,0,0][0.799749,-1.64903,-1.39704][-0.219088,-2.48168,-0.589658][0.25,0,0][0.329608,-1.47863,-1.36857][0.887299,-2.48049,0.123581][0.375,0,0][0.288258,-1.31616,-1.46457][0.0406433,-0.233356,-0.971542][0.375,0.125,0][0.288258,-1.31616,-1.46457][0.0406433,-0.233356,-0.971542][0.375,0.125,0][0.667008,-1.23653,-1.35923][0.170469,0.0657278,-0.983168][0.25,0.125,0][0.799749,-1.64903,-1.39704][-0.219088,-2.48168,-0.589658][0.25,0,0][0.329608,-1.47863,-1.36857][0.887299,-2.48049,0.123581][0.375,0,0][0.0422493,-1.74044,-1.36736][-0.257425,-2.44378,-0.139213][0.5,0,0][-0.0904917,-1.32794,-1.41319][-0.112284,-0.279424,-0.95358][0.5,0.125,0][-0.0904917,-1.32794,-1.41319][-0.112284,-0.279424,-0.95358][0.5,0.125,0][0.288258,-1.31616,-1.46457][0.0406433,-0.233356,-0.971542][0.375,0.125,0][0.329608,-1.47863,-1.36857][0.887299,-2.48049,0.123581][0.375,0,0][0.0422493,-1.74044,-1.36736][-0.257425,-2.44378,-0.139213][0.5,0,0][-0.427892,-1.42492,-1.3346][0.705262,-2.29828,-0.310348][0.625,0,0][-0.469242,-1.26245,-1.30438][-0.0265741,0.00752476,-0.999619][0.625,0.125,0][-0.469242,-1.26245,-1.30438][-0.0265741,0.00752476,-0.999619][0.625,0.125,0][-0.0904917,-1.32794,-1.41319][-0.112284,-0.279424,-0.95358][0.5,0.125,0][0.0422493,-1.74044,-1.36736][-0.257425,-2.44378,-0.139213][0.5,0,0][-0.427892,-1.42492,-1.3346][0.705262,-2.29828,-0.310348][0.625,0,0][-0.715251,-1.74243,-1.34909][-0.370836,-2.3181,-0.122578][0.75,0,0][-0.847992,-1.32993,-1.30924][0.0745516,0.0109301,-0.997157][0.75,0.125,0][-0.847992,-1.32993,-1.30924][0.0745516,0.0109301,-0.997157][0.75,0.125,0][-0.469242,-1.26245,-1.30438][-0.0265741,0.00752476,-0.999619][0.625,0.125,0][-0.427892,-1.42492,-1.3346][0.705262,-2.29828,-0.310348][0.625,0,0][-0.715251,-1.74243,-1.34909][-0.370836,-2.3181,-0.122578][0.75,0,0][-1.18539,-1.43034,-1.39019][0.580442,-2.44767,-0.070826][0.875,0,0][-1.22674,-1.26788,-1.36439][0.158143,0.0807542,-0.984109][0.875,0.125,0][-1.22674,-1.26788,-1.36439][0.158143,0.0807542,-0.984109][0.875,0.125,0][-0.847992,-1.32993,-1.30924][0.0745516,0.0109301,-0.997157][0.75,0.125,0][-0.715251,-1.74243,-1.34909][-0.370836,-2.3181,-0.122578][0.75,0,0][-1.18539,-1.43034,-1.39019][0.580442,-2.44767,-0.070826][0.875,0,0][-1.47275,-1.59917,-1.32227][0.47848,-0.867954,-0.13309][1,0,0][-1.60549,-1.18667,-1.4646][0.561169,0.114402,-2.8007][1,0.125,0][-1.60549,-1.18667,-1.4646][0.561169,0.114402,-2.8007][1,0.125,0][-1.22674,-1.26788,-1.36439][0.158143,0.0807542,-0.984109][0.875,0.125,0][-1.18539,-1.43034,-1.39019][0.580442,-2.44767,-0.070826][0.875,0,0][1.42451,-1.30698,-1.2519][0.372874,0.67451,-2.79596][0,0.125,0][1.04576,-1.28735,-1.35466][0.130383,0.120244,-0.984145][0.125,0.125,0][0.991733,-0.87485,-1.17352][0.0543028,-0.0715885,-0.995955][0.125,0.25,0][0.991733,-0.87485,-1.17352][0.0543028,-0.0715885,-0.995955][0.125,0.25,0][1.37048,-0.894481,-1.232][0.00258675,-0.876439,-2.69764][0,0.25,0][1.42451,-1.30698,-1.2519][0.372874,0.67451,-2.79596][0,0.125,0][1.04576,-1.28735,-1.35466][0.130383,0.120244,-0.984145][0.125,0.125,0][0.667008,-1.23653,-1.35923][0.170469,0.0657278,-0.983168][0.25,0.125,0][0.612983,-0.824027,-1.30919][0.298934,-0.0208187,-0.954047][0.25,0.25,0][0.612983,-0.824027,-1.30919][0.298934,-0.0208187,-0.954047][0.25,0.25,0][0.991733,-0.87485,-1.17352][0.0543028,-0.0715885,-0.995955][0.125,0.25,0][1.04576,-1.28735,-1.35466][0.130383,0.120244,-0.984145][0.125,0.125,0][0.667008,-1.23653,-1.35923][0.170469,0.0657278,-0.983168][0.25,0.125,0][0.288258,-1.31616,-1.46457][0.0406433,-0.233356,-0.971542][0.375,0.125,0][0.234233,-0.903659,-1.46125][0.158905,0.0579181,-0.985594][0.375,0.25,0][0.234233,-0.903659,-1.46125][0.158905,0.0579181,-0.985594][0.375,0.25,0][0.612983,-0.824027,-1.30919][0.298934,-0.0208187,-0.954047][0.25,0.25,0][0.667008,-1.23653,-1.35923][0.170469,0.0657278,-0.983168][0.25,0.125,0][-0.469242,-1.26245,-1.30438][-0.0265741,0.00752476,-0.999619][0.625,0.125,0][-0.847992,-1.32993,-1.30924][0.0745516,0.0109301,-0.997157][0.75,0.125,0][-0.902017,-0.917433,-1.35607][0.0849167,-0.0891552,-0.992391][0.75,0.25,0][-0.902017,-0.917433,-1.35607][0.0849167,-0.0891552,-0.992391][0.75,0.25,0][-0.523267,-0.849952,-1.32216][0.0366317,-0.0902685,-0.995244][0.625,0.25,0][-0.469242,-1.26245,-1.30438][-0.0265741,0.00752476,-0.999619][0.625,0.125,0][-0.847992,-1.32993,-1.30924][0.0745516,0.0109301,-0.997157][0.75,0.125,0][-1.22674,-1.26788,-1.36439][0.158143,0.0807542,-0.984109][0.875,0.125,0][-1.28077,-0.855378,-1.43331][0.0408566,-0.0343515,-0.998574][0.875,0.25,0][-1.28077,-0.855378,-1.43331][0.0408566,-0.0343515,-0.998574][0.875,0.25,0][-0.902017,-0.917433,-1.35607][0.0849167,-0.0891552,-0.992391][0.75,0.25,0][-0.847992,-1.32993,-1.30924][0.0745516,0.0109301,-0.997157][0.75,0.125,0][-1.22674,-1.26788,-1.36439][0.158143,0.0807542,-0.984109][0.875,0.125,0][-1.60549,-1.18667,-1.4646][0.561169,0.114402,-2.8007][1,0.125,0][-1.65952,-0.774171,-1.38146][0.00418769,0.122968,-2.88612][1,0.25,0][-1.65952,-0.774171,-1.38146][0.00418769,0.122968,-2.88612][1,0.25,0][-1.28077,-0.855378,-1.43331][0.0408566,-0.0343515,-0.998574][0.875,0.25,0][-1.22674,-1.26788,-1.36439][0.158143,0.0807542,-0.984109][0.875,0.125,0][1.37048,-0.894481,-1.232][0.00258675,-0.876439,-2.69764][0,0.25,0][0.991733,-0.87485,-1.17352][0.0543028,-0.0715885,-0.995955][0.125,0.25,0][1.2352,-0.46235,-1.47276][-0.0654229,-0.24914,-0.966255][0.125,0.375,0][1.2352,-0.46235,-1.47276][-0.0654229,-0.24914,-0.966255][0.125,0.375,0][1.61395,-0.481981,-1.32863][0.942767,-0.374846,-2.76137][0,0.375,0][1.37048,-0.894481,-1.232][0.00258675,-0.876439,-2.69764][0,0.25,0][0.991733,-0.87485,-1.17352][0.0543028,-0.0715885,-0.995955][0.125,0.25,0][0.612983,-0.824027,-1.30919][0.298934,-0.0208187,-0.954047][0.25,0.25,0][0.856454,-0.411528,-1.36226][0.017048,-0.138705,-0.990187][0.25,0.375,0][0.856454,-0.411528,-1.36226][0.017048,-0.138705,-0.990187][0.25,0.375,0][1.2352,-0.46235,-1.47276][-0.0654229,-0.24914,-0.966255][0.125,0.375,0][0.991733,-0.87485,-1.17352][0.0543028,-0.0715885,-0.995955][0.125,0.25,0][0.612983,-0.824027,-1.30919][0.298934,-0.0208187,-0.954047][0.25,0.25,0][0.234233,-0.903659,-1.46125][0.158905,0.0579181,-0.985594][0.375,0.25,0][0.477704,-0.491159,-1.45977][0.177503,-0.0243922,-0.983818][0.375,0.375,0][0.477704,-0.491159,-1.45977][0.177503,-0.0243922,-0.983818][0.375,0.375,0][0.856454,-0.411528,-1.36226][0.017048,-0.138705,-0.990187][0.25,0.375,0][0.612983,-0.824027,-1.30919][0.298934,-0.0208187,-0.954047][0.25,0.25,0][0.234233,-0.903659,-1.46125][0.158905,0.0579181,-0.985594][0.375,0.25,0][-0.144517,-0.915438,-1.45089][-0.126813,0.166289,-0.977889][0.5,0.25,0][0.0989539,-0.502938,-1.37994][-0.0947862,0.169997,-0.980875][0.5,0.375,0][0.0989539,-0.502938,-1.37994][-0.0947862,0.169997,-0.980875][0.5,0.375,0][0.477704,-0.491159,-1.45977][0.177503,-0.0243922,-0.983818][0.375,0.375,0][0.234233,-0.903659,-1.46125][0.158905,0.0579181,-0.985594][0.375,0.25,0][-0.144517,-0.915438,-1.45089][-0.126813,0.166289,-0.977889][0.5,0.25,0][-0.523267,-0.849952,-1.32216][0.0366317,-0.0902685,-0.995244][0.625,0.25,0][-0.279796,-0.437452,-1.35068][-0.0426108,0.0379954,-0.998369][0.625,0.375,0][-0.279796,-0.437452,-1.35068][-0.0426108,0.0379954,-0.998369][0.625,0.375,0][0.0989539,-0.502938,-1.37994][-0.0947862,0.169997,-0.980875][0.5,0.375,0][-0.144517,-0.915438,-1.45089][-0.126813,0.166289,-0.977889][0.5,0.25,0][-0.523267,-0.849952,-1.32216][0.0366317,-0.0902685,-0.995244][0.625,0.25,0][-0.902017,-0.917433,-1.35607][0.0849167,-0.0891552,-0.992391][0.75,0.25,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0][-0.279796,-0.437452,-1.35068][-0.0426108,0.0379954,-0.998369][0.625,0.375,0][-0.523267,-0.849952,-1.32216][0.0366317,-0.0902685,-0.995244][0.625,0.25,0][-0.902017,-0.917433,-1.35607][0.0849167,-0.0891552,-0.992391][0.75,0.25,0][-1.28077,-0.855378,-1.43331][0.0408566,-0.0343515,-0.998574][0.875,0.25,0][-1.0373,-0.442878,-1.37693][-0.00451662,0.120689,-0.99268][0.875,0.375,0][-1.0373,-0.442878,-1.37693][-0.00451662,0.120689,-0.99268][0.875,0.375,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0][-0.902017,-0.917433,-1.35607][0.0849167,-0.0891552,-0.992391][0.75,0.25,0][-1.28077,-0.855378,-1.43331][0.0408566,-0.0343515,-0.998574][0.875,0.25,0][-1.65952,-0.774171,-1.38146][0.00418769,0.122968,-2.88612][1,0.25,0][-1.41605,-0.361671,-1.37654][-0.0283857,0.508901,-2.93168][1,0.375,0][-1.41605,-0.361671,-1.37654][-0.0283857,0.508901,-2.93168][1,0.375,0][-1.0373,-0.442878,-1.37693][-0.00451662,0.120689,-0.99268][0.875,0.375,0][-1.28077,-0.855378,-1.43331][0.0408566,-0.0343515,-0.998574][0.875,0.25,0][1.61395,-0.481981,-1.32863][0.942767,-0.374846,-2.76137][0,0.375,0][1.2352,-0.46235,-1.47276][-0.0654229,-0.24914,-0.966255][0.125,0.375,0][1.16674,-0.0498499,-1.47533][0.036248,0.00730342,-0.999316][0.125,0.5,0][1.16674,-0.0498499,-1.47533][0.036248,0.00730342,-0.999316][0.125,0.5,0][1.54549,-0.0694807,-1.36613][0.893171,0.220211,-2.84243][0,0.5,0][1.61395,-0.481981,-1.32863][0.942767,-0.374846,-2.76137][0,0.375,0][1.2352,-0.46235,-1.47276][-0.0654229,-0.24914,-0.966255][0.125,0.375,0][0.856454,-0.411528,-1.36226][0.017048,-0.138705,-0.990187][0.25,0.375,0][0.787987,0.000972509,-1.36529][-0.198744,-0.0413547,-0.979179][0.25,0.5,0][0.787987,0.000972509,-1.36529][-0.198744,-0.0413547,-0.979179][0.25,0.5,0][1.16674,-0.0498499,-1.47533][0.036248,0.00730342,-0.999316][0.125,0.5,0][1.2352,-0.46235,-1.47276][-0.0654229,-0.24914,-0.966255][0.125,0.375,0][0.856454,-0.411528,-1.36226][0.017048,-0.138705,-0.990187][0.25,0.375,0][0.477704,-0.491159,-1.45977][0.177503,-0.0243922,-0.983818][0.375,0.375,0][0.409237,-0.0786589,-1.33635][0.0809356,0.0686977,-0.994349][0.375,0.5,0][0.409237,-0.0786589,-1.33635][0.0809356,0.0686977,-0.994349][0.375,0.5,0][0.787987,0.000972509,-1.36529][-0.198744,-0.0413547,-0.979179][0.25,0.5,0][0.856454,-0.411528,-1.36226][0.017048,-0.138705,-0.990187][0.25,0.375,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0][-1.0373,-0.442878,-1.37693][-0.00451662,0.120689,-0.99268][0.875,0.375,0][-1.10576,-0.0303776,-1.2961][-0.0421289,0.0410242,-0.99827][0.875,0.5,0][-1.10576,-0.0303776,-1.2961][-0.0421289,0.0410242,-0.99827][0.875,0.5,0][-0.727013,-0.0924333,-1.29603][0.0721085,0.102638,-0.992102][0.75,0.5,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0][-1.0373,-0.442878,-1.37693][-0.00451662,0.120689,-0.99268][0.875,0.375,0][-1.41605,-0.361671,-1.37654][-0.0283857,0.508901,-2.93168][1,0.375,0][-1.48451,0.0508286,-1.24807][-0.200255,0.209172,-2.87459][1,0.5,0][-1.48451,0.0508286,-1.24807][-0.200255,0.209172,-2.87459][1,0.5,0][-1.10576,-0.0303776,-1.2961][-0.0421289,0.0410242,-0.99827][0.875,0.5,0][-1.0373,-0.442878,-1.37693][-0.00451662,0.120689,-0.99268][0.875,0.375,0][1.54549,-0.0694807,-1.36613][0.893171,0.220211,-2.84243][0,0.5,0][1.16674,-0.0498499,-1.47533][0.036248,0.00730342,-0.999316][0.125,0.5,0][1.12855,0.36265,-1.44299][0.140763,0.102595,-0.984713][0.125,0.625,0][1.12855,0.36265,-1.44299][0.140763,0.102595,-0.984713][0.125,0.625,0][1.5073,0.343019,-1.30837][0.353069,-0.0363108,-2.76107][0,0.625,0][1.54549,-0.0694807,-1.36613][0.893171,0.220211,-2.84243][0,0.5,0][1.16674,-0.0498499,-1.47533][0.036248,0.00730342,-0.999316][0.125,0.5,0][0.787987,0.000972509,-1.36529][-0.198744,-0.0413547,-0.979179][0.25,0.5,0][0.749802,0.413472,-1.38953][-0.159075,-0.0331094,-0.986711][0.25,0.625,0][0.749802,0.413472,-1.38953][-0.159075,-0.0331094,-0.986711][0.25,0.625,0][1.12855,0.36265,-1.44299][0.140763,0.102595,-0.984713][0.125,0.625,0][1.16674,-0.0498499,-1.47533][0.036248,0.00730342,-0.999316][0.125,0.5,0][0.787987,0.000972509,-1.36529][-0.198744,-0.0413547,-0.979179][0.25,0.5,0][0.409237,-0.0786589,-1.33635][0.0809356,0.0686977,-0.994349][0.375,0.5,0][0.371052,0.333841,-1.31796][0.00859974,-0.0294823,-0.999528][0.375,0.625,0][0.371052,0.333841,-1.31796][0.00859974,-0.0294823,-0.999528][0.375,0.625,0][0.749802,0.413472,-1.38953][-0.159075,-0.0331094,-0.986711][0.25,0.625,0][0.787987,0.000972509,-1.36529][-0.198744,-0.0413547,-0.979179][0.25,0.5,0][0.409237,-0.0786589,-1.33635][0.0809356,0.0686977,-0.994349][0.375,0.5,0][0.0304869,-0.0904378,-1.38669][-0.0153446,-0.199765,-0.979724][0.5,0.5,0][-0.00769828,0.322062,-1.41453][0.173968,0.0469331,-0.983632][0.5,0.625,0][-0.00769828,0.322062,-1.41453][0.173968,0.0469331,-0.983632][0.5,0.625,0][0.371052,0.333841,-1.31796][0.00859974,-0.0294823,-0.999528][0.375,0.625,0][0.409237,-0.0786589,-1.33635][0.0809356,0.0686977,-0.994349][0.375,0.5,0][0.0304869,-0.0904378,-1.38669][-0.0153446,-0.199765,-0.979724][0.5,0.5,0][-0.348263,-0.0249524,-1.26417][-0.232627,-0.297418,-0.925974][0.625,0.5,0][-0.386448,0.387547,-1.48229][-0.188206,-0.0909455,-0.97791][0.625,0.625,0][-0.386448,0.387547,-1.48229][-0.188206,-0.0909455,-0.97791][0.625,0.625,0][-0.00769828,0.322062,-1.41453][0.173968,0.0469331,-0.983632][0.5,0.625,0][0.0304869,-0.0904378,-1.38669][-0.0153446,-0.199765,-0.979724][0.5,0.5,0][-0.348263,-0.0249524,-1.26417][-0.232627,-0.297418,-0.925974][0.625,0.5,0][-0.727013,-0.0924333,-1.29603][0.0721085,0.102638,-0.992102][0.75,0.5,0][-0.765198,0.320067,-1.26386][-0.146214,-0.00369724,-0.989246][0.75,0.625,0][-0.765198,0.320067,-1.26386][-0.146214,-0.00369724,-0.989246][0.75,0.625,0][-0.386448,0.387547,-1.48229][-0.188206,-0.0909455,-0.97791][0.625,0.625,0][-0.348263,-0.0249524,-1.26417][-0.232627,-0.297418,-0.925974][0.625,0.5,0][-0.727013,-0.0924333,-1.29603][0.0721085,0.102638,-0.992102][0.75,0.5,0][-1.10576,-0.0303776,-1.2961][-0.0421289,0.0410242,-0.99827][0.875,0.5,0][-1.14395,0.382122,-1.327][0.163455,0.0845347,-0.982922][0.875,0.625,0][-1.14395,0.382122,-1.327][0.163455,0.0845347,-0.982922][0.875,0.625,0][-0.765198,0.320067,-1.26386][-0.146214,-0.00369724,-0.989246][0.75,0.625,0][-0.727013,-0.0924333,-1.29603][0.0721085,0.102638,-0.992102][0.75,0.5,0][-1.10576,-0.0303776,-1.2961][-0.0421289,0.0410242,-0.99827][0.875,0.5,0][-1.48451,0.0508286,-1.24807][-0.200255,0.209172,-2.87459][1,0.5,0][-1.5227,0.463329,-1.36098][-0.00604995,-0.30198,-2.9339][1,0.625,0][-1.5227,0.463329,-1.36098][-0.00604995,-0.30198,-2.9339][1,0.625,0][-1.14395,0.382122,-1.327][0.163455,0.0845347,-0.982922][0.875,0.625,0][-1.10576,-0.0303776,-1.2961][-0.0421289,0.0410242,-0.99827][0.875,0.5,0][1.5073,0.343019,-1.30837][0.353069,-0.0363108,-2.76107][0,0.625,0][1.12855,0.36265,-1.44299][0.140763,0.102595,-0.984713][0.125,0.625,0][1.24267,0.77515,-1.35708][-0.0438346,-0.0690676,-0.996648][0.125,0.75,0][1.24267,0.77515,-1.35708][-0.0438346,-0.0690676,-0.996648][0.125,0.75,0][1.62142,0.755519,-1.48665][-0.410754,-0.20362,-2.73708][0,0.75,0][1.5073,0.343019,-1.30837][0.353069,-0.0363108,-2.76107][0,0.625,0][1.12855,0.36265,-1.44299][0.140763,0.102595,-0.984713][0.125,0.625,0][0.749802,0.413472,-1.38953][-0.159075,-0.0331094,-0.986711][0.25,0.625,0][0.863923,0.825972,-1.40229][0.00925795,0.0438551,-0.998995][0.25,0.75,0][0.863923,0.825972,-1.40229][0.00925795,0.0438551,-0.998995][0.25,0.75,0][1.24267,0.77515,-1.35708][-0.0438346,-0.0690676,-0.996648][0.125,0.75,0][1.12855,0.36265,-1.44299][0.140763,0.102595,-0.984713][0.125,0.625,0][0.749802,0.413472,-1.38953][-0.159075,-0.0331094,-0.986711][0.25,0.625,0][0.371052,0.333841,-1.31796][0.00859974,-0.0294823,-0.999528][0.375,0.625,0][0.485173,0.746341,-1.3791][-0.0289635,-0.0862837,-0.995849][0.375,0.75,0][0.485173,0.746341,-1.3791][-0.0289635,-0.0862837,-0.995849][0.375,0.75,0][0.863923,0.825972,-1.40229][0.00925795,0.0438551,-0.998995][0.25,0.75,0][0.749802,0.413472,-1.38953][-0.159075,-0.0331094,-0.986711][0.25,0.625,0][0.371052,0.333841,-1.31796][0.00859974,-0.0294823,-0.999528][0.375,0.625,0][-0.00769828,0.322062,-1.41453][0.173968,0.0469331,-0.983632][0.5,0.625,0][0.106423,0.734562,-1.36928][0.00262953,-0.0570666,-0.998367][0.5,0.75,0][0.106423,0.734562,-1.36928][0.00262953,-0.0570666,-0.998367][0.5,0.75,0][0.485173,0.746341,-1.3791][-0.0289635,-0.0862837,-0.995849][0.375,0.75,0][0.371052,0.333841,-1.31796][0.00859974,-0.0294823,-0.999528][0.375,0.625,0][-0.00769828,0.322062,-1.41453][0.173968,0.0469331,-0.983632][0.5,0.625,0][-0.386448,0.387547,-1.48229][-0.188206,-0.0909455,-0.97791][0.625,0.625,0][-0.272327,0.800047,-1.37915][-0.0479492,0.135078,-0.989674][0.625,0.75,0][-0.272327,0.800047,-1.37915][-0.0479492,0.135078,-0.989674][0.625,0.75,0][0.106423,0.734562,-1.36928][0.00262953,-0.0570666,-0.998367][0.5,0.75,0][-0.00769828,0.322062,-1.41453][0.173968,0.0469331,-0.983632][0.5,0.625,0][-0.386448,0.387547,-1.48229][-0.188206,-0.0909455,-0.97791][0.625,0.625,0][-0.765198,0.320067,-1.26386][-0.146214,-0.00369724,-0.989246][0.75,0.625,0][-0.651077,0.732567,-1.32728][-0.282603,0.0572643,-0.957526][0.75,0.75,0][-0.651077,0.732567,-1.32728][-0.282603,0.0572643,-0.957526][0.75,0.75,0][-0.272327,0.800047,-1.37915][-0.0479492,0.135078,-0.989674][0.625,0.75,0][-0.386448,0.387547,-1.48229][-0.188206,-0.0909455,-0.97791][0.625,0.625,0][-0.765198,0.320067,-1.26386][-0.146214,-0.00369724,-0.989246][0.75,0.625,0][-1.14395,0.382122,-1.327][0.163455,0.0845347,-0.982922][0.875,0.625,0][-1.02983,0.794622,-1.17275][0.0524479,0.0485264,-0.997444][0.875,0.75,0][-1.02983,0.794622,-1.17275][0.0524479,0.0485264,-0.997444][0.875,0.75,0][-0.651077,0.732567,-1.32728][-0.282603,0.0572643,-0.957526][0.75,0.75,0][-0.765198,0.320067,-1.26386][-0.146214,-0.00369724,-0.989246][0.75,0.625,0][-1.14395,0.382122,-1.327][0.163455,0.0845347,-0.982922][0.875,0.625,0][-1.5227,0.463329,-1.36098][-0.00604995,-0.30198,-2.9339][1,0.625,0][-1.40858,0.875829,-1.33283][0.929807,0.412773,-2.77375][1,0.75,0][-1.40858,0.875829,-1.33283][0.929807,0.412773,-2.77375][1,0.75,0][-1.02983,0.794622,-1.17275][0.0524479,0.0485264,-0.997444][0.875,0.75,0][-1.14395,0.382122,-1.327][0.163455,0.0845347,-0.982922][0.875,0.625,0][1.62142,0.755519,-1.48665][-0.410754,-0.20362,-2.73708][0,0.75,0][1.24267,0.77515,-1.35708][-0.0438346,-0.0690676,-0.996648][0.125,0.75,0][1.21356,1.18765,-1.44474][-0.056228,-0.0858638,-0.994719][0.125,0.875,0][1.21356,1.18765,-1.44474][-0.056228,-0.0858638,-0.994719][0.125,0.875,0][1.59231,1.16802,-1.3534][0.332514,-0.160105,-2.80387][0,0.875,0][1.62142,0.755519,-1.48665][-0.410754,-0.20362,-2.73708][0,0.75,0][1.24267,0.77515,-1.35708][-0.0438346,-0.0690676,-0.996648][0.125,0.75,0][0.863923,0.825972,-1.40229][0.00925795,0.0438551,-0.998995][0.25,0.75,0][0.834808,1.23847,-1.37475][-0.057355,-0.0778295,-0.995315][0.25,0.875,0][0.834808,1.23847,-1.37475][-0.057355,-0.0778295,-0.995315][0.25,0.875,0][1.21356,1.18765,-1.44474][-0.056228,-0.0858638,-0.994719][0.125,0.875,0][1.24267,0.77515,-1.35708][-0.0438346,-0.0690676,-0.996648][0.125,0.75,0][0.863923,0.825972,-1.40229][0.00925795,0.0438551,-0.998995][0.25,0.75,0][0.485173,0.746341,-1.3791][-0.0289635,-0.0862837,-0.995849][0.375,0.75,0][0.456058,1.15884,-1.39453][0.0440317,0.0334986,-0.998468][0.375,0.875,0][0.456058,1.15884,-1.39453][0.0440317,0.0334986,-0.998468][0.375,0.875,0][0.834808,1.23847,-1.37475][-0.057355,-0.0778295,-0.995315][0.25,0.875,0][0.863923,0.825972,-1.40229][0.00925795,0.0438551,-0.998995][0.25,0.75,0][0.485173,0.746341,-1.3791][-0.0289635,-0.0862837,-0.995849][0.375,0.75,0][0.106423,0.734562,-1.36928][0.00262953,-0.0570666,-0.998367][0.5,0.75,0][0.077308,1.14706,-1.44894][-0.0175914,-0.0376321,-0.999137][0.5,0.875,0][0.077308,1.14706,-1.44894][-0.0175914,-0.0376321,-0.999137][0.5,0.875,0][0.456058,1.15884,-1.39453][0.0440317,0.0334986,-0.998468][0.375,0.875,0][0.485173,0.746341,-1.3791][-0.0289635,-0.0862837,-0.995849][0.375,0.75,0][0.106423,0.734562,-1.36928][0.00262953,-0.0570666,-0.998367][0.5,0.75,0][-0.272327,0.800047,-1.37915][-0.0479492,0.135078,-0.989674][0.625,0.75,0][-0.301442,1.21255,-1.35483][-0.225362,-0.059311,-0.972468][0.625,0.875,0][-0.301442,1.21255,-1.35483][-0.225362,-0.059311,-0.972468][0.625,0.875,0][0.077308,1.14706,-1.44894][-0.0175914,-0.0376321,-0.999137][0.5,0.875,0][0.106423,0.734562,-1.36928][0.00262953,-0.0570666,-0.998367][0.5,0.75,0][-0.272327,0.800047,-1.37915][-0.0479492,0.135078,-0.989674][0.625,0.75,0][-0.651077,0.732567,-1.32728][-0.282603,0.0572643,-0.957526][0.75,0.75,0][-0.680192,1.14507,-1.26825][-0.0423619,-0.0345253,-0.998506][0.75,0.875,0][-0.680192,1.14507,-1.26825][-0.0423619,-0.0345253,-0.998506][0.75,0.875,0][-0.301442,1.21255,-1.35483][-0.225362,-0.059311,-0.972468][0.625,0.875,0][-0.272327,0.800047,-1.37915][-0.0479492,0.135078,-0.989674][0.625,0.75,0][-0.651077,0.732567,-1.32728][-0.282603,0.0572643,-0.957526][0.75,0.75,0][-1.02983,0.794622,-1.17275][0.0524479,0.0485264,-0.997444][0.875,0.75,0][-1.05894,1.20712,-1.24609][-0.159228,-0.249684,-0.955146][0.875,0.875,0][-1.05894,1.20712,-1.24609][-0.159228,-0.249684,-0.955146][0.875,0.875,0][-0.680192,1.14507,-1.26825][-0.0423619,-0.0345253,-0.998506][0.75,0.875,0][-0.651077,0.732567,-1.32728][-0.282603,0.0572643,-0.957526][0.75,0.75,0][-1.02983,0.794622,-1.17275][0.0524479,0.0485264,-0.997444][0.875,0.75,0][-1.40858,0.875829,-1.33283][0.929807,0.412773,-2.77375][1,0.75,0][-1.43769,1.28833,-1.27361][0.473731,-0.223592,-2.85892][1,0.875,0][-1.43769,1.28833,-1.27361][0.473731,-0.223592,-2.85892][1,0.875,0][-1.05894,1.20712,-1.24609][-0.159228,-0.249684,-0.955146][0.875,0.875,0][-1.02983,0.794622,-1.17275][0.0524479,0.0485264,-0.997444][0.875,0.75,0][1.59231,1.16802,-1.3534][0.332514,-0.160105,-2.80387][0,0.875,0][1.21356,1.18765,-1.44474][-0.056228,-0.0858638,-0.994719][0.125,0.875,0][1.23658,1.60015,-1.4799][-0.230379,2.79164,-0.100553][0.125,1,0][1.23658,1.60015,-1.4799][-0.230379,2.79164,-0.100553][0.125,1,0][1.61533,1.58052,-1.52725][0.0521218,1.95133,-0.435331][0,1,0][1.59231,1.16802,-1.3534][0.332514,-0.160105,-2.80387][0,0.875,0][1.21356,1.18765,-1.44474][-0.056228,-0.0858638,-0.994719][0.125,0.875,0][0.834808,1.23847,-1.37475][-0.057355,-0.0778295,-0.995315][0.25,0.875,0][0.857826,1.65097,-1.46317][0.098348,2.82879,0.7328][0.25,1,0][0.857826,1.65097,-1.46317][0.098348,2.82879,0.7328][0.25,1,0][1.23658,1.60015,-1.4799][-0.230379,2.79164,-0.100553][0.125,1,0][1.21356,1.18765,-1.44474][-0.056228,-0.0858638,-0.994719][0.125,0.875,0][0.834808,1.23847,-1.37475][-0.057355,-0.0778295,-0.995315][0.25,0.875,0][0.456058,1.15884,-1.39453][0.0440317,0.0334986,-0.998468][0.375,0.875,0][0.479076,1.57134,-1.38999][-0.15979,2.97218,0.0192374][0.375,1,0][0.479076,1.57134,-1.38999][-0.15979,2.97218,0.0192374][0.375,1,0][0.857826,1.65097,-1.46317][0.098348,2.82879,0.7328][0.25,1,0][0.834808,1.23847,-1.37475][-0.057355,-0.0778295,-0.995315][0.25,0.875,0][0.456058,1.15884,-1.39453][0.0440317,0.0334986,-0.998468][0.375,0.875,0][0.077308,1.14706,-1.44894][-0.0175914,-0.0376321,-0.999137][0.5,0.875,0][0.100326,1.55956,-1.37106][-0.134256,2.92771,0.0932585][0.5,1,0][0.100326,1.55956,-1.37106][-0.134256,2.92771,0.0932585][0.5,1,0][0.479076,1.57134,-1.38999][-0.15979,2.97218,0.0192374][0.375,1,0][0.456058,1.15884,-1.39453][0.0440317,0.0334986,-0.998468][0.375,0.875,0][0.077308,1.14706,-1.44894][-0.0175914,-0.0376321,-0.999137][0.5,0.875,0][-0.301442,1.21255,-1.35483][-0.225362,-0.059311,-0.972468][0.625,0.875,0][-0.278424,1.62505,-1.42623][0.0710019,2.91364,0.539217][0.625,1,0][-0.278424,1.62505,-1.42623][0.0710019,2.91364,0.539217][0.625,1,0][0.100326,1.55956,-1.37106][-0.134256,2.92771,0.0932585][0.5,1,0][0.077308,1.14706,-1.44894][-0.0175914,-0.0376321,-0.999137][0.5,0.875,0][-0.301442,1.21255,-1.35483][-0.225362,-0.059311,-0.972468][0.625,0.875,0][-0.680192,1.14507,-1.26825][-0.0423619,-0.0345253,-0.998506][0.75,0.875,0][-0.657174,1.55757,-1.25884][0.216491,2.9488,0.128663][0.75,1,0][-0.657174,1.55757,-1.25884][0.216491,2.9488,0.128663][0.75,1,0][-0.278424,1.62505,-1.42623][0.0710019,2.91364,0.539217][0.625,1,0][-0.301442,1.21255,-1.35483][-0.225362,-0.059311,-0.972468][0.625,0.875,0][-0.680192,1.14507,-1.26825][-0.0423619,-0.0345253,-0.998506][0.75,0.875,0][-1.05894,1.20712,-1.24609][-0.159228,-0.249684,-0.955146][0.875,0.875,0][-1.03592,1.61962,-1.50821][0.404232,2.87754,0.289462][0.875,1,0][-1.03592,1.61962,-1.50821][0.404232,2.87754,0.289462][0.875,1,0][-0.657174,1.55757,-1.25884][0.216491,2.9488,0.128663][0.75,1,0][-0.680192,1.14507,-1.26825][-0.0423619,-0.0345253,-0.998506][0.75,0.875,0][-1.05894,1.20712,-1.24609][-0.159228,-0.249684,-0.955146][0.875,0.875,0][-1.43769,1.28833,-1.27361][0.473731,-0.223592,-2.85892][1,0.875,0][-1.41467,1.70083,-1.36114][0.314986,0.894494,0.317277][1,1,0][-1.41467,1.70083,-1.36114][0.314986,0.894494,0.317277][1,1,0][-1.03592,1.61962,-1.50821][0.404232,2.87754,0.289462][0.875,1,0][-1.05894,1.20712,-1.24609][-0.159228,-0.249684,-0.955146][0.875,0.875,0][-1.47275,-1.59917,-1.32227][0.47848,-0.867954,-0.13309][0,0,0][-1.5811,-1.70132,-1.04564][1.70962,-2.37644,-0.256489][0.142857,0,0][-1.55318,-1.28882,-0.99854][-0.962852,-0.0867076,0.255728][0.142857,0.125,0][-1.55318,-1.28882,-0.99854][-0.962852,-0.0867076,0.255728][0.142857,0.125,0][-1.60549,-1.18667,-1.4646][0.561169,0.114402,-2.8007][0,0.125,0][-1.47275,-1.59917,-1.32227][0.47848,-0.867954,-0.13309][0,0,0][-1.5811,-1.70132,-1.04564][1.70962,-2.37644,-0.256489][0.142857,0,0][-1.32048,-1.68846,-0.535494][1.8512,-2.24932,-0.394104][0.285714,0,0][-1.33293,-1.27596,-0.672051][-0.990396,-0.00514561,0.138166][0.285714,0.125,0][-1.33293,-1.27596,-0.672051][-0.990396,-0.00514561,0.138166][0.285714,0.125,0][-1.55318,-1.28882,-0.99854][-0.962852,-0.0867076,0.255728][0.142857,0.125,0][-1.5811,-1.70132,-1.04564][1.70962,-2.37644,-0.256489][0.142857,0,0][-1.32048,-1.68846,-0.535494][1.8512,-2.24932,-0.394104][0.285714,0,0][-1.41149,-1.69361,-0.16513][2.14015,-1.90034,0.57995][0.428571,0,0][-1.42907,-1.28111,-0.307461][-0.989342,-0.0955467,-0.109876][0.428571,0.125,0][-1.42907,-1.28111,-0.307461][-0.989342,-0.0955467,-0.109876][0.428571,0.125,0][-1.33293,-1.27596,-0.672051][-0.990396,-0.00514561,0.138166][0.285714,0.125,0][-1.32048,-1.68846,-0.535494][1.8512,-2.24932,-0.394104][0.285714,0,0][-1.41149,-1.69361,-0.16513][2.14015,-1.90034,0.57995][0.428571,0,0][-1.46053,-1.76794,0.232154][1.93984,-2.18505,-0.0459622][0.571429,0,0][-1.37602,-1.35544,0.0953891][-0.982425,-0.0100697,-0.186385][0.571429,0.125,0][-1.37602,-1.35544,0.0953891][-0.982425,-0.0100697,-0.186385][0.571429,0.125,0][-1.42907,-1.28111,-0.307461][-0.989342,-0.0955467,-0.109876][0.428571,0.125,0][-1.41149,-1.69361,-0.16513][2.14015,-1.90034,0.57995][0.428571,0,0][-1.46053,-1.76794,0.232154][1.93984,-2.18505,-0.0459622][0.571429,0,0][-1.51512,-1.69513,0.606298][1.90534,-1.70506,1.41318][0.714286,0,0][-1.64851,-1.28263,0.463967][-0.971464,0.0695867,-0.226749][0.714286,0.125,0][-1.64851,-1.28263,0.463967][-0.971464,0.0695867,-0.226749][0.714286,0.125,0][-1.37602,-1.35544,0.0953891][-0.982425,-0.0100697,-0.186385][0.571429,0.125,0][-1.46053,-1.76794,0.232154][1.93984,-2.18505,-0.0459622][0.571429,0,0][-1.51512,-1.69513,0.606298][1.90534,-1.70506,1.41318][0.714286,0,0][-1.79339,-1.74473,0.84309][1.21881,-2.24716,0.225003][0.857143,0,0][-1.65107,-1.33223,0.95864][-0.986944,0.122508,0.104566][0.857143,0.125,0][-1.65107,-1.33223,0.95864][-0.986944,0.122508,0.104566][0.857143,0.125,0][-1.64851,-1.28263,0.463967][-0.971464,0.0695867,-0.226749][0.714286,0.125,0][-1.51512,-1.69513,0.606298][1.90534,-1.70506,1.41318][0.714286,0,0][-1.79339,-1.74473,0.84309][1.21881,-2.24716,0.225003][0.857143,0,0][-1.57302,-1.67568,1.37773][0.805443,-1.82295,0.0308321][1,0,0][-1.4355,-1.26318,1.2354][-2.40005,0.264822,1.53312][1,0.125,0][-1.4355,-1.26318,1.2354][-2.40005,0.264822,1.53312][1,0.125,0][-1.65107,-1.33223,0.95864][-0.986944,0.122508,0.104566][0.857143,0.125,0][-1.79339,-1.74473,0.84309][1.21881,-2.24716,0.225003][0.857143,0,0][-1.60549,-1.18667,-1.4646][0.561169,0.114402,-2.8007][0,0.125,0][-1.55318,-1.28882,-0.99854][-0.962852,-0.0867076,0.255728][0.142857,0.125,0][-1.6325,-0.876319,-1.10033][-0.939896,-0.0785564,0.332302][0.142857,0.25,0][-1.6325,-0.876319,-1.10033][-0.939896,-0.0785564,0.332302][0.142857,0.25,0][-1.65952,-0.774171,-1.38146][0.00418769,0.122968,-2.88612][0,0.25,0][-1.60549,-1.18667,-1.4646][0.561169,0.114402,-2.8007][0,0.125,0][-1.55318,-1.28882,-0.99854][-0.962852,-0.0867076,0.255728][0.142857,0.125,0][-1.33293,-1.27596,-0.672051][-0.990396,-0.00514561,0.138166][0.285714,0.125,0][-1.32979,-0.863461,-0.608284][-0.993567,-0.036437,0.107223][0.285714,0.25,0][-1.32979,-0.863461,-0.608284][-0.993567,-0.036437,0.107223][0.285714,0.25,0][-1.6325,-0.876319,-1.10033][-0.939896,-0.0785564,0.332302][0.142857,0.25,0][-1.55318,-1.28882,-0.99854][-0.962852,-0.0867076,0.255728][0.142857,0.125,0][-1.33293,-1.27596,-0.672051][-0.990396,-0.00514561,0.138166][0.285714,0.125,0][-1.42907,-1.28111,-0.307461][-0.989342,-0.0955467,-0.109876][0.428571,0.125,0][-1.45216,-0.868614,-0.224321][-0.994752,0.00736987,-0.102051][0.428571,0.25,0][-1.45216,-0.868614,-0.224321][-0.994752,0.00736987,-0.102051][0.428571,0.25,0][-1.32979,-0.863461,-0.608284][-0.993567,-0.036437,0.107223][0.285714,0.25,0][-1.33293,-1.27596,-0.672051][-0.990396,-0.00514561,0.138166][0.285714,0.125,0][-1.42907,-1.28111,-0.307461][-0.989342,-0.0955467,-0.109876][0.428571,0.125,0][-1.37602,-1.35544,0.0953891][-0.982425,-0.0100697,-0.186385][0.571429,0.125,0][-1.49376,-0.942941,0.206341][-0.997314,-0.0221986,-0.0698009][0.571429,0.25,0][-1.49376,-0.942941,0.206341][-0.997314,-0.0221986,-0.0698009][0.571429,0.25,0][-1.45216,-0.868614,-0.224321][-0.994752,0.00736987,-0.102051][0.428571,0.25,0][-1.42907,-1.28111,-0.307461][-0.989342,-0.0955467,-0.109876][0.428571,0.125,0][-1.37602,-1.35544,0.0953891][-0.982425,-0.0100697,-0.186385][0.571429,0.125,0][-1.64851,-1.28263,0.463967][-0.971464,0.0695867,-0.226749][0.714286,0.125,0][-1.49776,-0.870133,0.547108][-0.982729,-0.0189825,-0.184076][0.714286,0.25,0][-1.49776,-0.870133,0.547108][-0.982729,-0.0189825,-0.184076][0.714286,0.25,0][-1.49376,-0.942941,0.206341][-0.997314,-0.0221986,-0.0698009][0.571429,0.25,0][-1.37602,-1.35544,0.0953891][-0.982425,-0.0100697,-0.186385][0.571429,0.125,0][-1.64851,-1.28263,0.463967][-0.971464,0.0695867,-0.226749][0.714286,0.125,0][-1.65107,-1.33223,0.95864][-0.986944,0.122508,0.104566][0.857143,0.125,0][-1.50537,-0.91973,0.815857][-0.995016,-0.00103225,0.0997144][0.857143,0.25,0][-1.50537,-0.91973,0.815857][-0.995016,-0.00103225,0.0997144][0.857143,0.25,0][-1.49776,-0.870133,0.547108][-0.982729,-0.0189825,-0.184076][0.714286,0.25,0][-1.64851,-1.28263,0.463967][-0.971464,0.0695867,-0.226749][0.714286,0.125,0][-1.65107,-1.33223,0.95864][-0.986944,0.122508,0.104566][0.857143,0.125,0][-1.4355,-1.26318,1.2354][-2.40005,0.264822,1.53312][1,0.125,0][-1.49754,-0.85068,1.31854][-2.68187,0.104088,0.616356][1,0.25,0][-1.49754,-0.85068,1.31854][-2.68187,0.104088,0.616356][1,0.25,0][-1.50537,-0.91973,0.815857][-0.995016,-0.00103225,0.0997144][0.857143,0.25,0][-1.65107,-1.33223,0.95864][-0.986944,0.122508,0.104566][0.857143,0.125,0][-1.65952,-0.774171,-1.38146][0.00418769,0.122968,-2.88612][0,0.25,0][-1.6325,-0.876319,-1.10033][-0.939896,-0.0785564,0.332302][0.142857,0.25,0][-1.59149,-0.463819,-0.934875][-0.974976,0.131896,0.178957][0.142857,0.375,0][-1.59149,-0.463819,-0.934875][-0.974976,0.131896,0.178957][0.142857,0.375,0][-1.41605,-0.361671,-1.37654][-0.0283857,0.508901,-2.93168][0,0.375,0][-1.65952,-0.774171,-1.38146][0.00418769,0.122968,-2.88612][0,0.25,0][-1.6325,-0.876319,-1.10033][-0.939896,-0.0785564,0.332302][0.142857,0.25,0][-1.32979,-0.863461,-0.608284][-0.993567,-0.036437,0.107223][0.285714,0.25,0][-1.32787,-0.450962,-0.61975][-0.983466,-0.117942,0.137418][0.285714,0.375,0][-1.32787,-0.450962,-0.61975][-0.983466,-0.117942,0.137418][0.285714,0.375,0][-1.59149,-0.463819,-0.934875][-0.974976,0.131896,0.178957][0.142857,0.375,0][-1.6325,-0.876319,-1.10033][-0.939896,-0.0785564,0.332302][0.142857,0.25,0][-1.32979,-0.863461,-0.608284][-0.993567,-0.036437,0.107223][0.285714,0.25,0][-1.45216,-0.868614,-0.224321][-0.994752,0.00736987,-0.102051][0.428571,0.25,0][-1.51751,-0.456114,-0.219394][-0.991245,-0.131853,-0.00698345][0.428571,0.375,0][-1.51751,-0.456114,-0.219394][-0.991245,-0.131853,-0.00698345][0.428571,0.375,0][-1.32787,-0.450962,-0.61975][-0.983466,-0.117942,0.137418][0.285714,0.375,0][-1.32979,-0.863461,-0.608284][-0.993567,-0.036437,0.107223][0.285714,0.25,0][-1.45216,-0.868614,-0.224321][-0.994752,0.00736987,-0.102051][0.428571,0.25,0][-1.49376,-0.942941,0.206341][-0.997314,-0.0221986,-0.0698009][0.571429,0.25,0][-1.35133,-0.530441,0.115254][-0.999498,0.0163566,-0.0271364][0.571429,0.375,0][-1.35133,-0.530441,0.115254][-0.999498,0.0163566,-0.0271364][0.571429,0.375,0][-1.51751,-0.456114,-0.219394][-0.991245,-0.131853,-0.00698345][0.428571,0.375,0][-1.45216,-0.868614,-0.224321][-0.994752,0.00736987,-0.102051][0.428571,0.25,0][-1.49376,-0.942941,0.206341][-0.997314,-0.0221986,-0.0698009][0.571429,0.25,0][-1.49776,-0.870133,0.547108][-0.982729,-0.0189825,-0.184076][0.714286,0.25,0][-1.52149,-0.457633,0.552034][-0.931881,0.0655049,-0.356801][0.714286,0.375,0][-1.52149,-0.457633,0.552034][-0.931881,0.0655049,-0.356801][0.714286,0.375,0][-1.35133,-0.530441,0.115254][-0.999498,0.0163566,-0.0271364][0.571429,0.375,0][-1.49376,-0.942941,0.206341][-0.997314,-0.0221986,-0.0698009][0.571429,0.25,0][-1.49776,-0.870133,0.547108][-0.982729,-0.0189825,-0.184076][0.714286,0.25,0][-1.50537,-0.91973,0.815857][-0.995016,-0.00103225,0.0997144][0.857143,0.25,0][-1.72711,-0.50723,1.03029][-0.952002,-0.264174,0.154609][0.857143,0.375,0][-1.72711,-0.50723,1.03029][-0.952002,-0.264174,0.154609][0.857143,0.375,0][-1.52149,-0.457633,0.552034][-0.931881,0.0655049,-0.356801][0.714286,0.375,0][-1.49776,-0.870133,0.547108][-0.982729,-0.0189825,-0.184076][0.714286,0.25,0][-1.50537,-0.91973,0.815857][-0.995016,-0.00103225,0.0997144][0.857143,0.25,0][-1.49754,-0.85068,1.31854][-2.68187,0.104088,0.616356][1,0.25,0][-1.48975,-0.43818,1.32346][-2.27615,-0.811934,1.24203][1,0.375,0][-1.48975,-0.43818,1.32346][-2.27615,-0.811934,1.24203][1,0.375,0][-1.72711,-0.50723,1.03029][-0.952002,-0.264174,0.154609][0.857143,0.375,0][-1.50537,-0.91973,0.815857][-0.995016,-0.00103225,0.0997144][0.857143,0.25,0][-1.41605,-0.361671,-1.37654][-0.0283857,0.508901,-2.93168][0,0.375,0][-1.59149,-0.463819,-0.934875][-0.974976,0.131896,0.178957][0.142857,0.375,0][-1.47097,-0.0513188,-0.893565][-0.996914,0.0708436,0.0338154][0.142857,0.5,0][-1.47097,-0.0513188,-0.893565][-0.996914,0.0708436,0.0338154][0.142857,0.5,0][-1.48451,0.0508286,-1.24807][-0.200255,0.209172,-2.87459][0,0.5,0][-1.41605,-0.361671,-1.37654][-0.0283857,0.508901,-2.93168][0,0.375,0][-1.59149,-0.463819,-0.934875][-0.974976,0.131896,0.178957][0.142857,0.375,0][-1.32787,-0.450962,-0.61975][-0.983466,-0.117942,0.137418][0.285714,0.375,0][-1.44129,-0.0384614,-0.599306][-0.999665,-0.00848001,-0.0244585][0.285714,0.5,0][-1.44129,-0.0384614,-0.599306][-0.999665,-0.00848001,-0.0244585][0.285714,0.5,0][-1.47097,-0.0513188,-0.893565][-0.996914,0.0708436,0.0338154][0.142857,0.5,0][-1.59149,-0.463819,-0.934875][-0.974976,0.131896,0.178957][0.142857,0.375,0][-1.32787,-0.450962,-0.61975][-0.983466,-0.117942,0.137418][0.285714,0.375,0][-1.51751,-0.456114,-0.219394][-0.991245,-0.131853,-0.00698345][0.428571,0.375,0][-1.55919,-0.043614,-0.0909235][-0.995092,-0.0940376,0.0308158][0.428571,0.5,0][-1.55919,-0.043614,-0.0909235][-0.995092,-0.0940376,0.0308158][0.428571,0.5,0][-1.44129,-0.0384614,-0.599306][-0.999665,-0.00848001,-0.0244585][0.285714,0.5,0][-1.32787,-0.450962,-0.61975][-0.983466,-0.117942,0.137418][0.285714,0.375,0][-1.51751,-0.456114,-0.219394][-0.991245,-0.131853,-0.00698345][0.428571,0.375,0][-1.35133,-0.530441,0.115254][-0.999498,0.0163566,-0.0271364][0.571429,0.375,0][-1.43555,-0.117941,0.214554][-0.988341,-0.109625,0.105666][0.571429,0.5,0][-1.43555,-0.117941,0.214554][-0.988341,-0.109625,0.105666][0.571429,0.5,0][-1.55919,-0.043614,-0.0909235][-0.995092,-0.0940376,0.0308158][0.428571,0.5,0][-1.51751,-0.456114,-0.219394][-0.991245,-0.131853,-0.00698345][0.428571,0.375,0][-1.35133,-0.530441,0.115254][-0.999498,0.0163566,-0.0271364][0.571429,0.375,0][-1.52149,-0.457633,0.552034][-0.931881,0.0655049,-0.356801][0.714286,0.375,0][-1.51516,-0.0451334,0.680505][-0.918916,0.00109208,-0.394452][0.714286,0.5,0][-1.51516,-0.0451334,0.680505][-0.918916,0.00109208,-0.394452][0.714286,0.5,0][-1.43555,-0.117941,0.214554][-0.988341,-0.109625,0.105666][0.571429,0.5,0][-1.35133,-0.530441,0.115254][-0.999498,0.0163566,-0.0271364][0.571429,0.375,0][-1.52149,-0.457633,0.552034][-0.931881,0.0655049,-0.356801][0.714286,0.375,0][-1.72711,-0.50723,1.03029][-0.952002,-0.264174,0.154609][0.857143,0.375,0][-1.7393,-0.0947299,1.01221][-0.99815,0.0496233,-0.0351382][0.857143,0.5,0][-1.7393,-0.0947299,1.01221][-0.99815,0.0496233,-0.0351382][0.857143,0.5,0][-1.51516,-0.0451334,0.680505][-0.918916,0.00109208,-0.394452][0.714286,0.5,0][-1.52149,-0.457633,0.552034][-0.931881,0.0655049,-0.356801][0.714286,0.375,0][-1.72711,-0.50723,1.03029][-0.952002,-0.264174,0.154609][0.857143,0.375,0][-1.48975,-0.43818,1.32346][-2.27615,-0.811934,1.24203][1,0.375,0][-1.50761,-0.0256803,1.45193][-2.49981,-0.175617,1.56887][1,0.5,0][-1.50761,-0.0256803,1.45193][-2.49981,-0.175617,1.56887][1,0.5,0][-1.7393,-0.0947299,1.01221][-0.99815,0.0496233,-0.0351382][0.857143,0.5,0][-1.72711,-0.50723,1.03029][-0.952002,-0.264174,0.154609][0.857143,0.375,0][-1.48451,0.0508286,-1.24807][-0.200255,0.209172,-2.87459][0,0.5,0][-1.47097,-0.0513188,-0.893565][-0.996914,0.0708436,0.0338154][0.142857,0.5,0][-1.51403,0.361181,-0.981031][-0.978459,-0.0851542,0.188062][0.142857,0.625,0][-1.51403,0.361181,-0.981031][-0.978459,-0.0851542,0.188062][0.142857,0.625,0][-1.5227,0.463329,-1.36098][-0.00604995,-0.30198,-2.9339][0,0.625,0][-1.48451,0.0508286,-1.24807][-0.200255,0.209172,-2.87459][0,0.5,0][-1.47097,-0.0513188,-0.893565][-0.996914,0.0708436,0.0338154][0.142857,0.5,0][-1.44129,-0.0384614,-0.599306][-0.999665,-0.00848001,-0.0244585][0.285714,0.5,0][-1.37957,0.374038,-0.569401][-0.977401,0.124027,-0.171187][0.285714,0.625,0][-1.37957,0.374038,-0.569401][-0.977401,0.124027,-0.171187][0.285714,0.625,0][-1.51403,0.361181,-0.981031][-0.978459,-0.0851542,0.188062][0.142857,0.625,0][-1.47097,-0.0513188,-0.893565][-0.996914,0.0708436,0.0338154][0.142857,0.5,0][-1.44129,-0.0384614,-0.599306][-0.999665,-0.00848001,-0.0244585][0.285714,0.5,0][-1.55919,-0.043614,-0.0909235][-0.995092,-0.0940376,0.0308158][0.428571,0.5,0][-1.59224,0.368886,-0.203841][-0.999416,0.0336288,-0.00614482][0.428571,0.625,0][-1.59224,0.368886,-0.203841][-0.999416,0.0336288,-0.00614482][0.428571,0.625,0][-1.37957,0.374038,-0.569401][-0.977401,0.124027,-0.171187][0.285714,0.625,0][-1.44129,-0.0384614,-0.599306][-0.999665,-0.00848001,-0.0244585][0.285714,0.5,0][-1.55919,-0.043614,-0.0909235][-0.995092,-0.0940376,0.0308158][0.428571,0.5,0][-1.43555,-0.117941,0.214554][-0.988341,-0.109625,0.105666][0.571429,0.5,0][-1.43613,0.294559,0.22247][-0.994439,0.0771514,0.0716909][0.571429,0.625,0][-1.43613,0.294559,0.22247][-0.994439,0.0771514,0.0716909][0.571429,0.625,0][-1.59224,0.368886,-0.203841][-0.999416,0.0336288,-0.00614482][0.428571,0.625,0][-1.55919,-0.043614,-0.0909235][-0.995092,-0.0940376,0.0308158][0.428571,0.5,0][-1.43555,-0.117941,0.214554][-0.988341,-0.109625,0.105666][0.571429,0.5,0][-1.51516,-0.0451334,0.680505][-0.918916,0.00109208,-0.394452][0.714286,0.5,0][-1.49215,0.367367,0.567588][-0.91761,-0.0241212,-0.396749][0.714286,0.625,0][-1.49215,0.367367,0.567588][-0.91761,-0.0241212,-0.396749][0.714286,0.625,0][-1.43613,0.294559,0.22247][-0.994439,0.0771514,0.0716909][0.571429,0.625,0][-1.43555,-0.117941,0.214554][-0.988341,-0.109625,0.105666][0.571429,0.5,0][-1.51516,-0.0451334,0.680505][-0.918916,0.00109208,-0.394452][0.714286,0.5,0][-1.7393,-0.0947299,1.01221][-0.99815,0.0496233,-0.0351382][0.857143,0.5,0][-1.71503,0.31777,0.938923][-0.991667,-0.100989,-0.0799828][0.857143,0.625,0][-1.71503,0.31777,0.938923][-0.991667,-0.100989,-0.0799828][0.857143,0.625,0][-1.49215,0.367367,0.567588][-0.91761,-0.0241212,-0.396749][0.714286,0.625,0][-1.51516,-0.0451334,0.680505][-0.918916,0.00109208,-0.394452][0.714286,0.5,0][-1.7393,-0.0947299,1.01221][-0.99815,0.0496233,-0.0351382][0.857143,0.5,0][-1.50761,-0.0256803,1.45193][-2.49981,-0.175617,1.56887][1,0.5,0][-1.53687,0.38682,1.33902][-2.69101,0.0177812,1.26856][1,0.625,0][-1.53687,0.38682,1.33902][-2.69101,0.0177812,1.26856][1,0.625,0][-1.71503,0.31777,0.938923][-0.991667,-0.100989,-0.0799828][0.857143,0.625,0][-1.7393,-0.0947299,1.01221][-0.99815,0.0496233,-0.0351382][0.857143,0.5,0][-1.5227,0.463329,-1.36098][-0.00604995,-0.30198,-2.9339][0,0.625,0][-1.51403,0.361181,-0.981031][-0.978459,-0.0851542,0.188062][0.142857,0.625,0][-1.62044,0.773681,-1.03323][-0.996027,0.0602473,0.0655806][0.142857,0.75,0][-1.62044,0.773681,-1.03323][-0.996027,0.0602473,0.0655806][0.142857,0.75,0][-1.40858,0.875829,-1.33283][0.929807,0.412773,-2.77375][0,0.75,0][-1.5227,0.463329,-1.36098][-0.00604995,-0.30198,-2.9339][0,0.625,0][-1.51403,0.361181,-0.981031][-0.978459,-0.0851542,0.188062][0.142857,0.625,0][-1.37957,0.374038,-0.569401][-0.977401,0.124027,-0.171187][0.285714,0.625,0][-1.29906,0.786538,-0.508459][-0.998324,0.0240114,-0.0526599][0.285714,0.75,0][-1.29906,0.786538,-0.508459][-0.998324,0.0240114,-0.0526599][0.285714,0.75,0][-1.62044,0.773681,-1.03323][-0.996027,0.0602473,0.0655806][0.142857,0.75,0][-1.51403,0.361181,-0.981031][-0.978459,-0.0851542,0.188062][0.142857,0.625,0][-1.37957,0.374038,-0.569401][-0.977401,0.124027,-0.171187][0.285714,0.625,0][-1.59224,0.368886,-0.203841][-0.999416,0.0336288,-0.00614482][0.428571,0.625,0][-1.59518,0.781386,-0.175687][-0.989812,0.128965,-0.0603275][0.428571,0.75,0][-1.59518,0.781386,-0.175687][-0.989812,0.128965,-0.0603275][0.428571,0.75,0][-1.29906,0.786538,-0.508459][-0.998324,0.0240114,-0.0526599][0.285714,0.75,0][-1.37957,0.374038,-0.569401][-0.977401,0.124027,-0.171187][0.285714,0.625,0][-1.59224,0.368886,-0.203841][-0.999416,0.0336288,-0.00614482][0.428571,0.625,0][-1.43613,0.294559,0.22247][-0.994439,0.0771514,0.0716909][0.571429,0.625,0][-1.35659,0.707059,0.255237][-0.997516,0.0654562,0.0260376][0.571429,0.75,0][-1.35659,0.707059,0.255237][-0.997516,0.0654562,0.0260376][0.571429,0.75,0][-1.59518,0.781386,-0.175687][-0.989812,0.128965,-0.0603275][0.428571,0.75,0][-1.59224,0.368886,-0.203841][-0.999416,0.0336288,-0.00614482][0.428571,0.625,0][-1.43613,0.294559,0.22247][-0.994439,0.0771514,0.0716909][0.571429,0.625,0][-1.49215,0.367367,0.567588][-0.91761,-0.0241212,-0.396749][0.714286,0.625,0][-1.46587,0.779867,0.595741][-0.881389,0.0381998,-0.470844][0.714286,0.75,0][-1.46587,0.779867,0.595741][-0.881389,0.0381998,-0.470844][0.714286,0.75,0][-1.35659,0.707059,0.255237][-0.997516,0.0654562,0.0260376][0.571429,0.75,0][-1.43613,0.294559,0.22247][-0.994439,0.0771514,0.0716909][0.571429,0.625,0][-1.49215,0.367367,0.567588][-0.91761,-0.0241212,-0.396749][0.714286,0.625,0][-1.71503,0.31777,0.938923][-0.991667,-0.100989,-0.0799828][0.857143,0.625,0][-1.79082,0.73027,0.883648][-0.985227,0.00367351,-0.171214][0.857143,0.75,0][-1.79082,0.73027,0.883648][-0.985227,0.00367351,-0.171214][0.857143,0.75,0][-1.46587,0.779867,0.595741][-0.881389,0.0381998,-0.470844][0.714286,0.75,0][-1.49215,0.367367,0.567588][-0.91761,-0.0241212,-0.396749][0.714286,0.625,0][-1.71503,0.31777,0.938923][-0.991667,-0.100989,-0.0799828][0.857143,0.625,0][-1.53687,0.38682,1.33902][-2.69101,0.0177812,1.26856][1,0.625,0][-1.60082,0.79932,1.36717][-2.73957,-0.263823,1.16575][1,0.75,0][-1.60082,0.79932,1.36717][-2.73957,-0.263823,1.16575][1,0.75,0][-1.79082,0.73027,0.883648][-0.985227,0.00367351,-0.171214][0.857143,0.75,0][-1.71503,0.31777,0.938923][-0.991667,-0.100989,-0.0799828][0.857143,0.625,0][-1.40858,0.875829,-1.33283][0.929807,0.412773,-2.77375][0,0.75,0][-1.62044,0.773681,-1.03323][-0.996027,0.0602473,0.0655806][0.142857,0.75,0][-1.49356,1.18618,-0.903643][-0.971719,0.229901,0.0539278][0.142857,0.875,0][-1.49356,1.18618,-0.903643][-0.971719,0.229901,0.0539278][0.142857,0.875,0][-1.43769,1.28833,-1.27361][0.473731,-0.223592,-2.85892][0,0.875,0][-1.40858,0.875829,-1.33283][0.929807,0.412773,-2.77375][0,0.75,0][-1.62044,0.773681,-1.03323][-0.996027,0.0602473,0.0655806][0.142857,0.75,0][-1.29906,0.786538,-0.508459][-0.998324,0.0240114,-0.0526599][0.285714,0.75,0][-1.37858,1.19904,-0.537899][-0.998707,0.0475612,-0.0179254][0.285714,0.875,0][-1.37858,1.19904,-0.537899][-0.998707,0.0475612,-0.0179254][0.285714,0.875,0][-1.49356,1.18618,-0.903643][-0.971719,0.229901,0.0539278][0.142857,0.875,0][-1.62044,0.773681,-1.03323][-0.996027,0.0602473,0.0655806][0.142857,0.75,0][-1.29906,0.786538,-0.508459][-0.998324,0.0240114,-0.0526599][0.285714,0.75,0][-1.59518,0.781386,-0.175687][-0.989812,0.128965,-0.0603275][0.428571,0.75,0][-1.52178,1.19389,-0.116472][-0.998772,0.0174811,0.0463647][0.428571,0.875,0][-1.52178,1.19389,-0.116472][-0.998772,0.0174811,0.0463647][0.428571,0.875,0][-1.37858,1.19904,-0.537899][-0.998707,0.0475612,-0.0179254][0.285714,0.875,0][-1.29906,0.786538,-0.508459][-0.998324,0.0240114,-0.0526599][0.285714,0.75,0][-1.59518,0.781386,-0.175687][-0.989812,0.128965,-0.0603275][0.428571,0.75,0][-1.35659,0.707059,0.255237][-0.997516,0.0654562,0.0260376][0.571429,0.75,0][-1.29362,1.11956,0.269942][-0.999921,0.00493307,-0.0115955][0.571429,0.875,0][-1.29362,1.11956,0.269942][-0.999921,0.00493307,-0.0115955][0.571429,0.875,0][-1.52178,1.19389,-0.116472][-0.998772,0.0174811,0.0463647][0.428571,0.875,0][-1.59518,0.781386,-0.175687][-0.989812,0.128965,-0.0603275][0.428571,0.75,0][-1.35659,0.707059,0.255237][-0.997516,0.0654562,0.0260376][0.571429,0.75,0][-1.46587,0.779867,0.595741][-0.881389,0.0381998,-0.470844][0.714286,0.75,0][-1.57859,1.19237,0.654957][-0.884227,-0.0607727,-0.463087][0.714286,0.875,0][-1.57859,1.19237,0.654957][-0.884227,-0.0607727,-0.463087][0.714286,0.875,0][-1.29362,1.11956,0.269942][-0.999921,0.00493307,-0.0115955][0.571429,0.875,0][-1.35659,0.707059,0.255237][-0.997516,0.0654562,0.0260376][0.571429,0.75,0][-1.46587,0.779867,0.595741][-0.881389,0.0381998,-0.470844][0.714286,0.75,0][-1.79082,0.73027,0.883648][-0.985227,0.00367351,-0.171214][0.857143,0.75,0][-1.74817,1.14277,0.980534][-0.986957,0.134384,-0.0886373][0.857143,0.875,0][-1.74817,1.14277,0.980534][-0.986957,0.134384,-0.0886373][0.857143,0.875,0][-1.57859,1.19237,0.654957][-0.884227,-0.0607727,-0.463087][0.714286,0.875,0][-1.46587,0.779867,0.595741][-0.881389,0.0381998,-0.470844][0.714286,0.75,0][-1.79082,0.73027,0.883648][-0.985227,0.00367351,-0.171214][0.857143,0.75,0][-1.60082,0.79932,1.36717][-2.73957,-0.263823,1.16575][1,0.75,0][-1.56835,1.21182,1.42639][-2.73324,0.418046,1.0282][1,0.875,0][-1.56835,1.21182,1.42639][-2.73324,0.418046,1.0282][1,0.875,0][-1.74817,1.14277,0.980534][-0.986957,0.134384,-0.0886373][0.857143,0.875,0][-1.79082,0.73027,0.883648][-0.985227,0.00367351,-0.171214][0.857143,0.75,0][-1.43769,1.28833,-1.27361][0.473731,-0.223592,-2.85892][0,0.875,0][-1.49356,1.18618,-0.903643][-0.971719,0.229901,0.0539278][0.142857,0.875,0][-1.44323,1.59868,-1.04481][0.164754,2.88857,0.302624][0.142857,1,0][-1.44323,1.59868,-1.04481][0.164754,2.88857,0.302624][0.142857,1,0][-1.41467,1.70083,-1.36114][0.314986,0.894494,0.317277][0,1,0][-1.43769,1.28833,-1.27361][0.473731,-0.223592,-2.85892][0,0.875,0][-1.49356,1.18618,-0.903643][-0.971719,0.229901,0.0539278][0.142857,0.875,0][-1.37858,1.19904,-0.537899][-0.998707,0.0475612,-0.0179254][0.285714,0.875,0][-1.23537,1.61154,-0.692617][-0.398113,2.96628,-0.115282][0.285714,1,0][-1.23537,1.61154,-0.692617][-0.398113,2.96628,-0.115282][0.285714,1,0][-1.44323,1.59868,-1.04481][0.164754,2.88857,0.302624][0.142857,1,0][-1.49356,1.18618,-0.903643][-0.971719,0.229901,0.0539278][0.142857,0.875,0][-1.37858,1.19904,-0.537899][-0.998707,0.0475612,-0.0179254][0.285714,0.875,0][-1.52178,1.19389,-0.116472][-0.998772,0.0174811,0.0463647][0.428571,0.875,0][-1.54143,1.60639,-0.204][-0.421004,2.90899,-0.0544358][0.428571,1,0][-1.54143,1.60639,-0.204][-0.421004,2.90899,-0.0544358][0.428571,1,0][-1.23537,1.61154,-0.692617][-0.398113,2.96628,-0.115282][0.285714,1,0][-1.37858,1.19904,-0.537899][-0.998707,0.0475612,-0.0179254][0.285714,0.875,0][-1.52178,1.19389,-0.116472][-0.998772,0.0174811,0.0463647][0.428571,0.875,0][-1.29362,1.11956,0.269942][-0.999921,0.00493307,-0.0115955][0.571429,0.875,0][-1.35149,1.53206,0.140048][-0.635304,2.81644,0.0712694][0.571429,1,0][-1.35149,1.53206,0.140048][-0.635304,2.81644,0.0712694][0.571429,1,0][-1.54143,1.60639,-0.204][-0.421004,2.90899,-0.0544358][0.428571,1,0][-1.52178,1.19389,-0.116472][-0.998772,0.0174811,0.0463647][0.428571,0.875,0][-1.29362,1.11956,0.269942][-0.999921,0.00493307,-0.0115955][0.571429,0.875,0][-1.57859,1.19237,0.654957][-0.884227,-0.0607727,-0.463087][0.714286,0.875,0][-1.56632,1.60487,0.567428][-0.14469,2.85067,0.0556274][0.714286,1,0][-1.56632,1.60487,0.567428][-0.14469,2.85067,0.0556274][0.714286,1,0][-1.35149,1.53206,0.140048][-0.635304,2.81644,0.0712694][0.571429,1,0][-1.29362,1.11956,0.269942][-0.999921,0.00493307,-0.0115955][0.571429,0.875,0][-1.57859,1.19237,0.654957][-0.884227,-0.0607727,-0.463087][0.714286,0.875,0][-1.74817,1.14277,0.980534][-0.986957,0.134384,-0.0886373][0.857143,0.875,0][-1.6972,1.55527,0.914096][0.546907,2.81112,0.269092][0.857143,1,0][-1.6972,1.55527,0.914096][0.546907,2.81112,0.269092][0.857143,1,0][-1.56632,1.60487,0.567428][-0.14469,2.85067,0.0556274][0.714286,1,0][-1.57859,1.19237,0.654957][-0.884227,-0.0607727,-0.463087][0.714286,0.875,0][-1.74817,1.14277,0.980534][-0.986957,0.134384,-0.0886373][0.857143,0.875,0][-1.56835,1.21182,1.42639][-2.73324,0.418046,1.0282][1,0.875,0][-1.41425,1.62432,1.33886][-0.099167,1.84109,-0.61895][1,1,0][-1.41425,1.62432,1.33886][-0.099167,1.84109,-0.61895][1,1,0][-1.6972,1.55527,0.914096][0.546907,2.81112,0.269092][0.857143,1,0][-1.74817,1.14277,0.980534][-0.986957,0.134384,-0.0886373][0.857143,0.875,0][-1.57302,-1.67568,1.37773][0.805443,-1.82295,0.0308321][0,0,0][-0.986825,-1.36465,1.30981][-0.988153,-1.30215,1.34076][0.125,0,0][-1.05675,-1.20218,1.33561][-0.153442,0.0722313,0.985514][0.125,0.125,0][-1.05675,-1.20218,1.33561][-0.153442,0.0722313,0.985514][0.125,0.125,0][-1.4355,-1.26318,1.2354][-2.40005,0.264822,1.53312][0,0.125,0][-1.57302,-1.67568,1.37773][0.805443,-1.82295,0.0308321][0,0,0][-0.986825,-1.36465,1.30981][-0.988153,-1.30215,1.34076][0.125,0,0][-0.815516,-1.75312,1.35091][0.287513,-1.78927,-0.102337][0.25,0,0][-0.677999,-1.34062,1.39076][-0.120357,-0.0217178,0.992493][0.25,0.125,0][-0.677999,-1.34062,1.39076][-0.120357,-0.0217178,0.992493][0.25,0.125,0][-1.05675,-1.20218,1.33561][-0.153442,0.0722313,0.985514][0.125,0.125,0][-0.986825,-1.36465,1.30981][-0.988153,-1.30215,1.34076][0.125,0,0][-0.815516,-1.75312,1.35091][0.287513,-1.78927,-0.102337][0.25,0,0][-0.229325,-1.39006,1.3654][-0.544839,-1.9617,0.671864][0.375,0,0][-0.299249,-1.2276,1.39562][0.163754,-0.010059,0.98645][0.375,0.125,0][-0.299249,-1.2276,1.39562][0.163754,-0.010059,0.98645][0.375,0.125,0][-0.677999,-1.34062,1.39076][-0.120357,-0.0217178,0.992493][0.25,0.125,0][-0.815516,-1.75312,1.35091][0.287513,-1.78927,-0.102337][0.25,0,0][-0.229325,-1.39006,1.3654][-0.544839,-1.9617,0.671864][0.375,0,0][-0.0580164,-1.72968,1.33264][-0.211281,-2.10231,-0.497345][0.5,0,0][0.0795012,-1.31718,1.28681][0.189618,0.0442727,0.980859][0.5,0.125,0][0.0795012,-1.31718,1.28681][0.189618,0.0442727,0.980859][0.5,0.125,0][-0.299249,-1.2276,1.39562][0.163754,-0.010059,0.98645][0.375,0.125,0][-0.229325,-1.39006,1.3654][-0.544839,-1.9617,0.671864][0.375,0,0][-0.0580164,-1.72968,1.33264][-0.211281,-2.10231,-0.497345][0.5,0,0][0.528175,-1.54963,1.33143][-0.831132,-2.3374,0.247897][0.625,0,0][0.458251,-1.38716,1.23543][-0.138048,0.118607,0.983298][0.625,0.125,0][0.458251,-1.38716,1.23543][-0.138048,0.118607,0.983298][0.625,0.125,0][0.0795012,-1.31718,1.28681][0.189618,0.0442727,0.980859][0.5,0.125,0][-0.0580164,-1.72968,1.33264][-0.211281,-2.10231,-0.497345][0.5,0,0][0.528175,-1.54963,1.33143][-0.831132,-2.3374,0.247897][0.625,0,0][0.699484,-1.67292,1.30296][0.385468,-2.23186,-0.539658][0.75,0,0][0.837001,-1.26042,1.34077][-0.189083,-0.100017,0.976854][0.75,0.125,0][0.837001,-1.26042,1.34077][-0.189083,-0.100017,0.976854][0.75,0.125,0][0.458251,-1.38716,1.23543][-0.138048,0.118607,0.983298][0.625,0.125,0][0.528175,-1.54963,1.33143][-0.831132,-2.3374,0.247897][0.625,0,0][0.699484,-1.67292,1.30296][0.385468,-2.23186,-0.539658][0.75,0,0][1.29876,-1.54563,1.38113][-1.04756,-2.23706,-0.290321][0.875,0,0][1.21575,-1.39867,1.34534][-0.110096,-0.123694,0.986194][0.875,0.125,0][1.21575,-1.39867,1.34534][-0.110096,-0.123694,0.986194][0.875,0.125,0][0.837001,-1.26042,1.34077][-0.189083,-0.100017,0.976854][0.75,0.125,0][0.699484,-1.67292,1.30296][0.385468,-2.23186,-0.539658][0.75,0,0][1.29876,-1.54563,1.38113][-1.04756,-2.23706,-0.290321][0.875,0,0][1.45698,-1.69764,1.38444][-0.684889,-0.7093,0.166795][1,0,0][1.5945,-1.28514,1.4481][-0.645857,-0.118618,2.91032][1,0.125,0][1.5945,-1.28514,1.4481][-0.645857,-0.118618,2.91032][1,0.125,0][1.21575,-1.39867,1.34534][-0.110096,-0.123694,0.986194][0.875,0.125,0][1.29876,-1.54563,1.38113][-1.04756,-2.23706,-0.290321][0.875,0,0][-1.4355,-1.26318,1.2354][-2.40005,0.264822,1.53312][0,0.125,0][-1.05675,-1.20218,1.33561][-0.153442,0.0722313,0.985514][0.125,0.125,0][-1.11879,-0.789682,1.26669][-0.0286385,-0.00341075,0.999584][0.125,0.25,0][-1.11879,-0.789682,1.26669][-0.0286385,-0.00341075,0.999584][0.125,0.25,0][-1.49754,-0.85068,1.31854][-2.68187,0.104088,0.616356][0,0.25,0][-1.4355,-1.26318,1.2354][-2.40005,0.264822,1.53312][0,0.125,0][-1.05675,-1.20218,1.33561][-0.153442,0.0722313,0.985514][0.125,0.125,0][-0.677999,-1.34062,1.39076][-0.120357,-0.0217178,0.992493][0.25,0.125,0][-0.740044,-0.92812,1.34393][-0.14328,0.122036,0.982129][0.25,0.25,0][-0.740044,-0.92812,1.34393][-0.14328,0.122036,0.982129][0.25,0.25,0][-1.11879,-0.789682,1.26669][-0.0286385,-0.00341075,0.999584][0.125,0.25,0][-1.05675,-1.20218,1.33561][-0.153442,0.0722313,0.985514][0.125,0.125,0][-0.677999,-1.34062,1.39076][-0.120357,-0.0217178,0.992493][0.25,0.125,0][-0.299249,-1.2276,1.39562][0.163754,-0.010059,0.98645][0.375,0.125,0][-0.361294,-0.815096,1.37784][0.0787384,0.0332376,0.996341][0.375,0.25,0][-0.361294,-0.815096,1.37784][0.0787384,0.0332376,0.996341][0.375,0.25,0][-0.740044,-0.92812,1.34393][-0.14328,0.122036,0.982129][0.25,0.25,0][-0.677999,-1.34062,1.39076][-0.120357,-0.0217178,0.992493][0.25,0.125,0][-0.299249,-1.2276,1.39562][0.163754,-0.010059,0.98645][0.375,0.125,0][0.0795012,-1.31718,1.28681][0.189618,0.0442727,0.980859][0.5,0.125,0][0.0174561,-0.904676,1.24911][0.197853,-0.00358058,0.980225][0.5,0.25,0][0.0174561,-0.904676,1.24911][0.197853,-0.00358058,0.980225][0.5,0.25,0][-0.361294,-0.815096,1.37784][0.0787384,0.0332376,0.996341][0.375,0.25,0][-0.299249,-1.2276,1.39562][0.163754,-0.010059,0.98645][0.375,0.125,0][0.0795012,-1.31718,1.28681][0.189618,0.0442727,0.980859][0.5,0.125,0][0.458251,-1.38716,1.23543][-0.138048,0.118607,0.983298][0.625,0.125,0][0.396206,-0.974659,1.23875][-0.136895,0.0291996,0.990155][0.625,0.25,0][0.396206,-0.974659,1.23875][-0.136895,0.0291996,0.990155][0.625,0.25,0][0.0174561,-0.904676,1.24911][0.197853,-0.00358058,0.980225][0.5,0.25,0][0.0795012,-1.31718,1.28681][0.189618,0.0442727,0.980859][0.5,0.125,0][0.458251,-1.38716,1.23543][-0.138048,0.118607,0.983298][0.625,0.125,0][0.837001,-1.26042,1.34077][-0.189083,-0.100017,0.976854][0.75,0.125,0][0.774956,-0.847921,1.39081][-0.200689,0.0799731,0.976385][0.75,0.25,0][0.774956,-0.847921,1.39081][-0.200689,0.0799731,0.976385][0.75,0.25,0][0.396206,-0.974659,1.23875][-0.136895,0.0291996,0.990155][0.625,0.25,0][0.458251,-1.38716,1.23543][-0.138048,0.118607,0.983298][0.625,0.125,0][0.837001,-1.26042,1.34077][-0.189083,-0.100017,0.976854][0.75,0.125,0][1.21575,-1.39867,1.34534][-0.110096,-0.123694,0.986194][0.875,0.125,0][1.15371,-0.986173,1.52648][-0.13876,0.0763904,0.987375][0.875,0.25,0][1.15371,-0.986173,1.52648][-0.13876,0.0763904,0.987375][0.875,0.25,0][0.774956,-0.847921,1.39081][-0.200689,0.0799731,0.976385][0.75,0.25,0][0.837001,-1.26042,1.34077][-0.189083,-0.100017,0.976854][0.75,0.125,0][1.21575,-1.39867,1.34534][-0.110096,-0.123694,0.986194][0.875,0.125,0][1.5945,-1.28514,1.4481][-0.645857,-0.118618,2.91032][1,0.125,0][1.53246,-0.872637,1.468][0.0907872,-0.214981,2.83895][1,0.25,0][1.53246,-0.872637,1.468][0.0907872,-0.214981,2.83895][1,0.25,0][1.15371,-0.986173,1.52648][-0.13876,0.0763904,0.987375][0.875,0.25,0][1.21575,-1.39867,1.34534][-0.110096,-0.123694,0.986194][0.875,0.125,0][-1.49754,-0.85068,1.31854][-2.68187,0.104088,0.616356][0,0.25,0][-1.11879,-0.789682,1.26669][-0.0286385,-0.00341075,0.999584][0.125,0.25,0][-1.111,-0.377182,1.32307][0.0344364,-0.162307,0.986139][0.125,0.375,0][-1.111,-0.377182,1.32307][0.0344364,-0.162307,0.986139][0.125,0.375,0][-1.48975,-0.43818,1.32346][-2.27615,-0.811934,1.24203][0,0.375,0][-1.49754,-0.85068,1.31854][-2.68187,0.104088,0.616356][0,0.25,0][-1.11879,-0.789682,1.26669][-0.0286385,-0.00341075,0.999584][0.125,0.25,0][-0.740044,-0.92812,1.34393][-0.14328,0.122036,0.982129][0.25,0.25,0][-0.732249,-0.51562,1.2754][-0.0696249,-0.104509,0.992084][0.25,0.375,0][-0.732249,-0.51562,1.2754][-0.0696249,-0.104509,0.992084][0.25,0.375,0][-1.111,-0.377182,1.32307][0.0344364,-0.162307,0.986139][0.125,0.375,0][-1.11879,-0.789682,1.26669][-0.0286385,-0.00341075,0.999584][0.125,0.25,0][-0.740044,-0.92812,1.34393][-0.14328,0.122036,0.982129][0.25,0.25,0][-0.361294,-0.815096,1.37784][0.0787384,0.0332376,0.996341][0.375,0.25,0][-0.353499,-0.402596,1.34932][-0.00619951,-0.0128221,0.999899][0.375,0.375,0][-0.353499,-0.402596,1.34932][-0.00619951,-0.0128221,0.999899][0.375,0.375,0][-0.732249,-0.51562,1.2754][-0.0696249,-0.104509,0.992084][0.25,0.375,0][-0.740044,-0.92812,1.34393][-0.14328,0.122036,0.982129][0.25,0.25,0][-0.361294,-0.815096,1.37784][0.0787384,0.0332376,0.996341][0.375,0.25,0][0.0174561,-0.904676,1.24911][0.197853,-0.00358058,0.980225][0.5,0.25,0][0.0252509,-0.492176,1.32006][0.109702,-0.0877525,0.990083][0.5,0.375,0][0.0252509,-0.492176,1.32006][0.109702,-0.0877525,0.990083][0.5,0.375,0][-0.353499,-0.402596,1.34932][-0.00619951,-0.0128221,0.999899][0.375,0.375,0][-0.361294,-0.815096,1.37784][0.0787384,0.0332376,0.996341][0.375,0.25,0][0.0174561,-0.904676,1.24911][0.197853,-0.00358058,0.980225][0.5,0.25,0][0.396206,-0.974659,1.23875][-0.136895,0.0291996,0.990155][0.625,0.25,0][0.404001,-0.562159,1.24023][0.00260184,-0.124859,0.992171][0.625,0.375,0][0.404001,-0.562159,1.24023][0.00260184,-0.124859,0.992171][0.625,0.375,0][0.0252509,-0.492176,1.32006][0.109702,-0.0877525,0.990083][0.5,0.375,0][0.0174561,-0.904676,1.24911][0.197853,-0.00358058,0.980225][0.5,0.25,0][0.396206,-0.974659,1.23875][-0.136895,0.0291996,0.990155][0.625,0.25,0][0.774956,-0.847921,1.39081][-0.200689,0.0799731,0.976385][0.75,0.25,0][0.782751,-0.435421,1.33774][-0.00257965,0.0481453,0.998837][0.75,0.375,0][0.782751,-0.435421,1.33774][-0.00257965,0.0481453,0.998837][0.75,0.375,0][0.404001,-0.562159,1.24023][0.00260184,-0.124859,0.992171][0.625,0.375,0][0.396206,-0.974659,1.23875][-0.136895,0.0291996,0.990155][0.625,0.25,0][0.774956,-0.847921,1.39081][-0.200689,0.0799731,0.976385][0.75,0.25,0][1.15371,-0.986173,1.52648][-0.13876,0.0763904,0.987375][0.875,0.25,0][1.1615,-0.573673,1.22724][-0.100913,0.239007,0.96576][0.875,0.375,0][1.1615,-0.573673,1.22724][-0.100913,0.239007,0.96576][0.875,0.375,0][0.782751,-0.435421,1.33774][-0.00257965,0.0481453,0.998837][0.75,0.375,0][0.774956,-0.847921,1.39081][-0.200689,0.0799731,0.976385][0.75,0.25,0][1.15371,-0.986173,1.52648][-0.13876,0.0763904,0.987375][0.875,0.25,0][1.53246,-0.872637,1.468][0.0907872,-0.214981,2.83895][1,0.25,0][1.54025,-0.460137,1.37137][-0.726162,0.827731,2.62082][1,0.375,0][1.54025,-0.460137,1.37137][-0.726162,0.827731,2.62082][1,0.375,0][1.1615,-0.573673,1.22724][-0.100913,0.239007,0.96576][0.875,0.375,0][1.15371,-0.986173,1.52648][-0.13876,0.0763904,0.987375][0.875,0.25,0][-1.48975,-0.43818,1.32346][-2.27615,-0.811934,1.24203][0,0.375,0][-1.111,-0.377182,1.32307][0.0344364,-0.162307,0.986139][0.125,0.375,0][-1.12886,0.035318,1.4039][0.0115011,-0.102557,0.994661][0.125,0.5,0][-1.12886,0.035318,1.4039][0.0115011,-0.102557,0.994661][0.125,0.5,0][-1.50761,-0.0256803,1.45193][-2.49981,-0.175617,1.56887][0,0.5,0][-1.48975,-0.43818,1.32346][-2.27615,-0.811934,1.24203][0,0.375,0][-1.111,-0.377182,1.32307][0.0344364,-0.162307,0.986139][0.125,0.375,0][-0.732249,-0.51562,1.2754][-0.0696249,-0.104509,0.992084][0.25,0.375,0][-0.750115,-0.10312,1.40397][0.0388718,-0.0805486,0.995992][0.25,0.5,0][-0.750115,-0.10312,1.40397][0.0388718,-0.0805486,0.995992][0.25,0.5,0][-1.12886,0.035318,1.4039][0.0115011,-0.102557,0.994661][0.125,0.5,0][-1.111,-0.377182,1.32307][0.0344364,-0.162307,0.986139][0.125,0.375,0][-0.732249,-0.51562,1.2754][-0.0696249,-0.104509,0.992084][0.25,0.375,0][-0.353499,-0.402596,1.34932][-0.00619951,-0.0128221,0.999899][0.375,0.375,0][-0.371365,0.00990355,1.43584][0.0383026,0.0543748,0.997786][0.375,0.5,0][-0.371365,0.00990355,1.43584][0.0383026,0.0543748,0.997786][0.375,0.5,0][-0.750115,-0.10312,1.40397][0.0388718,-0.0805486,0.995992][0.25,0.5,0][-0.732249,-0.51562,1.2754][-0.0696249,-0.104509,0.992084][0.25,0.375,0][-0.353499,-0.402596,1.34932][-0.00619951,-0.0128221,0.999899][0.375,0.375,0][0.0252509,-0.492176,1.32006][0.109702,-0.0877525,0.990083][0.5,0.375,0][0.00738543,-0.0796764,1.31331][0.0272874,-0.0129743,0.999543][0.5,0.5,0][0.00738543,-0.0796764,1.31331][0.0272874,-0.0129743,0.999543][0.5,0.5,0][-0.371365,0.00990355,1.43584][0.0383026,0.0543748,0.997786][0.375,0.5,0][-0.353499,-0.402596,1.34932][-0.00619951,-0.0128221,0.999899][0.375,0.375,0][0.0252509,-0.492176,1.32006][0.109702,-0.0877525,0.990083][0.5,0.375,0][0.404001,-0.562159,1.24023][0.00260184,-0.124859,0.992171][0.625,0.375,0][0.386135,-0.149659,1.36365][0.0497371,-0.0959006,0.994148][0.625,0.5,0][0.386135,-0.149659,1.36365][0.0497371,-0.0959006,0.994148][0.625,0.5,0][0.00738543,-0.0796764,1.31331][0.0272874,-0.0129743,0.999543][0.5,0.5,0][0.0252509,-0.492176,1.32006][0.109702,-0.0877525,0.990083][0.5,0.375,0][0.404001,-0.562159,1.24023][0.00260184,-0.124859,0.992171][0.625,0.375,0][0.782751,-0.435421,1.33774][-0.00257965,0.0481453,0.998837][0.75,0.375,0][0.764885,-0.0229207,1.33471][0.11615,-0.0316733,0.992727][0.75,0.5,0][0.764885,-0.0229207,1.33471][0.11615,-0.0316733,0.992727][0.75,0.5,0][0.386135,-0.149659,1.36365][0.0497371,-0.0959006,0.994148][0.625,0.5,0][0.404001,-0.562159,1.24023][0.00260184,-0.124859,0.992171][0.625,0.375,0][0.782751,-0.435421,1.33774][-0.00257965,0.0481453,0.998837][0.75,0.375,0][1.1615,-0.573673,1.22724][-0.100913,0.239007,0.96576][0.875,0.375,0][1.14364,-0.161173,1.22467][0.00278715,-0.0473233,0.998876][0.875,0.5,0][1.14364,-0.161173,1.22467][0.00278715,-0.0473233,0.998876][0.875,0.5,0][0.764885,-0.0229207,1.33471][0.11615,-0.0316733,0.992727][0.75,0.5,0][0.782751,-0.435421,1.33774][-0.00257965,0.0481453,0.998837][0.75,0.375,0][1.1615,-0.573673,1.22724][-0.100913,0.239007,0.96576][0.875,0.375,0][1.54025,-0.460137,1.37137][-0.726162,0.827731,2.62082][1,0.375,0][1.52239,-0.0476369,1.33387][-0.879748,-0.0889276,2.8478][1,0.5,0][1.52239,-0.0476369,1.33387][-0.879748,-0.0889276,2.8478][1,0.5,0][1.14364,-0.161173,1.22467][0.00278715,-0.0473233,0.998876][0.875,0.5,0][1.1615,-0.573673,1.22724][-0.100913,0.239007,0.96576][0.875,0.375,0][-1.50761,-0.0256803,1.45193][-2.49981,-0.175617,1.56887][0,0.5,0][-1.12886,0.035318,1.4039][0.0115011,-0.102557,0.994661][0.125,0.5,0][-1.15812,0.447818,1.373][-0.00597526,-0.0212092,0.999757][0.125,0.625,0][-1.15812,0.447818,1.373][-0.00597526,-0.0212092,0.999757][0.125,0.625,0][-1.53687,0.38682,1.33902][-2.69101,0.0177812,1.26856][0,0.625,0][-1.50761,-0.0256803,1.45193][-2.49981,-0.175617,1.56887][0,0.5,0][-1.12886,0.035318,1.4039][0.0115011,-0.102557,0.994661][0.125,0.5,0][-0.750115,-0.10312,1.40397][0.0388718,-0.0805486,0.995992][0.25,0.5,0][-0.779375,0.30938,1.43614][0.145188,0.0212422,0.989176][0.25,0.625,0][-0.779375,0.30938,1.43614][0.145188,0.0212422,0.989176][0.25,0.625,0][-1.15812,0.447818,1.373][-0.00597526,-0.0212092,0.999757][0.125,0.625,0][-1.12886,0.035318,1.4039][0.0115011,-0.102557,0.994661][0.125,0.5,0][-0.750115,-0.10312,1.40397][0.0388718,-0.0805486,0.995992][0.25,0.5,0][-0.371365,0.00990355,1.43584][0.0383026,0.0543748,0.997786][0.375,0.5,0][-0.400625,0.422404,1.21771][0.089293,0.0658675,0.993825][0.375,0.625,0][-0.400625,0.422404,1.21771][0.089293,0.0658675,0.993825][0.375,0.625,0][-0.779375,0.30938,1.43614][0.145188,0.0212422,0.989176][0.25,0.625,0][-0.750115,-0.10312,1.40397][0.0388718,-0.0805486,0.995992][0.25,0.5,0][-0.371365,0.00990355,1.43584][0.0383026,0.0543748,0.997786][0.375,0.5,0][0.00738543,-0.0796764,1.31331][0.0272874,-0.0129743,0.999543][0.5,0.5,0][-0.0218746,0.332824,1.28547][-0.0674867,0.08012,0.994498][0.5,0.625,0][-0.0218746,0.332824,1.28547][-0.0674867,0.08012,0.994498][0.5,0.625,0][-0.400625,0.422404,1.21771][0.089293,0.0658675,0.993825][0.375,0.625,0][-0.371365,0.00990355,1.43584][0.0383026,0.0543748,0.997786][0.375,0.5,0][0.00738543,-0.0796764,1.31331][0.0272874,-0.0129743,0.999543][0.5,0.5,0][0.386135,-0.149659,1.36365][0.0497371,-0.0959006,0.994148][0.625,0.5,0][0.356875,0.262841,1.38204][-0.0395781,0.0471109,0.998105][0.625,0.625,0][0.356875,0.262841,1.38204][-0.0395781,0.0471109,0.998105][0.625,0.625,0][-0.0218746,0.332824,1.28547][-0.0674867,0.08012,0.994498][0.5,0.625,0][0.00738543,-0.0796764,1.31331][0.0272874,-0.0129743,0.999543][0.5,0.5,0][0.386135,-0.149659,1.36365][0.0497371,-0.0959006,0.994148][0.625,0.5,0][0.764885,-0.0229207,1.33471][0.11615,-0.0316733,0.992727][0.75,0.5,0][0.735625,0.389579,1.31047][0.0901468,-0.00367852,0.995922][0.75,0.625,0][0.735625,0.389579,1.31047][0.0901468,-0.00367852,0.995922][0.75,0.625,0][0.356875,0.262841,1.38204][-0.0395781,0.0471109,0.998105][0.625,0.625,0][0.386135,-0.149659,1.36365][0.0497371,-0.0959006,0.994148][0.625,0.5,0][0.764885,-0.0229207,1.33471][0.11615,-0.0316733,0.992727][0.75,0.5,0][1.14364,-0.161173,1.22467][0.00278715,-0.0473233,0.998876][0.875,0.5,0][1.11438,0.251327,1.25701][0.0248763,-0.0182731,0.999524][0.875,0.625,0][1.11438,0.251327,1.25701][0.0248763,-0.0182731,0.999524][0.875,0.625,0][0.735625,0.389579,1.31047][0.0901468,-0.00367852,0.995922][0.75,0.625,0][0.764885,-0.0229207,1.33471][0.11615,-0.0316733,0.992727][0.75,0.5,0][1.14364,-0.161173,1.22467][0.00278715,-0.0473233,0.998876][0.875,0.5,0][1.52239,-0.0476369,1.33387][-0.879748,-0.0889276,2.8478][1,0.5,0][1.49313,0.364863,1.39163][-0.939147,0.063705,2.76998][1,0.625,0][1.49313,0.364863,1.39163][-0.939147,0.063705,2.76998][1,0.625,0][1.11438,0.251327,1.25701][0.0248763,-0.0182731,0.999524][0.875,0.625,0][1.14364,-0.161173,1.22467][0.00278715,-0.0473233,0.998876][0.875,0.5,0][-1.53687,0.38682,1.33902][-2.69101,0.0177812,1.26856][0,0.625,0][-1.15812,0.447818,1.373][-0.00597526,-0.0212092,0.999757][0.125,0.625,0][-1.22207,0.860318,1.52725][-0.0180609,-0.103232,0.994493][0.125,0.75,0][-1.22207,0.860318,1.52725][-0.0180609,-0.103232,0.994493][0.125,0.75,0][-1.60082,0.79932,1.36717][-2.73957,-0.263823,1.16575][0,0.75,0][-1.53687,0.38682,1.33902][-2.69101,0.0177812,1.26856][0,0.625,0][-1.15812,0.447818,1.373][-0.00597526,-0.0212092,0.999757][0.125,0.625,0][-0.779375,0.30938,1.43614][0.145188,0.0212422,0.989176][0.25,0.625,0][-0.843316,0.721879,1.37272][0.166997,-0.0667249,0.983697][0.25,0.75,0][-0.843316,0.721879,1.37272][0.166997,-0.0667249,0.983697][0.25,0.75,0][-1.22207,0.860318,1.52725][-0.0180609,-0.103232,0.994493][0.125,0.75,0][-1.15812,0.447818,1.373][-0.00597526,-0.0212092,0.999757][0.125,0.625,0][-0.779375,0.30938,1.43614][0.145188,0.0212422,0.989176][0.25,0.625,0][-0.400625,0.422404,1.21771][0.089293,0.0658675,0.993825][0.375,0.625,0][-0.464566,0.834904,1.32085][0.159041,-0.0303506,0.986805][0.375,0.75,0][-0.464566,0.834904,1.32085][0.159041,-0.0303506,0.986805][0.375,0.75,0][-0.843316,0.721879,1.37272][0.166997,-0.0667249,0.983697][0.25,0.75,0][-0.779375,0.30938,1.43614][0.145188,0.0212422,0.989176][0.25,0.625,0][-0.400625,0.422404,1.21771][0.089293,0.0658675,0.993825][0.375,0.625,0][-0.0218746,0.332824,1.28547][-0.0674867,0.08012,0.994498][0.5,0.625,0][-0.0858162,0.745324,1.33072][-0.0573512,-0.0137481,0.998259][0.5,0.75,0][-0.0858162,0.745324,1.33072][-0.0573512,-0.0137481,0.998259][0.5,0.75,0][-0.464566,0.834904,1.32085][0.159041,-0.0303506,0.986805][0.375,0.75,0][-0.400625,0.422404,1.21771][0.089293,0.0658675,0.993825][0.375,0.625,0][-0.0218746,0.332824,1.28547][-0.0674867,0.08012,0.994498][0.5,0.625,0][0.356875,0.262841,1.38204][-0.0395781,0.0471109,0.998105][0.625,0.625,0][0.292934,0.675341,1.3209][-0.0266968,0.0256906,0.999313][0.625,0.75,0][0.292934,0.675341,1.3209][-0.0266968,0.0256906,0.999313][0.625,0.75,0][-0.0858162,0.745324,1.33072][-0.0573512,-0.0137481,0.998259][0.5,0.75,0][-0.0218746,0.332824,1.28547][-0.0674867,0.08012,0.994498][0.5,0.625,0][0.356875,0.262841,1.38204][-0.0395781,0.0471109,0.998105][0.625,0.625,0][0.735625,0.389579,1.31047][0.0901468,-0.00367852,0.995922][0.75,0.625,0][0.671684,0.802079,1.29771][0.0443975,0.0467644,0.997919][0.75,0.75,0][0.671684,0.802079,1.29771][0.0443975,0.0467644,0.997919][0.75,0.75,0][0.292934,0.675341,1.3209][-0.0266968,0.0256906,0.999313][0.625,0.75,0][0.356875,0.262841,1.38204][-0.0395781,0.0471109,0.998105][0.625,0.625,0][0.735625,0.389579,1.31047][0.0901468,-0.00367852,0.995922][0.75,0.625,0][1.11438,0.251327,1.25701][0.0248763,-0.0182731,0.999524][0.875,0.625,0][1.05043,0.663827,1.34292][0.0651166,-0.0345775,0.997278][0.875,0.75,0][1.05043,0.663827,1.34292][0.0651166,-0.0345775,0.997278][0.875,0.75,0][0.671684,0.802079,1.29771][0.0443975,0.0467644,0.997919][0.75,0.75,0][0.735625,0.389579,1.31047][0.0901468,-0.00367852,0.995922][0.75,0.625,0][1.11438,0.251327,1.25701][0.0248763,-0.0182731,0.999524][0.875,0.625,0][1.49313,0.364863,1.39163][-0.939147,0.063705,2.76998][1,0.625,0][1.42918,0.777363,1.21335][0.347199,-0.137013,2.65325][1,0.75,0][1.42918,0.777363,1.21335][0.347199,-0.137013,2.65325][1,0.75,0][1.05043,0.663827,1.34292][0.0651166,-0.0345775,0.997278][0.875,0.75,0][1.11438,0.251327,1.25701][0.0248763,-0.0182731,0.999524][0.875,0.625,0][-1.60082,0.79932,1.36717][-2.73957,-0.263823,1.16575][0,0.75,0][-1.22207,0.860318,1.52725][-0.0180609,-0.103232,0.994493][0.125,0.75,0][-1.1896,1.27282,1.45391][-0.129671,0.237037,0.962808][0.125,0.875,0][-1.1896,1.27282,1.45391][-0.129671,0.237037,0.962808][0.125,0.875,0][-1.56835,1.21182,1.42639][-2.73324,0.418046,1.0282][0,0.875,0][-1.60082,0.79932,1.36717][-2.73957,-0.263823,1.16575][0,0.75,0][-1.22207,0.860318,1.52725][-0.0180609,-0.103232,0.994493][0.125,0.75,0][-0.843316,0.721879,1.37272][0.166997,-0.0667249,0.983697][0.25,0.75,0][-0.810853,1.13438,1.43175][0.235405,-0.0474633,0.970738][0.25,0.875,0][-0.810853,1.13438,1.43175][0.235405,-0.0474633,0.970738][0.25,0.875,0][-1.1896,1.27282,1.45391][-0.129671,0.237037,0.962808][0.125,0.875,0][-1.22207,0.860318,1.52725][-0.0180609,-0.103232,0.994493][0.125,0.75,0][-0.843316,0.721879,1.37272][0.166997,-0.0667249,0.983697][0.25,0.75,0][-0.464566,0.834904,1.32085][0.159041,-0.0303506,0.986805][0.375,0.75,0][-0.432103,1.2474,1.34517][0.156719,-0.0422262,0.98674][0.375,0.875,0][-0.432103,1.2474,1.34517][0.156719,-0.0422262,0.98674][0.375,0.875,0][-0.810853,1.13438,1.43175][0.235405,-0.0474633,0.970738][0.25,0.875,0][-0.843316,0.721879,1.37272][0.166997,-0.0667249,0.983697][0.25,0.75,0][-0.464566,0.834904,1.32085][0.159041,-0.0303506,0.986805][0.375,0.75,0][-0.0858162,0.745324,1.33072][-0.0573512,-0.0137481,0.998259][0.5,0.75,0][-0.0533531,1.15782,1.25106][0.0335052,-0.0149946,0.999326][0.5,0.875,0][-0.0533531,1.15782,1.25106][0.0335052,-0.0149946,0.999326][0.5,0.875,0][-0.432103,1.2474,1.34517][0.156719,-0.0422262,0.98674][0.375,0.875,0][-0.464566,0.834904,1.32085][0.159041,-0.0303506,0.986805][0.375,0.75,0][-0.0858162,0.745324,1.33072][-0.0573512,-0.0137481,0.998259][0.5,0.75,0][0.292934,0.675341,1.3209][-0.0266968,0.0256906,0.999313][0.625,0.75,0][0.325397,1.08784,1.30547][-0.0320765,0.0806454,0.996227][0.625,0.875,0][0.325397,1.08784,1.30547][-0.0320765,0.0806454,0.996227][0.625,0.875,0][-0.0533531,1.15782,1.25106][0.0335052,-0.0149946,0.999326][0.5,0.875,0][-0.0858162,0.745324,1.33072][-0.0573512,-0.0137481,0.998259][0.5,0.75,0][0.292934,0.675341,1.3209][-0.0266968,0.0256906,0.999313][0.625,0.75,0][0.671684,0.802079,1.29771][0.0443975,0.0467644,0.997919][0.75,0.75,0][0.704147,1.21458,1.32525][0.0556664,0.0561451,0.99687][0.75,0.875,0][0.704147,1.21458,1.32525][0.0556664,0.0561451,0.99687][0.75,0.875,0][0.325397,1.08784,1.30547][-0.0320765,0.0806454,0.996227][0.625,0.875,0][0.292934,0.675341,1.3209][-0.0266968,0.0256906,0.999313][0.625,0.75,0][0.671684,0.802079,1.29771][0.0443975,0.0467644,0.997919][0.75,0.75,0][1.05043,0.663827,1.34292][0.0651166,-0.0345775,0.997278][0.875,0.75,0][1.0829,1.07633,1.25526][-0.0376057,0.152982,0.987513][0.875,0.875,0][1.0829,1.07633,1.25526][-0.0376057,0.152982,0.987513][0.875,0.875,0][0.704147,1.21458,1.32525][0.0556664,0.0561451,0.99687][0.75,0.875,0][0.671684,0.802079,1.29771][0.0443975,0.0467644,0.997919][0.75,0.75,0][1.05043,0.663827,1.34292][0.0651166,-0.0345775,0.997278][0.875,0.75,0][1.42918,0.777363,1.21335][0.347199,-0.137013,2.65325][1,0.75,0][1.46165,1.18986,1.3466][-0.238528,0.379894,2.6136][1,0.875,0][1.46165,1.18986,1.3466][-0.238528,0.379894,2.6136][1,0.875,0][1.0829,1.07633,1.25526][-0.0376057,0.152982,0.987513][0.875,0.875,0][1.05043,0.663827,1.34292][0.0651166,-0.0345775,0.997278][0.875,0.75,0][-1.56835,1.21182,1.42639][-2.73324,0.418046,1.0282][0,0.875,0][-1.1896,1.27282,1.45391][-0.129671,0.237037,0.962808][0.125,0.875,0][-1.0355,1.68532,1.19179][0.386144,2.4344,-1.33826][0.125,1,0][-1.0355,1.68532,1.19179][0.386144,2.4344,-1.33826][0.125,1,0][-1.41425,1.62432,1.33886][-0.099167,1.84109,-0.61895][0,1,0][-1.56835,1.21182,1.42639][-2.73324,0.418046,1.0282][0,0.875,0][-1.1896,1.27282,1.45391][-0.129671,0.237037,0.962808][0.125,0.875,0][-0.810853,1.13438,1.43175][0.235405,-0.0474633,0.970738][0.25,0.875,0][-0.656745,1.54688,1.44116][0.127968,2.70632,-0.388807][0.25,1,0][-0.656745,1.54688,1.44116][0.127968,2.70632,-0.388807][0.25,1,0][-1.0355,1.68532,1.19179][0.386144,2.4344,-1.33826][0.125,1,0][-1.1896,1.27282,1.45391][-0.129671,0.237037,0.962808][0.125,0.875,0][-0.810853,1.13438,1.43175][0.235405,-0.0474633,0.970738][0.25,0.875,0][-0.432103,1.2474,1.34517][0.156719,-0.0422262,0.98674][0.375,0.875,0][-0.277995,1.6599,1.27377][-0.322283,2.89315,-0.0681588][0.375,1,0][-0.277995,1.6599,1.27377][-0.322283,2.89315,-0.0681588][0.375,1,0][-0.656745,1.54688,1.44116][0.127968,2.70632,-0.388807][0.25,1,0][-0.810853,1.13438,1.43175][0.235405,-0.0474633,0.970738][0.25,0.875,0][-0.432103,1.2474,1.34517][0.156719,-0.0422262,0.98674][0.375,0.875,0][-0.0533531,1.15782,1.25106][0.0335052,-0.0149946,0.999326][0.5,0.875,0][0.100755,1.57032,1.32894][0.506043,2.93301,0.307101][0.5,1,0][0.100755,1.57032,1.32894][0.506043,2.93301,0.307101][0.5,1,0][-0.277995,1.6599,1.27377][-0.322283,2.89315,-0.0681588][0.375,1,0][-0.432103,1.2474,1.34517][0.156719,-0.0422262,0.98674][0.375,0.875,0][-0.0533531,1.15782,1.25106][0.0335052,-0.0149946,0.999326][0.5,0.875,0][0.325397,1.08784,1.30547][-0.0320765,0.0806454,0.996227][0.625,0.875,0][0.479505,1.50034,1.31001][0.0162523,2.89325,0.446263][0.625,1,0][0.479505,1.50034,1.31001][0.0162523,2.89325,0.446263][0.625,1,0][0.100755,1.57032,1.32894][0.506043,2.93301,0.307101][0.5,1,0][-0.0533531,1.15782,1.25106][0.0335052,-0.0149946,0.999326][0.5,0.875,0][0.325397,1.08784,1.30547][-0.0320765,0.0806454,0.996227][0.625,0.875,0][0.704147,1.21458,1.32525][0.0556664,0.0561451,0.99687][0.75,0.875,0][0.858255,1.62708,1.23683][-0.230414,2.81908,0.416403][0.75,1,0][0.858255,1.62708,1.23683][-0.230414,2.81908,0.416403][0.75,1,0][0.479505,1.50034,1.31001][0.0162523,2.89325,0.446263][0.625,1,0][0.325397,1.08784,1.30547][-0.0320765,0.0806454,0.996227][0.625,0.875,0][0.704147,1.21458,1.32525][0.0556664,0.0561451,0.99687][0.75,0.875,0][1.0829,1.07633,1.25526][-0.0376057,0.152982,0.987513][0.875,0.875,0][1.237,1.48883,1.2201][0.0552885,2.65564,1.14941][0.875,1,0][1.237,1.48883,1.2201][0.0552885,2.65564,1.14941][0.875,1,0][0.858255,1.62708,1.23683][-0.230414,2.81908,0.416403][0.75,1,0][0.704147,1.21458,1.32525][0.0556664,0.0561451,0.99687][0.75,0.875,0][1.0829,1.07633,1.25526][-0.0376057,0.152982,0.987513][0.875,0.875,0][1.46165,1.18986,1.3466][-0.238528,0.379894,2.6136][1,0.875,0][1.61575,1.60236,1.17275][-0.204605,0.869812,0.448959][1,1,0][1.61575,1.60236,1.17275][-0.204605,0.869812,0.448959][1,1,0][1.237,1.48883,1.2201][0.0552885,2.65564,1.14941][0.875,1,0][1.0829,1.07633,1.25526][-0.0376057,0.152982,0.987513][0.875,0.875,0][1.45698,-1.69764,1.38444][-0.684889,-0.7093,0.166795][0,0,0][1.23661,-1.59718,0.906729][-1.83672,-1.94816,-0.368415][0.142857,0,0][1.37893,-1.18468,1.03988][0.919725,-0.265173,-0.289463][0.142857,0.125,0][1.37893,-1.18468,1.03988][0.919725,-0.265173,-0.289463][0.142857,0.125,0][1.5945,-1.28514,1.4481][-0.645857,-0.118618,2.91032][0,0.125,0][1.45698,-1.69764,1.38444][-0.684889,-0.7093,0.166795][0,0,0][1.23661,-1.59718,0.906729][-1.83672,-1.94816,-0.368415][0.142857,0,0][1.51488,-1.48273,0.613009][-0.806205,-2.42499,-0.515454][0.285714,0,0][1.38149,-1.07023,0.676669][0.931311,-0.0804139,0.355238][0.285714,0.125,0][1.38149,-1.07023,0.676669][0.931311,-0.0804139,0.355238][0.285714,0.125,0][1.37893,-1.18468,1.03988][0.919725,-0.265173,-0.289463][0.142857,0.125,0][1.23661,-1.59718,0.906729][-1.83672,-1.94816,-0.368415][0.142857,0,0][1.51488,-1.48273,0.613009][-0.806205,-2.42499,-0.515454][0.285714,0,0][1.56947,-1.49246,0.201533][-0.232078,-2.79896,0.697531][0.428571,0,0][1.65398,-1.07996,0.394569][0.97111,0.0558665,0.232][0.428571,0.125,0][1.65398,-1.07996,0.394569][0.97111,0.0558665,0.232][0.428571,0.125,0][1.38149,-1.07023,0.676669][0.931311,-0.0804139,0.355238][0.285714,0.125,0][1.51488,-1.48273,0.613009][-0.806205,-2.42499,-0.515454][0.285714,0,0][1.56947,-1.49246,0.201533][-0.232078,-2.79896,0.697531][0.428571,0,0][1.61851,-1.7501,-0.158419][-0.915007,-2.52099,0.517523][0.571429,0,0][1.60093,-1.3376,-0.0947594][0.986157,-0.00885891,0.165576][0.571429,0.125,0][1.60093,-1.3376,-0.0947594][0.986157,-0.00885891,0.165576][0.571429,0.125,0][1.65398,-1.07996,0.394569][0.97111,0.0558665,0.232][0.428571,0.125,0][1.56947,-1.49246,0.201533][-0.232078,-2.79896,0.697531][0.428571,0,0][1.61851,-1.7501,-0.158419][-0.915007,-2.52099,0.517523][0.571429,0,0][1.70952,-1.64483,-0.558129][-1.51847,-2.29029,-0.519997][0.714286,0,0][1.69707,-1.23233,-0.375239][0.994232,0.0610389,-0.0881875][0.714286,0.125,0][1.69707,-1.23233,-0.375239][0.994232,0.0610389,-0.0881875][0.714286,0.125,0][1.60093,-1.3376,-0.0947594][0.986157,-0.00885891,0.165576][0.571429,0.125,0][1.61851,-1.7501,-0.158419][-0.915007,-2.52099,0.517523][0.571429,0,0][1.70952,-1.64483,-0.558129][-1.51847,-2.29029,-0.519997][0.714286,0,0][1.4489,-1.63021,-1.0088][-1.57996,-2.39871,0.733937][0.857143,0,0][1.47682,-1.21771,-0.914922][0.949282,0.139985,-0.281546][0.857143,0.125,0][1.47682,-1.21771,-0.914922][0.949282,0.139985,-0.281546][0.857143,0.125,0][1.69707,-1.23233,-0.375239][0.994232,0.0610389,-0.0881875][0.714286,0.125,0][1.70952,-1.64483,-0.558129][-1.51847,-2.29029,-0.519997][0.714286,0,0][1.4489,-1.63021,-1.0088][-1.57996,-2.39871,0.733937][0.857143,0,0][1.55725,-1.71948,-1.31556][-1.05464,-1.68926,0.167229][1,0,0][1.42451,-1.30698,-1.2519][0.372874,0.67451,-2.79596][1,0.125,0][1.42451,-1.30698,-1.2519][0.372874,0.67451,-2.79596][1,0.125,0][1.47682,-1.21771,-0.914922][0.949282,0.139985,-0.281546][0.857143,0.125,0][1.4489,-1.63021,-1.0088][-1.57996,-2.39871,0.733937][0.857143,0,0][1.5945,-1.28514,1.4481][-0.645857,-0.118618,2.91032][0,0.125,0][1.37893,-1.18468,1.03988][0.919725,-0.265173,-0.289463][0.142857,0.125,0][1.52463,-0.772179,1.09578][0.986241,0.157763,0.0493939][0.142857,0.25,0][1.52463,-0.772179,1.09578][0.986241,0.157763,0.0493939][0.142857,0.25,0][1.53246,-0.872637,1.468][0.0907872,-0.214981,2.83895][0,0.25,0][1.5945,-1.28514,1.4481][-0.645857,-0.118618,2.91032][0,0.125,0][1.37893,-1.18468,1.03988][0.919725,-0.265173,-0.289463][0.142857,0.125,0][1.38149,-1.07023,0.676669][0.931311,-0.0804139,0.355238][0.285714,0.125,0][1.53224,-0.657728,0.696571][0.979744,-0.192528,0.0550807][0.285714,0.25,0][1.53224,-0.657728,0.696571][0.979744,-0.192528,0.0550807][0.285714,0.25,0][1.52463,-0.772179,1.09578][0.986241,0.157763,0.0493939][0.142857,0.25,0][1.37893,-1.18468,1.03988][0.919725,-0.265173,-0.289463][0.142857,0.125,0][1.38149,-1.07023,0.676669][0.931311,-0.0804139,0.355238][0.285714,0.125,0][1.65398,-1.07996,0.394569][0.97111,0.0558665,0.232][0.428571,0.125,0][1.53624,-0.667458,0.320885][0.994968,-0.0519993,0.0856457][0.428571,0.25,0][1.53624,-0.667458,0.320885][0.994968,-0.0519993,0.0856457][0.428571,0.25,0][1.53224,-0.657728,0.696571][0.979744,-0.192528,0.0550807][0.285714,0.25,0][1.38149,-1.07023,0.676669][0.931311,-0.0804139,0.355238][0.285714,0.125,0][1.65398,-1.07996,0.394569][0.97111,0.0558665,0.232][0.428571,0.125,0][1.60093,-1.3376,-0.0947594][0.986157,-0.00885891,0.165576][0.571429,0.125,0][1.57784,-0.925101,-0.0748576][0.973503,0.141701,0.179478][0.571429,0.25,0][1.57784,-0.925101,-0.0748576][0.973503,0.141701,0.179478][0.571429,0.25,0][1.53624,-0.667458,0.320885][0.994968,-0.0519993,0.0856457][0.428571,0.25,0][1.65398,-1.07996,0.394569][0.97111,0.0558665,0.232][0.428571,0.125,0][1.60093,-1.3376,-0.0947594][0.986157,-0.00885891,0.165576][0.571429,0.125,0][1.69707,-1.23233,-0.375239][0.994232,0.0610389,-0.0881875][0.714286,0.125,0][1.70021,-0.819828,-0.427138][0.989556,-0.0725044,-0.124591][0.714286,0.25,0][1.70021,-0.819828,-0.427138][0.989556,-0.0725044,-0.124591][0.714286,0.25,0][1.57784,-0.925101,-0.0748576][0.973503,0.141701,0.179478][0.571429,0.25,0][1.60093,-1.3376,-0.0947594][0.986157,-0.00885891,0.165576][0.571429,0.125,0][1.69707,-1.23233,-0.375239][0.994232,0.0610389,-0.0881875][0.714286,0.125,0][1.47682,-1.21771,-0.914922][0.949282,0.139985,-0.281546][0.857143,0.125,0][1.3975,-0.805214,-0.808363][0.972291,-0.0633331,-0.22503][0.857143,0.25,0][1.3975,-0.805214,-0.808363][0.972291,-0.0633331,-0.22503][0.857143,0.25,0][1.70021,-0.819828,-0.427138][0.989556,-0.0725044,-0.124591][0.714286,0.25,0][1.69707,-1.23233,-0.375239][0.994232,0.0610389,-0.0881875][0.714286,0.125,0][1.47682,-1.21771,-0.914922][0.949282,0.139985,-0.281546][0.857143,0.125,0][1.42451,-1.30698,-1.2519][0.372874,0.67451,-2.79596][1,0.125,0][1.37048,-0.894481,-1.232][0.00258675,-0.876439,-2.69764][1,0.25,0][1.37048,-0.894481,-1.232][0.00258675,-0.876439,-2.69764][1,0.25,0][1.3975,-0.805214,-0.808363][0.972291,-0.0633331,-0.22503][0.857143,0.25,0][1.47682,-1.21771,-0.914922][0.949282,0.139985,-0.281546][0.857143,0.125,0][1.53246,-0.872637,1.468][0.0907872,-0.214981,2.83895][0,0.25,0][1.52463,-0.772179,1.09578][0.986241,0.157763,0.0493939][0.142857,0.25,0][1.30289,-0.359679,0.852767][0.949421,0.223082,0.220986][0.142857,0.375,0][1.30289,-0.359679,0.852767][0.949421,0.223082,0.220986][0.142857,0.375,0][1.54025,-0.460137,1.37137][-0.726162,0.827731,2.62082][0,0.375,0][1.53246,-0.872637,1.468][0.0907872,-0.214981,2.83895][0,0.25,0][1.52463,-0.772179,1.09578][0.986241,0.157763,0.0493939][0.142857,0.25,0][1.53224,-0.657728,0.696571][0.979744,-0.192528,0.0550807][0.285714,0.25,0][1.50851,-0.245228,0.599939][0.884748,0.19372,0.423903][0.285714,0.375,0][1.50851,-0.245228,0.599939][0.884748,0.19372,0.423903][0.285714,0.375,0][1.30289,-0.359679,0.852767][0.949421,0.223082,0.220986][0.142857,0.375,0][1.52463,-0.772179,1.09578][0.986241,0.157763,0.0493939][0.142857,0.25,0][1.53224,-0.657728,0.696571][0.979744,-0.192528,0.0550807][0.285714,0.25,0][1.53624,-0.667458,0.320885][0.994968,-0.0519993,0.0856457][0.428571,0.25,0][1.67867,-0.254958,0.237675][0.999736,-0.0179201,-0.0144074][0.428571,0.375,0][1.67867,-0.254958,0.237675][0.999736,-0.0179201,-0.0144074][0.428571,0.375,0][1.50851,-0.245228,0.599939][0.884748,0.19372,0.423903][0.285714,0.375,0][1.53224,-0.657728,0.696571][0.979744,-0.192528,0.0550807][0.285714,0.25,0][1.53624,-0.667458,0.320885][0.994968,-0.0519993,0.0856457][0.428571,0.25,0][1.57784,-0.925101,-0.0748576][0.973503,0.141701,0.179478][0.571429,0.25,0][1.51249,-0.512601,-0.171489][0.979668,0.0961488,0.176087][0.571429,0.375,0][1.51249,-0.512601,-0.171489][0.979668,0.0961488,0.176087][0.571429,0.375,0][1.67867,-0.254958,0.237675][0.999736,-0.0179201,-0.0144074][0.428571,0.375,0][1.53624,-0.667458,0.320885][0.994968,-0.0519993,0.0856457][0.428571,0.25,0][1.57784,-0.925101,-0.0748576][0.973503,0.141701,0.179478][0.571429,0.25,0][1.70021,-0.819828,-0.427138][0.989556,-0.0725044,-0.124591][0.714286,0.25,0][1.70213,-0.407328,-0.483044][0.990493,0.09647,0.0980631][0.714286,0.375,0][1.70213,-0.407328,-0.483044][0.990493,0.09647,0.0980631][0.714286,0.375,0][1.51249,-0.512601,-0.171489][0.979668,0.0961488,0.176087][0.571429,0.375,0][1.57784,-0.925101,-0.0748576][0.973503,0.141701,0.179478][0.571429,0.25,0][1.70021,-0.819828,-0.427138][0.989556,-0.0725044,-0.124591][0.714286,0.25,0][1.3975,-0.805214,-0.808363][0.972291,-0.0633331,-0.22503][0.857143,0.25,0][1.43851,-0.392715,-0.998536][0.985991,-0.122789,-0.112895][0.857143,0.375,0][1.43851,-0.392715,-0.998536][0.985991,-0.122789,-0.112895][0.857143,0.375,0][1.70213,-0.407328,-0.483044][0.990493,0.09647,0.0980631][0.714286,0.375,0][1.70021,-0.819828,-0.427138][0.989556,-0.0725044,-0.124591][0.714286,0.25,0][1.3975,-0.805214,-0.808363][0.972291,-0.0633331,-0.22503][0.857143,0.25,0][1.37048,-0.894481,-1.232][0.00258675,-0.876439,-2.69764][1,0.25,0][1.61395,-0.481981,-1.32863][0.942767,-0.374846,-2.76137][1,0.375,0][1.61395,-0.481981,-1.32863][0.942767,-0.374846,-2.76137][1,0.375,0][1.43851,-0.392715,-0.998536][0.985991,-0.122789,-0.112895][0.857143,0.375,0][1.3975,-0.805214,-0.808363][0.972291,-0.0633331,-0.22503][0.857143,0.25,0][1.54025,-0.460137,1.37137][-0.726162,0.827731,2.62082][0,0.375,0][1.30289,-0.359679,0.852767][0.949421,0.223082,0.220986][0.142857,0.375,0][1.2907,0.0528212,0.919449][0.998793,-0.0375197,0.0316955][0.142857,0.5,0][1.2907,0.0528212,0.919449][0.998793,-0.0375197,0.0316955][0.142857,0.5,0][1.52239,-0.0476369,1.33387][-0.879748,-0.0889276,2.8478][0,0.5,0][1.54025,-0.460137,1.37137][-0.726162,0.827731,2.62082][0,0.375,0][1.30289,-0.359679,0.852767][0.949421,0.223082,0.220986][0.142857,0.375,0][1.50851,-0.245228,0.599939][0.884748,0.19372,0.423903][0.285714,0.375,0][1.51484,0.167272,0.562438][0.921195,-0.0387915,0.387163][0.285714,0.5,0][1.51484,0.167272,0.562438][0.921195,-0.0387915,0.387163][0.285714,0.5,0][1.2907,0.0528212,0.919449][0.998793,-0.0375197,0.0316955][0.142857,0.5,0][1.30289,-0.359679,0.852767][0.949421,0.223082,0.220986][0.142857,0.375,0][1.50851,-0.245228,0.599939][0.884748,0.19372,0.423903][0.285714,0.375,0][1.67867,-0.254958,0.237675][0.999736,-0.0179201,-0.0144074][0.428571,0.375,0][1.59445,0.157542,0.219291][0.99501,0.0920631,-0.0384732][0.428571,0.5,0][1.59445,0.157542,0.219291][0.99501,0.0920631,-0.0384732][0.428571,0.5,0][1.51484,0.167272,0.562438][0.921195,-0.0387915,0.387163][0.285714,0.5,0][1.50851,-0.245228,0.599939][0.884748,0.19372,0.423903][0.285714,0.375,0][1.67867,-0.254958,0.237675][0.999736,-0.0179201,-0.0144074][0.428571,0.375,0][1.51249,-0.512601,-0.171489][0.979668,0.0961488,0.176087][0.571429,0.375,0][1.47081,-0.100101,-0.208991][0.998468,0.051452,0.0203718][0.571429,0.5,0][1.47081,-0.100101,-0.208991][0.998468,0.051452,0.0203718][0.571429,0.5,0][1.59445,0.157542,0.219291][0.99501,0.0920631,-0.0384732][0.428571,0.5,0][1.67867,-0.254958,0.237675][0.999736,-0.0179201,-0.0144074][0.428571,0.375,0][1.51249,-0.512601,-0.171489][0.979668,0.0961488,0.176087][0.571429,0.375,0][1.70213,-0.407328,-0.483044][0.990493,0.09647,0.0980631][0.714286,0.375,0][1.58871,0.0051719,-0.527419][0.98442,0.0852633,0.153775][0.714286,0.5,0][1.58871,0.0051719,-0.527419][0.98442,0.0852633,0.153775][0.714286,0.5,0][1.47081,-0.100101,-0.208991][0.998468,0.051452,0.0203718][0.571429,0.5,0][1.51249,-0.512601,-0.171489][0.979668,0.0961488,0.176087][0.571429,0.375,0][1.70213,-0.407328,-0.483044][0.990493,0.09647,0.0980631][0.714286,0.375,0][1.43851,-0.392715,-0.998536][0.985991,-0.122789,-0.112895][0.857143,0.375,0][1.55903,0.0197855,-1.00633][0.993875,0.00652982,-0.110316][0.857143,0.5,0][1.55903,0.0197855,-1.00633][0.993875,0.00652982,-0.110316][0.857143,0.5,0][1.58871,0.0051719,-0.527419][0.98442,0.0852633,0.153775][0.714286,0.5,0][1.70213,-0.407328,-0.483044][0.990493,0.09647,0.0980631][0.714286,0.375,0][1.43851,-0.392715,-0.998536][0.985991,-0.122789,-0.112895][0.857143,0.375,0][1.61395,-0.481981,-1.32863][0.942767,-0.374846,-2.76137][1,0.375,0][1.54549,-0.0694807,-1.36613][0.893171,0.220211,-2.84243][1,0.5,0][1.54549,-0.0694807,-1.36613][0.893171,0.220211,-2.84243][1,0.5,0][1.55903,0.0197855,-1.00633][0.993875,0.00652982,-0.110316][0.857143,0.5,0][1.43851,-0.392715,-0.998536][0.985991,-0.122789,-0.112895][0.857143,0.375,0][1.52239,-0.0476369,1.33387][-0.879748,-0.0889276,2.8478][0,0.5,0][1.2907,0.0528212,0.919449][0.998793,-0.0375197,0.0316955][0.142857,0.5,0][1.31497,0.465321,0.957271][0.987345,0.115692,0.10847][0.142857,0.625,0][1.31497,0.465321,0.957271][0.987345,0.115692,0.10847][0.142857,0.625,0][1.49313,0.364863,1.39163][-0.939147,0.063705,2.76998][0,0.625,0][1.52239,-0.0476369,1.33387][-0.879748,-0.0889276,2.8478][0,0.5,0][1.2907,0.0528212,0.919449][0.998793,-0.0375197,0.0316955][0.142857,0.5,0][1.51484,0.167272,0.562438][0.921195,-0.0387915,0.387163][0.285714,0.5,0][1.53785,0.579772,0.620201][0.921654,-0.0242589,0.387253][0.285714,0.625,0][1.53785,0.579772,0.620201][0.921654,-0.0242589,0.387253][0.285714,0.625,0][1.31497,0.465321,0.957271][0.987345,0.115692,0.10847][0.142857,0.625,0][1.2907,0.0528212,0.919449][0.998793,-0.0375197,0.0316955][0.142857,0.5,0][1.51484,0.167272,0.562438][0.921195,-0.0387915,0.387163][0.285714,0.5,0][1.59445,0.157542,0.219291][0.99501,0.0920631,-0.0384732][0.428571,0.5,0][1.59387,0.570042,0.269933][0.99214,-0.101595,-0.0730469][0.428571,0.625,0][1.59387,0.570042,0.269933][0.99214,-0.101595,-0.0730469][0.428571,0.625,0][1.53785,0.579772,0.620201][0.921654,-0.0242589,0.387253][0.285714,0.625,0][1.51484,0.167272,0.562438][0.921195,-0.0387915,0.387163][0.285714,0.5,0][1.59445,0.157542,0.219291][0.99501,0.0920631,-0.0384732][0.428571,0.5,0][1.47081,-0.100101,-0.208991][0.998468,0.051452,0.0203718][0.571429,0.5,0][1.43776,0.312399,-0.151228][0.981568,0.0711533,0.177371][0.571429,0.625,0][1.43776,0.312399,-0.151228][0.981568,0.0711533,0.177371][0.571429,0.625,0][1.59387,0.570042,0.269933][0.99214,-0.101595,-0.0730469][0.428571,0.625,0][1.59445,0.157542,0.219291][0.99501,0.0920631,-0.0384732][0.428571,0.5,0][1.47081,-0.100101,-0.208991][0.998468,0.051452,0.0203718][0.571429,0.5,0][1.58871,0.0051719,-0.527419][0.98442,0.0852633,0.153775][0.714286,0.5,0][1.65043,0.417672,-0.465955][0.994114,-0.0810058,0.0719347][0.714286,0.625,0][1.65043,0.417672,-0.465955][0.994114,-0.0810058,0.0719347][0.714286,0.625,0][1.43776,0.312399,-0.151228][0.981568,0.0711533,0.177371][0.571429,0.625,0][1.47081,-0.100101,-0.208991][0.998468,0.051452,0.0203718][0.571429,0.5,0][1.58871,0.0051719,-0.527419][0.98442,0.0852633,0.153775][0.714286,0.5,0][1.55903,0.0197855,-1.00633][0.993875,0.00652982,-0.110316][0.857143,0.5,0][1.51597,0.432286,-0.973723][0.997393,0.0641131,-0.0331028][0.857143,0.625,0][1.51597,0.432286,-0.973723][0.997393,0.0641131,-0.0331028][0.857143,0.625,0][1.65043,0.417672,-0.465955][0.994114,-0.0810058,0.0719347][0.714286,0.625,0][1.58871,0.0051719,-0.527419][0.98442,0.0852633,0.153775][0.714286,0.5,0][1.55903,0.0197855,-1.00633][0.993875,0.00652982,-0.110316][0.857143,0.5,0][1.54549,-0.0694807,-1.36613][0.893171,0.220211,-2.84243][1,0.5,0][1.5073,0.343019,-1.30837][0.353069,-0.0363108,-2.76107][1,0.625,0][1.5073,0.343019,-1.30837][0.353069,-0.0363108,-2.76107][1,0.625,0][1.51597,0.432286,-0.973723][0.997393,0.0641131,-0.0331028][0.857143,0.625,0][1.55903,0.0197855,-1.00633][0.993875,0.00652982,-0.110316][0.857143,0.5,0][1.49313,0.364863,1.39163][-0.939147,0.063705,2.76998][0,0.625,0][1.31497,0.465321,0.957271][0.987345,0.115692,0.10847][0.142857,0.625,0][1.23918,0.877821,0.84343][0.996022,0.027122,0.0848741][0.142857,0.75,0][1.23918,0.877821,0.84343][0.996022,0.027122,0.0848741][0.142857,0.75,0][1.42918,0.777363,1.21335][0.347199,-0.137013,2.65325][0,0.75,0][1.49313,0.364863,1.39163][-0.939147,0.063705,2.76998][0,0.625,0][1.31497,0.465321,0.957271][0.987345,0.115692,0.10847][0.142857,0.625,0][1.53785,0.579772,0.620201][0.921654,-0.0242589,0.387253][0.285714,0.625,0][1.56413,0.992272,0.441923][0.835018,0.0631316,0.546588][0.285714,0.75,0][1.56413,0.992272,0.441923][0.835018,0.0631316,0.546588][0.285714,0.75,0][1.23918,0.877821,0.84343][0.996022,0.027122,0.0848741][0.142857,0.75,0][1.31497,0.465321,0.957271][0.987345,0.115692,0.10847][0.142857,0.625,0][1.53785,0.579772,0.620201][0.921654,-0.0242589,0.387253][0.285714,0.625,0][1.59387,0.570042,0.269933][0.99214,-0.101595,-0.0730469][0.428571,0.625,0][1.67341,0.982542,0.133837][0.991909,-0.105318,-0.07088][0.428571,0.75,0][1.67341,0.982542,0.133837][0.991909,-0.105318,-0.07088][0.428571,0.75,0][1.56413,0.992272,0.441923][0.835018,0.0631316,0.546588][0.285714,0.75,0][1.53785,0.579772,0.620201][0.921654,-0.0242589,0.387253][0.285714,0.625,0][1.59387,0.570042,0.269933][0.99214,-0.101595,-0.0730469][0.428571,0.625,0][1.43776,0.312399,-0.151228][0.981568,0.0711533,0.177371][0.571429,0.625,0][1.43482,0.724899,-0.329506][0.982555,-0.0668835,0.173531][0.571429,0.75,0][1.43482,0.724899,-0.329506][0.982555,-0.0668835,0.173531][0.571429,0.75,0][1.67341,0.982542,0.133837][0.991909,-0.105318,-0.07088][0.428571,0.75,0][1.59387,0.570042,0.269933][0.99214,-0.101595,-0.0730469][0.428571,0.625,0][1.43776,0.312399,-0.151228][0.981568,0.0711533,0.177371][0.571429,0.625,0][1.65043,0.417672,-0.465955][0.994114,-0.0810058,0.0719347][0.714286,0.625,0][1.73094,0.830172,-0.568083][0.982149,0.0280388,0.186002][0.714286,0.75,0][1.73094,0.830172,-0.568083][0.982149,0.0280388,0.186002][0.714286,0.75,0][1.43482,0.724899,-0.329506][0.982555,-0.0668835,0.173531][0.571429,0.75,0][1.43776,0.312399,-0.151228][0.981568,0.0711533,0.177371][0.571429,0.625,0][1.65043,0.417672,-0.465955][0.994114,-0.0810058,0.0719347][0.714286,0.625,0][1.51597,0.432286,-0.973723][0.997393,0.0641131,-0.0331028][0.857143,0.625,0][1.40956,0.844785,-1.09027][0.997344,-0.0635911,-0.0355067][0.857143,0.75,0][1.40956,0.844785,-1.09027][0.997344,-0.0635911,-0.0355067][0.857143,0.75,0][1.73094,0.830172,-0.568083][0.982149,0.0280388,0.186002][0.714286,0.75,0][1.65043,0.417672,-0.465955][0.994114,-0.0810058,0.0719347][0.714286,0.625,0][1.51597,0.432286,-0.973723][0.997393,0.0641131,-0.0331028][0.857143,0.625,0][1.5073,0.343019,-1.30837][0.353069,-0.0363108,-2.76107][1,0.625,0][1.62142,0.755519,-1.48665][-0.410754,-0.20362,-2.73708][1,0.75,0][1.62142,0.755519,-1.48665][-0.410754,-0.20362,-2.73708][1,0.75,0][1.40956,0.844785,-1.09027][0.997344,-0.0635911,-0.0355067][0.857143,0.75,0][1.51597,0.432286,-0.973723][0.997393,0.0641131,-0.0331028][0.857143,0.625,0][1.42918,0.777363,1.21335][0.347199,-0.137013,2.65325][0,0.75,0][1.23918,0.877821,0.84343][0.996022,0.027122,0.0848741][0.142857,0.75,0][1.28183,1.29032,0.874536][0.999405,-0.0330715,0.00976489][0.142857,0.875,0][1.28183,1.29032,0.874536][0.999405,-0.0330715,0.00976489][0.142857,0.875,0][1.46165,1.18986,1.3466][-0.238528,0.379894,2.6136][0,0.875,0][1.42918,0.777363,1.21335][0.347199,-0.137013,2.65325][0,0.75,0][1.23918,0.877821,0.84343][0.996022,0.027122,0.0848741][0.142857,0.75,0][1.56413,0.992272,0.441923][0.835018,0.0631316,0.546588][0.285714,0.75,0][1.45141,1.40477,0.575166][0.80962,0.109475,0.576655][0.285714,0.875,0][1.45141,1.40477,0.575166][0.80962,0.109475,0.576655][0.285714,0.875,0][1.28183,1.29032,0.874536][0.999405,-0.0330715,0.00976489][0.142857,0.875,0][1.23918,0.877821,0.84343][0.996022,0.027122,0.0848741][0.142857,0.75,0][1.56413,0.992272,0.441923][0.835018,0.0631316,0.546588][0.285714,0.75,0][1.67341,0.982542,0.133837][0.991909,-0.105318,-0.07088][0.428571,0.75,0][1.73638,1.39504,0.245908][0.997528,-0.00865554,0.0697347][0.428571,0.875,0][1.73638,1.39504,0.245908][0.997528,-0.00865554,0.0697347][0.428571,0.875,0][1.45141,1.40477,0.575166][0.80962,0.109475,0.576655][0.285714,0.875,0][1.56413,0.992272,0.441923][0.835018,0.0631316,0.546588][0.285714,0.75,0][1.67341,0.982542,0.133837][0.991909,-0.105318,-0.07088][0.428571,0.75,0][1.43482,0.724899,-0.329506][0.982555,-0.0668835,0.173531][0.571429,0.75,0][1.50822,1.1374,-0.196262][0.998848,-0.0443201,0.0184042][0.571429,0.875,0][1.50822,1.1374,-0.196262][0.998848,-0.0443201,0.0184042][0.571429,0.875,0][1.73638,1.39504,0.245908][0.997528,-0.00865554,0.0697347][0.428571,0.875,0][1.67341,0.982542,0.133837][0.991909,-0.105318,-0.07088][0.428571,0.75,0][1.43482,0.724899,-0.329506][0.982555,-0.0668835,0.173531][0.571429,0.75,0][1.73094,0.830172,-0.568083][0.982149,0.0280388,0.186002][0.714286,0.75,0][1.65142,1.24267,-0.505757][0.979635,-0.161865,0.118804][0.714286,0.875,0][1.65142,1.24267,-0.505757][0.979635,-0.161865,0.118804][0.714286,0.875,0][1.50822,1.1374,-0.196262][0.998848,-0.0443201,0.0184042][0.571429,0.875,0][1.43482,0.724899,-0.329506][0.982555,-0.0668835,0.173531][0.571429,0.75,0][1.73094,0.830172,-0.568083][0.982149,0.0280388,0.186002][0.714286,0.75,0][1.40956,0.844785,-1.09027][0.997344,-0.0635911,-0.0355067][0.857143,0.75,0][1.53644,1.25729,-0.982796][0.991473,-0.0923548,-0.0919316][0.857143,0.875,0][1.53644,1.25729,-0.982796][0.991473,-0.0923548,-0.0919316][0.857143,0.875,0][1.65142,1.24267,-0.505757][0.979635,-0.161865,0.118804][0.714286,0.875,0][1.73094,0.830172,-0.568083][0.982149,0.0280388,0.186002][0.714286,0.75,0][1.40956,0.844785,-1.09027][0.997344,-0.0635911,-0.0355067][0.857143,0.75,0][1.62142,0.755519,-1.48665][-0.410754,-0.20362,-2.73708][1,0.75,0][1.59231,1.16802,-1.3534][0.332514,-0.160105,-2.80387][1,0.875,0][1.59231,1.16802,-1.3534][0.332514,-0.160105,-2.80387][1,0.875,0][1.53644,1.25729,-0.982796][0.991473,-0.0923548,-0.0919316][0.857143,0.875,0][1.40956,0.844785,-1.09027][0.997344,-0.0635911,-0.0355067][0.857143,0.75,0][1.46165,1.18986,1.3466][-0.238528,0.379894,2.6136][0,0.875,0][1.28183,1.29032,0.874536][0.999405,-0.0330715,0.00976489][0.142857,0.875,0][1.3328,1.70282,0.849167][-0.336528,2.71319,1.16465][0.142857,1,0][1.3328,1.70282,0.849167][-0.336528,2.71319,1.16465][0.142857,1,0][1.61575,1.60236,1.17275][-0.204605,0.869812,0.448959][0,1,0][1.46165,1.18986,1.3466][-0.238528,0.379894,2.6136][0,0.875,0][1.28183,1.29032,0.874536][0.999405,-0.0330715,0.00976489][0.142857,0.875,0][1.45141,1.40477,0.575166][0.80962,0.109475,0.576655][0.285714,0.875,0][1.46368,1.81727,0.401317][-0.98004,2.60788,-0.438301][0.285714,1,0][1.46368,1.81727,0.401317][-0.98004,2.60788,-0.438301][0.285714,1,0][1.3328,1.70282,0.849167][-0.336528,2.71319,1.16465][0.142857,1,0][1.28183,1.29032,0.874536][0.999405,-0.0330715,0.00976489][0.142857,0.875,0][1.45141,1.40477,0.575166][0.80962,0.109475,0.576655][0.285714,0.875,0][1.73638,1.39504,0.245908][0.997528,-0.00865554,0.0697347][0.428571,0.875,0][1.67851,1.80754,0.0607543][-1.50257,2.39949,-0.968175][0.428571,1,0][1.67851,1.80754,0.0607543][-1.50257,2.39949,-0.968175][0.428571,1,0][1.46368,1.81727,0.401317][-0.98004,2.60788,-0.438301][0.285714,1,0][1.45141,1.40477,0.575166][0.80962,0.109475,0.576655][0.285714,0.875,0][1.73638,1.39504,0.245908][0.997528,-0.00865554,0.0697347][0.428571,0.875,0][1.50822,1.1374,-0.196262][0.998848,-0.0443201,0.0184042][0.571429,0.875,0][1.48857,1.5499,-0.370111][-0.515797,2.75415,0.0534013][0.571429,1,0][1.48857,1.5499,-0.370111][-0.515797,2.75415,0.0534013][0.571429,1,0][1.67851,1.80754,0.0607543][-1.50257,2.39949,-0.968175][0.428571,1,0][1.73638,1.39504,0.245908][0.997528,-0.00865554,0.0697347][0.428571,0.875,0][1.50822,1.1374,-0.196262][0.998848,-0.0443201,0.0184042][0.571429,0.875,0][1.65142,1.24267,-0.505757][0.979635,-0.161865,0.118804][0.714286,0.875,0][1.79463,1.65517,-0.70663][0.107868,2.88323,0.684451][0.714286,1,0][1.79463,1.65517,-0.70663][0.107868,2.88323,0.684451][0.714286,1,0][1.48857,1.5499,-0.370111][-0.515797,2.75415,0.0534013][0.571429,1,0][1.50822,1.1374,-0.196262][0.998848,-0.0443201,0.0184042][0.571429,0.875,0][1.65142,1.24267,-0.505757][0.979635,-0.161865,0.118804][0.714286,0.875,0][1.53644,1.25729,-0.982796][0.991473,-0.0923548,-0.0919316][0.857143,0.875,0][1.58677,1.66979,-1.1259][0.127683,2.97295,-0.168222][0.857143,1,0][1.58677,1.66979,-1.1259][0.127683,2.97295,-0.168222][0.857143,1,0][1.79463,1.65517,-0.70663][0.107868,2.88323,0.684451][0.714286,1,0][1.65142,1.24267,-0.505757][0.979635,-0.161865,0.118804][0.714286,0.875,0][1.53644,1.25729,-0.982796][0.991473,-0.0923548,-0.0919316][0.857143,0.875,0][1.59231,1.16802,-1.3534][0.332514,-0.160105,-2.80387][1,0.875,0][1.61533,1.58052,-1.52725][0.0521218,1.95133,-0.435331][1,1,0][1.61533,1.58052,-1.52725][0.0521218,1.95133,-0.435331][1,1,0][1.58677,1.66979,-1.1259][0.127683,2.97295,-0.168222][0.857143,1,0][1.53644,1.25729,-0.982796][0.991473,-0.0923548,-0.0919316][0.857143,0.875,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0][-0.727013,-0.0924333,-1.29603][0.0721085,0.102638,-0.992102][0.75,0.5,0][-0.348263,-0.0249524,-1.26417][-0.232627,-0.297418,-0.925974][0.625,0.5,0][-0.348263,-0.0249524,-1.26417][-0.232627,-0.297418,-0.925974][0.625,0.5,0][-0.279796,-0.437452,-1.35068][-0.0426108,0.0379954,-0.998369][0.625,0.375,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0] \ No newline at end of file diff --git a/charcustom/hats/fonts/RedRobloxCap.mesh b/charcustom/hats/fonts/RedRobloxCap.mesh new file mode 100644 index 0000000..277c073 --- /dev/null +++ b/charcustom/hats/fonts/RedRobloxCap.mesh @@ -0,0 +1,3 @@ +version 1.00 +807 +[-0.183954,0.394081,-0.672344][0.391871,0.192459,-0.899665][0.045328,0.892673,0][-0.178562,0.411966,-0.655314][0.0620585,0.983167,-0.171845][0.050986,0.896948,0][-0.064209,0.402737,-0.669874][0.0422608,0.974449,-0.220596][0.050986,0.90811,0][-0.064209,0.402737,-0.669874][0.0422608,0.974449,-0.220596][0.050986,0.90811,0][-0.062519,0.389525,-0.681478][-0.133793,-0.210017,-0.9685][0.045328,0.90811,0][-0.183954,0.394081,-0.672344][0.391871,0.192459,-0.899665][0.045328,0.892673,0][0.170234,0.362726,-0.710105][-0.43415,0.312749,-0.844808][0.022831,0.844904,0][0.174417,0.38331,-0.693996][0.106753,0.966123,-0.23497][0.027232,0.839916,0][0.219071,0.375208,-0.700337][0.645014,0.72268,-0.248376][0.027232,0.845075,0][0.219071,0.375208,-0.700337][0.645014,0.72268,-0.248376][0.027232,0.845075,0][0.218453,0.351224,-0.719107][0.718159,0.395799,-0.572355][0.027232,0.851441,0][0.170234,0.362726,-0.710105][-0.43415,0.312749,-0.844808][0.022831,0.844904,0][0.071389,0.39237,-0.686905][0.0661884,0.965083,-0.253444][0.027232,0.809407,0][0.090903,0.390589,-0.6883][0.0659829,0.965691,-0.251173][0.027232,0.8142,0][0.087204,0.374149,-0.701165][-0.118017,-0.239101,-0.963796][0.022831,0.8142,0][0.087204,0.374149,-0.701165][-0.118017,-0.239101,-0.963796][0.022831,0.8142,0][0.067818,0.37644,-0.699373][-0.126019,-0.234972,-0.963798][0.022831,0.809407,0][0.071389,0.39237,-0.686905][0.0661884,0.965083,-0.253444][0.027232,0.809407,0][-0.062519,0.389525,-0.681478][-0.133793,-0.210017,-0.9685][0.045328,0.90811,0][-0.064209,0.402737,-0.669874][0.0422608,0.974449,-0.220596][0.050986,0.90811,0][-0.041327,0.401405,-0.673143][0.0312594,0.973137,-0.228095][0.050986,0.915563,0][-0.041327,0.401405,-0.673143][0.0312594,0.973137,-0.228095][0.050986,0.915563,0][-0.03955,0.387392,-0.685158][-0.174473,-0.220686,-0.959613][0.045328,0.915563,0][-0.062519,0.389525,-0.681478][-0.133793,-0.210017,-0.9685][0.045328,0.90811,0][0.011738,0.38258,-0.693018][-0.150705,-0.228022,-0.961922][0.022831,0.79482,0][0.012358,0.397659,-0.680993][0.0477721,0.966961,-0.250408][0.027232,0.79482,0][0.071389,0.39237,-0.686905][0.0661884,0.965083,-0.253444][0.027232,0.809407,0][0.071389,0.39237,-0.686905][0.0661884,0.965083,-0.253444][0.027232,0.809407,0][0.067818,0.37644,-0.699373][-0.126019,-0.234972,-0.963798][0.022831,0.809407,0][0.011738,0.38258,-0.693018][-0.150705,-0.228022,-0.961922][0.022831,0.79482,0][0.16726,0.317726,-0.745323][-0.695679,0.479541,-0.534856][0.022831,0.867177,0][0.215311,0.321682,-0.742227][0.715945,0.371156,-0.591326][0.027232,0.867177,0][0.213352,0.308033,-0.752908][0.699886,0.358978,-0.61749][0.027232,0.872385,0][0.213352,0.308033,-0.752908][0.699886,0.358978,-0.61749][0.027232,0.872385,0][0.165832,0.30388,-0.756159][-0.684591,0.465855,-0.560638][0.022831,0.872385,0][0.16726,0.317726,-0.745323][-0.695679,0.479541,-0.534856][0.022831,0.867177,0][0.080596,0.300269,-0.758984][0.698477,0.360072,-0.618449][0.108439,0.72684,0][0.062014,0.299155,-0.759856][-0.31497,0.321099,-0.893134][0.102929,0.72684,0][0.062855,0.314179,-0.748098][-0.0265509,0.970167,-0.240981][0.102929,0.724738,0][0.062855,0.314179,-0.748098][-0.0265509,0.970167,-0.240981][0.102929,0.724738,0][0.082589,0.314429,-0.747903][0.626578,0.750803,-0.209032][0.108439,0.724738,0][0.080596,0.300269,-0.758984][0.698477,0.360072,-0.618449][0.108439,0.72684,0][0.062014,0.299155,-0.759856][-0.31497,0.321099,-0.893134][0.102929,0.72684,0][0.010372,0.29583,-0.762128][0.09536,-0.228372,-0.968893][0.090755,0.72684,0][0.010756,0.311378,-0.750035][-0.0677893,0.968698,-0.238807][0.090755,0.724738,0][0.010756,0.311378,-0.750035][-0.0677893,0.968698,-0.238807][0.090755,0.724738,0][0.062855,0.314179,-0.748098][-0.0265509,0.970167,-0.240981][0.102929,0.724738,0][0.062014,0.299155,-0.759856][-0.31497,0.321099,-0.893134][0.102929,0.72684,0][-0.036592,0.288893,-0.7665][0.396764,0.272519,-0.876534][0.080789,0.72684,0][-0.060707,0.283116,-0.770141][-0.713167,0.346259,-0.609506][0.076418,0.72684,0][-0.061384,0.302286,-0.757052][-0.636758,0.724486,-0.26393][0.076418,0.724738,0][-0.061384,0.302286,-0.757052][-0.636758,0.724486,-0.26393][0.076418,0.724738,0][-0.037508,0.305812,-0.754167][-0.103588,0.960603,-0.2579][0.080789,0.724738,0][-0.036592,0.288893,-0.7665][0.396764,0.272519,-0.876534][0.080789,0.72684,0][-0.225531,0.288851,-0.733161][0.711757,0.231458,-0.663196][0.270531,0.928159,0][-0.212759,0.324005,-0.70172][0.713972,0.269938,-0.646047][0.266396,0.949788,0][-0.061384,0.29116,-0.731196][-0.310316,0.782013,-0.540517][0.19324,0.936456,0][-0.061384,0.29116,-0.731196][-0.310316,0.782013,-0.540517][0.19324,0.936456,0][-0.060707,0.271992,-0.744284][-0.707356,0.353827,-0.611926][0.191959,0.92574,0][-0.225531,0.288851,-0.733161][0.711757,0.231458,-0.663196][0.270531,0.928159,0][0.157483,0.226935,-0.805553][-0.698135,0.43535,-0.5684][0.022831,0.886562,0][0.165832,0.30388,-0.756159][-0.684591,0.465855,-0.560638][0.022831,0.872385,0][0.213352,0.308033,-0.752908][0.699886,0.358978,-0.61749][0.027232,0.872385,0][0.213352,0.308033,-0.752908][0.699886,0.358978,-0.61749][0.027232,0.872385,0][0.203057,0.21075,-0.815755][0.705845,0.334955,-0.62417][0.027232,0.886562,0][0.157483,0.226935,-0.805553][-0.698135,0.43535,-0.5684][0.022831,0.886562,0][0.074449,0.238402,-0.798325][0.712814,0.310155,-0.629047][0.108439,0.74525,0][0.053905,0.241884,-0.796131][-0.195528,0.753942,-0.627169][0.102929,0.74525,0][0.062014,0.299155,-0.759856][-0.31497,0.321099,-0.893134][0.102929,0.72684,0][0.062014,0.299155,-0.759856][-0.31497,0.321099,-0.893134][0.102929,0.72684,0][0.080596,0.300269,-0.758984][0.698477,0.360072,-0.618449][0.108439,0.72684,0][0.074449,0.238402,-0.798325][0.712814,0.310155,-0.629047][0.108439,0.74525,0][-0.058618,0.262535,-0.783114][-0.703261,0.344339,-0.621976][0.076418,0.74525,0][-0.060707,0.283116,-0.770141][-0.713167,0.346259,-0.609506][0.076418,0.72684,0][-0.036592,0.288893,-0.7665][0.396764,0.272519,-0.876534][0.080789,0.72684,0][-0.036592,0.288893,-0.7665][0.396764,0.272519,-0.876534][0.080789,0.72684,0][-0.033772,0.258878,-0.785419][0.335749,0.740102,-0.582684][0.080789,0.74525,0][-0.058618,0.262535,-0.783114][-0.703261,0.344339,-0.621976][0.076418,0.74525,0][-0.058618,0.251411,-0.757257][-0.715189,0.334568,-0.613652][0.189959,0.914494,0][-0.232589,0.27081,-0.745029][0.707524,0.198604,-0.678209][0.272963,0.917833,0][-0.225531,0.288851,-0.733161][0.711757,0.231458,-0.663196][0.270531,0.928159,0][-0.225531,0.288851,-0.733161][0.711757,0.231458,-0.663196][0.270531,0.928159,0][-0.060707,0.271992,-0.744284][-0.707356,0.353827,-0.611926][0.191959,0.92574,0][-0.058618,0.251411,-0.757257][-0.715189,0.334568,-0.613652][0.189959,0.914494,0][0.155327,0.205096,-0.819319][-0.698154,0.433094,-0.570097][0.022831,0.897673,0][0.157483,0.226935,-0.805553][-0.698135,0.43535,-0.5684][0.022831,0.886562,0][0.203057,0.21075,-0.815755][0.705845,0.334955,-0.62417][0.027232,0.886562,0][0.203057,0.21075,-0.815755][0.705845,0.334955,-0.62417][0.027232,0.886562,0][0.201422,0.188723,-0.829639][0.70314,0.311344,-0.639264][0.027232,0.902033,0][0.155327,0.205096,-0.819319][-0.698154,0.433094,-0.570097][0.022831,0.897673,0][0.052636,0.21883,-0.810662][-0.130543,-0.295442,-0.9464][0.102929,0.748558,0][0.053905,0.241884,-0.796131][-0.195528,0.753942,-0.627169][0.102929,0.74525,0][0.074449,0.238402,-0.798325][0.712814,0.310155,-0.629047][0.108439,0.74525,0][0.074449,0.238402,-0.798325][0.712814,0.310155,-0.629047][0.108439,0.74525,0][0.07136,0.216603,-0.812066][0.490454,-0.304138,-0.816673][0.108439,0.748558,0][0.052636,0.21883,-0.810662][-0.130543,-0.295442,-0.9464][0.102929,0.748558,0][-0.057572,0.236604,-0.799459][-0.596011,-0.207854,-0.775608][0.076418,0.748558,0][-0.058618,0.262535,-0.783114][-0.703261,0.344339,-0.621976][0.076418,0.74525,0][-0.033772,0.258878,-0.785419][0.335749,0.740102,-0.582684][0.080789,0.74525,0][-0.033772,0.258878,-0.785419][0.335749,0.740102,-0.582684][0.080789,0.74525,0][-0.032578,0.233745,-0.801261][-0.127079,-0.275626,-0.952828][0.080789,0.748558,0][-0.057572,0.236604,-0.799459][-0.596011,-0.207854,-0.775608][0.076418,0.748558,0][-0.23927,0.246058,-0.760631][0.706041,0.241221,-0.665821][0.274893,0.90392,0][-0.232589,0.27081,-0.745029][0.707524,0.198604,-0.678209][0.272963,0.917833,0][-0.058618,0.251411,-0.757257][-0.715189,0.334568,-0.613652][0.189959,0.914494,0][-0.058618,0.251411,-0.757257][-0.715189,0.334568,-0.613652][0.189959,0.914494,0][-0.057572,0.225479,-0.773602][-0.388786,0.192667,-0.900958][0.188188,0.900258,0][-0.23927,0.246058,-0.760631][0.706041,0.241221,-0.665821][0.274893,0.90392,0][0.07136,0.205478,-0.786209][0.29768,0.176091,-0.938285][0.126395,0.894686,0][0.096305,0.200624,-0.789269][9.55901e-006,0.53323,-0.845971][0.114392,0.893067,0][0.081481,0.175656,-0.805007][-0.00285364,0.497772,-0.867303][0.120152,0.87869,0][0.081481,0.175656,-0.805007][-0.00285364,0.497772,-0.867303][0.120152,0.87869,0][0.069264,0.179382,-0.802658][-0.00478827,0.509826,-0.860264][0.126097,0.880227,0][0.07136,0.205478,-0.786209][0.29768,0.176091,-0.938285][0.126395,0.894686,0][0.069264,0.179382,-0.802658][-0.00478827,0.509826,-0.860264][0.126097,0.880227,0][0.04779,0.180081,-0.802217][-0.000561522,0.508398,-0.861122][0.136259,0.879705,0][0.052636,0.207705,-0.784805][-0.129109,-0.276127,-0.95241][0.135335,0.895123,0][0.052636,0.207705,-0.784805][-0.129109,-0.276127,-0.95241][0.135335,0.895123,0][0.07136,0.205478,-0.786209][0.29768,0.176091,-0.938285][0.126395,0.894686,0][0.069264,0.179382,-0.802658][-0.00478827,0.509826,-0.860264][0.126097,0.880227,0][-0.056857,0.182613,-0.800621][7.24127e-005,0.529517,-0.8483][0.185736,0.876682,0][-0.057572,0.225479,-0.773602][-0.388786,0.192667,-0.900958][0.188188,0.900258,0][-0.032578,0.22262,-0.775404][-0.128617,-0.296519,-0.946327][0.176259,0.899739,0][-0.032578,0.22262,-0.775404][-0.128617,-0.296519,-0.946327][0.176259,0.899739,0][-0.031392,0.182124,-0.80093][0.00124321,0.526691,-0.850056][0.173703,0.877487,0][-0.056857,0.182613,-0.800621][7.24127e-005,0.529517,-0.8483][0.185736,0.876682,0][-0.251245,0.194454,-0.793158][0.754694,0.488822,-0.437595][0.277997,0.874996,0][-0.23927,0.246058,-0.760631][0.706041,0.241221,-0.665821][0.274893,0.90392,0][-0.057572,0.225479,-0.773602][-0.388786,0.192667,-0.900958][0.188188,0.900258,0][-0.057572,0.225479,-0.773602][-0.388786,0.192667,-0.900958][0.188188,0.900258,0][-0.056857,0.182613,-0.800621][7.24127e-005,0.529517,-0.8483][0.185736,0.876682,0][-0.251245,0.194454,-0.793158][0.754694,0.488822,-0.437595][0.277997,0.874996,0][0.010372,0.29583,-0.762128][0.09536,-0.228372,-0.968893][0.090755,0.72684,0][-0.036592,0.288893,-0.7665][0.396764,0.272519,-0.876534][0.080789,0.72684,0][-0.037508,0.305812,-0.754167][-0.103588,0.960603,-0.2579][0.080789,0.724738,0][-0.037508,0.305812,-0.754167][-0.103588,0.960603,-0.2579][0.080789,0.724738,0][0.010756,0.311378,-0.750035][-0.0677893,0.968698,-0.238807][0.090755,0.724738,0][0.010372,0.29583,-0.762128][0.09536,-0.228372,-0.968893][0.090755,0.72684,0][-0.03955,0.387392,-0.685158][-0.174473,-0.220686,-0.959613][0.045328,0.915563,0][-0.041327,0.401405,-0.673143][0.0312594,0.973137,-0.228095][0.050986,0.915563,0][0.012358,0.397659,-0.680993][0.0477721,0.966961,-0.250408][0.050986,0.923606,0][0.012358,0.397659,-0.680993][0.0477721,0.966961,-0.250408][0.050986,0.923606,0][0.011738,0.38258,-0.693018][-0.150705,-0.228022,-0.961922][0.045328,0.923606,0][-0.03955,0.387392,-0.685158][-0.174473,-0.220686,-0.959613][0.045328,0.915563,0][-0.031392,0.182124,-0.80093][0.00124321,0.526691,-0.850056][0.173703,0.877487,0][-0.032578,0.22262,-0.775404][-0.128617,-0.296519,-0.946327][0.176259,0.899739,0][0.008147,0.215492,-0.779897][-0.153787,-0.281667,-0.947108][0.156701,0.897533,0][0.008147,0.215492,-0.779897][-0.153787,-0.281667,-0.947108][0.156701,0.897533,0][0.00645,0.181148,-0.801545][0.00429026,0.516897,-0.856037][0.155808,0.878547,0][-0.031392,0.182124,-0.80093][0.00124321,0.526691,-0.850056][0.173703,0.877487,0][-0.032578,0.233745,-0.801261][-0.127079,-0.275626,-0.952828][0.080789,0.748558,0][-0.033772,0.258878,-0.785419][0.335749,0.740102,-0.582684][0.080789,0.74525,0][0.01556,0.249292,-0.791461][0.145358,0.941647,-0.303598][0.090755,0.74525,0][0.01556,0.249292,-0.791461][0.145358,0.941647,-0.303598][0.090755,0.74525,0][0.008147,0.226617,-0.805754][-0.153791,-0.281662,-0.947109][0.090755,0.748558,0][-0.032578,0.233745,-0.801261][-0.127079,-0.275626,-0.952828][0.080789,0.748558,0][0.07136,0.205478,-0.786209][0.29768,0.176091,-0.938285][0.126395,0.894686,0][0.074449,0.227278,-0.772468][0.705763,0.317524,-0.633306][0.126013,0.906822,0][0.100425,0.222497,-0.775482][0.000995609,0.535593,-0.844476][0.113527,0.905286,0][0.100425,0.222497,-0.775482][0.000995609,0.535593,-0.844476][0.113527,0.905286,0][0.096305,0.200624,-0.789269][9.55901e-006,0.53323,-0.845971][0.114392,0.893067,0][0.07136,0.205478,-0.786209][0.29768,0.176091,-0.938285][0.126395,0.894686,0][0.080596,0.289144,-0.733128][0.725969,0.333081,-0.601686][0.126169,0.941217,0][0.123183,0.291635,-0.731178][0.00238402,0.57854,-0.815651][0.106214,0.944457,0][0.100425,0.222497,-0.775482][0.000995609,0.535593,-0.844476][0.113527,0.905286,0][0.100425,0.222497,-0.775482][0.000995609,0.535593,-0.844476][0.113527,0.905286,0][0.074449,0.227278,-0.772468][0.705763,0.317524,-0.633306][0.126013,0.906822,0][0.080596,0.289144,-0.733128][0.725969,0.333081,-0.601686][0.126169,0.941217,0][0.082589,0.303304,-0.722046][0.231874,0.77489,-0.588031][0.125964,0.9495,0][0.125165,0.305631,-0.720225][-1.63014e-005,0.616304,-0.787508][0.106005,0.952644,0][0.123183,0.291635,-0.731178][0.00238402,0.57854,-0.815651][0.106214,0.944457,0][0.123183,0.291635,-0.731178][0.00238402,0.57854,-0.815651][0.106214,0.944457,0][0.080596,0.289144,-0.733128][0.725969,0.333081,-0.601686][0.126169,0.941217,0][0.082589,0.303304,-0.722046][0.231874,0.77489,-0.588031][0.125964,0.9495,0][0.090903,0.390589,-0.6883][0.0659829,0.965691,-0.251173][0.027232,0.8142,0][0.132019,0.387278,-0.690891][0.0735666,0.966915,-0.24426][0.027232,0.824207,0][0.128378,0.369232,-0.705013][-0.11782,-0.239719,-0.963667][0.022831,0.824207,0][0.128378,0.369232,-0.705013][-0.11782,-0.239719,-0.963667][0.022831,0.824207,0][0.087204,0.374149,-0.701165][-0.118017,-0.239101,-0.963796][0.022831,0.8142,0][0.090903,0.390589,-0.6883][0.0659829,0.965691,-0.251173][0.027232,0.8142,0][0.096305,0.200624,-0.789269][9.55901e-006,0.53323,-0.845971][0.114392,0.893067,0][0.108889,0.199086,-0.790238][1.14493e-005,0.533227,-0.845972][0.108381,0.892751,0][0.097203,0.175931,-0.804833][0.000536731,0.497719,-0.867338][0.11275,0.879506,0][0.097203,0.175931,-0.804833][0.000536731,0.497719,-0.867338][0.11275,0.879506,0][0.081481,0.175656,-0.805007][-0.00285364,0.497772,-0.867303][0.120152,0.87869,0][0.096305,0.200624,-0.789269][9.55901e-006,0.53323,-0.845971][0.114392,0.893067,0][0.035299,-0.0130503,-0.919904][0.22505,0.564081,-0.794459][0.050896,0.723203,0][0.008718,-0.0163313,-0.921315][-0.6734,0.479715,-0.562499][0.043998,0.717132,0][0.064261,0.139115,-0.854437][-0.297935,0.182812,-0.936917][0.043998,0.682703,0][0.064261,0.139115,-0.854437][-0.297935,0.182812,-0.936917][0.043998,0.682703,0][0.083033,0.139076,-0.854453][0.687173,0.108816,-0.718298][0.050896,0.682703,0][0.035299,-0.0130503,-0.919904][0.22505,0.564081,-0.794459][0.050896,0.723203,0][0.083033,0.139076,-0.854453][0.687173,0.108816,-0.718298][0.050896,0.682703,0][0.064261,0.139115,-0.854437][-0.297935,0.182812,-0.936917][0.043998,0.682703,0][0.072339,0.15486,-0.847662][0.144476,0.915039,-0.376603][0.050896,0.675708,0][0.072339,0.15486,-0.847662][0.144476,0.915039,-0.376603][0.050896,0.675708,0][0.086556,0.152162,-0.848823][0.691969,0.627952,-0.356167][0.050896,0.678703,0][0.083033,0.139076,-0.854453][0.687173,0.108816,-0.718298][0.050896,0.682703,0][0.086556,0.141037,-0.822966][0.352799,0.594725,-0.722381][0.116115,0.86056,0][0.072339,0.143735,-0.821805][0.15003,0.928327,-0.340148][0.122945,0.861345,0][0.081481,0.175656,-0.805007][-0.00285364,0.497772,-0.867303][0.120152,0.87869,0][0.081481,0.175656,-0.805007][-0.00285364,0.497772,-0.867303][0.120152,0.87869,0][0.097203,0.175931,-0.804833][0.000536731,0.497719,-0.867338][0.11275,0.879506,0][0.086556,0.141037,-0.822966][0.352799,0.594725,-0.722381][0.116115,0.86056,0][0.062114,0.145718,-0.820952][0.120472,0.930826,-0.345034][0.127858,0.861931,0][0.069264,0.179382,-0.802658][-0.00478827,0.509826,-0.860264][0.126097,0.880227,0][0.081481,0.175656,-0.805007][-0.00285364,0.497772,-0.867303][0.120152,0.87869,0][0.081481,0.175656,-0.805007][-0.00285364,0.497772,-0.867303][0.120152,0.87869,0][0.072339,0.143735,-0.821805][0.15003,0.928327,-0.340148][0.122945,0.861345,0][0.062114,0.145718,-0.820952][0.120472,0.930826,-0.345034][0.127858,0.861931,0][0.050547,0.147135,-0.820343][0.0711183,0.93901,-0.336454][0.133379,0.86217,0][0.04779,0.180081,-0.802217][-0.000561522,0.508398,-0.861122][0.136259,0.879705,0][0.069264,0.179382,-0.802658][-0.00478827,0.509826,-0.860264][0.126097,0.880227,0][0.069264,0.179382,-0.802658][-0.00478827,0.509826,-0.860264][0.126097,0.880227,0][0.062114,0.145718,-0.820952][0.120472,0.930826,-0.345034][0.127858,0.861931,0][0.050547,0.147135,-0.820343][0.0711183,0.93901,-0.336454][0.133379,0.86217,0][0.064261,0.139115,-0.854437][-0.297935,0.182812,-0.936917][0.022344,0.663697,0][0.057121,0.13951,-0.854266][-0.071568,-0.378364,-0.922886][0.022344,0.666993,0][0.062114,0.156843,-0.846809][0.121263,0.923798,-0.363169][0.017175,0.666993,0][0.062114,0.156843,-0.846809][0.121263,0.923798,-0.363169][0.017175,0.666993,0][0.072339,0.15486,-0.847662][0.144476,0.915039,-0.376603][0.017175,0.663697,0][0.064261,0.139115,-0.854437][-0.297935,0.182812,-0.936917][0.022344,0.663697,0][0.057121,0.13951,-0.854266][-0.071568,-0.378364,-0.922886][0.022344,0.666993,0][0.048445,0.140633,-0.853783][0.239795,-0.048145,-0.969629][0.022344,0.669709,0][0.050547,0.15826,-0.8462][0.0708393,0.929565,-0.361789][0.017175,0.669709,0][0.050547,0.15826,-0.8462][0.0708393,0.929565,-0.361789][0.017175,0.669709,0][0.062114,0.156843,-0.846809][0.121263,0.923798,-0.363169][0.017175,0.666993,0][0.057121,0.13951,-0.854266][-0.071568,-0.378364,-0.922886][0.022344,0.666993,0][0.100425,0.222497,-0.775482][0.000995609,0.535593,-0.844476][0.113527,0.905286,0][0.112555,0.220951,-0.776456][0.000569811,0.536293,-0.844032][0.10773,0.904947,0][0.108889,0.199086,-0.790238][1.14493e-005,0.533227,-0.845972][0.108381,0.892751,0][0.108889,0.199086,-0.790238][1.14493e-005,0.533227,-0.845972][0.108381,0.892751,0][0.096305,0.200624,-0.789269][9.55901e-006,0.53323,-0.845971][0.114392,0.893067,0][0.100425,0.222497,-0.775482][0.000995609,0.535593,-0.844476][0.113527,0.905286,0][0.123183,0.291635,-0.731178][0.00238402,0.57854,-0.815651][0.106214,0.944457,0][0.13183,0.291894,-0.730976][0.00143837,0.578618,-0.815598][0.102149,0.944972,0][0.112555,0.220951,-0.776456][0.000569811,0.536293,-0.844032][0.10773,0.904947,0][0.112555,0.220951,-0.776456][0.000569811,0.536293,-0.844032][0.10773,0.904947,0][0.100425,0.222497,-0.775482][0.000995609,0.535593,-0.844476][0.113527,0.905286,0][0.123183,0.291635,-0.731178][0.00238402,0.57854,-0.815651][0.106214,0.944457,0][0.125165,0.305631,-0.720225][-1.63014e-005,0.616304,-0.787508][0.106005,0.952644,0][0.133684,0.305855,-0.72005][-1.32514e-005,0.616308,-0.787505][0.101998,0.953134,0][0.13183,0.291894,-0.730976][0.00143837,0.578618,-0.815598][0.102149,0.944972,0][0.13183,0.291894,-0.730976][0.00143837,0.578618,-0.815598][0.102149,0.944972,0][0.123183,0.291635,-0.731178][0.00238402,0.57854,-0.815651][0.106214,0.944457,0][0.125165,0.305631,-0.720225][-1.63014e-005,0.616304,-0.787508][0.106005,0.952644,0][0.132019,0.387278,-0.690891][0.0735666,0.966915,-0.24426][0.027232,0.824207,0][0.140457,0.386361,-0.691609][0.0759035,0.964442,-0.253159][0.027232,0.833195,0][0.136756,0.368247,-0.705785][-0.139206,-0.227079,-0.963876][0.022831,0.833195,0][0.136756,0.368247,-0.705785][-0.139206,-0.227079,-0.963876][0.022831,0.833195,0][0.128378,0.369232,-0.705013][-0.11782,-0.239719,-0.963667][0.022831,0.824207,0][0.132019,0.387278,-0.690891][0.0735666,0.966915,-0.24426][0.027232,0.824207,0][0.201422,0.188723,-0.829639][0.70314,0.311344,-0.639264][0.027232,0.902033,0][0.153421,0.18797,-0.830114][-0.693629,0.410257,-0.592088][0.022831,0.902033,0][0.155327,0.205096,-0.819319][-0.698154,0.433094,-0.570097][0.022831,0.897673,0][0.198108,0.155029,-0.847589][0.691933,0.273452,-0.668171][0.027232,0.912134,0][0.150076,0.152151,-0.848828][-0.694426,0.361378,-0.622237][0.022831,0.912134,0][0.153421,0.18797,-0.830114][-0.693629,0.410257,-0.592088][0.022831,0.902033,0][0.153421,0.18797,-0.830114][-0.693629,0.410257,-0.592088][0.022831,0.902033,0][0.201422,0.188723,-0.829639][0.70314,0.311344,-0.639264][0.027232,0.902033,0][0.198108,0.155029,-0.847589][0.691933,0.273452,-0.668171][0.027232,0.912134,0][0.197387,0.139003,-0.854484][0.707888,0.247262,-0.661631][0.027232,0.916745,0][0.14873,0.139102,-0.854442][-0.702137,0.345143,-0.6228][0.022831,0.916745,0][0.150076,0.152151,-0.848828][-0.694426,0.361378,-0.622237][0.022831,0.912134,0][0.150076,0.152151,-0.848828][-0.694426,0.361378,-0.622237][0.022831,0.912134,0][0.198108,0.155029,-0.847589][0.691933,0.273452,-0.668171][0.027232,0.912134,0][0.197387,0.139003,-0.854484][0.707888,0.247262,-0.661631][0.027232,0.916745,0][0.19011,0.0190627,-0.906087][0.705584,0.245041,-0.664911][0.043998,0.759897,0][0.132909,0.0035817,-0.912748][-0.363158,0.652389,-0.665211][0.050896,0.756616,0][0.14873,0.139102,-0.854442][-0.702137,0.345143,-0.6228][0.050896,0.776606,0][0.14873,0.139102,-0.854442][-0.702137,0.345143,-0.6228][0.050896,0.776606,0][0.197387,0.139003,-0.854484][0.707888,0.247262,-0.661631][0.043998,0.776606,0][0.19011,0.0190627,-0.906087][0.705584,0.245041,-0.664911][0.043998,0.759897,0][0.140457,0.386361,-0.691609][0.0759035,0.964442,-0.253159][0.027232,0.833195,0][0.174417,0.38331,-0.693996][0.106753,0.966123,-0.23497][0.027232,0.839916,0][0.170234,0.362726,-0.710105][-0.43415,0.312749,-0.844808][0.022831,0.844904,0][0.170234,0.362726,-0.710105][-0.43415,0.312749,-0.844808][0.022831,0.844904,0][0.136756,0.368247,-0.705785][-0.139206,-0.227079,-0.963876][0.022831,0.833195,0][0.140457,0.386361,-0.691609][0.0759035,0.964442,-0.253159][0.027232,0.833195,0][0.133684,0.305855,-0.72005][-1.32514e-005,0.616308,-0.787505][0.101998,0.953134,0][0.16726,0.306601,-0.719466][-0.702926,0.473027,-0.531169][0.086202,0.954984,0][0.165832,0.292755,-0.730302][-0.709043,0.458136,-0.536068][0.086158,0.946906,0][0.165832,0.292755,-0.730302][-0.709043,0.458136,-0.536068][0.086158,0.946906,0][0.13183,0.291894,-0.730976][0.00143837,0.578618,-0.815598][0.102149,0.944972,0][0.133684,0.305855,-0.72005][-1.32514e-005,0.616308,-0.787505][0.101998,0.953134,0][0.13183,0.291894,-0.730976][0.00143837,0.578618,-0.815598][0.102149,0.944972,0][0.165832,0.292755,-0.730302][-0.709043,0.458136,-0.536068][0.086158,0.946906,0][0.157483,0.21581,-0.779697][-0.699203,0.43388,-0.568211][0.086288,0.904012,0][0.157483,0.21581,-0.779697][-0.699203,0.43388,-0.568211][0.086288,0.904012,0][0.112555,0.220951,-0.776456][0.000569811,0.536293,-0.844032][0.10773,0.904947,0][0.13183,0.291894,-0.730976][0.00143837,0.578618,-0.815598][0.102149,0.944972,0][0.108889,0.199086,-0.790238][1.14493e-005,0.533227,-0.845972][0.108381,0.892751,0][0.112555,0.220951,-0.776456][0.000569811,0.536293,-0.844032][0.10773,0.904947,0][0.157483,0.21581,-0.779697][-0.699203,0.43388,-0.568211][0.086288,0.904012,0][0.157483,0.21581,-0.779697][-0.699203,0.43388,-0.568211][0.086288,0.904012,0][0.155327,0.193971,-0.793462][-0.700658,0.431364,-0.568335][0.086227,0.891894,0][0.108889,0.199086,-0.790238][1.14493e-005,0.533227,-0.845972][0.108381,0.892751,0][0.108889,0.199086,-0.790238][1.14493e-005,0.533227,-0.845972][0.108381,0.892751,0][0.155327,0.193971,-0.793462][-0.700658,0.431364,-0.568335][0.086227,0.891894,0][0.153421,0.176845,-0.804257][-0.708192,0.406802,-0.577041][0.086282,0.882383,0][0.153421,0.176845,-0.804257][-0.708192,0.406802,-0.577041][0.086282,0.882383,0][0.097203,0.175931,-0.804833][0.000536731,0.497719,-0.867338][0.11275,0.879506,0][0.108889,0.199086,-0.790238][1.14493e-005,0.533227,-0.845972][0.108381,0.892751,0][0.150076,0.141026,-0.822971][-0.712732,0.358084,-0.603149][0.086158,0.863236,0][0.086556,0.141037,-0.822966][0.352799,0.594725,-0.722381][0.116115,0.86056,0][0.097203,0.175931,-0.804833][0.000536731,0.497719,-0.867338][0.11275,0.879506,0][0.097203,0.175931,-0.804833][0.000536731,0.497719,-0.867338][0.11275,0.879506,0][0.153421,0.176845,-0.804257][-0.708192,0.406802,-0.577041][0.086282,0.882383,0][0.150076,0.141026,-0.822971][-0.712732,0.358084,-0.603149][0.086158,0.863236,0][0.14873,0.127977,-0.828585][-0.704907,0.344301,-0.620131][0.086193,0.856479,0][0.083033,0.127951,-0.828596][0.678857,0.114254,-0.725327][0.117176,0.853693,0][0.086556,0.141037,-0.822966][0.352799,0.594725,-0.722381][0.116115,0.86056,0][0.086556,0.141037,-0.822966][0.352799,0.594725,-0.722381][0.116115,0.86056,0][0.150076,0.141026,-0.822971][-0.712732,0.358084,-0.603149][0.086158,0.863236,0][0.14873,0.127977,-0.828585][-0.704907,0.344301,-0.620131][0.086193,0.856479,0][0.132909,-0.0075423,-0.886891][-0.59011,0.73689,-0.329793][0.087427,0.786234,0][0.035299,-0.0241743,-0.894047][0.615208,0.732735,-0.290893][0.132697,0.773574,0][0.083033,0.127951,-0.828596][0.678857,0.114254,-0.725327][0.117176,0.853693,0][0.083033,0.127951,-0.828596][0.678857,0.114254,-0.725327][0.117176,0.853693,0][0.14873,0.127977,-0.828585][-0.704907,0.344301,-0.620131][0.086193,0.856479,0][0.132909,-0.0075423,-0.886891][-0.59011,0.73689,-0.329793][0.087427,0.786234,0][0.188601,-0.0080613,-0.917757][0.617784,-0.239104,-0.749114][0.043998,0.757693,0][0.129626,-0.0207853,-0.923232][0.181439,-0.338611,-0.923267][0.043998,0.752868,0][0.132909,0.0035817,-0.912748][-0.363158,0.652389,-0.665211][0.050896,0.756616,0][0.132909,0.0035817,-0.912748][-0.363158,0.652389,-0.665211][0.050896,0.756616,0][0.19011,0.0190627,-0.906087][0.705584,0.245041,-0.664911][0.043998,0.759897,0][0.188601,-0.0080613,-0.917757][0.617784,-0.239104,-0.749114][0.043998,0.757693,0][0.129626,-0.0207853,-0.923232][0.181439,-0.338611,-0.923267][0.043998,0.752868,0][0.025395,-0.0497523,-0.935694][0.20414,-0.342743,-0.916981][0.043998,0.729223,0][0.035299,-0.0130503,-0.919904][0.22505,0.564081,-0.794459][0.050896,0.723203,0][0.035299,-0.0130503,-0.919904][0.22505,0.564081,-0.794459][0.050896,0.723203,0][0.132909,0.0035817,-0.912748][-0.363158,0.652389,-0.665211][0.050896,0.756616,0][0.129626,-0.0207853,-0.923232][0.181439,-0.338611,-0.923267][0.043998,0.752868,0][0.025395,-0.0497523,-0.935694][0.20414,-0.342743,-0.916981][0.043998,0.729223,0][-0.005951,-0.0583993,-0.939415][-0.5949,-0.318378,-0.738058][0.043998,0.722824,0][0.008718,-0.0163313,-0.921315][-0.6734,0.479715,-0.562499][0.043998,0.717132,0][0.008718,-0.0163313,-0.921315][-0.6734,0.479715,-0.562499][0.043998,0.717132,0][0.035299,-0.0130503,-0.919904][0.22505,0.564081,-0.794459][0.050896,0.723203,0][0.025395,-0.0497523,-0.935694][0.20414,-0.342743,-0.916981][0.043998,0.729223,0][0.16726,0.317726,-0.745323][-0.695679,0.479541,-0.534856][0.022831,0.867177,0][0.170234,0.362726,-0.710105][-0.43415,0.312749,-0.844808][0.022831,0.844904,0][0.218453,0.351224,-0.719107][0.718159,0.395799,-0.572355][0.027232,0.851441,0][0.218453,0.351224,-0.719107][0.718159,0.395799,-0.572355][0.027232,0.851441,0][0.215311,0.321682,-0.742227][0.715945,0.371156,-0.591326][0.027232,0.867177,0][0.16726,0.317726,-0.745323][-0.695679,0.479541,-0.534856][0.022831,0.867177,0][0.133684,0.305855,-0.72005][-1.32514e-005,0.616308,-0.787505][0.101998,0.953134,0][0.136756,0.357122,-0.679928][-0.139866,-0.244533,-0.9595][0.103207,0.982952,0][0.170234,0.351602,-0.684248][-0.634966,-0.129509,-0.761607][0.087133,0.981169,0][0.170234,0.351602,-0.684248][-0.634966,-0.129509,-0.761607][0.087133,0.981169,0][0.16726,0.306601,-0.719466][-0.702926,0.473027,-0.531169][0.086202,0.954984,0][0.133684,0.305855,-0.72005][-1.32514e-005,0.616308,-0.787505][0.101998,0.953134,0][0.125165,0.305631,-0.720225][-1.63014e-005,0.616304,-0.787508][0.106005,0.952644,0][0.128378,0.358108,-0.679156][-0.117793,-0.239029,-0.963841][0.10721,0.983169,0][0.136756,0.357122,-0.679928][-0.139866,-0.244533,-0.9595][0.103207,0.982952,0][0.136756,0.357122,-0.679928][-0.139866,-0.244533,-0.9595][0.103207,0.982952,0][0.133684,0.305855,-0.72005][-1.32514e-005,0.616308,-0.787505][0.101998,0.953134,0][0.125165,0.305631,-0.720225][-1.63014e-005,0.616304,-0.787508][0.106005,0.952644,0][0.125165,0.305631,-0.720225][-1.63014e-005,0.616304,-0.787508][0.106005,0.952644,0][0.082589,0.303304,-0.722046][0.231874,0.77489,-0.588031][0.125964,0.9495,0][0.087204,0.363025,-0.675309][-0.118029,-0.239563,-0.96368][0.126883,0.984278,0][0.087204,0.363025,-0.675309][-0.118029,-0.239563,-0.96368][0.126883,0.984278,0][0.128378,0.358108,-0.679156][-0.117793,-0.239029,-0.963841][0.10721,0.983169,0][0.125165,0.305631,-0.720225][-1.63014e-005,0.616304,-0.787508][0.106005,0.952644,0][0.062855,0.303055,-0.722241][-0.0260865,0.966663,-0.254719][0.135258,0.948522,0][0.067818,0.365315,-0.673516][-0.124412,-0.240475,-0.962649][0.136144,0.984787,0][0.087204,0.363025,-0.675309][-0.118029,-0.239563,-0.96368][0.126883,0.984278,0][0.087204,0.363025,-0.675309][-0.118029,-0.239563,-0.96368][0.126883,0.984278,0][0.082589,0.303304,-0.722046][0.231874,0.77489,-0.588031][0.125964,0.9495,0][0.062855,0.303055,-0.722241][-0.0260865,0.966663,-0.254719][0.135258,0.948522,0][0.010756,0.300253,-0.724178][-0.0672372,0.964189,-0.256551][0.159687,0.944748,0][0.011738,0.371455,-0.667161][-0.146871,-0.234201,-0.96103][0.162937,0.986263,0][0.067818,0.365315,-0.673516][-0.124412,-0.240475,-0.962649][0.136144,0.984787,0][0.067818,0.365315,-0.673516][-0.124412,-0.240475,-0.962649][0.136144,0.984787,0][0.062855,0.303055,-0.722241][-0.0260865,0.966663,-0.254719][0.135258,0.948522,0][0.010756,0.300253,-0.724178][-0.0672372,0.964189,-0.256551][0.159687,0.944748,0][-0.037508,0.294688,-0.72831][-0.105723,0.963999,-0.243984][0.182165,0.93953,0][-0.03955,0.376267,-0.659301][-0.168026,-0.218028,-0.961369][0.187442,0.987648,0][0.011738,0.371455,-0.667161][-0.146871,-0.234201,-0.96103][0.162937,0.986263,0][0.011738,0.371455,-0.667161][-0.146871,-0.234201,-0.96103][0.162937,0.986263,0][0.010756,0.300253,-0.724178][-0.0672372,0.964189,-0.256551][0.159687,0.944748,0][-0.037508,0.294688,-0.72831][-0.105723,0.963999,-0.243984][0.182165,0.93953,0][-0.061384,0.29116,-0.731196][-0.310316,0.782013,-0.540517][0.19324,0.936456,0][-0.062519,0.3784,-0.655621][-0.117163,-0.223235,-0.967698][0.198419,0.988288,0][-0.03955,0.376267,-0.659301][-0.168026,-0.218028,-0.961369][0.187442,0.987648,0][-0.03955,0.376267,-0.659301][-0.168026,-0.218028,-0.961369][0.187442,0.987648,0][-0.037508,0.294688,-0.72831][-0.105723,0.963999,-0.243984][0.182165,0.93953,0][-0.061384,0.29116,-0.731196][-0.310316,0.782013,-0.540517][0.19324,0.936456,0][-0.212759,0.324005,-0.70172][0.713972,0.269938,-0.646047][0.266396,0.949788,0][-0.183954,0.382956,-0.646487][0.424706,-0.221139,-0.877908][0.256018,0.986837,0][-0.062519,0.3784,-0.655621][-0.117163,-0.223235,-0.967698][0.198419,0.988288,0][-0.062519,0.3784,-0.655621][-0.117163,-0.223235,-0.967698][0.198419,0.988288,0][-0.061384,0.29116,-0.731196][-0.310316,0.782013,-0.540517][0.19324,0.936456,0][-0.212759,0.324005,-0.70172][0.713972,0.269938,-0.646047][0.266396,0.949788,0][-0.251245,0.205579,-0.819014][0.516549,0.569349,-0.639545][0.045327,0.840276,0][-0.298518,0.200326,-0.822326][-0.766127,0.0976959,-0.635221][0.050986,0.840276,0][-0.277668,0.25442,-0.788229][-0.654994,0.577222,-0.487644][0.050986,0.849151,0][-0.277668,0.25442,-0.788229][-0.654994,0.577222,-0.487644][0.050986,0.849151,0][-0.23927,0.257182,-0.786488][0.699696,0.24803,-0.670005][0.045327,0.849151,0][-0.251245,0.205579,-0.819014][0.516549,0.569349,-0.639545][0.045327,0.840276,0][-0.23927,0.257182,-0.786488][0.699696,0.24803,-0.670005][0.045327,0.849151,0][-0.277668,0.25442,-0.788229][-0.654994,0.577222,-0.487644][0.050986,0.849151,0][-0.259181,0.296006,-0.762017][-0.621807,0.606296,-0.495743][0.050986,0.867843,0][-0.259181,0.296006,-0.762017][-0.621807,0.606296,-0.495743][0.050986,0.867843,0][-0.232589,0.281934,-0.770886][0.68637,0.222207,-0.692475][0.045327,0.864695,0][-0.23927,0.257182,-0.786488][0.699696,0.24803,-0.670005][0.045327,0.849151,0][-0.259181,0.296006,-0.762017][-0.621807,0.606296,-0.495743][0.050986,0.867843,0][-0.225531,0.299975,-0.759018][0.691944,0.270264,-0.669456][0.045328,0.871543,0][-0.232589,0.281934,-0.770886][0.68637,0.222207,-0.692475][0.045327,0.864695,0][-0.259181,0.296006,-0.762017][-0.621807,0.606296,-0.495743][0.050986,0.867843,0][-0.24018,0.351648,-0.714148][-0.639043,0.631551,-0.439053][0.050986,0.880548,0][-0.212759,0.33513,-0.727577][0.705831,0.288744,-0.646861][0.045328,0.880548,0][-0.212759,0.33513,-0.727577][0.705831,0.288744,-0.646861][0.045328,0.880548,0][-0.225531,0.299975,-0.759018][0.691944,0.270264,-0.669456][0.045328,0.871543,0][-0.259181,0.296006,-0.762017][-0.621807,0.606296,-0.495743][0.050986,0.867843,0][-0.24018,0.351648,-0.714148][-0.639043,0.631551,-0.439053][0.050986,0.880548,0][-0.221064,0.39852,-0.671686][-0.614821,0.665093,-0.423846][0.050986,0.890061,0][-0.183954,0.394081,-0.672344][0.391871,0.192459,-0.899665][0.045328,0.892673,0][-0.183954,0.394081,-0.672344][0.391871,0.192459,-0.899665][0.045328,0.892673,0][-0.212759,0.33513,-0.727577][0.705831,0.288744,-0.646861][0.045328,0.880548,0][-0.24018,0.351648,-0.714148][-0.639043,0.631551,-0.439053][0.050986,0.880548,0][-0.183954,0.394081,-0.672344][0.391871,0.192459,-0.899665][0.045328,0.892673,0][-0.221064,0.39852,-0.671686][-0.614821,0.665093,-0.423846][0.050986,0.890061,0][-0.213076,0.4142,-0.656946][-0.424758,0.893162,-0.147792][0.050986,0.893398,0][-0.213076,0.4142,-0.656946][-0.424758,0.893162,-0.147792][0.050986,0.893398,0][-0.178562,0.411966,-0.655314][0.0620585,0.983167,-0.171845][0.050986,0.896948,0][-0.183954,0.394081,-0.672344][0.391871,0.192459,-0.899665][0.045328,0.892673,0][0.04779,0.180081,-0.802217][-0.000561522,0.508398,-0.861122][0.136259,0.879705,0][0.050547,0.147135,-0.820343][0.0711183,0.93901,-0.336454][0.133379,0.86217,0][0.037922,0.147902,-0.820013][-0.249939,0.78153,-0.571613][0.139368,0.862031,0][0.048445,0.140633,-0.853783][0.239795,-0.048145,-0.969629][0.022344,0.669709,0][0.027827,0.139402,-0.854313][-0.638805,0.557559,-0.530147][0.017175,0.674058,0][0.037922,0.159027,-0.84587][-0.405688,0.870617,-0.278285][0.017175,0.672156,0][0.037922,0.159027,-0.84587][-0.405688,0.870617,-0.278285][0.017175,0.672156,0][0.050547,0.15826,-0.8462][0.0708393,0.929565,-0.361789][0.017175,0.669709,0][0.048445,0.140633,-0.853783][0.239795,-0.048145,-0.969629][0.022344,0.669709,0][-0.01948,0.156971,-0.816111][0.240968,0.543694,-0.803947][0.166856,0.864264,0][-0.031392,0.182124,-0.80093][0.00124321,0.526691,-0.850056][0.173703,0.877487,0][0.00645,0.181148,-0.801545][0.00429026,0.516897,-0.856037][0.155808,0.878547,0][0.00645,0.181148,-0.801545][0.00429026,0.516897,-0.856037][0.155808,0.878547,0][0.007953,0.152637,-0.817975][0.0100886,0.448399,-0.893776][0.153719,0.863197,0][-0.01948,0.156971,-0.816111][0.240968,0.543694,-0.803947][0.166856,0.864264,0][-0.006879,0.13184,-0.826923][3.53271e-006,0.395214,-0.918589][0.159759,0.851893,0][-0.038649,0.135101,-0.82552][0.520006,-0.140951,-0.842453][0.174892,0.852226,0][-0.01948,0.156971,-0.816111][0.240968,0.543694,-0.803947][0.166856,0.864264,0][-0.01948,0.156971,-0.816111][0.240968,0.543694,-0.803947][0.166856,0.864264,0][0.007953,0.152637,-0.817975][0.0100886,0.448399,-0.893776][0.153719,0.863197,0][-0.006879,0.13184,-0.826923][3.53271e-006,0.395214,-0.918589][0.159759,0.851893,0][-0.119187,-0.0102033,-0.888036][-0.00774686,0.39915,-0.916853][0.206197,0.774225,0][-0.179257,0.00274169,-0.881284][0.501322,-0.191689,-0.84376][0.235141,0.778556,0][-0.038649,0.135101,-0.82552][0.520006,-0.140951,-0.842453][0.174892,0.852226,0][-0.038649,0.135101,-0.82552][0.520006,-0.140951,-0.842453][0.174892,0.852226,0][-0.006879,0.13184,-0.826923][3.53271e-006,0.395214,-0.918589][0.159759,0.851893,0][-0.119187,-0.0102033,-0.888036][-0.00774686,0.39915,-0.916853][0.206197,0.774225,0][-0.027648,-0.0209373,-0.923297][0.650523,0.0412283,-0.758367][0.022344,0.692149,0][-0.051342,-0.0136903,-0.920179][-0.63227,0.565496,-0.529575][0.017175,0.692149,0][0.027827,0.139402,-0.854313][-0.638805,0.557559,-0.530147][0.017175,0.674058,0][0.027827,0.139402,-0.854313][-0.638805,0.557559,-0.530147][0.017175,0.674058,0][0.048445,0.140633,-0.853783][0.239795,-0.048145,-0.969629][0.022344,0.669709,0][-0.027648,-0.0209373,-0.923297][0.650523,0.0412283,-0.758367][0.022344,0.692149,0][-0.151234,-0.0573573,-0.908323][0.0733365,0.928103,-0.365029][0.219143,0.748663,0][-0.227973,-0.0521743,-0.894709][0.733273,0.50018,-0.460576][0.255763,0.750206,0][-0.179257,0.00274169,-0.881284][0.501322,-0.191689,-0.84376][0.235141,0.778556,0][-0.179257,0.00274169,-0.881284][0.501322,-0.191689,-0.84376][0.235141,0.778556,0][-0.119187,-0.0102033,-0.888036][-0.00774686,0.39915,-0.916853][0.206197,0.774225,0][-0.151234,-0.0573573,-0.908323][0.0733365,0.928103,-0.365029][0.219143,0.748663,0][-0.046645,-0.0677183,-0.943424][0.66002,0.0199005,-0.750984][0.022344,0.709337,0][-0.075916,-0.0582783,-0.939363][-0.222522,0.750653,-0.622097][0.017175,0.715874,0][-0.051342,-0.0136903,-0.920179][-0.63227,0.565496,-0.529575][0.017175,0.692149,0][-0.051342,-0.0136903,-0.920179][-0.63227,0.565496,-0.529575][0.017175,0.692149,0][-0.027648,-0.0209373,-0.923297][0.650523,0.0412283,-0.758367][0.022344,0.692149,0][-0.046645,-0.0677183,-0.943424][0.66002,0.0199005,-0.750984][0.022344,0.709337,0][-0.170776,-0.0818533,-0.945158][-0.190207,-0.359158,-0.913688][0.022344,0.738767,0][-0.249898,-0.0794303,-0.926748][-0.1769,-0.442067,-0.879365][0.022344,0.754204,0][-0.227973,-0.0410493,-0.920566][0.149778,0.372339,-0.915931][0.017175,0.759347,0][-0.227973,-0.0410493,-0.920566][0.149778,0.372339,-0.915931][0.017175,0.759347,0][-0.151234,-0.0462323,-0.93418][0.0487399,0.91197,-0.407351][0.017175,0.738767,0][-0.170776,-0.0818533,-0.945158][-0.190207,-0.359158,-0.913688][0.022344,0.738767,0][-0.063263,-0.100009,-0.957317][0.35962,-0.429941,-0.828145][0.022344,0.716273,0][-0.089339,-0.0950233,-0.955172][-0.145571,-0.354025,-0.923837][0.022344,0.721874,0][-0.075916,-0.0582783,-0.939363][-0.222522,0.750653,-0.622097][0.017175,0.715874,0][-0.075916,-0.0582783,-0.939363][-0.222522,0.750653,-0.622097][0.017175,0.715874,0][-0.046645,-0.0677183,-0.943424][0.66002,0.0199005,-0.750984][0.022344,0.709337,0][-0.063263,-0.100009,-0.957317][0.35962,-0.429941,-0.828145][0.022344,0.716273,0][0.008147,0.226617,-0.805754][-0.153791,-0.281662,-0.947109][0.090755,0.748558,0][0.01556,0.249292,-0.791461][0.145358,0.941647,-0.303598][0.090755,0.74525,0][0.053905,0.241884,-0.796131][-0.195528,0.753942,-0.627169][0.102929,0.74525,0][0.053905,0.241884,-0.796131][-0.195528,0.753942,-0.627169][0.102929,0.74525,0][0.052636,0.21883,-0.810662][-0.130543,-0.295442,-0.9464][0.102929,0.748558,0][0.008147,0.226617,-0.805754][-0.153791,-0.281662,-0.947109][0.090755,0.748558,0][0.052636,0.207705,-0.784805][-0.129109,-0.276127,-0.95241][0.135335,0.895123,0][0.04779,0.180081,-0.802217][-0.000561522,0.508398,-0.861122][0.136259,0.879705,0][0.00645,0.181148,-0.801545][0.00429026,0.516897,-0.856037][0.155808,0.878547,0][0.00645,0.181148,-0.801545][0.00429026,0.516897,-0.856037][0.155808,0.878547,0][0.008147,0.215492,-0.779897][-0.153787,-0.281667,-0.947108][0.156701,0.897533,0][0.052636,0.207705,-0.784805][-0.129109,-0.276127,-0.95241][0.135335,0.895123,0][0.037922,0.147902,-0.820013][-0.249939,0.78153,-0.571613][0.139368,0.862031,0][0.007953,0.152637,-0.817975][0.0100886,0.448399,-0.893776][0.153719,0.863197,0][0.00645,0.181148,-0.801545][0.00429026,0.516897,-0.856037][0.155808,0.878547,0][0.00645,0.181148,-0.801545][0.00429026,0.516897,-0.856037][0.155808,0.878547,0][0.04779,0.180081,-0.802217][-0.000561522,0.508398,-0.861122][0.136259,0.879705,0][0.037922,0.147902,-0.820013][-0.249939,0.78153,-0.571613][0.139368,0.862031,0][0.027827,0.128277,-0.828456][-0.639228,0.55756,-0.529636][0.143227,0.851529,0][-0.006879,0.13184,-0.826923][3.53271e-006,0.395214,-0.918589][0.159759,0.851893,0][0.007953,0.152637,-0.817975][0.0100886,0.448399,-0.893776][0.153719,0.863197,0][0.007953,0.152637,-0.817975][0.0100886,0.448399,-0.893776][0.153719,0.863197,0][0.037922,0.147902,-0.820013][-0.249939,0.78153,-0.571613][0.139368,0.862031,0][0.027827,0.128277,-0.828456][-0.639228,0.55756,-0.529636][0.143227,0.851529,0][-0.051342,-0.0248143,-0.894322][-0.637355,0.565548,-0.523387][0.173528,0.769588,0][-0.119187,-0.0102033,-0.888036][-0.00774686,0.39915,-0.916853][0.206197,0.774225,0][-0.006879,0.13184,-0.826923][3.53271e-006,0.395214,-0.918589][0.159759,0.851893,0][-0.006879,0.13184,-0.826923][3.53271e-006,0.395214,-0.918589][0.159759,0.851893,0][0.027827,0.128277,-0.828456][-0.639228,0.55756,-0.529636][0.143227,0.851529,0][-0.051342,-0.0248143,-0.894322][-0.637355,0.565548,-0.523387][0.173528,0.769588,0][-0.075916,-0.0694033,-0.913506][-0.360477,0.895189,-0.262092][0.183069,0.745658,0][-0.151234,-0.0573573,-0.908323][0.0733365,0.928103,-0.365029][0.219143,0.748663,0][-0.119187,-0.0102033,-0.888036][-0.00774686,0.39915,-0.916853][0.206197,0.774225,0][-0.119187,-0.0102033,-0.888036][-0.00774686,0.39915,-0.916853][0.206197,0.774225,0][-0.051342,-0.0248143,-0.894322][-0.637355,0.565548,-0.523387][0.173528,0.769588,0][-0.075916,-0.0694033,-0.913506][-0.360477,0.895189,-0.262092][0.183069,0.745658,0][-0.089339,-0.0950233,-0.955172][-0.145571,-0.354025,-0.923837][0.022344,0.721874,0][-0.170776,-0.0818533,-0.945158][-0.190207,-0.359158,-0.913688][0.022344,0.738767,0][-0.151234,-0.0462323,-0.93418][0.0487399,0.91197,-0.407351][0.017175,0.738767,0][-0.151234,-0.0462323,-0.93418][0.0487399,0.91197,-0.407351][0.017175,0.738767,0][-0.075916,-0.0582783,-0.939363][-0.222522,0.750653,-0.622097][0.017175,0.715874,0][-0.089339,-0.0950233,-0.955172][-0.145571,-0.354025,-0.923837][0.022344,0.721874,0][-0.055423,0.169965,-0.841164][0.0216592,0.931705,-0.362568][0.045327,0.817714,0][-0.01948,0.168096,-0.841968][0.762271,0.529154,-0.372744][0.045327,0.814659,0][-0.038649,0.146225,-0.851377][0.535739,-0.163177,-0.828467][0.045327,0.811225,0][-0.038649,0.146225,-0.851377][0.535739,-0.163177,-0.828467][0.045327,0.811225,0][-0.072557,0.148094,-0.850573][-0.168995,0.32058,-0.932024][0.050986,0.813901,0][-0.055423,0.169965,-0.841164][0.0216592,0.931705,-0.362568][0.045327,0.817714,0][-0.072557,0.148094,-0.850573][-0.168995,0.32058,-0.932024][0.050986,0.813901,0][-0.038649,0.146225,-0.851377][0.535739,-0.163177,-0.828467][0.045327,0.811225,0][-0.179257,0.0138657,-0.907141][0.484647,-0.170058,-0.858019][0.045327,0.796226,0][-0.179257,0.0138657,-0.907141][0.484647,-0.170058,-0.858019][0.045327,0.796226,0][-0.223338,0.0229937,-0.902619][-0.495558,0.714625,-0.493693][0.050986,0.796226,0][-0.072557,0.148094,-0.850573][-0.168995,0.32058,-0.932024][0.050986,0.813901,0][-0.223338,0.0229937,-0.902619][-0.495558,0.714625,-0.493693][0.022344,0.783638,0][-0.179257,0.0138657,-0.907141][0.484647,-0.170058,-0.858019][0.017175,0.783638,0][-0.227973,-0.0410493,-0.920566][0.149778,0.372339,-0.915931][0.017175,0.759347,0][-0.227973,-0.0410493,-0.920566][0.149778,0.372339,-0.915931][0.017175,0.759347,0][-0.281548,-0.0269033,-0.910546][-0.564938,0.661111,-0.493739][0.022344,0.765485,0][-0.223338,0.0229937,-0.902619][-0.495558,0.714625,-0.493693][0.022344,0.783638,0][-0.281548,-0.0269033,-0.910546][-0.564938,0.661111,-0.493739][0.022344,0.765485,0][-0.227973,-0.0410493,-0.920566][0.149778,0.372339,-0.915931][0.017175,0.759347,0][-0.249898,-0.0794303,-0.926748][-0.1769,-0.442067,-0.879365][0.022344,0.754204,0][-0.249898,-0.0794303,-0.926748][-0.1769,-0.442067,-0.879365][0.022344,0.754204,0][-0.338737,-0.0802483,-0.909405][-0.85813,-0.0968387,-0.504217][0.022344,0.75947,0][-0.281548,-0.0269033,-0.910546][-0.564938,0.661111,-0.493739][0.022344,0.765485,0][-0.055423,0.15884,-0.815307][0.0215637,0.950894,-0.308766][0.183893,0.863706,0][-0.056857,0.182613,-0.800621][7.24127e-005,0.529517,-0.8483][0.185736,0.876682,0][-0.031392,0.182124,-0.80093][0.00124321,0.526691,-0.850056][0.173703,0.877487,0][-0.031392,0.182124,-0.80093][0.00124321,0.526691,-0.850056][0.173703,0.877487,0][-0.01948,0.156971,-0.816111][0.240968,0.543694,-0.803947][0.166856,0.864264,0][-0.055423,0.15884,-0.815307][0.0215637,0.950894,-0.308766][0.183893,0.863706,0][-0.212599,0.15945,-0.815044][0.304161,0.92636,-0.222134][0.258048,0.857384,0][-0.251245,0.194454,-0.793158][0.754694,0.488822,-0.437595][0.277997,0.874996,0][-0.056857,0.182613,-0.800621][7.24127e-005,0.529517,-0.8483][0.185736,0.876682,0][-0.056857,0.182613,-0.800621][7.24127e-005,0.529517,-0.8483][0.185736,0.876682,0][-0.055423,0.15884,-0.815307][0.0215637,0.950894,-0.308766][0.183893,0.863706,0][-0.212599,0.15945,-0.815044][0.304161,0.92636,-0.222134][0.258048,0.857384,0][-0.072557,0.148094,-0.850573][-0.168995,0.32058,-0.932024][0.050986,0.813901,0][-0.223584,0.140647,-0.853777][-0.274601,-0.404675,-0.872257][0.050986,0.830141,0][-0.212599,0.170575,-0.840901][0.170815,0.829475,-0.531783][0.045327,0.830141,0][-0.212599,0.170575,-0.840901][0.170815,0.829475,-0.531783][0.045327,0.830141,0][-0.055423,0.169965,-0.841164][0.0216592,0.931705,-0.362568][0.045327,0.817714,0][-0.072557,0.148094,-0.850573][-0.168995,0.32058,-0.932024][0.050986,0.813901,0][-0.223584,0.140647,-0.853777][-0.274601,-0.404675,-0.872257][0.050986,0.830141,0][-0.298518,0.200326,-0.822326][-0.766127,0.0976959,-0.635221][0.050986,0.840276,0][-0.251245,0.205579,-0.819014][0.516549,0.569349,-0.639545][0.045327,0.840276,0][-0.251245,0.205579,-0.819014][0.516549,0.569349,-0.639545][0.045327,0.840276,0][-0.212599,0.170575,-0.840901][0.170815,0.829475,-0.531783][0.045327,0.830141,0][-0.223584,0.140647,-0.853777][-0.274601,-0.404675,-0.872257][0.050986,0.830141,0][-0.183954,0.394081,-0.672344][0.391871,0.192459,-0.899665][0.045328,0.892673,0][-0.062519,0.389525,-0.681478][-0.133793,-0.210017,-0.9685][0.045328,0.90811,0][-0.062519,0.3784,-0.655621][-0.117163,-0.223235,-0.967698][0.041574,0.90811,0][-0.062519,0.3784,-0.655621][-0.117163,-0.223235,-0.967698][0.041574,0.90811,0][-0.183954,0.382956,-0.646487][0.424706,-0.221139,-0.877908][0.041574,0.892673,0][-0.183954,0.394081,-0.672344][0.391871,0.192459,-0.899665][0.045328,0.892673,0][-0.178562,0.411966,-0.655314][0.0620585,0.983167,-0.171845][0.050986,0.896948,0][-0.178562,0.382505,-0.586839][0.0819815,0.915496,0.393887][0.05453,0.896948,0][-0.064209,0.373276,-0.601398][0.116829,0.912299,0.392507][0.05453,0.90811,0][-0.064209,0.373276,-0.601398][0.116829,0.912299,0.392507][0.05453,0.90811,0][-0.064209,0.402737,-0.669874][0.0422608,0.974449,-0.220596][0.050986,0.90811,0][-0.178562,0.411966,-0.655314][0.0620585,0.983167,-0.171845][0.050986,0.896948,0][0.174417,0.38331,-0.693996][0.106753,0.966123,-0.23497][0.027232,0.839916,0][0.174417,0.353849,-0.62552][0.162301,0.906411,0.389972][0.034137,0.839916,0][0.219071,0.345747,-0.631861][0.729782,0.628021,0.270199][0.034137,0.845075,0][0.219071,0.345747,-0.631861][0.729782,0.628021,0.270199][0.034137,0.845075,0][0.219071,0.375208,-0.700337][0.645014,0.72268,-0.248376][0.027232,0.845075,0][0.174417,0.38331,-0.693996][0.106753,0.966123,-0.23497][0.027232,0.839916,0][0.219071,0.375208,-0.700337][0.645014,0.72268,-0.248376][0.027232,0.845075,0][0.219071,0.345747,-0.631861][0.729782,0.628021,0.270199][0.034137,0.845075,0][0.218453,0.321763,-0.650631][0.998832,-0.0443803,-0.0190941][0.034137,0.851441,0][0.218453,0.321763,-0.650631][0.998832,-0.0443803,-0.0190941][0.034137,0.851441,0][0.218453,0.351224,-0.719107][0.718159,0.395799,-0.572355][0.027232,0.851441,0][0.219071,0.375208,-0.700337][0.645014,0.72268,-0.248376][0.027232,0.845075,0][0.067818,0.37644,-0.699373][-0.126019,-0.234972,-0.963798][0.022831,0.809407,0][0.087204,0.374149,-0.701165][-0.118017,-0.239101,-0.963796][0.022831,0.8142,0][0.087204,0.363025,-0.675309][-0.118029,-0.239563,-0.96368][0.015871,0.8142,0][0.087204,0.363025,-0.675309][-0.118029,-0.239563,-0.96368][0.015871,0.8142,0][0.067818,0.365315,-0.673516][-0.124412,-0.240475,-0.962649][0.015871,0.809407,0][0.067818,0.37644,-0.699373][-0.126019,-0.234972,-0.963798][0.022831,0.809407,0][0.071389,0.39237,-0.686905][0.0661884,0.965083,-0.253444][0.027232,0.809407,0][0.071389,0.362909,-0.61843][0.116312,0.912353,0.392535][0.034137,0.809407,0][0.090903,0.361128,-0.619824][0.105003,0.913511,0.39303][0.034137,0.8142,0][0.090903,0.361128,-0.619824][0.105003,0.913511,0.39303][0.034137,0.8142,0][0.090903,0.390589,-0.6883][0.0659829,0.965691,-0.251173][0.027232,0.8142,0][0.071389,0.39237,-0.686905][0.0661884,0.965083,-0.253444][0.027232,0.809407,0][-0.062519,0.389525,-0.681478][-0.133793,-0.210017,-0.9685][0.045328,0.90811,0][-0.03955,0.387392,-0.685158][-0.174473,-0.220686,-0.959613][0.045328,0.915563,0][-0.03955,0.376267,-0.659301][-0.168026,-0.218028,-0.961369][0.041574,0.915563,0][-0.03955,0.376267,-0.659301][-0.168026,-0.218028,-0.961369][0.041574,0.915563,0][-0.062519,0.3784,-0.655621][-0.117163,-0.223235,-0.967698][0.041574,0.90811,0][-0.062519,0.389525,-0.681478][-0.133793,-0.210017,-0.9685][0.045328,0.90811,0][-0.064209,0.402737,-0.669874][0.0422608,0.974449,-0.220596][0.050986,0.90811,0][-0.064209,0.373276,-0.601398][0.116829,0.912299,0.392507][0.05453,0.90811,0][-0.041327,0.371944,-0.604667][0.114742,0.912523,0.392602][0.05453,0.915563,0][-0.041327,0.371944,-0.604667][0.114742,0.912523,0.392602][0.05453,0.915563,0][-0.041327,0.401405,-0.673143][0.0312594,0.973137,-0.228095][0.050986,0.915563,0][-0.064209,0.402737,-0.669874][0.0422608,0.974449,-0.220596][0.050986,0.90811,0][0.011738,0.38258,-0.693018][-0.150705,-0.228022,-0.961922][0.022831,0.79482,0][0.067818,0.37644,-0.699373][-0.126019,-0.234972,-0.963798][0.022831,0.809407,0][0.067818,0.365315,-0.673516][-0.124412,-0.240475,-0.962649][0.015871,0.809407,0][0.067818,0.365315,-0.673516][-0.124412,-0.240475,-0.962649][0.015871,0.809407,0][0.011738,0.371455,-0.667161][-0.146871,-0.234201,-0.96103][0.015871,0.79482,0][0.011738,0.38258,-0.693018][-0.150705,-0.228022,-0.961922][0.022831,0.79482,0][0.012358,0.397659,-0.680993][0.0477721,0.966961,-0.250408][0.027232,0.79482,0][0.012358,0.368198,-0.612518][0.120992,0.91184,0.392312][0.034137,0.79482,0][0.071389,0.362909,-0.61843][0.116312,0.912353,0.392535][0.034137,0.809407,0][0.071389,0.362909,-0.61843][0.116312,0.912353,0.392535][0.034137,0.809407,0][0.071389,0.39237,-0.686905][0.0661884,0.965083,-0.253444][0.027232,0.809407,0][0.012358,0.397659,-0.680993][0.0477721,0.966961,-0.250408][0.027232,0.79482,0][0.215311,0.321682,-0.742227][0.715945,0.371156,-0.591326][0.027232,0.867177,0][0.215311,0.292219,-0.673752][0.995109,-0.090738,-0.039041][0.034137,0.867177,0][0.213352,0.278572,-0.684432][0.994506,-0.0961576,-0.0413725][0.034137,0.872385,0][0.213352,0.278572,-0.684432][0.994506,-0.0961576,-0.0413725][0.034137,0.872385,0][0.213352,0.308033,-0.752908][0.699886,0.358978,-0.61749][0.027232,0.872385,0][0.215311,0.321682,-0.742227][0.715945,0.371156,-0.591326][0.027232,0.867177,0][0.16726,0.317726,-0.745323][-0.695679,0.479541,-0.534856][0.022831,0.867177,0][0.165832,0.30388,-0.756159][-0.684591,0.465855,-0.560638][0.022831,0.872385,0][0.165832,0.292755,-0.730302][-0.709043,0.458136,-0.536068][0.015871,0.872385,0][0.165832,0.292755,-0.730302][-0.709043,0.458136,-0.536068][0.015871,0.872385,0][0.16726,0.306601,-0.719466][-0.702926,0.473027,-0.531169][0.015871,0.867177,0][0.16726,0.317726,-0.745323][-0.695679,0.479541,-0.534856][0.022831,0.867177,0][0.213352,0.308033,-0.752908][0.699886,0.358978,-0.61749][0.027232,0.872385,0][0.213352,0.278572,-0.684432][0.994506,-0.0961576,-0.0413725][0.034137,0.872385,0][0.203057,0.181289,-0.747279][0.996956,-0.0716182,-0.0308129][0.034137,0.886562,0][0.203057,0.181289,-0.747279][0.996956,-0.0716182,-0.0308129][0.034137,0.886562,0][0.203057,0.21075,-0.815755][0.705845,0.334955,-0.62417][0.027232,0.886562,0][0.213352,0.308033,-0.752908][0.699886,0.358978,-0.61749][0.027232,0.872385,0][0.165832,0.30388,-0.756159][-0.684591,0.465855,-0.560638][0.022831,0.872385,0][0.157483,0.226935,-0.805553][-0.698135,0.43535,-0.5684][0.022831,0.886562,0][0.157483,0.21581,-0.779697][-0.699203,0.43388,-0.568211][0.015871,0.886562,0][0.157483,0.21581,-0.779697][-0.699203,0.43388,-0.568211][0.015871,0.886562,0][0.165832,0.292755,-0.730302][-0.709043,0.458136,-0.536068][0.015871,0.872385,0][0.165832,0.30388,-0.756159][-0.684591,0.465855,-0.560638][0.022831,0.872385,0][0.203057,0.21075,-0.815755][0.705845,0.334955,-0.62417][0.027232,0.886562,0][0.203057,0.181289,-0.747279][0.996956,-0.0716182,-0.0308129][0.034137,0.886562,0][0.201422,0.159262,-0.761163][0.99724,-0.0682024,-0.0293433][0.034137,0.902033,0][0.201422,0.159262,-0.761163][0.99724,-0.0682024,-0.0293433][0.034137,0.902033,0][0.201422,0.188723,-0.829639][0.70314,0.311344,-0.639264][0.027232,0.902033,0][0.203057,0.21075,-0.815755][0.705845,0.334955,-0.62417][0.027232,0.886562,0][0.157483,0.226935,-0.805553][-0.698135,0.43535,-0.5684][0.022831,0.886562,0][0.155327,0.205096,-0.819319][-0.698154,0.433094,-0.570097][0.022831,0.897673,0][0.155327,0.193971,-0.793462][-0.700658,0.431364,-0.568335][0.015871,0.897673,0][0.155327,0.193971,-0.793462][-0.700658,0.431364,-0.568335][0.015871,0.897673,0][0.157483,0.21581,-0.779697][-0.699203,0.43388,-0.568211][0.015871,0.886562,0][0.157483,0.226935,-0.805553][-0.698135,0.43535,-0.5684][0.022831,0.886562,0][-0.03955,0.387392,-0.685158][-0.174473,-0.220686,-0.959613][0.045328,0.915563,0][0.011738,0.38258,-0.693018][-0.150705,-0.228022,-0.961922][0.045328,0.923606,0][0.011738,0.371455,-0.667161][-0.146871,-0.234201,-0.96103][0.041574,0.923606,0][0.011738,0.371455,-0.667161][-0.146871,-0.234201,-0.96103][0.041574,0.923606,0][-0.03955,0.376267,-0.659301][-0.168026,-0.218028,-0.961369][0.041574,0.915563,0][-0.03955,0.387392,-0.685158][-0.174473,-0.220686,-0.959613][0.045328,0.915563,0][-0.041327,0.401405,-0.673143][0.0312594,0.973137,-0.228095][0.050986,0.915563,0][-0.041327,0.371944,-0.604667][0.114742,0.912523,0.392602][0.05453,0.915563,0][0.012358,0.368198,-0.612518][0.120992,0.91184,0.392312][0.05453,0.923606,0][0.012358,0.368198,-0.612518][0.120992,0.91184,0.392312][0.05453,0.923606,0][0.012358,0.397659,-0.680993][0.0477721,0.966961,-0.250408][0.050986,0.923606,0][-0.041327,0.401405,-0.673143][0.0312594,0.973137,-0.228095][0.050986,0.915563,0][0.087204,0.374149,-0.701165][-0.118017,-0.239101,-0.963796][0.022831,0.8142,0][0.128378,0.369232,-0.705013][-0.11782,-0.239719,-0.963667][0.022831,0.824207,0][0.128378,0.358108,-0.679156][-0.117793,-0.239029,-0.963841][0.015871,0.824207,0][0.128378,0.358108,-0.679156][-0.117793,-0.239029,-0.963841][0.015871,0.824207,0][0.087204,0.363025,-0.675309][-0.118029,-0.239563,-0.96368][0.015871,0.8142,0][0.087204,0.374149,-0.701165][-0.118017,-0.239101,-0.963796][0.022831,0.8142,0][0.090903,0.390589,-0.6883][0.0659829,0.965691,-0.251173][0.027232,0.8142,0][0.090903,0.361128,-0.619824][0.105003,0.913511,0.39303][0.034137,0.8142,0][0.132019,0.357817,-0.622415][0.115028,0.912492,0.392589][0.034137,0.824207,0][0.132019,0.357817,-0.622415][0.115028,0.912492,0.392589][0.034137,0.824207,0][0.132019,0.387278,-0.690891][0.0735666,0.966915,-0.24426][0.027232,0.824207,0][0.090903,0.390589,-0.6883][0.0659829,0.965691,-0.251173][0.027232,0.8142,0][0.083033,0.139076,-0.854453][0.687173,0.108816,-0.718298][0.050896,0.682703,0][0.083033,0.127951,-0.828596][0.678857,0.114254,-0.725327][0.055446,0.682703,0][0.035299,-0.0241743,-0.894047][0.615208,0.732735,-0.290893][0.055446,0.723203,0][0.035299,-0.0241743,-0.894047][0.615208,0.732735,-0.290893][0.055446,0.723203,0][0.035299,-0.0130503,-0.919904][0.22505,0.564081,-0.794459][0.050896,0.723203,0][0.083033,0.139076,-0.854453][0.687173,0.108816,-0.718298][0.050896,0.682703,0][0.008718,-0.0163313,-0.921315][-0.6734,0.479715,-0.562499][0.043998,0.717132,0][0.008718,-0.0457923,-0.85284][-0.95124,0.28334,0.121905][0.03977,0.717132,0][0.064261,0.109654,-0.785961][-0.827165,-0.51621,-0.222093][0.03977,0.682703,0][0.064261,0.109654,-0.785961][-0.827165,-0.51621,-0.222093][0.03977,0.682703,0][0.064261,0.139115,-0.854437][-0.297935,0.182812,-0.936917][0.043998,0.682703,0][0.008718,-0.0163313,-0.921315][-0.6734,0.479715,-0.562499][0.043998,0.717132,0][0.072339,0.15486,-0.847662][0.144476,0.915039,-0.376603][0.050896,0.675708,0][0.072339,0.143735,-0.821805][0.15003,0.928327,-0.340148][0.055446,0.675708,0][0.086556,0.141037,-0.822966][0.352799,0.594725,-0.722381][0.055446,0.678703,0][0.086556,0.141037,-0.822966][0.352799,0.594725,-0.722381][0.055446,0.678703,0][0.086556,0.152162,-0.848823][0.691969,0.627952,-0.356167][0.050896,0.678703,0][0.072339,0.15486,-0.847662][0.144476,0.915039,-0.376603][0.050896,0.675708,0][0.086556,0.152162,-0.848823][0.691969,0.627952,-0.356167][0.050896,0.678703,0][0.086556,0.141037,-0.822966][0.352799,0.594725,-0.722381][0.055446,0.678703,0][0.083033,0.127951,-0.828596][0.678857,0.114254,-0.725327][0.055446,0.682703,0][0.083033,0.127951,-0.828596][0.678857,0.114254,-0.725327][0.055446,0.682703,0][0.083033,0.139076,-0.854453][0.687173,0.108816,-0.718298][0.050896,0.682703,0][0.086556,0.152162,-0.848823][0.691969,0.627952,-0.356167][0.050896,0.678703,0][0.062114,0.156843,-0.846809][0.121263,0.923798,-0.363169][0.017175,0.666993,0][0.062114,0.145718,-0.820952][0.120472,0.930826,-0.345034][0.010311,0.666993,0][0.072339,0.143735,-0.821805][0.15003,0.928327,-0.340148][0.010311,0.663697,0][0.072339,0.143735,-0.821805][0.15003,0.928327,-0.340148][0.010311,0.663697,0][0.072339,0.15486,-0.847662][0.144476,0.915039,-0.376603][0.017175,0.663697,0][0.062114,0.156843,-0.846809][0.121263,0.923798,-0.363169][0.017175,0.666993,0][0.064261,0.139115,-0.854437][-0.297935,0.182812,-0.936917][0.022344,0.663697,0][0.064261,0.109654,-0.785961][-0.827165,-0.51621,-0.222093][0.027194,0.663697,0][0.057121,0.110049,-0.785791][-0.0999036,-0.913993,-0.393238][0.027194,0.666993,0][0.057121,0.110049,-0.785791][-0.0999036,-0.913993,-0.393238][0.027194,0.666993,0][0.057121,0.13951,-0.854266][-0.071568,-0.378364,-0.922886][0.022344,0.666993,0][0.064261,0.139115,-0.854437][-0.297935,0.182812,-0.936917][0.022344,0.663697,0][0.050547,0.15826,-0.8462][0.0708393,0.929565,-0.361789][0.017175,0.669709,0][0.050547,0.147135,-0.820343][0.0711183,0.93901,-0.336454][0.010311,0.669709,0][0.062114,0.145718,-0.820952][0.120472,0.930826,-0.345034][0.010311,0.666993,0][0.062114,0.145718,-0.820952][0.120472,0.930826,-0.345034][0.010311,0.666993,0][0.062114,0.156843,-0.846809][0.121263,0.923798,-0.363169][0.017175,0.666993,0][0.050547,0.15826,-0.8462][0.0708393,0.929565,-0.361789][0.017175,0.669709,0][0.057121,0.13951,-0.854266][-0.071568,-0.378364,-0.922886][0.022344,0.666993,0][0.057121,0.110049,-0.785791][-0.0999036,-0.913993,-0.393238][0.027194,0.666993,0][0.048445,0.111172,-0.785308][0.489269,-0.80113,-0.344682][0.027194,0.669709,0][0.048445,0.111172,-0.785308][0.489269,-0.80113,-0.344682][0.027194,0.669709,0][0.048445,0.140633,-0.853783][0.239795,-0.048145,-0.969629][0.022344,0.669709,0][0.057121,0.13951,-0.854266][-0.071568,-0.378364,-0.922886][0.022344,0.666993,0][0.128378,0.369232,-0.705013][-0.11782,-0.239719,-0.963667][0.022831,0.824207,0][0.136756,0.368247,-0.705785][-0.139206,-0.227079,-0.963876][0.022831,0.833195,0][0.136756,0.357122,-0.679928][-0.139866,-0.244533,-0.9595][0.015871,0.833195,0][0.136756,0.357122,-0.679928][-0.139866,-0.244533,-0.9595][0.015871,0.833195,0][0.128378,0.358108,-0.679156][-0.117793,-0.239029,-0.963841][0.015871,0.824207,0][0.128378,0.369232,-0.705013][-0.11782,-0.239719,-0.963667][0.022831,0.824207,0][0.132019,0.387278,-0.690891][0.0735666,0.966915,-0.24426][0.027232,0.824207,0][0.132019,0.357817,-0.622415][0.115028,0.912492,0.392589][0.034137,0.824207,0][0.140457,0.3569,-0.623133][0.121199,0.911818,0.392299][0.034137,0.833195,0][0.140457,0.3569,-0.623133][0.121199,0.911818,0.392299][0.034137,0.833195,0][0.140457,0.386361,-0.691609][0.0759035,0.964442,-0.253159][0.027232,0.833195,0][0.132019,0.387278,-0.690891][0.0735666,0.966915,-0.24426][0.027232,0.824207,0][0.155327,0.205096,-0.819319][-0.698154,0.433094,-0.570097][0.022831,0.897673,0][0.153421,0.18797,-0.830114][-0.693629,0.410257,-0.592088][0.022831,0.902033,0][0.153421,0.176845,-0.804257][-0.708192,0.406802,-0.577041][0.015871,0.902033,0][0.153421,0.176845,-0.804257][-0.708192,0.406802,-0.577041][0.015871,0.902033,0][0.155327,0.193971,-0.793462][-0.700658,0.431364,-0.568335][0.015871,0.897673,0][0.155327,0.205096,-0.819319][-0.698154,0.433094,-0.570097][0.022831,0.897673,0][0.153421,0.18797,-0.830114][-0.693629,0.410257,-0.592088][0.022831,0.902033,0][0.150076,0.152151,-0.848828][-0.694426,0.361378,-0.622237][0.022831,0.912134,0][0.150076,0.141026,-0.822971][-0.712732,0.358084,-0.603149][0.015871,0.912134,0][0.150076,0.141026,-0.822971][-0.712732,0.358084,-0.603149][0.015871,0.912134,0][0.153421,0.176845,-0.804257][-0.708192,0.406802,-0.577041][0.015871,0.902033,0][0.153421,0.18797,-0.830114][-0.693629,0.410257,-0.592088][0.022831,0.902033,0][0.201422,0.188723,-0.829639][0.70314,0.311344,-0.639264][0.027232,0.902033,0][0.201422,0.159262,-0.761163][0.99724,-0.0682024,-0.0293433][0.034137,0.902033,0][0.198108,0.125568,-0.779114][0.997909,-0.0593744,-0.0255453][0.034137,0.912134,0][0.198108,0.125568,-0.779114][0.997909,-0.0593744,-0.0255453][0.034137,0.912134,0][0.198108,0.155029,-0.847589][0.691933,0.273452,-0.668171][0.027232,0.912134,0][0.201422,0.188723,-0.829639][0.70314,0.311344,-0.639264][0.027232,0.902033,0][0.14873,0.139102,-0.854442][-0.702137,0.345143,-0.6228][0.022831,0.916745,0][0.14873,0.127977,-0.828585][-0.704907,0.344301,-0.620131][0.015871,0.916745,0][0.150076,0.141026,-0.822971][-0.712732,0.358084,-0.603149][0.015871,0.912134,0][0.150076,0.141026,-0.822971][-0.712732,0.358084,-0.603149][0.015871,0.912134,0][0.150076,0.152151,-0.848828][-0.694426,0.361378,-0.622237][0.022831,0.912134,0][0.14873,0.139102,-0.854442][-0.702137,0.345143,-0.6228][0.022831,0.916745,0][0.198108,0.155029,-0.847589][0.691933,0.273452,-0.668171][0.027232,0.912134,0][0.198108,0.125568,-0.779114][0.997909,-0.0593744,-0.0255453][0.034137,0.912134,0][0.197387,0.109542,-0.786009][0.998825,-0.0445243,-0.0191563][0.034137,0.916745,0][0.197387,0.109542,-0.786009][0.998825,-0.0445243,-0.0191563][0.034137,0.916745,0][0.197387,0.139003,-0.854484][0.707888,0.247262,-0.661631][0.027232,0.916745,0][0.198108,0.155029,-0.847589][0.691933,0.273452,-0.668171][0.027232,0.912134,0][0.132909,0.0035817,-0.912748][-0.363158,0.652389,-0.665211][0.050896,0.756616,0][0.132909,-0.0075423,-0.886891][-0.59011,0.73689,-0.329793][0.055446,0.756616,0][0.14873,0.127977,-0.828585][-0.704907,0.344301,-0.620131][0.055446,0.776606,0][0.14873,0.127977,-0.828585][-0.704907,0.344301,-0.620131][0.055446,0.776606,0][0.14873,0.139102,-0.854442][-0.702137,0.345143,-0.6228][0.050896,0.776606,0][0.132909,0.0035817,-0.912748][-0.363158,0.652389,-0.665211][0.050896,0.756616,0][0.197387,0.139003,-0.854484][0.707888,0.247262,-0.661631][0.043998,0.776606,0][0.197387,0.109542,-0.786009][0.998825,-0.0445243,-0.0191563][0.03977,0.776606,0][0.19011,-0.0103983,-0.837612][0.998576,-0.0489993,-0.0210817][0.03977,0.759897,0][0.19011,-0.0103983,-0.837612][0.998576,-0.0489993,-0.0210817][0.03977,0.759897,0][0.19011,0.0190627,-0.906087][0.705584,0.245041,-0.664911][0.043998,0.759897,0][0.197387,0.139003,-0.854484][0.707888,0.247262,-0.661631][0.043998,0.776606,0][0.136756,0.368247,-0.705785][-0.139206,-0.227079,-0.963876][0.022831,0.833195,0][0.170234,0.362726,-0.710105][-0.43415,0.312749,-0.844808][0.022831,0.844904,0][0.170234,0.351602,-0.684248][-0.634966,-0.129509,-0.761607][0.015871,0.844904,0][0.170234,0.351602,-0.684248][-0.634966,-0.129509,-0.761607][0.015871,0.844904,0][0.136756,0.357122,-0.679928][-0.139866,-0.244533,-0.9595][0.015871,0.833195,0][0.136756,0.368247,-0.705785][-0.139206,-0.227079,-0.963876][0.022831,0.833195,0][0.140457,0.386361,-0.691609][0.0759035,0.964442,-0.253159][0.027232,0.833195,0][0.140457,0.3569,-0.623133][0.121199,0.911818,0.392299][0.034137,0.833195,0][0.174417,0.353849,-0.62552][0.162301,0.906411,0.389972][0.034137,0.839916,0][0.174417,0.353849,-0.62552][0.162301,0.906411,0.389972][0.034137,0.839916,0][0.174417,0.38331,-0.693996][0.106753,0.966123,-0.23497][0.027232,0.839916,0][0.140457,0.386361,-0.691609][0.0759035,0.964442,-0.253159][0.027232,0.833195,0][0.19011,0.0190627,-0.906087][0.705584,0.245041,-0.664911][0.043998,0.759897,0][0.19011,-0.0103983,-0.837612][0.998576,-0.0489993,-0.0210817][0.03977,0.759897,0][0.188601,-0.0375223,-0.849282][0.767679,-0.588662,-0.253269][0.03977,0.757693,0][0.188601,-0.0375223,-0.849282][0.767679,-0.588662,-0.253269][0.03977,0.757693,0][0.188601,-0.0080613,-0.917757][0.617784,-0.239104,-0.749114][0.043998,0.757693,0][0.19011,0.0190627,-0.906087][0.705584,0.245041,-0.664911][0.043998,0.759897,0][0.188601,-0.0080613,-0.917757][0.617784,-0.239104,-0.749114][0.043998,0.757693,0][0.188601,-0.0375223,-0.849282][0.767679,-0.588662,-0.253269][0.03977,0.757693,0][0.129626,-0.0502463,-0.854756][0.259243,-0.887184,-0.381702][0.03977,0.752868,0][0.129626,-0.0502463,-0.854756][0.259243,-0.887184,-0.381702][0.03977,0.752868,0][0.129626,-0.0207853,-0.923232][0.181439,-0.338611,-0.923267][0.043998,0.752868,0][0.188601,-0.0080613,-0.917757][0.617784,-0.239104,-0.749114][0.043998,0.757693,0][0.035299,-0.0130503,-0.919904][0.22505,0.564081,-0.794459][0.050896,0.723203,0][0.035299,-0.0241743,-0.894047][0.615208,0.732735,-0.290893][0.055446,0.723203,0][0.132909,-0.0075423,-0.886891][-0.59011,0.73689,-0.329793][0.055446,0.756616,0][0.132909,-0.0075423,-0.886891][-0.59011,0.73689,-0.329793][0.055446,0.756616,0][0.132909,0.0035817,-0.912748][-0.363158,0.652389,-0.665211][0.050896,0.756616,0][0.035299,-0.0130503,-0.919904][0.22505,0.564081,-0.794459][0.050896,0.723203,0][0.129626,-0.0207853,-0.923232][0.181439,-0.338611,-0.923267][0.043998,0.752868,0][0.129626,-0.0502463,-0.854756][0.259243,-0.887184,-0.381702][0.03977,0.752868,0][0.025395,-0.0792133,-0.867218][0.2886,-0.879503,-0.378396][0.03977,0.729223,0][0.025395,-0.0792133,-0.867218][0.2886,-0.879503,-0.378396][0.03977,0.729223,0][0.025395,-0.0497523,-0.935694][0.20414,-0.342743,-0.916981][0.043998,0.729223,0][0.129626,-0.0207853,-0.923232][0.181439,-0.338611,-0.923267][0.043998,0.752868,0][0.025395,-0.0497523,-0.935694][0.20414,-0.342743,-0.916981][0.043998,0.729223,0][0.025395,-0.0792133,-0.867218][0.2886,-0.879503,-0.378396][0.03977,0.729223,0][-0.005951,-0.0878603,-0.870939][-0.713515,-0.6436,-0.276902][0.03977,0.722824,0][-0.005951,-0.0878603,-0.870939][-0.713515,-0.6436,-0.276902][0.03977,0.722824,0][-0.005951,-0.0583993,-0.939415][-0.5949,-0.318378,-0.738058][0.043998,0.722824,0][0.025395,-0.0497523,-0.935694][0.20414,-0.342743,-0.916981][0.043998,0.729223,0][-0.005951,-0.0583993,-0.939415][-0.5949,-0.318378,-0.738058][0.043998,0.722824,0][-0.005951,-0.0878603,-0.870939][-0.713515,-0.6436,-0.276902][0.03977,0.722824,0][0.008718,-0.0457923,-0.85284][-0.95124,0.28334,0.121905][0.03977,0.717132,0][0.008718,-0.0457923,-0.85284][-0.95124,0.28334,0.121905][0.03977,0.717132,0][0.008718,-0.0163313,-0.921315][-0.6734,0.479715,-0.562499][0.043998,0.717132,0][-0.005951,-0.0583993,-0.939415][-0.5949,-0.318378,-0.738058][0.043998,0.722824,0][0.218453,0.351224,-0.719107][0.718159,0.395799,-0.572355][0.027232,0.851441,0][0.218453,0.321763,-0.650631][0.998832,-0.0443803,-0.0190941][0.034137,0.851441,0][0.215311,0.292219,-0.673752][0.995109,-0.090738,-0.039041][0.034137,0.867177,0][0.215311,0.292219,-0.673752][0.995109,-0.090738,-0.039041][0.034137,0.867177,0][0.215311,0.321682,-0.742227][0.715945,0.371156,-0.591326][0.027232,0.867177,0][0.218453,0.351224,-0.719107][0.718159,0.395799,-0.572355][0.027232,0.851441,0][0.170234,0.362726,-0.710105][-0.43415,0.312749,-0.844808][0.022831,0.844904,0][0.16726,0.317726,-0.745323][-0.695679,0.479541,-0.534856][0.022831,0.867177,0][0.16726,0.306601,-0.719466][-0.702926,0.473027,-0.531169][0.015871,0.867177,0][0.16726,0.306601,-0.719466][-0.702926,0.473027,-0.531169][0.015871,0.867177,0][0.170234,0.351602,-0.684248][-0.634966,-0.129509,-0.761607][0.015871,0.844904,0][0.170234,0.362726,-0.710105][-0.43415,0.312749,-0.844808][0.022831,0.844904,0][-0.23927,0.257182,-0.786488][0.699696,0.24803,-0.670005][0.045327,0.849151,0][-0.23927,0.246058,-0.760631][0.706041,0.241221,-0.665821][0.041574,0.849151,0][-0.251245,0.194454,-0.793158][0.754694,0.488822,-0.437595][0.041574,0.840276,0][-0.251245,0.194454,-0.793158][0.754694,0.488822,-0.437595][0.041574,0.840276,0][-0.251245,0.205579,-0.819014][0.516549,0.569349,-0.639545][0.045327,0.840276,0][-0.23927,0.257182,-0.786488][0.699696,0.24803,-0.670005][0.045327,0.849151,0][-0.277668,0.25442,-0.788229][-0.654994,0.577222,-0.487644][0.050986,0.849151,0][-0.298518,0.200326,-0.822326][-0.766127,0.0976959,-0.635221][0.050986,0.840276,0][-0.298518,0.170865,-0.75385][-0.975962,-0.200197,-0.0861323][0.05453,0.840276,0][-0.298518,0.170865,-0.75385][-0.975962,-0.200197,-0.0861323][0.05453,0.840276,0][-0.277668,0.224959,-0.719753][-0.941615,0.309282,0.133065][0.05453,0.849151,0][-0.277668,0.25442,-0.788229][-0.654994,0.577222,-0.487644][0.050986,0.849151,0][-0.232589,0.281934,-0.770886][0.68637,0.222207,-0.692475][0.045327,0.864695,0][-0.232589,0.27081,-0.745029][0.707524,0.198604,-0.678209][0.041574,0.864695,0][-0.23927,0.246058,-0.760631][0.706041,0.241221,-0.665821][0.041574,0.849151,0][-0.23927,0.246058,-0.760631][0.706041,0.241221,-0.665821][0.041574,0.849151,0][-0.23927,0.257182,-0.786488][0.699696,0.24803,-0.670005][0.045327,0.849151,0][-0.232589,0.281934,-0.770886][0.68637,0.222207,-0.692475][0.045327,0.864695,0][-0.259181,0.296006,-0.762017][-0.621807,0.606296,-0.495743][0.050986,0.867843,0][-0.277668,0.25442,-0.788229][-0.654994,0.577222,-0.487644][0.050986,0.849151,0][-0.277668,0.224959,-0.719753][-0.941615,0.309282,0.133065][0.05453,0.849151,0][-0.277668,0.224959,-0.719753][-0.941615,0.309282,0.133065][0.05453,0.849151,0][-0.259181,0.266545,-0.693541][-0.953021,0.278244,0.119711][0.05453,0.867843,0][-0.259181,0.296006,-0.762017][-0.621807,0.606296,-0.495743][0.050986,0.867843,0][-0.225531,0.299975,-0.759018][0.691944,0.270264,-0.669456][0.045328,0.871543,0][-0.225531,0.288851,-0.733161][0.711757,0.231458,-0.663196][0.041574,0.871543,0][-0.232589,0.27081,-0.745029][0.707524,0.198604,-0.678209][0.041574,0.864695,0][-0.232589,0.27081,-0.745029][0.707524,0.198604,-0.678209][0.041574,0.864695,0][-0.232589,0.281934,-0.770886][0.68637,0.222207,-0.692475][0.045327,0.864695,0][-0.225531,0.299975,-0.759018][0.691944,0.270264,-0.669456][0.045328,0.871543,0][-0.212759,0.33513,-0.727577][0.705831,0.288744,-0.646861][0.045328,0.880548,0][-0.212759,0.324005,-0.70172][0.713972,0.269938,-0.646047][0.041574,0.880548,0][-0.225531,0.288851,-0.733161][0.711757,0.231458,-0.663196][0.041574,0.871543,0][-0.225531,0.288851,-0.733161][0.711757,0.231458,-0.663196][0.041574,0.871543,0][-0.225531,0.299975,-0.759018][0.691944,0.270264,-0.669456][0.045328,0.871543,0][-0.212759,0.33513,-0.727577][0.705831,0.288744,-0.646861][0.045328,0.880548,0][-0.24018,0.351648,-0.714148][-0.639043,0.631551,-0.439053][0.050986,0.880548,0][-0.259181,0.296006,-0.762017][-0.621807,0.606296,-0.495743][0.050986,0.867843,0][-0.259181,0.266545,-0.693541][-0.953021,0.278244,0.119711][0.05453,0.867843,0][-0.259181,0.266545,-0.693541][-0.953021,0.278244,0.119711][0.05453,0.867843,0][-0.24018,0.322187,-0.645672][-0.957858,0.263858,0.113522][0.05453,0.880548,0][-0.24018,0.351648,-0.714148][-0.639043,0.631551,-0.439053][0.050986,0.880548,0][-0.183954,0.394081,-0.672344][0.391871,0.192459,-0.899665][0.045328,0.892673,0][-0.183954,0.382956,-0.646487][0.424706,-0.221139,-0.877908][0.041574,0.892673,0][-0.212759,0.324005,-0.70172][0.713972,0.269938,-0.646047][0.041574,0.880548,0][-0.212759,0.324005,-0.70172][0.713972,0.269938,-0.646047][0.041574,0.880548,0][-0.212759,0.33513,-0.727577][0.705831,0.288744,-0.646861][0.045328,0.880548,0][-0.183954,0.394081,-0.672344][0.391871,0.192459,-0.899665][0.045328,0.892673,0][-0.221064,0.39852,-0.671686][-0.614821,0.665093,-0.423846][0.050986,0.890061,0][-0.24018,0.351648,-0.714148][-0.639043,0.631551,-0.439053][0.050986,0.880548,0][-0.24018,0.322187,-0.645672][-0.957858,0.263858,0.113522][0.05453,0.880548,0][-0.24018,0.322187,-0.645672][-0.957858,0.263858,0.113522][0.05453,0.880548,0][-0.221064,0.369059,-0.60321][-0.939561,0.314508,0.135313][0.05453,0.890061,0][-0.221064,0.39852,-0.671686][-0.614821,0.665093,-0.423846][0.050986,0.890061,0][-0.178562,0.411966,-0.655314][0.0620585,0.983167,-0.171845][0.050986,0.896948,0][-0.213076,0.4142,-0.656946][-0.424758,0.893162,-0.147792][0.050986,0.893398,0][-0.213076,0.384739,-0.58847][-0.461901,0.814725,0.350529][0.05453,0.893398,0][-0.213076,0.384739,-0.58847][-0.461901,0.814725,0.350529][0.05453,0.893398,0][-0.178562,0.382505,-0.586839][0.0819815,0.915496,0.393887][0.05453,0.896948,0][-0.178562,0.411966,-0.655314][0.0620585,0.983167,-0.171845][0.050986,0.896948,0][-0.213076,0.4142,-0.656946][-0.424758,0.893162,-0.147792][0.050986,0.893398,0][-0.221064,0.39852,-0.671686][-0.614821,0.665093,-0.423846][0.050986,0.890061,0][-0.221064,0.369059,-0.60321][-0.939561,0.314508,0.135313][0.05453,0.890061,0][-0.221064,0.369059,-0.60321][-0.939561,0.314508,0.135313][0.05453,0.890061,0][-0.213076,0.384739,-0.58847][-0.461901,0.814725,0.350529][0.05453,0.893398,0][-0.213076,0.4142,-0.656946][-0.424758,0.893162,-0.147792][0.050986,0.893398,0][0.037922,0.159027,-0.84587][-0.405688,0.870617,-0.278285][0.017175,0.672156,0][0.037922,0.147902,-0.820013][-0.249939,0.78153,-0.571613][0.010311,0.67232,0][0.050547,0.147135,-0.820343][0.0711183,0.93901,-0.336454][0.010311,0.669709,0][0.050547,0.147135,-0.820343][0.0711183,0.93901,-0.336454][0.010311,0.669709,0][0.050547,0.15826,-0.8462][0.0708393,0.929565,-0.361789][0.017175,0.669709,0][0.037922,0.159027,-0.84587][-0.405688,0.870617,-0.278285][0.017175,0.672156,0][0.027827,0.139402,-0.854313][-0.638805,0.557559,-0.530147][0.017175,0.674058,0][0.027827,0.128277,-0.828456][-0.639228,0.55756,-0.529636][0.010311,0.674058,0][0.037922,0.147902,-0.820013][-0.249939,0.78153,-0.571613][0.010311,0.67232,0][0.037922,0.147902,-0.820013][-0.249939,0.78153,-0.571613][0.010311,0.67232,0][0.037922,0.159027,-0.84587][-0.405688,0.870617,-0.278285][0.017175,0.672156,0][0.027827,0.139402,-0.854313][-0.638805,0.557559,-0.530147][0.017175,0.674058,0][0.048445,0.140633,-0.853783][0.239795,-0.048145,-0.969629][0.022344,0.669709,0][0.048445,0.111172,-0.785308][0.489269,-0.80113,-0.344682][0.027194,0.669709,0][-0.027648,-0.0503983,-0.854821][0.92767,-0.343002,-0.147573][0.027194,0.692149,0][-0.027648,-0.0503983,-0.854821][0.92767,-0.343002,-0.147573][0.027194,0.692149,0][-0.027648,-0.0209373,-0.923297][0.650523,0.0412283,-0.758367][0.022344,0.692149,0][0.048445,0.140633,-0.853783][0.239795,-0.048145,-0.969629][0.022344,0.669709,0][-0.051342,-0.0136903,-0.920179][-0.63227,0.565496,-0.529575][0.017175,0.692149,0][-0.051342,-0.0248143,-0.894322][-0.637355,0.565548,-0.523387][0.010311,0.692149,0][0.027827,0.128277,-0.828456][-0.639228,0.55756,-0.529636][0.010311,0.674058,0][0.027827,0.128277,-0.828456][-0.639228,0.55756,-0.529636][0.010311,0.674058,0][0.027827,0.139402,-0.854313][-0.638805,0.557559,-0.530147][0.017175,0.674058,0][-0.051342,-0.0136903,-0.920179][-0.63227,0.565496,-0.529575][0.017175,0.692149,0][-0.027648,-0.0209373,-0.923297][0.650523,0.0412283,-0.758367][0.022344,0.692149,0][-0.027648,-0.0503983,-0.854821][0.92767,-0.343002,-0.147573][0.027194,0.692149,0][-0.046645,-0.0971793,-0.874948][0.921326,-0.357139,-0.153655][0.027194,0.709337,0][-0.046645,-0.0971793,-0.874948][0.921326,-0.357139,-0.153655][0.027194,0.709337,0][-0.046645,-0.0677183,-0.943424][0.66002,0.0199005,-0.750984][0.022344,0.709337,0][-0.027648,-0.0209373,-0.923297][0.650523,0.0412283,-0.758367][0.022344,0.692149,0][-0.075916,-0.0582783,-0.939363][-0.222522,0.750653,-0.622097][0.017175,0.715874,0][-0.075916,-0.0694033,-0.913506][-0.360477,0.895189,-0.262092][0.010311,0.715858,0][-0.051342,-0.0248143,-0.894322][-0.637355,0.565548,-0.523387][0.010311,0.692149,0][-0.051342,-0.0248143,-0.894322][-0.637355,0.565548,-0.523387][0.010311,0.692149,0][-0.051342,-0.0136903,-0.920179][-0.63227,0.565496,-0.529575][0.017175,0.692149,0][-0.075916,-0.0582783,-0.939363][-0.222522,0.750653,-0.622097][0.017175,0.715874,0][-0.227973,-0.0410493,-0.920566][0.149778,0.372339,-0.915931][0.017175,0.759347,0][-0.227973,-0.0521743,-0.894709][0.733273,0.50018,-0.460576][0.010311,0.759347,0][-0.151234,-0.0573573,-0.908323][0.0733365,0.928103,-0.365029][0.010311,0.738767,0][-0.151234,-0.0573573,-0.908323][0.0733365,0.928103,-0.365029][0.010311,0.738767,0][-0.151234,-0.0462323,-0.93418][0.0487399,0.91197,-0.407351][0.017175,0.738767,0][-0.227973,-0.0410493,-0.920566][0.149778,0.372339,-0.915931][0.017175,0.759347,0][-0.249898,-0.0794303,-0.926748][-0.1769,-0.442067,-0.879365][0.022344,0.754204,0][-0.170776,-0.0818533,-0.945158][-0.190207,-0.359158,-0.913688][0.022344,0.738767,0][-0.170776,-0.111314,-0.876683][-0.153666,-0.907677,-0.390525][0.027194,0.738767,0][-0.170776,-0.111314,-0.876683][-0.153666,-0.907677,-0.390525][0.027194,0.738767,0][-0.249898,-0.108892,-0.858272][-0.0908449,-0.914788,-0.393587][0.027194,0.754204,0][-0.249898,-0.0794303,-0.926748][-0.1769,-0.442067,-0.879365][0.022344,0.754204,0][-0.046645,-0.0677183,-0.943424][0.66002,0.0199005,-0.750984][0.022344,0.709337,0][-0.046645,-0.0971793,-0.874948][0.921326,-0.357139,-0.153655][0.027194,0.709337,0][-0.063263,-0.12947,-0.888841][0.445729,-0.822292,-0.353782][0.027194,0.716197,0][-0.063263,-0.12947,-0.888841][0.445729,-0.822292,-0.353782][0.027194,0.716197,0][-0.063263,-0.100009,-0.957317][0.35962,-0.429941,-0.828145][0.022344,0.716273,0][-0.046645,-0.0677183,-0.943424][0.66002,0.0199005,-0.750984][0.022344,0.709337,0][-0.063263,-0.100009,-0.957317][0.35962,-0.429941,-0.828145][0.022344,0.716273,0][-0.063263,-0.12947,-0.888841][0.445729,-0.822292,-0.353782][0.027194,0.716197,0][-0.089339,-0.124484,-0.886696][-0.198531,-0.900304,-0.387347][0.027194,0.721874,0][-0.089339,-0.124484,-0.886696][-0.198531,-0.900304,-0.387347][0.027194,0.721874,0][-0.089339,-0.0950233,-0.955172][-0.145571,-0.354025,-0.923837][0.022344,0.721874,0][-0.063263,-0.100009,-0.957317][0.35962,-0.429941,-0.828145][0.022344,0.716273,0][-0.151234,-0.0462323,-0.93418][0.0487399,0.91197,-0.407351][0.017175,0.738767,0][-0.151234,-0.0573573,-0.908323][0.0733365,0.928103,-0.365029][0.010311,0.738767,0][-0.075916,-0.0694033,-0.913506][-0.360477,0.895189,-0.262092][0.010311,0.715858,0][-0.075916,-0.0694033,-0.913506][-0.360477,0.895189,-0.262092][0.010311,0.715858,0][-0.075916,-0.0582783,-0.939363][-0.222522,0.750653,-0.622097][0.017175,0.715874,0][-0.151234,-0.0462323,-0.93418][0.0487399,0.91197,-0.407351][0.017175,0.738767,0][-0.170776,-0.0818533,-0.945158][-0.190207,-0.359158,-0.913688][0.022344,0.738767,0][-0.089339,-0.0950233,-0.955172][-0.145571,-0.354025,-0.923837][0.022344,0.721874,0][-0.089339,-0.124484,-0.886696][-0.198531,-0.900304,-0.387347][0.027194,0.721874,0][-0.089339,-0.124484,-0.886696][-0.198531,-0.900304,-0.387347][0.027194,0.721874,0][-0.170776,-0.111314,-0.876683][-0.153666,-0.907677,-0.390525][0.027194,0.738767,0][-0.170776,-0.0818533,-0.945158][-0.190207,-0.359158,-0.913688][0.022344,0.738767,0][-0.01948,0.168096,-0.841968][0.762271,0.529154,-0.372744][0.045327,0.814659,0][-0.01948,0.156971,-0.816111][0.240968,0.543694,-0.803947][0.041574,0.814659,0][-0.038649,0.135101,-0.82552][0.520006,-0.140951,-0.842453][0.041574,0.811225,0][-0.038649,0.135101,-0.82552][0.520006,-0.140951,-0.842453][0.041574,0.811225,0][-0.038649,0.146225,-0.851377][0.535739,-0.163177,-0.828467][0.045327,0.811225,0][-0.01948,0.168096,-0.841968][0.762271,0.529154,-0.372744][0.045327,0.814659,0][-0.055423,0.169965,-0.841164][0.0216592,0.931705,-0.362568][0.045327,0.817714,0][-0.055423,0.15884,-0.815307][0.0215637,0.950894,-0.308766][0.041574,0.817714,0][-0.01948,0.156971,-0.816111][0.240968,0.543694,-0.803947][0.041574,0.814659,0][-0.01948,0.156971,-0.816111][0.240968,0.543694,-0.803947][0.041574,0.814659,0][-0.01948,0.168096,-0.841968][0.762271,0.529154,-0.372744][0.045327,0.814659,0][-0.055423,0.169965,-0.841164][0.0216592,0.931705,-0.362568][0.045327,0.817714,0][-0.038649,0.146225,-0.851377][0.535739,-0.163177,-0.828467][0.045327,0.811225,0][-0.038649,0.135101,-0.82552][0.520006,-0.140951,-0.842453][0.041574,0.811225,0][-0.179257,0.00274169,-0.881284][0.501322,-0.191689,-0.84376][0.041574,0.796226,0][-0.179257,0.00274169,-0.881284][0.501322,-0.191689,-0.84376][0.041574,0.796226,0][-0.179257,0.0138657,-0.907141][0.484647,-0.170058,-0.858019][0.045327,0.796226,0][-0.038649,0.146225,-0.851377][0.535739,-0.163177,-0.828467][0.045327,0.811225,0][-0.223338,0.0229937,-0.902619][-0.495558,0.714625,-0.493693][0.050986,0.796226,0][-0.223338,-0.0064673,-0.834143][-0.655507,0.693709,0.29846][0.05453,0.796226,0][-0.072557,0.118633,-0.782097][-0.926582,-0.345475,-0.148637][0.05453,0.813901,0][-0.072557,0.118633,-0.782097][-0.926582,-0.345475,-0.148637][0.05453,0.813901,0][-0.072557,0.148094,-0.850573][-0.168995,0.32058,-0.932024][0.050986,0.813901,0][-0.223338,0.0229937,-0.902619][-0.495558,0.714625,-0.493693][0.050986,0.796226,0][-0.227973,-0.0410493,-0.920566][0.149778,0.372339,-0.915931][0.017175,0.759347,0][-0.179257,0.0138657,-0.907141][0.484647,-0.170058,-0.858019][0.017175,0.783638,0][-0.179257,0.00274169,-0.881284][0.501322,-0.191689,-0.84376][0.010311,0.783638,0][-0.179257,0.00274169,-0.881284][0.501322,-0.191689,-0.84376][0.010311,0.783638,0][-0.227973,-0.0521743,-0.894709][0.733273,0.50018,-0.460576][0.010311,0.759347,0][-0.227973,-0.0410493,-0.920566][0.149778,0.372339,-0.915931][0.017175,0.759347,0][-0.281548,-0.0269033,-0.910546][-0.564938,0.661111,-0.493739][0.022344,0.765485,0][-0.281548,-0.0563643,-0.84207][-0.645704,0.701424,0.30178][0.027194,0.765485,0][-0.223338,-0.0064673,-0.834143][-0.655507,0.693709,0.29846][0.027194,0.783638,0][-0.223338,-0.0064673,-0.834143][-0.655507,0.693709,0.29846][0.027194,0.783638,0][-0.223338,0.0229937,-0.902619][-0.495558,0.714625,-0.493693][0.022344,0.783638,0][-0.281548,-0.0269033,-0.910546][-0.564938,0.661111,-0.493739][0.022344,0.765485,0][-0.338737,-0.0802483,-0.909405][-0.85813,-0.0968387,-0.504217][0.022344,0.75947,0][-0.249898,-0.0794303,-0.926748][-0.1769,-0.442067,-0.879365][0.022344,0.754204,0][-0.249898,-0.108892,-0.858272][-0.0908449,-0.914788,-0.393587][0.027194,0.754204,0][-0.249898,-0.108892,-0.858272][-0.0908449,-0.914788,-0.393587][0.027194,0.754204,0][-0.338737,-0.109709,-0.840929][-0.915074,-0.370454,-0.159384][0.027194,0.75947,0][-0.338737,-0.0802483,-0.909405][-0.85813,-0.0968387,-0.504217][0.022344,0.75947,0][-0.338737,-0.0802483,-0.909405][-0.85813,-0.0968387,-0.504217][0.022344,0.75947,0][-0.338737,-0.109709,-0.840929][-0.915074,-0.370454,-0.159384][0.027194,0.75947,0][-0.281548,-0.0563643,-0.84207][-0.645704,0.701424,0.30178][0.027194,0.765485,0][-0.281548,-0.0563643,-0.84207][-0.645704,0.701424,0.30178][0.027194,0.765485,0][-0.281548,-0.0269033,-0.910546][-0.564938,0.661111,-0.493739][0.022344,0.765485,0][-0.338737,-0.0802483,-0.909405][-0.85813,-0.0968387,-0.504217][0.022344,0.75947,0][-0.212599,0.170575,-0.840901][0.170815,0.829475,-0.531783][0.045327,0.830141,0][-0.212599,0.15945,-0.815044][0.304161,0.92636,-0.222134][0.041574,0.830141,0][-0.055423,0.15884,-0.815307][0.0215637,0.950894,-0.308766][0.041574,0.817714,0][-0.055423,0.15884,-0.815307][0.0215637,0.950894,-0.308766][0.041574,0.817714,0][-0.055423,0.169965,-0.841164][0.0216592,0.931705,-0.362568][0.045327,0.817714,0][-0.212599,0.170575,-0.840901][0.170815,0.829475,-0.531783][0.045327,0.830141,0][-0.072557,0.148094,-0.850573][-0.168995,0.32058,-0.932024][0.050986,0.813901,0][-0.072557,0.118633,-0.782097][-0.926582,-0.345475,-0.148637][0.05453,0.813901,0][-0.223584,0.111186,-0.785301][-0.338868,-0.86424,-0.371829][0.05453,0.830141,0][-0.223584,0.111186,-0.785301][-0.338868,-0.86424,-0.371829][0.05453,0.830141,0][-0.223584,0.140647,-0.853777][-0.274601,-0.404675,-0.872257][0.050986,0.830141,0][-0.072557,0.148094,-0.850573][-0.168995,0.32058,-0.932024][0.050986,0.813901,0][-0.251245,0.205579,-0.819014][0.516549,0.569349,-0.639545][0.045327,0.840276,0][-0.251245,0.194454,-0.793158][0.754694,0.488822,-0.437595][0.041574,0.840276,0][-0.212599,0.15945,-0.815044][0.304161,0.92636,-0.222134][0.041574,0.830141,0][-0.212599,0.15945,-0.815044][0.304161,0.92636,-0.222134][0.041574,0.830141,0][-0.212599,0.170575,-0.840901][0.170815,0.829475,-0.531783][0.045327,0.830141,0][-0.251245,0.205579,-0.819014][0.516549,0.569349,-0.639545][0.045327,0.840276,0][-0.298518,0.200326,-0.822326][-0.766127,0.0976959,-0.635221][0.050986,0.840276,0][-0.223584,0.140647,-0.853777][-0.274601,-0.404675,-0.872257][0.050986,0.830141,0][-0.223584,0.111186,-0.785301][-0.338868,-0.86424,-0.371829][0.05453,0.830141,0][-0.223584,0.111186,-0.785301][-0.338868,-0.86424,-0.371829][0.05453,0.830141,0][-0.298518,0.170865,-0.75385][-0.975962,-0.200197,-0.0861323][0.05453,0.840276,0][-0.298518,0.200326,-0.822326][-0.766127,0.0976959,-0.635221][0.050986,0.840276,0][0.062855,0.314179,-0.748098][-0.0265509,0.970167,-0.240981][0.102929,0.724738,0][0.062855,0.303055,-0.722241][-0.0260865,0.966663,-0.254719][0.102929,0.716306,0][0.082589,0.303304,-0.722046][0.231874,0.77489,-0.588031][0.116594,0.716306,0][0.082589,0.303304,-0.722046][0.231874,0.77489,-0.588031][0.116594,0.716306,0][0.082589,0.314429,-0.747903][0.626578,0.750803,-0.209032][0.108439,0.724738,0][0.062855,0.314179,-0.748098][-0.0265509,0.970167,-0.240981][0.102929,0.724738,0][0.082589,0.314429,-0.747903][0.626578,0.750803,-0.209032][0.108439,0.724738,0][0.082589,0.303304,-0.722046][0.231874,0.77489,-0.588031][0.116594,0.716306,0][0.080596,0.289144,-0.733128][0.725969,0.333081,-0.601686][0.116594,0.72684,0][0.080596,0.289144,-0.733128][0.725969,0.333081,-0.601686][0.116594,0.72684,0][0.080596,0.300269,-0.758984][0.698477,0.360072,-0.618449][0.108439,0.72684,0][0.082589,0.314429,-0.747903][0.626578,0.750803,-0.209032][0.108439,0.724738,0][0.062855,0.314179,-0.748098][-0.0265509,0.970167,-0.240981][0.102929,0.724738,0][0.010756,0.311378,-0.750035][-0.0677893,0.968698,-0.238807][0.090755,0.724738,0][0.010756,0.300253,-0.724178][-0.0672372,0.964189,-0.256551][0.090755,0.716306,0][0.010756,0.300253,-0.724178][-0.0672372,0.964189,-0.256551][0.090755,0.716306,0][0.062855,0.303055,-0.722241][-0.0260865,0.966663,-0.254719][0.102929,0.716306,0][0.062855,0.314179,-0.748098][-0.0265509,0.970167,-0.240981][0.102929,0.724738,0][0.062014,0.299155,-0.759856][-0.31497,0.321099,-0.893134][0.102929,0.72684,0][0.062014,0.288031,-0.733999][-0.680992,-0.672681,-0.289396][0.097839,0.730481,0][0.010372,0.284705,-0.736271][0.122644,-0.911653,-0.392234][0.090755,0.730481,0][0.010372,0.284705,-0.736271][0.122644,-0.911653,-0.392234][0.090755,0.730481,0][0.010372,0.29583,-0.762128][0.09536,-0.228372,-0.968893][0.090755,0.72684,0][0.062014,0.299155,-0.759856][-0.31497,0.321099,-0.893134][0.102929,0.72684,0][-0.037508,0.305812,-0.754167][-0.103588,0.960603,-0.2579][0.080789,0.724738,0][-0.061384,0.302286,-0.757052][-0.636758,0.724486,-0.26393][0.076418,0.724738,0][-0.061384,0.29116,-0.731196][-0.310316,0.782013,-0.540517][0.068092,0.716306,0][-0.061384,0.29116,-0.731196][-0.310316,0.782013,-0.540517][0.068092,0.716306,0][-0.037508,0.294688,-0.72831][-0.105723,0.963999,-0.243984][0.080789,0.716306,0][-0.037508,0.305812,-0.754167][-0.103588,0.960603,-0.2579][0.080789,0.724738,0][-0.061384,0.302286,-0.757052][-0.636758,0.724486,-0.26393][0.076418,0.724738,0][-0.060707,0.283116,-0.770141][-0.713167,0.346259,-0.609506][0.076418,0.72684,0][-0.060707,0.271992,-0.744284][-0.707356,0.353827,-0.611926][0.068092,0.72684,0][-0.060707,0.271992,-0.744284][-0.707356,0.353827,-0.611926][0.068092,0.72684,0][-0.061384,0.29116,-0.731196][-0.310316,0.782013,-0.540517][0.068092,0.716306,0][-0.061384,0.302286,-0.757052][-0.636758,0.724486,-0.26393][0.076418,0.724738,0][0.080596,0.300269,-0.758984][0.698477,0.360072,-0.618449][0.108439,0.72684,0][0.080596,0.289144,-0.733128][0.725969,0.333081,-0.601686][0.116594,0.72684,0][0.074449,0.227278,-0.772468][0.705763,0.317524,-0.633306][0.116594,0.74525,0][0.074449,0.227278,-0.772468][0.705763,0.317524,-0.633306][0.116594,0.74525,0][0.074449,0.238402,-0.798325][0.712814,0.310155,-0.629047][0.108439,0.74525,0][0.080596,0.300269,-0.758984][0.698477,0.360072,-0.618449][0.108439,0.72684,0][0.062014,0.299155,-0.759856][-0.31497,0.321099,-0.893134][0.102929,0.72684,0][0.053905,0.241884,-0.796131][-0.195528,0.753942,-0.627169][0.102929,0.74525,0][0.053905,0.230759,-0.770274][-0.609039,0.728567,0.313466][0.097839,0.741019,0][0.053905,0.230759,-0.770274][-0.609039,0.728567,0.313466][0.097839,0.741019,0][0.062014,0.288031,-0.733999][-0.680992,-0.672681,-0.289396][0.097839,0.730481,0][0.062014,0.299155,-0.759856][-0.31497,0.321099,-0.893134][0.102929,0.72684,0][-0.036592,0.288893,-0.7665][0.396764,0.272519,-0.876534][0.080789,0.72684,0][-0.036592,0.277769,-0.740643][0.755031,-0.602312,-0.259131][0.085579,0.730481,0][-0.033772,0.247753,-0.759562][0.783125,0.571236,0.245774][0.085579,0.741019,0][-0.033772,0.247753,-0.759562][0.783125,0.571236,0.245774][0.085579,0.741019,0][-0.033772,0.258878,-0.785419][0.335749,0.740102,-0.582684][0.080789,0.74525,0][-0.036592,0.288893,-0.7665][0.396764,0.272519,-0.876534][0.080789,0.72684,0][-0.060707,0.283116,-0.770141][-0.713167,0.346259,-0.609506][0.076418,0.72684,0][-0.058618,0.262535,-0.783114][-0.703261,0.344339,-0.621976][0.076418,0.74525,0][-0.058618,0.251411,-0.757257][-0.715189,0.334568,-0.613652][0.068092,0.74525,0][-0.058618,0.251411,-0.757257][-0.715189,0.334568,-0.613652][0.068092,0.74525,0][-0.060707,0.271992,-0.744284][-0.707356,0.353827,-0.611926][0.068092,0.72684,0][-0.060707,0.283116,-0.770141][-0.713167,0.346259,-0.609506][0.076418,0.72684,0][0.074449,0.238402,-0.798325][0.712814,0.310155,-0.629047][0.108439,0.74525,0][0.074449,0.227278,-0.772468][0.705763,0.317524,-0.633306][0.116594,0.74525,0][0.07136,0.205478,-0.786209][0.29768,0.176091,-0.938285][0.116594,0.752062,0][0.07136,0.205478,-0.786209][0.29768,0.176091,-0.938285][0.116594,0.752062,0][0.07136,0.216603,-0.812066][0.490454,-0.304138,-0.816673][0.108439,0.748558,0][0.074449,0.238402,-0.798325][0.712814,0.310155,-0.629047][0.108439,0.74525,0][0.052636,0.21883,-0.810662][-0.130543,-0.295442,-0.9464][0.102929,0.748558,0][0.07136,0.216603,-0.812066][0.490454,-0.304138,-0.816673][0.108439,0.748558,0][0.07136,0.205478,-0.786209][0.29768,0.176091,-0.938285][0.116594,0.752062,0][0.07136,0.205478,-0.786209][0.29768,0.176091,-0.938285][0.116594,0.752062,0][0.052636,0.207705,-0.784805][-0.129109,-0.276127,-0.95241][0.102929,0.752062,0][0.052636,0.21883,-0.810662][-0.130543,-0.295442,-0.9464][0.102929,0.748558,0][-0.057572,0.236604,-0.799459][-0.596011,-0.207854,-0.775608][0.076418,0.748558,0][-0.032578,0.233745,-0.801261][-0.127079,-0.275626,-0.952828][0.080789,0.748558,0][-0.032578,0.22262,-0.775404][-0.128617,-0.296519,-0.946327][0.080789,0.752062,0][-0.032578,0.22262,-0.775404][-0.128617,-0.296519,-0.946327][0.080789,0.752062,0][-0.057572,0.225479,-0.773602][-0.388786,0.192667,-0.900958][0.068092,0.752062,0][-0.057572,0.236604,-0.799459][-0.596011,-0.207854,-0.775608][0.076418,0.748558,0][-0.058618,0.262535,-0.783114][-0.703261,0.344339,-0.621976][0.076418,0.74525,0][-0.057572,0.236604,-0.799459][-0.596011,-0.207854,-0.775608][0.076418,0.748558,0][-0.057572,0.225479,-0.773602][-0.388786,0.192667,-0.900958][0.068092,0.752062,0][-0.057572,0.225479,-0.773602][-0.388786,0.192667,-0.900958][0.068092,0.752062,0][-0.058618,0.251411,-0.757257][-0.715189,0.334568,-0.613652][0.068092,0.74525,0][-0.058618,0.262535,-0.783114][-0.703261,0.344339,-0.621976][0.076418,0.74525,0][0.010756,0.311378,-0.750035][-0.0677893,0.968698,-0.238807][0.090755,0.724738,0][-0.037508,0.305812,-0.754167][-0.103588,0.960603,-0.2579][0.080789,0.724738,0][-0.037508,0.294688,-0.72831][-0.105723,0.963999,-0.243984][0.080789,0.716306,0][-0.037508,0.294688,-0.72831][-0.105723,0.963999,-0.243984][0.080789,0.716306,0][0.010756,0.300253,-0.724178][-0.0672372,0.964189,-0.256551][0.090755,0.716306,0][0.010756,0.311378,-0.750035][-0.0677893,0.968698,-0.238807][0.090755,0.724738,0][0.010372,0.29583,-0.762128][0.09536,-0.228372,-0.968893][0.090755,0.72684,0][0.010372,0.284705,-0.736271][0.122644,-0.911653,-0.392234][0.090755,0.730481,0][-0.036592,0.277769,-0.740643][0.755031,-0.602312,-0.259131][0.085579,0.730481,0][-0.036592,0.277769,-0.740643][0.755031,-0.602312,-0.259131][0.085579,0.730481,0][-0.036592,0.288893,-0.7665][0.396764,0.272519,-0.876534][0.080789,0.72684,0][0.010372,0.29583,-0.762128][0.09536,-0.228372,-0.968893][0.090755,0.72684,0][-0.033772,0.258878,-0.785419][0.335749,0.740102,-0.582684][0.080789,0.74525,0][-0.033772,0.247753,-0.759562][0.783125,0.571236,0.245774][0.085579,0.741019,0][0.01556,0.238167,-0.765604][0.220685,0.895938,0.385478][0.090755,0.741019,0][0.01556,0.238167,-0.765604][0.220685,0.895938,0.385478][0.090755,0.741019,0][0.01556,0.249292,-0.791461][0.145358,0.941647,-0.303598][0.090755,0.74525,0][-0.033772,0.258878,-0.785419][0.335749,0.740102,-0.582684][0.080789,0.74525,0][-0.032578,0.233745,-0.801261][-0.127079,-0.275626,-0.952828][0.080789,0.748558,0][0.008147,0.226617,-0.805754][-0.153791,-0.281662,-0.947109][0.090755,0.748558,0][0.008147,0.215492,-0.779897][-0.153787,-0.281667,-0.947108][0.090755,0.752062,0][0.008147,0.215492,-0.779897][-0.153787,-0.281667,-0.947108][0.090755,0.752062,0][-0.032578,0.22262,-0.775404][-0.128617,-0.296519,-0.946327][0.080789,0.752062,0][-0.032578,0.233745,-0.801261][-0.127079,-0.275626,-0.952828][0.080789,0.748558,0][0.01556,0.249292,-0.791461][0.145358,0.941647,-0.303598][0.090755,0.74525,0][0.01556,0.238167,-0.765604][0.220685,0.895938,0.385478][0.090755,0.741019,0][0.053905,0.230759,-0.770274][-0.609039,0.728567,0.313466][0.097839,0.741019,0][0.053905,0.230759,-0.770274][-0.609039,0.728567,0.313466][0.097839,0.741019,0][0.053905,0.241884,-0.796131][-0.195528,0.753942,-0.627169][0.102929,0.74525,0][0.01556,0.249292,-0.791461][0.145358,0.941647,-0.303598][0.090755,0.74525,0][0.008147,0.226617,-0.805754][-0.153791,-0.281662,-0.947109][0.090755,0.748558,0][0.052636,0.21883,-0.810662][-0.130543,-0.295442,-0.9464][0.102929,0.748558,0][0.052636,0.207705,-0.784805][-0.129109,-0.276127,-0.95241][0.102929,0.752062,0][0.052636,0.207705,-0.784805][-0.129109,-0.276127,-0.95241][0.102929,0.752062,0][0.008147,0.215492,-0.779897][-0.153787,-0.281667,-0.947108][0.090755,0.752062,0][0.008147,0.226617,-0.805754][-0.153791,-0.281662,-0.947109][0.090755,0.748558,0][0,0.585174,0.254999][0,1,0][0.522416,0.358407,0][-0.393363,0.572614,0.254999][-0.10587,0.99438,-1.46904e-007][0.436823,0.350063,0][-0.374047,0.572614,0.376576][-0.100664,0.994382,0.0327285][0.445275,0.326938,0][0,0.585174,0.254999][0,1,0][0.522416,0.358407,0][-0.374047,0.572614,0.376576][-0.100664,0.994382,0.0327285][0.445275,0.326938,0][-0.318224,0.572614,0.486167][-0.0856473,0.994381,0.0622186][0.459486,0.307282,0][0,0.585174,0.254999][0,1,0][0.522416,0.358407,0][-0.318224,0.572614,0.486167][-0.0856473,0.994381,0.0622186][0.459486,0.307282,0][-0.231168,0.572614,0.573223][-0.0622189,0.994381,0.085647][0.477815,0.292333,0][0,0.585174,0.254999][0,1,0][0.522416,0.358407,0][-0.231168,0.572614,0.573223][-0.0622189,0.994381,0.085647][0.477815,0.292333,0][-0.121577,0.572614,0.629046][-0.0327285,0.994382,0.100664][0.499042,0.282768,0][0,0.585174,0.254999][0,1,0][0.522416,0.358407,0][-0.121577,0.572614,0.629046][-0.0327285,0.994382,0.100664][0.499042,0.282768,0][0,0.572614,0.648362][-1.38578e-007,0.99438,0.10587][0.521798,0.27965,0][0,0.585174,0.254999][0,1,0][0.522416,0.358407,0][0,0.572614,0.648362][-1.38578e-007,0.99438,0.10587][0.521798,0.27965,0][0.121577,0.572614,0.629046][0.0327285,0.994382,0.100664][0.544932,0.28264,0][0,0.585174,0.254999][0,1,0][0.522416,0.358407,0][0.121577,0.572614,0.629046][0.0327285,0.994382,0.100664][0.544932,0.28264,0][0.231168,0.572614,0.573223][0.0622188,0.994381,0.085647][0.566117,0.292388,0][0,0.585174,0.254999][0,1,0][0.522416,0.358407,0][0.231168,0.572614,0.573223][0.0622188,0.994381,0.085647][0.566117,0.292388,0][0.318224,0.572614,0.486167][0.0856473,0.994381,0.0622184][0.584959,0.307011,0][0,0.585174,0.254999][0,1,0][0.522416,0.358407,0][0.318224,0.572614,0.486167][0.0856473,0.994381,0.0622184][0.584959,0.307011,0][0.374047,0.572614,0.376576][0.100664,0.994382,0.0327284][0.599203,0.326852,0][0,0.585174,0.254999][0,1,0][0.522416,0.358407,0][0.374047,0.572614,0.376576][0.100664,0.994382,0.0327284][0.599203,0.326852,0][0.393363,0.572614,0.254999][0.10587,0.99438,0][0.607987,0.350077,0][0,0.585174,0.254999][0,1,0][0.522416,0.358407,0][0.393363,0.572614,0.254999][0.10587,0.99438,0][0.607987,0.350077,0][0.374047,0.572614,0.133422][0.100664,0.994382,-0.0327286][0.607862,0.37406,0][0,0.585174,0.254999][0,1,0][0.524223,0.36796,0][0.374047,0.572614,0.133422][0.100664,0.994382,-0.0327286][0.626465,0.401858,0][0.318224,0.572614,0.0238307][0.0856472,0.994381,-0.0622187][0.610548,0.43135,0][0,0.585174,0.254999][0,1,0][0.524223,0.36796,0][0.318224,0.572614,0.0238307][0.0856472,0.994381,-0.0622187][0.610548,0.43135,0][0.231168,0.572614,-0.0632253][0.0622187,0.994381,-0.0856472][0.586396,0.454768,0][0,0.585174,0.254999][0,1,0][0.524223,0.36796,0][0.231168,0.572614,-0.0632253][0.0622187,0.994381,-0.0856472][0.586396,0.454768,0][0.121577,0.572614,-0.119048][0.0327285,0.994382,-0.100664][0.556628,0.469789,0][0,0.585174,0.254999][0,1,0][0.524223,0.36796,0][0.121577,0.572614,-0.119048][0.0327285,0.994382,-0.100664][0.556628,0.469789,0][0,0.572614,-0.138364][1.43633e-007,0.99438,-0.10587][0.523714,0.47493,0][0,0.585174,0.254999][0,1,0][0.524223,0.36796,0][0,0.572614,-0.138364][1.43633e-007,0.99438,-0.10587][0.523714,0.47493,0][-0.121577,0.572614,-0.119048][-0.0327286,0.994382,-0.100664][0.490994,0.469592,0][0,0.585174,0.254999][0,1,0][0.524223,0.36796,0][-0.121577,0.572614,-0.119048][-0.0327286,0.994382,-0.100664][0.490994,0.469592,0][-0.231168,0.572614,-0.0632253][-0.0622187,0.994381,-0.0856472][0.461089,0.454309,0][0,0.585174,0.254999][0,1,0][0.524223,0.36796,0][-0.231168,0.572614,-0.0632253][-0.0622187,0.994381,-0.0856472][0.461089,0.454309,0][-0.318224,0.572614,0.0238307][-0.0856473,0.994381,-0.0622187][0.437103,0.430721,0][0,0.585174,0.254999][0,1,0][0.524223,0.36796,0][-0.318224,0.572614,0.0238307][-0.0856473,0.994381,-0.0622187][0.437103,0.430721,0][-0.374047,0.572614,0.133422][-0.100664,0.994382,-0.0327285][0.421747,0.401266,0][0,0.585174,0.254999][0,1,0][0.522416,0.358407,0][-0.374047,0.572614,0.133422][-0.100664,0.994382,-0.0327285][0.437889,0.374031,0][-0.393363,0.572614,0.254999][-0.10587,0.99438,-1.46904e-007][0.436823,0.350063,0][-0.5461,0.542154,0.432499][-0.255003,0.963381,0.0828897][0.412445,0.309015,0][-0.5743,0.542154,0.254999][-0.268186,0.963367,2.54549e-005][0.398649,0.341629,0][-0.7618,0.472034,0.254999][-0.483189,0.875516,4.6104e-005][0.357723,0.328986,0][-0.7618,0.472034,0.254999][-0.483189,0.875516,4.6104e-005][0.357723,0.328986,0][-0.7245,0.472034,0.490399][-0.459453,0.875575,0.149237][0.377638,0.28704,0][-0.5461,0.542154,0.432499][-0.255003,0.963381,0.0828897][0.412445,0.309015,0][-0.4646,0.542154,0.592499][-0.216937,0.963382,0.157586][0.433206,0.281465,0][-0.5461,0.542154,0.432499][-0.255003,0.963381,0.0828897][0.412445,0.309015,0][-0.7245,0.472034,0.490399][-0.459453,0.875575,0.149237][0.377638,0.28704,0][-0.7245,0.472034,0.490399][-0.459453,0.875575,0.149237][0.377638,0.28704,0][-0.6163,0.472034,0.702799][-0.390818,0.87558,0.283939][0.405812,0.252725,0][-0.4646,0.542154,0.592499][-0.216937,0.963382,0.157586][0.433206,0.281465,0][-0.3375,0.542154,0.719599][-0.157585,0.963382,0.216939][0.45922,0.261585,0][-0.4646,0.542154,0.592499][-0.216937,0.963382,0.157586][0.433206,0.281465,0][-0.6163,0.472034,0.702799][-0.390818,0.87558,0.283939][0.405812,0.252725,0][-0.6163,0.472034,0.702799][-0.390818,0.87558,0.283939][0.405812,0.252725,0][-0.4478,0.472034,0.871299][-0.283937,0.875579,0.39082][0.440476,0.227573,0][-0.3375,0.542154,0.719599][-0.157585,0.963382,0.216939][0.45922,0.261585,0][-0.1775,0.542154,0.801099][-0.0829103,0.963386,0.254977][0.489493,0.248964,0][-0.3375,0.542154,0.719599][-0.157585,0.963382,0.216939][0.45922,0.261585,0][-0.4478,0.472034,0.871299][-0.283937,0.875579,0.39082][0.440476,0.227573,0][-0.4478,0.472034,0.871299][-0.283937,0.875579,0.39082][0.440476,0.227573,0][-0.2354,0.472034,0.979499][-0.149281,0.875579,0.45943][0.479646,0.212373,0][-0.1775,0.542154,0.801099][-0.0829103,0.963386,0.254977][0.489493,0.248964,0][0,0.542154,0.829299][2.55628e-005,0.963367,0.268186][0.521515,0.244897,0][-0.1775,0.542154,0.801099][-0.0829103,0.963386,0.254977][0.489493,0.248964,0][-0.2354,0.472034,0.979499][-0.149281,0.875579,0.45943][0.479646,0.212373,0][-0.2354,0.472034,0.979499][-0.149281,0.875579,0.45943][0.479646,0.212373,0][0,0.472034,1.0168][4.61354e-005,0.875516,0.483189][0.52137,0.207281,0][0,0.542154,0.829299][2.55628e-005,0.963367,0.268186][0.521515,0.244897,0][0.1775,0.542154,0.801099][0.0828897,0.963381,0.255003][0.554027,0.248945,0][0,0.542154,0.829299][2.55628e-005,0.963367,0.268186][0.521515,0.244897,0][0,0.472034,1.0168][4.61354e-005,0.875516,0.483189][0.52137,0.207281,0][0,0.472034,1.0168][4.61354e-005,0.875516,0.483189][0.52137,0.207281,0][0.2354,0.472034,0.979499][0.149237,0.875575,0.459453][0.563239,0.212473,0][0.1775,0.542154,0.801099][0.0828897,0.963381,0.255003][0.554027,0.248945,0][0.3375,0.542154,0.719599][0.157586,0.963382,0.216937][0.584147,0.261729,0][0.1775,0.542154,0.801099][0.0828897,0.963381,0.255003][0.554027,0.248945,0][0.2354,0.472034,0.979499][0.149237,0.875575,0.459453][0.563239,0.212473,0][0.2354,0.472034,0.979499][0.149237,0.875575,0.459453][0.563239,0.212473,0][0.4478,0.472034,0.871299][0.283939,0.87558,0.390818][0.602693,0.22775,0][0.3375,0.542154,0.719599][0.157586,0.963382,0.216937][0.584147,0.261729,0][0.4646,0.542154,0.592499][0.216939,0.963382,0.157585][0.610647,0.281601,0][0.3375,0.542154,0.719599][0.157586,0.963382,0.216937][0.584147,0.261729,0][0.4478,0.472034,0.871299][0.283939,0.87558,0.390818][0.602693,0.22775,0][0.4478,0.472034,0.871299][0.283939,0.87558,0.390818][0.602693,0.22775,0][0.6163,0.472034,0.702799][0.390821,0.875579,0.283937][0.637907,0.252793,0][0.4646,0.542154,0.592499][0.216939,0.963382,0.157585][0.610647,0.281601,0][0.5461,0.542154,0.432499][0.254977,0.963386,0.0829102][0.63174,0.30893,0][0.4646,0.542154,0.592499][0.216939,0.963382,0.157585][0.610647,0.281601,0][0.6163,0.472034,0.702799][0.390821,0.875579,0.283937][0.637907,0.252793,0][0.6163,0.472034,0.702799][0.390821,0.875579,0.283937][0.637907,0.252793,0][0.7245,0.472034,0.490399][0.45943,0.875579,0.149281][0.666108,0.287037,0][0.5461,0.542154,0.432499][0.254977,0.963386,0.0829102][0.63174,0.30893,0][0.5743,0.542154,0.254999][0.268186,0.963367,-2.57236e-005][0.64633,0.341655,0][0.5461,0.542154,0.432499][0.254977,0.963386,0.0829102][0.63174,0.30893,0][0.7245,0.472034,0.490399][0.45943,0.875579,0.149281][0.666108,0.287037,0][0.7245,0.472034,0.490399][0.45943,0.875579,0.149281][0.666108,0.287037,0][0.7618,0.472034,0.254999][0.483189,0.875516,-4.62369e-005][0.686746,0.328914,0][0.5743,0.542154,0.254999][0.268186,0.963367,-2.57236e-005][0.64633,0.341655,0][0.5461,0.542154,0.0774988][0.255003,0.963381,-0.0828898][0.649504,0.376928,0][0.5743,0.542154,0.254999][0.268186,0.963367,-2.57236e-005][0.64633,0.341655,0][0.7618,0.472034,0.254999][0.483189,0.875516,-4.62369e-005][0.686746,0.328914,0][0.7618,0.472034,0.254999][0.483189,0.875516,-4.62369e-005][0.686746,0.328914,0][0.7245,0.472034,0.0195988][0.459453,0.875575,-0.149237][0.696311,0.375139,0][0.5461,0.542154,0.0774988][0.255003,0.963381,-0.0828898][0.649504,0.376928,0][0.4646,0.542154,-0.0825012][0.216937,0.963382,-0.157586][0.650165,0.460973,0][0.5461,0.542154,0.0774988][0.255003,0.963381,-0.0828898][0.673835,0.418458,0][0.7245,0.472034,0.0195988][0.459453,0.875575,-0.149237][0.725256,0.43783,0][0.7245,0.472034,0.0195988][0.459453,0.875575,-0.149237][0.725256,0.43783,0][0.6163,0.472034,-0.192801][0.390818,0.87558,-0.283939][0.691797,0.493765,0][0.4646,0.542154,-0.0825012][0.216937,0.963382,-0.157586][0.650165,0.460973,0][0.3375,0.542154,-0.209601][0.157585,0.963382,-0.216939][0.614339,0.49572,0][0.4646,0.542154,-0.0825012][0.216937,0.963382,-0.157586][0.650165,0.460973,0][0.6163,0.472034,-0.192801][0.390818,0.87558,-0.283939][0.691797,0.493765,0][0.6163,0.472034,-0.192801][0.390818,0.87558,-0.283939][0.691797,0.493765,0][0.4478,0.472034,-0.361301][0.283937,0.875579,-0.390821][0.644687,0.541006,0][0.3375,0.542154,-0.209601][0.157585,0.963382,-0.216939][0.614339,0.49572,0][0.1775,0.542154,-0.291101][0.0829102,0.963386,-0.254977][0.571221,0.517674,0][0.3375,0.542154,-0.209601][0.157585,0.963382,-0.216939][0.614339,0.49572,0][0.4478,0.472034,-0.361301][0.283937,0.875579,-0.390821][0.644687,0.541006,0][0.4478,0.472034,-0.361301][0.283937,0.875579,-0.390821][0.644687,0.541006,0][0.2354,0.472034,-0.469501][0.149281,0.875579,-0.45943][0.587966,0.569949,0][0.1775,0.542154,-0.291101][0.0829102,0.963386,-0.254977][0.571221,0.517674,0][0,0.542154,-0.319301][-2.55682e-005,0.963367,-0.268186][0.523517,0.525236,0][0.1775,0.542154,-0.291101][0.0829102,0.963386,-0.254977][0.571221,0.517674,0][0.2354,0.472034,-0.469501][0.149281,0.875579,-0.45943][0.587966,0.569949,0][0.2354,0.472034,-0.469501][0.149281,0.875579,-0.45943][0.587966,0.569949,0][0,0.472034,-0.506801][-8.57123e-006,0.875575,-0.483082][0.52347,0.579854,0][0,0.542154,-0.319301][-2.55682e-005,0.963367,-0.268186][0.523517,0.525236,0][-0.1775,0.542154,-0.291101][-0.0828897,0.963381,-0.255003][0.475781,0.517253,0][0,0.542154,-0.319301][-2.55682e-005,0.963367,-0.268186][0.523517,0.525236,0][0,0.472034,-0.506801][-8.57123e-006,0.875575,-0.483082][0.52347,0.579854,0][0,0.472034,-0.506801][-8.57123e-006,0.875575,-0.483082][0.52347,0.579854,0][-0.2354,0.472034,-0.469501][-0.149264,0.875589,-0.459417][0.459079,0.569358,0][-0.1775,0.542154,-0.291101][-0.0828897,0.963381,-0.255003][0.475781,0.517253,0][-0.3375,0.542154,-0.209601][-0.157586,0.963382,-0.216937][0.432658,0.495053,0][-0.1775,0.542154,-0.291101][-0.0828897,0.963381,-0.255003][0.475781,0.517253,0][-0.2354,0.472034,-0.469501][-0.149264,0.875589,-0.459417][0.459079,0.569358,0][-0.2354,0.472034,-0.469501][-0.149264,0.875589,-0.459417][0.459079,0.569358,0][-0.4478,0.472034,-0.361301][-0.283939,0.87558,-0.390818][0.401693,0.539823,0][-0.3375,0.542154,-0.209601][-0.157586,0.963382,-0.216937][0.432658,0.495053,0][-0.4646,0.542154,-0.0825012][-0.216939,0.963382,-0.157585][0.397417,0.460262,0][-0.3375,0.542154,-0.209601][-0.157586,0.963382,-0.216937][0.432658,0.495053,0][-0.4478,0.472034,-0.361301][-0.283939,0.87558,-0.390818][0.401693,0.539823,0][-0.4478,0.472034,-0.361301][-0.283939,0.87558,-0.390818][0.401693,0.539823,0][-0.6163,0.472034,-0.192801][-0.39082,0.875579,-0.283937][0.354864,0.492828,0][-0.4646,0.542154,-0.0825012][-0.216939,0.963382,-0.157585][0.397417,0.460262,0][-0.5461,0.542154,0.0774988][-0.254977,0.963386,-0.0829104][0.374245,0.417583,0][-0.4646,0.542154,-0.0825012][-0.216939,0.963382,-0.157585][0.397417,0.460262,0][-0.6163,0.472034,-0.192801][-0.39082,0.875579,-0.283937][0.354864,0.492828,0][-0.6163,0.472034,-0.192801][-0.39082,0.875579,-0.283937][0.354864,0.492828,0][-0.7245,0.472034,0.0195988][-0.45943,0.875579,-0.149281][0.322748,0.436698,0][-0.5461,0.542154,0.0774988][-0.254977,0.963386,-0.0829104][0.374245,0.417583,0][-0.5743,0.542154,0.254999][-0.268186,0.963367,2.54549e-005][0.398649,0.341629,0][-0.5461,0.542154,0.0774988][-0.254977,0.963386,-0.0829104][0.396263,0.376928,0][-0.7245,0.472034,0.0195988][-0.45943,0.875579,-0.149281][0.349546,0.375172,0][-0.7245,0.472034,0.0195988][-0.45943,0.875579,-0.149281][0.349546,0.375172,0][-0.7618,0.472034,0.254999][-0.483189,0.875516,4.6104e-005][0.357723,0.328986,0][-0.5743,0.542154,0.254999][-0.268186,0.963367,2.54549e-005][0.398649,0.341629,0][-0.7245,0.472034,0.490399][-0.459453,0.875575,0.149237][0.377638,0.28704,0][-0.7618,0.472034,0.254999][-0.483189,0.875516,4.6104e-005][0.357723,0.328986,0][-0.9309,0.349423,0.254999][-0.720017,0.693957,3.58197e-006][0.316792,0.311507,0][-0.9309,0.349423,0.254999][-0.720017,0.693957,3.58197e-006][0.316792,0.311507,0][-0.8854,0.349423,0.542699][-0.684775,0.69399,0.2224][0.34335,0.261628,0][-0.7245,0.472034,0.490399][-0.459453,0.875575,0.149237][0.377638,0.28704,0][-0.6163,0.472034,0.702799][-0.390818,0.87558,0.283939][0.405812,0.252725,0][-0.7245,0.472034,0.490399][-0.459453,0.875575,0.149237][0.377638,0.28704,0][-0.8854,0.349423,0.542699][-0.684775,0.69399,0.2224][0.34335,0.261628,0][-0.8854,0.349423,0.542699][-0.684775,0.69399,0.2224][0.34335,0.261628,0][-0.7532,0.349423,0.802199][-0.582527,0.693937,0.423217][0.378786,0.222064,0][-0.6163,0.472034,0.702799][-0.390818,0.87558,0.283939][0.405812,0.252725,0][-0.4478,0.472034,0.871299][-0.283937,0.875579,0.39082][0.440476,0.227573,0][-0.6163,0.472034,0.702799][-0.390818,0.87558,0.283939][0.405812,0.252725,0][-0.7532,0.349423,0.802199][-0.582527,0.693937,0.423217][0.378786,0.222064,0][-0.7532,0.349423,0.802199][-0.582527,0.693937,0.423217][0.378786,0.222064,0][-0.5472,0.349423,1.0082][-0.423206,0.693928,0.582547][0.421811,0.192231,0][-0.4478,0.472034,0.871299][-0.283937,0.875579,0.39082][0.440476,0.227573,0][-0.2354,0.472034,0.979499][-0.149281,0.875579,0.45943][0.479646,0.212373,0][-0.4478,0.472034,0.871299][-0.283937,0.875579,0.39082][0.440476,0.227573,0][-0.5472,0.349423,1.0082][-0.423206,0.693928,0.582547][0.421811,0.192231,0][-0.5472,0.349423,1.0082][-0.423206,0.693928,0.582547][0.421811,0.192231,0][-0.2877,0.349423,1.1404][-0.222433,0.693956,0.684799][0.47007,0.174544,0][-0.2354,0.472034,0.979499][-0.149281,0.875579,0.45943][0.479646,0.212373,0][0,0.472034,1.0168][4.61354e-005,0.875516,0.483189][0.52137,0.207281,0][-0.2354,0.472034,0.979499][-0.149281,0.875579,0.45943][0.479646,0.212373,0][-0.2877,0.349423,1.1404][-0.222433,0.693956,0.684799][0.47007,0.174544,0][-0.2877,0.349423,1.1404][-0.222433,0.693956,0.684799][0.47007,0.174544,0][0,0.349423,1.1859][3.56973e-006,0.693957,0.720016][0.521372,0.168769,0][0,0.472034,1.0168][4.61354e-005,0.875516,0.483189][0.52137,0.207281,0][0.2354,0.472034,0.979499][0.149237,0.875575,0.459453][0.563239,0.212473,0][0,0.472034,1.0168][4.61354e-005,0.875516,0.483189][0.52137,0.207281,0][0,0.349423,1.1859][3.56973e-006,0.693957,0.720016][0.521372,0.168769,0][0,0.349423,1.1859][3.56973e-006,0.693957,0.720016][0.521372,0.168769,0][0.2877,0.349423,1.1404][0.2224,0.69399,0.684774][0.572708,0.174628,0][0.2354,0.472034,0.979499][0.149237,0.875575,0.459453][0.563239,0.212473,0][0.4478,0.472034,0.871299][0.283939,0.87558,0.390818][0.602693,0.22775,0][0.2354,0.472034,0.979499][0.149237,0.875575,0.459453][0.563239,0.212473,0][0.2877,0.349423,1.1404][0.2224,0.69399,0.684774][0.572708,0.174628,0][0.2877,0.349423,1.1404][0.2224,0.69399,0.684774][0.572708,0.174628,0][0.5472,0.349423,1.0082][0.423217,0.693937,0.582527][0.62121,0.192571,0][0.4478,0.472034,0.871299][0.283939,0.87558,0.390818][0.602693,0.22775,0][0.6163,0.472034,0.702799][0.390821,0.875579,0.283937][0.637907,0.252793,0][0.4478,0.472034,0.871299][0.283939,0.87558,0.390818][0.602693,0.22775,0][0.5472,0.349423,1.0082][0.423217,0.693937,0.582527][0.62121,0.192571,0][0.5472,0.349423,1.0082][0.423217,0.693937,0.582527][0.62121,0.192571,0][0.7532,0.349423,0.802199][0.582547,0.693928,0.423206][0.664606,0.22188,0][0.6163,0.472034,0.702799][0.390821,0.875579,0.283937][0.637907,0.252793,0][0.7245,0.472034,0.490399][0.45943,0.875579,0.149281][0.666108,0.287037,0][0.6163,0.472034,0.702799][0.390821,0.875579,0.283937][0.637907,0.252793,0][0.7532,0.349423,0.802199][0.582547,0.693928,0.423206][0.664606,0.22188,0][0.7532,0.349423,0.802199][0.582547,0.693928,0.423206][0.664606,0.22188,0][0.8854,0.349423,0.542699][0.684799,0.693956,0.222433][0.700662,0.261634,0][0.7245,0.472034,0.490399][0.45943,0.875579,0.149281][0.666108,0.287037,0][0.7618,0.472034,0.254999][0.483189,0.875516,-4.62369e-005][0.686746,0.328914,0][0.7245,0.472034,0.490399][0.45943,0.875579,0.149281][0.666108,0.287037,0][0.8854,0.349423,0.542699][0.684799,0.693956,0.222433][0.700662,0.261634,0][0.8854,0.349423,0.542699][0.684799,0.693956,0.222433][0.700662,0.261634,0][0.9309,0.349423,0.254999][0.720017,0.693957,-3.65052e-006][0.727874,0.311444,0][0.7618,0.472034,0.254999][0.483189,0.875516,-4.62369e-005][0.686746,0.328914,0][0.7245,0.472034,0.0195988][0.459453,0.875575,-0.149237][0.696311,0.375139,0][0.7618,0.472034,0.254999][0.483189,0.875516,-4.62369e-005][0.686746,0.328914,0][0.9309,0.349423,0.254999][0.720017,0.693957,-3.65052e-006][0.727874,0.311444,0][0.9309,0.349423,0.254999][0.720017,0.693957,-3.65052e-006][0.727874,0.311444,0][0.8854,0.349423,-0.0327012][0.684775,0.69399,-0.2224][0.743811,0.366047,0][0.7245,0.472034,0.0195988][0.459453,0.875575,-0.149237][0.696311,0.375139,0][0.6163,0.472034,-0.192801][0.390818,0.87558,-0.283939][0.691797,0.493765,0][0.7245,0.472034,0.0195988][0.459453,0.875575,-0.149237][0.725256,0.43783,0][0.8854,0.349423,-0.0327012][0.684775,0.69399,-0.2224][0.777498,0.460946,0][0.8854,0.349423,-0.0327012][0.684775,0.69399,-0.2224][0.777498,0.460946,0][0.7532,0.349423,-0.292201][0.582527,0.693937,-0.423217][0.734881,0.527548,0][0.6163,0.472034,-0.192801][0.390818,0.87558,-0.283939][0.691797,0.493765,0][0.4478,0.472034,-0.361301][0.283937,0.875579,-0.390821][0.644687,0.541006,0][0.6163,0.472034,-0.192801][0.390818,0.87558,-0.283939][0.691797,0.493765,0][0.7532,0.349423,-0.292201][0.582527,0.693937,-0.423217][0.734881,0.527548,0][0.7532,0.349423,-0.292201][0.582527,0.693937,-0.423217][0.734881,0.527548,0][0.5472,0.349423,-0.498201][0.423206,0.693928,-0.582547][0.679998,0.585646,0][0.4478,0.472034,-0.361301][0.283937,0.875579,-0.390821][0.644687,0.541006,0][0.2354,0.472034,-0.469501][0.149281,0.875579,-0.45943][0.440202,0.968928,0][0.4478,0.472034,-0.361301][0.283937,0.875579,-0.390821][0.363614,0.989595,0][0.5472,0.349423,-0.498201][0.423206,0.693928,-0.582547][0.335376,0.926022,0][0.5472,0.349423,-0.498201][0.423206,0.693928,-0.582547][0.335376,0.926022,0][0.2877,0.349423,-0.630401][0.222521,0.693982,-0.684744][0.42675,0.903092,0][0.2354,0.472034,-0.469501][0.149281,0.875579,-0.45943][0.440202,0.968928,0][0,0.472034,-0.506801][-8.57123e-006,0.875575,-0.483082][0.520504,0.96307,0][0.2354,0.472034,-0.469501][0.149281,0.875579,-0.45943][0.440202,0.968928,0][0.2877,0.349423,-0.630401][0.222521,0.693982,-0.684744][0.42675,0.903092,0][0.2877,0.349423,-0.630401][0.222521,0.693982,-0.684744][0.42675,0.903092,0][0,0.349423,-0.676001][-3.12153e-005,0.693911,-0.720061][0.520861,0.895673,0][0,0.472034,-0.506801][-8.57123e-006,0.875575,-0.483082][0.520504,0.96307,0][-0.2354,0.472034,-0.469501][-0.149264,0.875589,-0.459417][0.60077,0.968647,0][0,0.472034,-0.506801][-8.57123e-006,0.875575,-0.483082][0.520504,0.96307,0][0,0.349423,-0.676001][-3.12153e-005,0.693911,-0.720061][0.520861,0.895673,0][0,0.349423,-0.676001][-3.12153e-005,0.693911,-0.720061][0.520861,0.895673,0][-0.2877,0.349423,-0.630401][-0.222476,0.693969,-0.684771][0.615171,0.903008,0][-0.2354,0.472034,-0.469501][-0.149264,0.875589,-0.459417][0.60077,0.968647,0][-0.4478,0.472034,-0.361301][-0.283939,0.87558,-0.390818][0.676957,0.989595,0][-0.2354,0.472034,-0.469501][-0.149264,0.875589,-0.459417][0.60077,0.968647,0][-0.2877,0.349423,-0.630401][-0.222476,0.693969,-0.684771][0.615171,0.903008,0][-0.2877,0.349423,-0.630401][-0.222476,0.693969,-0.684771][0.615171,0.903008,0][-0.5472,0.349423,-0.498201][-0.423217,0.693937,-0.582528][0.705348,0.925892,0][-0.4478,0.472034,-0.361301][-0.283939,0.87558,-0.390818][0.676957,0.989595,0][-0.6163,0.472034,-0.192801][-0.39082,0.875579,-0.283937][0.354864,0.492828,0][-0.4478,0.472034,-0.361301][-0.283939,0.87558,-0.390818][0.401693,0.539823,0][-0.5472,0.349423,-0.498201][-0.423217,0.693937,-0.582528][0.36621,0.584604,0][-0.5472,0.349423,-0.498201][-0.423217,0.693937,-0.582528][0.36621,0.584604,0][-0.7532,0.349423,-0.292201][-0.582547,0.693928,-0.423206][0.310891,0.526361,0][-0.6163,0.472034,-0.192801][-0.39082,0.875579,-0.283937][0.354864,0.492828,0][-0.7245,0.472034,0.0195988][-0.45943,0.875579,-0.149281][0.322748,0.436698,0][-0.6163,0.472034,-0.192801][-0.39082,0.875579,-0.283937][0.354864,0.492828,0][-0.7532,0.349423,-0.292201][-0.582547,0.693928,-0.423206][0.310891,0.526361,0][-0.7532,0.349423,-0.292201][-0.582547,0.693928,-0.423206][0.310891,0.526361,0][-0.8854,0.349423,-0.0327012][-0.684799,0.693956,-0.222433][0.270022,0.459431,0][-0.7245,0.472034,0.0195988][-0.45943,0.875579,-0.149281][0.322748,0.436698,0][-0.7618,0.472034,0.254999][-0.483189,0.875516,4.6104e-005][0.357723,0.328986,0][-0.7245,0.472034,0.0195988][-0.45943,0.875579,-0.149281][0.349546,0.375172,0][-0.8854,0.349423,-0.0327012][-0.684799,0.693956,-0.222433][0.30171,0.366408,0][-0.8854,0.349423,-0.0327012][-0.684799,0.693956,-0.222433][0.30171,0.366408,0][-0.9309,0.349423,0.254999][-0.720017,0.693957,3.58197e-006][0.316792,0.311507,0][-0.7618,0.472034,0.254999][-0.483189,0.875516,4.6104e-005][0.357723,0.328986,0][-0.8854,0.349423,0.542699][-0.684775,0.69399,0.2224][0.34335,0.261628,0][-0.9309,0.349423,0.254999][-0.720017,0.693957,3.58197e-006][0.316792,0.311507,0][-1.0652,0.158533,0.254999][-0.890468,0.455047,-5.05287e-005][0.272896,0.287153,0][-1.0652,0.158533,0.254999][-0.890468,0.455047,-5.05287e-005][0.272896,0.287153,0][-1.0131,0.158533,0.584199][-0.846951,0.454909,0.275194][0.307366,0.231498,0][-0.8854,0.349423,0.542699][-0.684775,0.69399,0.2224][0.34335,0.261628,0][-0.7532,0.349423,0.802199][-0.582527,0.693937,0.423217][0.378786,0.222064,0][-0.8854,0.349423,0.542699][-0.684775,0.69399,0.2224][0.34335,0.261628,0][-1.0131,0.158533,0.584199][-0.846951,0.454909,0.275194][0.307366,0.231498,0][-1.0131,0.158533,0.584199][-0.846951,0.454909,0.275194][0.307366,0.231498,0][-0.8618,0.158533,0.881099][-0.720454,0.454946,0.523421][0.351122,0.186382,0][-0.7532,0.349423,0.802199][-0.582527,0.693937,0.423217][0.378786,0.222064,0][-0.5472,0.349423,1.0082][-0.423206,0.693928,0.582547][0.421811,0.192231,0][-0.7532,0.349423,0.802199][-0.582527,0.693937,0.423217][0.378786,0.222064,0][-0.8618,0.158533,0.881099][-0.720454,0.454946,0.523421][0.351122,0.186382,0][-0.8618,0.158533,0.881099][-0.720454,0.454946,0.523421][0.351122,0.186382,0][-0.6261,0.158533,1.1168][-0.523425,0.454982,0.720429][0.402739,0.152837,0][-0.5472,0.349423,1.0082][-0.423206,0.693928,0.582547][0.421811,0.192231,0][-0.2877,0.349423,1.1404][-0.222433,0.693956,0.684799][0.47007,0.174544,0][-0.5472,0.349423,1.0082][-0.423206,0.693928,0.582547][0.421811,0.192231,0][-0.6261,0.158533,1.1168][-0.523425,0.454982,0.720429][0.402739,0.152837,0][-0.6261,0.158533,1.1168][-0.523425,0.454982,0.720429][0.402739,0.152837,0][-0.3292,0.158533,1.2681][-0.275125,0.454926,0.846964][0.4605,0.132729,0][-0.2877,0.349423,1.1404][-0.222433,0.693956,0.684799][0.47007,0.174544,0][0,0.349423,1.1859][3.56973e-006,0.693957,0.720016][0.521372,0.168769,0][-0.2877,0.349423,1.1404][-0.222433,0.693956,0.684799][0.47007,0.174544,0][-0.3292,0.158533,1.2681][-0.275125,0.454926,0.846964][0.4605,0.132729,0][-0.3292,0.158533,1.2681][-0.275125,0.454926,0.846964][0.4605,0.132729,0][0,0.158533,1.3202][-5.05214e-005,0.455047,0.890468][0.521684,0.125602,0][0,0.349423,1.1859][3.56973e-006,0.693957,0.720016][0.521372,0.168769,0][0.2877,0.349423,1.1404][0.2224,0.69399,0.684774][0.572708,0.174628,0][0,0.349423,1.1859][3.56973e-006,0.693957,0.720016][0.521372,0.168769,0][0,0.158533,1.3202][-5.05214e-005,0.455047,0.890468][0.521684,0.125602,0][0,0.158533,1.3202][-5.05214e-005,0.455047,0.890468][0.521684,0.125602,0][0.3292,0.158533,1.2681][0.275194,0.454909,0.846951][0.583012,0.132683,0][0.2877,0.349423,1.1404][0.2224,0.69399,0.684774][0.572708,0.174628,0][0.5472,0.349423,1.0082][0.423217,0.693937,0.582527][0.62121,0.192571,0][0.2877,0.349423,1.1404][0.2224,0.69399,0.684774][0.572708,0.174628,0][0.3292,0.158533,1.2681][0.275194,0.454909,0.846951][0.583012,0.132683,0][0.3292,0.158533,1.2681][0.275194,0.454909,0.846951][0.583012,0.132683,0][0.6261,0.158533,1.1168][0.523421,0.454946,0.720455][0.64075,0.153147,0][0.5472,0.349423,1.0082][0.423217,0.693937,0.582527][0.62121,0.192571,0][0.7532,0.349423,0.802199][0.582547,0.693928,0.423206][0.664606,0.22188,0][0.5472,0.349423,1.0082][0.423217,0.693937,0.582527][0.62121,0.192571,0][0.6261,0.158533,1.1168][0.523421,0.454946,0.720455][0.64075,0.153147,0][0.6261,0.158533,1.1168][0.523421,0.454946,0.720455][0.64075,0.153147,0][0.8618,0.158533,0.881099][0.720428,0.454982,0.523425][0.693044,0.186191,0][0.7532,0.349423,0.802199][0.582547,0.693928,0.423206][0.664606,0.22188,0][0.8854,0.349423,0.542699][0.684799,0.693956,0.222433][0.700662,0.261634,0][0.7532,0.349423,0.802199][0.582547,0.693928,0.423206][0.664606,0.22188,0][0.8618,0.158533,0.881099][0.720428,0.454982,0.523425][0.693044,0.186191,0][0.8618,0.158533,0.881099][0.720428,0.454982,0.523425][0.693044,0.186191,0][1.0131,0.158533,0.584199][0.846964,0.454926,0.275125][0.737076,0.231472,0][0.8854,0.349423,0.542699][0.684799,0.693956,0.222433][0.700662,0.261634,0][0.9309,0.349423,0.254999][0.720017,0.693957,-3.65052e-006][0.727874,0.311444,0][0.8854,0.349423,0.542699][0.684799,0.693956,0.222433][0.700662,0.261634,0][1.0131,0.158533,0.584199][0.846964,0.454926,0.275125][0.737076,0.231472,0][1.0131,0.158533,0.584199][0.846964,0.454926,0.275125][0.737076,0.231472,0][1.0652,0.158533,0.254999][0.890468,0.455047,5.047e-005][0.771772,0.287013,0][0.9309,0.349423,0.254999][0.720017,0.693957,-3.65052e-006][0.727874,0.311444,0][0.8854,0.349423,-0.0327012][0.684775,0.69399,-0.2224][0.743811,0.366047,0][0.9309,0.349423,0.254999][0.720017,0.693957,-3.65052e-006][0.727874,0.311444,0][1.0652,0.158533,0.254999][0.890468,0.455047,5.047e-005][0.771772,0.287013,0][1.0652,0.158533,0.254999][0.890468,0.455047,5.047e-005][0.771772,0.287013,0][1.0131,0.158533,-0.0742012][0.846951,0.454909,-0.275194][0.794034,0.34899,0][0.8854,0.349423,-0.0327012][0.684775,0.69399,-0.2224][0.743811,0.366047,0][0.7532,0.349423,-0.292201][0.582527,0.693937,-0.423217][0.734881,0.527548,0][0.8854,0.349423,-0.0327012][0.684775,0.69399,-0.2224][0.777498,0.460946,0][1.0131,0.158533,-0.0742012][0.846951,0.454909,-0.275194][0.834805,0.490047,0][1.0131,0.158533,-0.0742012][0.846951,0.454909,-0.275194][0.834805,0.490047,0][0.8618,0.158533,-0.371101][0.720454,0.454946,-0.523421][0.783792,0.565371,0][0.7532,0.349423,-0.292201][0.582527,0.693937,-0.423217][0.734881,0.527548,0][0.5472,0.349423,-0.498201][0.423206,0.693928,-0.582547][0.679998,0.585646,0][0.7532,0.349423,-0.292201][0.582527,0.693937,-0.423217][0.734881,0.527548,0][0.8618,0.158533,-0.371101][0.720454,0.454946,-0.523421][0.783792,0.565371,0][0.8618,0.158533,-0.371101][0.720454,0.454946,-0.523421][0.783792,0.565371,0][0.6261,0.158533,-0.606801][0.523425,0.454982,-0.720429][0.722916,0.632735,0][0.5472,0.349423,-0.498201][0.423206,0.693928,-0.582547][0.679998,0.585646,0][0.2877,0.349423,-0.630401][0.222521,0.693982,-0.684744][0.42675,0.903092,0][0.5472,0.349423,-0.498201][0.423206,0.693928,-0.582547][0.335376,0.926022,0][0.6261,0.158533,-0.606801][0.523425,0.454982,-0.720429][0.307834,0.851546,0][0.6261,0.158533,-0.606801][0.523425,0.454982,-0.720429][0.307834,0.851546,0][0.3292,0.158533,-0.758101][0.275164,0.454894,-0.846969][0.412421,0.827871,0][0.2877,0.349423,-0.630401][0.222521,0.693982,-0.684744][0.42675,0.903092,0][0,0.349423,-0.676001][-3.12153e-005,0.693911,-0.720061][0.520861,0.895673,0][0.2877,0.349423,-0.630401][0.222521,0.693982,-0.684744][0.42675,0.903092,0][0.3292,0.158533,-0.758101][0.275164,0.454894,-0.846969][0.412421,0.827871,0][0.3292,0.158533,-0.758101][0.275164,0.454894,-0.846969][0.412421,0.827871,0][0,0.158533,-0.810201][1.55096e-005,0.454931,-0.890527][0.520901,0.81891,0][0,0.349423,-0.676001][-3.12153e-005,0.693911,-0.720061][0.520861,0.895673,0][-0.2877,0.349423,-0.630401][-0.222476,0.693969,-0.684771][0.615171,0.903008,0][0,0.349423,-0.676001][-3.12153e-005,0.693911,-0.720061][0.520861,0.895673,0][0,0.158533,-0.810201][1.55096e-005,0.454931,-0.890527][0.520901,0.81891,0][0,0.158533,-0.810201][1.55096e-005,0.454931,-0.890527][0.520901,0.81891,0][-0.3292,0.158533,-0.758101][-0.275194,0.454909,-0.846951][0.629048,0.828262,0][-0.2877,0.349423,-0.630401][-0.222476,0.693969,-0.684771][0.615171,0.903008,0][-0.5472,0.349423,-0.498201][-0.423217,0.693937,-0.582528][0.705348,0.925892,0][-0.2877,0.349423,-0.630401][-0.222476,0.693969,-0.684771][0.615171,0.903008,0][-0.3292,0.158533,-0.758101][-0.275194,0.454909,-0.846951][0.629048,0.828262,0][-0.3292,0.158533,-0.758101][-0.275194,0.454909,-0.846951][0.629048,0.828262,0][-0.6261,0.158533,-0.606801][-0.523421,0.454946,-0.720454][0.732624,0.852362,0][-0.5472,0.349423,-0.498201][-0.423217,0.693937,-0.582528][0.705348,0.925892,0][-0.7532,0.349423,-0.292201][-0.582547,0.693928,-0.423206][0.310891,0.526361,0][-0.5472,0.349423,-0.498201][-0.423217,0.693937,-0.582528][0.36621,0.584604,0][-0.6261,0.158533,-0.606801][-0.523421,0.454946,-0.720454][0.322228,0.632115,0][-0.6261,0.158533,-0.606801][-0.523421,0.454946,-0.720454][0.322228,0.632115,0][-0.8618,0.158533,-0.371101][-0.720429,0.454982,-0.523425][0.26097,0.564085,0][-0.7532,0.349423,-0.292201][-0.582547,0.693928,-0.423206][0.310891,0.526361,0][-0.8854,0.349423,-0.0327012][-0.684799,0.693956,-0.222433][0.270022,0.459431,0][-0.7532,0.349423,-0.292201][-0.582547,0.693928,-0.423206][0.310891,0.526361,0][-0.8618,0.158533,-0.371101][-0.720429,0.454982,-0.523425][0.26097,0.564085,0][-0.8618,0.158533,-0.371101][-0.720429,0.454982,-0.523425][0.26097,0.564085,0][-1.0131,0.158533,-0.0742012][-0.846964,0.454926,-0.275125][0.212651,0.488317,0][-0.8854,0.349423,-0.0327012][-0.684799,0.693956,-0.222433][0.270022,0.459431,0][-0.9309,0.349423,0.254999][-0.720017,0.693957,3.58197e-006][0.316792,0.311507,0][-0.8854,0.349423,-0.0327012][-0.684799,0.693956,-0.222433][0.30171,0.366408,0][-1.0131,0.158533,-0.0742012][-0.846964,0.454926,-0.275125][0.251998,0.348969,0][-1.0131,0.158533,-0.0742012][-0.846964,0.454926,-0.275125][0.251998,0.348969,0][-1.0652,0.158533,0.254999][-0.890468,0.455047,-5.05287e-005][0.272896,0.287153,0][-0.9309,0.349423,0.254999][-0.720017,0.693957,3.58197e-006][0.316792,0.311507,0][-1.0131,0.158533,0.584199][-0.846951,0.454909,0.275194][0.307366,0.231498,0][-1.0652,0.158533,0.254999][-0.890468,0.455047,-5.05287e-005][0.272896,0.287153,0][-1.1514,-0.0821363,0.254999][-0.977407,0.211365,-8.12386e-005][0.229191,0.256736,0][-1.1514,-0.0821363,0.254999][-0.977407,0.211365,-8.12386e-005][0.229191,0.256736,0][-1.095,-0.0821362,0.610799][-0.929566,0.211392,0.302028][0.270597,0.196039,0][-1.0131,0.158533,0.584199][-0.846951,0.454909,0.275194][0.307366,0.231498,0][-0.8618,0.158533,0.881099][-0.720454,0.454946,0.523421][0.351122,0.186382,0][-1.0131,0.158533,0.584199][-0.846951,0.454909,0.275194][0.307366,0.231498,0][-1.095,-0.0821362,0.610799][-0.929566,0.211392,0.302028][0.270597,0.196039,0][-1.095,-0.0821362,0.610799][-0.929566,0.211392,0.302028][0.270597,0.196039,0][-0.9315,-0.0821362,0.931799][-0.790747,0.211378,0.57449][0.322454,0.146574,0][-0.8618,0.158533,0.881099][-0.720454,0.454946,0.523421][0.351122,0.186382,0][-0.6261,0.158533,1.1168][-0.523425,0.454982,0.720429][0.402739,0.152837,0][-0.8618,0.158533,0.881099][-0.720454,0.454946,0.523421][0.351122,0.186382,0][-0.9315,-0.0821362,0.931799][-0.790747,0.211378,0.57449][0.322454,0.146574,0][-0.9315,-0.0821362,0.931799][-0.790747,0.211378,0.57449][0.322454,0.146574,0][-0.6768,-0.0821362,1.1865][-0.574487,0.21132,0.790765][0.38359,0.109324,0][-0.6261,0.158533,1.1168][-0.523425,0.454982,0.720429][0.402739,0.152837,0][-0.3292,0.158533,1.2681][-0.275125,0.454926,0.846964][0.4605,0.132729,0][-0.6261,0.158533,1.1168][-0.523425,0.454982,0.720429][0.402739,0.152837,0][-0.6768,-0.0821362,1.1865][-0.574487,0.21132,0.790765][0.38359,0.109324,0][-0.6768,-0.0821362,1.1865][-0.574487,0.21132,0.790765][0.38359,0.109324,0][-0.3558,-0.0821362,1.35][-0.302032,0.211384,0.929566][0.451165,0.086033,0][-0.3292,0.158533,1.2681][-0.275125,0.454926,0.846964][0.4605,0.132729,0][0,0.158533,1.3202][-5.05214e-005,0.455047,0.890468][0.521684,0.125602,0][-0.3292,0.158533,1.2681][-0.275125,0.454926,0.846964][0.4605,0.132729,0][-0.3558,-0.0821362,1.35][-0.302032,0.211384,0.929566][0.451165,0.086033,0][-0.3558,-0.0821362,1.35][-0.302032,0.211384,0.929566][0.451165,0.086033,0][0,-0.0821362,1.4064][-9.16461e-006,0.211428,0.977394][0.522315,0.078802,0][0,0.158533,1.3202][-5.05214e-005,0.455047,0.890468][0.521684,0.125602,0][0.3292,0.158533,1.2681][0.275194,0.454909,0.846951][0.583012,0.132683,0][0,0.158533,1.3202][-5.05214e-005,0.455047,0.890468][0.521684,0.125602,0][0,-0.0821362,1.4064][-9.16461e-006,0.211428,0.977394][0.522315,0.078802,0][0,-0.0821362,1.4064][-9.16461e-006,0.211428,0.977394][0.522315,0.078802,0][0.3558,-0.0821362,1.35][0.302028,0.211392,0.929566][0.593272,0.086017,0][0.3292,0.158533,1.2681][0.275194,0.454909,0.846951][0.583012,0.132683,0][0.6261,0.158533,1.1168][0.523421,0.454946,0.720455][0.64075,0.153147,0][0.3292,0.158533,1.2681][0.275194,0.454909,0.846951][0.583012,0.132683,0][0.3558,-0.0821362,1.35][0.302028,0.211392,0.929566][0.593272,0.086017,0][0.3558,-0.0821362,1.35][0.302028,0.211392,0.929566][0.593272,0.086017,0][0.6768,-0.0821362,1.1865][0.57449,0.211378,0.790747][0.661099,0.109414,0][0.6261,0.158533,1.1168][0.523421,0.454946,0.720455][0.64075,0.153147,0][0.8618,0.158533,0.881099][0.720428,0.454982,0.523425][0.693044,0.186191,0][0.6261,0.158533,1.1168][0.523421,0.454946,0.720455][0.64075,0.153147,0][0.6768,-0.0821362,1.1865][0.57449,0.211378,0.790747][0.661099,0.109414,0][0.6768,-0.0821362,1.1865][0.57449,0.211378,0.790747][0.661099,0.109414,0][0.9315,-0.0821362,0.931799][0.790765,0.21132,0.574487][0.722388,0.146466,0][0.8618,0.158533,0.881099][0.720428,0.454982,0.523425][0.693044,0.186191,0][1.0131,0.158533,0.584199][0.846964,0.454926,0.275125][0.737076,0.231472,0][0.8618,0.158533,0.881099][0.720428,0.454982,0.523425][0.693044,0.186191,0][0.9315,-0.0821362,0.931799][0.790765,0.21132,0.574487][0.722388,0.146466,0][0.9315,-0.0821362,0.931799][0.790765,0.21132,0.574487][0.722388,0.146466,0][1.095,-0.0821362,0.610799][0.929566,0.211384,0.302032][0.775036,0.195799,0][1.0131,0.158533,0.584199][0.846964,0.454926,0.275125][0.737076,0.231472,0][1.0652,0.158533,0.254999][0.890468,0.455047,5.047e-005][0.771772,0.287013,0][1.0131,0.158533,0.584199][0.846964,0.454926,0.275125][0.737076,0.231472,0][1.095,-0.0821362,0.610799][0.929566,0.211384,0.302032][0.775036,0.195799,0][1.095,-0.0821362,0.610799][0.929566,0.211384,0.302032][0.775036,0.195799,0][1.1514,-0.0821363,0.254999][0.977394,0.211428,9.19156e-006][0.816718,0.25631,0][1.0652,0.158533,0.254999][0.890468,0.455047,5.047e-005][0.771772,0.287013,0][1.0131,0.158533,-0.0742012][0.846951,0.454909,-0.275194][0.794034,0.34899,0][1.0652,0.158533,0.254999][0.890468,0.455047,5.047e-005][0.771772,0.287013,0][1.1514,-0.0821363,0.254999][0.977394,0.211428,9.19156e-006][0.816718,0.25631,0][1.1514,-0.0821363,0.254999][0.977394,0.211428,9.19156e-006][0.816718,0.25631,0][1.095,-0.0821363,-0.100801][0.929897,0.212906,-0.299938][0.847568,0.323077,0][1.0131,0.158533,-0.0742012][0.846951,0.454909,-0.275194][0.794034,0.34899,0][0.8618,0.158533,-0.371101][0.720454,0.454946,-0.523421][0.783792,0.565371,0][1.0131,0.158533,-0.0742012][0.846951,0.454909,-0.275194][0.834805,0.490047,0][1.095,-0.0821363,-0.100801][0.929897,0.212906,-0.299938][0.894541,0.526616,0][1.095,-0.0821363,-0.100801][0.929897,0.212906,-0.299938][0.894541,0.526616,0][0.9315,-0.0821363,-0.421801][0.790179,0.224172,-0.570407][0.837894,0.607079,0][0.8618,0.158533,-0.371101][0.720454,0.454946,-0.523421][0.783792,0.565371,0][0.6261,0.158533,-0.606801][0.523425,0.454982,-0.720429][0.722916,0.632735,0][0.8618,0.158533,-0.371101][0.720454,0.454946,-0.523421][0.783792,0.565371,0][0.9315,-0.0821363,-0.421801][0.790179,0.224172,-0.570407][0.837894,0.607079,0][0.9315,-0.0821363,-0.421801][0.790179,0.224172,-0.570407][0.837894,0.607079,0][0.6768,-0.0821363,-0.676501][0.574619,0.243078,-0.781489][0.774391,0.680552,0][0.6261,0.158533,-0.606801][0.523425,0.454982,-0.720429][0.722916,0.632735,0][0.3292,0.158533,-0.758101][0.275164,0.454894,-0.846969][0.412421,0.827871,0][0.6261,0.158533,-0.606801][0.523425,0.454982,-0.720429][0.307834,0.851546,0][0.6768,-0.0821363,-0.676501][0.574619,0.243078,-0.781489][0.287035,0.768906,0][0.6768,-0.0821363,-0.676501][0.574619,0.243078,-0.781489][0.287035,0.768906,0][0.3558,-0.0821363,-0.840001][0.299286,0.289299,-0.909249][0.402488,0.743952,0][0.3292,0.158533,-0.758101][0.275164,0.454894,-0.846969][0.412421,0.827871,0][0,0.158533,-0.810201][1.55096e-005,0.454931,-0.890527][0.520901,0.81891,0][0.3292,0.158533,-0.758101][0.275164,0.454894,-0.846969][0.412421,0.827871,0][0.3558,-0.0821363,-0.840001][0.299286,0.289299,-0.909249][0.402488,0.743952,0][0.3558,-0.0821363,-0.840001][0.299286,0.289299,-0.909249][0.402488,0.743952,0][0,-0.0821363,-0.896401][3.12463e-005,0.326732,-0.945117][0.520795,0.734982,0][0,0.158533,-0.810201][1.55096e-005,0.454931,-0.890527][0.520901,0.81891,0][-0.3292,0.158533,-0.758101][-0.275194,0.454909,-0.846951][0.629048,0.828262,0][0,0.158533,-0.810201][1.55096e-005,0.454931,-0.890527][0.520901,0.81891,0][0,-0.0821363,-0.896401][3.12463e-005,0.326732,-0.945117][0.520795,0.734982,0][0,-0.0821363,-0.896401][3.12463e-005,0.326732,-0.945117][0.520795,0.734982,0][-0.3558,-0.0821363,-0.840001][-0.29934,0.289294,-0.909233][0.639201,0.744711,0][-0.3292,0.158533,-0.758101][-0.275194,0.454909,-0.846951][0.629048,0.828262,0][-0.6261,0.158533,-0.606801][-0.523421,0.454946,-0.720454][0.732624,0.852362,0][-0.3292,0.158533,-0.758101][-0.275194,0.454909,-0.846951][0.629048,0.828262,0][-0.3558,-0.0821363,-0.840001][-0.29934,0.289294,-0.909233][0.639201,0.744711,0][-0.3558,-0.0821363,-0.840001][-0.29934,0.289294,-0.909233][0.639201,0.744711,0][-0.6768,-0.0821363,-0.676501][-0.574595,0.243102,-0.7815][0.754101,0.770232,0][-0.6261,0.158533,-0.606801][-0.523421,0.454946,-0.720454][0.732624,0.852362,0][-0.8618,0.158533,-0.371101][-0.720429,0.454982,-0.523425][0.26097,0.564085,0][-0.6261,0.158533,-0.606801][-0.523421,0.454946,-0.720454][0.322228,0.632115,0][-0.6768,-0.0821363,-0.676501][-0.574595,0.243102,-0.7815][0.270628,0.680471,0][-0.6768,-0.0821363,-0.676501][-0.574595,0.243102,-0.7815][0.270628,0.680471,0][-0.9315,-0.0821363,-0.421801][-0.790169,0.224147,-0.570431][0.206695,0.605383,0][-0.8618,0.158533,-0.371101][-0.720429,0.454982,-0.523425][0.26097,0.564085,0][-1.0131,0.158533,-0.0742012][-0.846964,0.454926,-0.275125][0.212651,0.488317,0][-0.8618,0.158533,-0.371101][-0.720429,0.454982,-0.523425][0.26097,0.564085,0][-0.9315,-0.0821363,-0.421801][-0.790169,0.224147,-0.570431][0.206695,0.605383,0][-0.9315,-0.0821363,-0.421801][-0.790169,0.224147,-0.570431][0.206695,0.605383,0][-1.095,-0.0821363,-0.100801][-0.929937,0.21287,-0.299838][0.152034,0.524444,0][-1.0131,0.158533,-0.0742012][-0.846964,0.454926,-0.275125][0.212651,0.488317,0][-1.0652,0.158533,0.254999][-0.890468,0.455047,-5.05287e-005][0.272896,0.287153,0][-1.0131,0.158533,-0.0742012][-0.846964,0.454926,-0.275125][0.251998,0.348969,0][-1.095,-0.0821363,-0.100801][-0.929937,0.21287,-0.299838][0.198664,0.323148,0][-1.095,-0.0821363,-0.100801][-0.929937,0.21287,-0.299838][0.198664,0.323148,0][-1.1514,-0.0821363,0.254999][-0.977407,0.211365,-8.12386e-005][0.229191,0.256736,0][-1.0652,0.158533,0.254999][-0.890468,0.455047,-5.05287e-005][0.272896,0.287153,0][-1.11701,-0.345292,0.617952][-0.94411,0.120638,0.306762][0.236602,0.157775,0][-1.17449,-0.345292,0.254999][-0.992699,0.120616,-0.000104083][0.187683,0.223237,0][-1.1811,-0.388066,0.254999][-0.761624,-0.64802,4.21466e-006][0.180827,0.217491,0][-1.1811,-0.388066,0.254999][-0.761624,-0.64802,4.21466e-006][0.180827,0.217491,0][-1.1233,-0.388066,0.619999][-0.724384,-0.64796,0.235403][0.231176,0.151757,0][-1.11701,-0.345292,0.617952][-0.94411,0.120638,0.306762][0.236602,0.157775,0][-0.950161,-0.345292,0.945328][-0.803105,0.120277,0.583572][0.295511,0.10327,0][-1.11701,-0.345292,0.617952][-0.94411,0.120638,0.306762][0.236602,0.157775,0][-1.1233,-0.388066,0.619999][-0.724384,-0.64796,0.235403][0.231176,0.151757,0][-1.1233,-0.388066,0.619999][-0.724384,-0.64796,0.235403][0.231176,0.151757,0][-0.9555,-0.388066,0.949199][-0.61604,-0.648164,0.447636][0.291674,0.096418,0][-0.950161,-0.345292,0.945328][-0.803105,0.120277,0.583572][0.295511,0.10327,0][-0.690329,-0.345292,1.20516][-0.583532,0.120303,0.80313][0.365079,0.062236,0][-0.950161,-0.345292,0.945328][-0.803105,0.120277,0.583572][0.295511,0.10327,0][-0.9555,-0.388066,0.949199][-0.61604,-0.648164,0.447636][0.291674,0.096418,0][-0.9555,-0.388066,0.949199][-0.61604,-0.648164,0.447636][0.291674,0.096418,0][-0.6942,-0.388066,1.2105][-0.447623,-0.648159,0.616055][0.362799,0.054846,0][-0.690329,-0.345292,1.20516][-0.583532,0.120303,0.80313][0.365079,0.062236,0][-0.362953,-0.345292,1.37201][-0.306829,0.120646,0.944087][0.441604,0.037185,0][-0.690329,-0.345292,1.20516][-0.583532,0.120303,0.80313][0.365079,0.062236,0][-0.6942,-0.388066,1.2105][-0.447623,-0.648159,0.616055][0.362799,0.054846,0][-0.6942,-0.388066,1.2105][-0.447623,-0.648159,0.616055][0.362799,0.054846,0][-0.365,-0.388066,1.3783][-0.235427,-0.647956,0.724381][0.440805,0.029378,0][-0.362953,-0.345292,1.37201][-0.306829,0.120646,0.944087][0.441604,0.037185,0][0,-0.345292,1.42949][2.36285e-005,0.120543,0.992708][0.5231,0.027896,0][-0.362953,-0.345292,1.37201][-0.306829,0.120646,0.944087][0.441604,0.037185,0][-0.365,-0.388066,1.3783][-0.235427,-0.647956,0.724381][0.440805,0.029378,0][-0.365,-0.388066,1.3783][-0.235427,-0.647956,0.724381][0.440805,0.029378,0][0,-0.388066,1.4361][4.1561e-006,-0.64802,0.761624][0.52329,0.01997,0][0,-0.345292,1.42949][2.36285e-005,0.120543,0.992708][0.5231,0.027896,0][0.362953,-0.345292,1.37201][0.306762,0.120638,0.94411][0.603784,0.036643,0][0,-0.345292,1.42949][2.36285e-005,0.120543,0.992708][0.5231,0.027896,0][0,-0.388066,1.4361][4.1561e-006,-0.64802,0.761624][0.52329,0.01997,0][0,-0.388066,1.4361][4.1561e-006,-0.64802,0.761624][0.52329,0.01997,0][0.365,-0.388066,1.3783][0.235403,-0.64796,0.724385][0.604374,0.028863,0][0.362953,-0.345292,1.37201][0.306762,0.120638,0.94411][0.603784,0.036643,0][0.690329,-0.345292,1.20516][0.583572,0.120277,0.803104][0.680987,0.061855,0][0.362953,-0.345292,1.37201][0.306762,0.120638,0.94411][0.603784,0.036643,0][0.365,-0.388066,1.3783][0.235403,-0.64796,0.724385][0.604374,0.028863,0][0.365,-0.388066,1.3783][0.235403,-0.64796,0.724385][0.604374,0.028863,0][0.6942,-0.388066,1.2105][0.447636,-0.648164,0.61604][0.683582,0.054446,0][0.690329,-0.345292,1.20516][0.583572,0.120277,0.803104][0.680987,0.061855,0][0.950161,-0.345292,0.945328][0.80313,0.120302,0.583532][0.751567,0.102378,0][0.690329,-0.345292,1.20516][0.583572,0.120277,0.803104][0.680987,0.061855,0][0.6942,-0.388066,1.2105][0.447636,-0.648164,0.61604][0.683582,0.054446,0][0.6942,-0.388066,1.2105][0.447636,-0.648164,0.61604][0.683582,0.054446,0][0.9555,-0.388066,0.949199][0.616055,-0.648159,0.447623][0.755451,0.09566,0][0.950161,-0.345292,0.945328][0.80313,0.120302,0.583532][0.751567,0.102378,0][1.11701,-0.345292,0.617952][0.944087,0.120646,0.306829][0.810775,0.157019,0][0.950161,-0.345292,0.945328][0.80313,0.120302,0.583532][0.751567,0.102378,0][0.9555,-0.388066,0.949199][0.616055,-0.648159,0.447623][0.755451,0.09566,0][0.9555,-0.388066,0.949199][0.616055,-0.648159,0.447623][0.755451,0.09566,0][1.1233,-0.388066,0.619999][0.724381,-0.647956,0.235427][0.816322,0.150899,0][1.11701,-0.345292,0.617952][0.944087,0.120646,0.306829][0.810775,0.157019,0][1.17449,-0.345292,0.254999][0.992722,0.120425,-0.000274695][0.859477,0.222309,0][1.11701,-0.345292,0.617952][0.944087,0.120646,0.306829][0.810775,0.157019,0][1.1233,-0.388066,0.619999][0.724381,-0.647956,0.235427][0.816322,0.150899,0][1.1233,-0.388066,0.619999][0.724381,-0.647956,0.235427][0.816322,0.150899,0][1.1811,-0.388066,0.254999][0.761693,-0.647938,-0.000312581][0.866212,0.216629,0][1.17449,-0.345292,0.254999][0.992722,0.120425,-0.000274695][0.859477,0.222309,0][1.11701,-0.347245,-0.107954][0.96121,0.188372,-0.201474][0.896878,0.291082,0][1.17449,-0.345292,0.254999][0.992722,0.120425,-0.000274695][0.859477,0.222309,0][1.1811,-0.388066,0.254999][0.761693,-0.647938,-0.000312581][0.866212,0.216629,0][1.1811,-0.388066,0.254999][0.761693,-0.647938,-0.000312581][0.866212,0.216629,0][1.1233,-0.388066,-0.110001][0.704165,-0.70704,-0.0651536][0.904109,0.28624,0][1.11701,-0.347245,-0.107954][0.96121,0.188372,-0.201474][0.896878,0.291082,0][0.9555,-0.502861,-1.18196][0.558531,-0.73509,-0.3843][0.718412,0.001807,0][0.950161,-0.481734,-1.18136][0.678156,0.581014,-0.450031][0.717452,0.005587,0][1.11701,-0.498292,-0.809341][0.836191,0.497689,-0.230411][0.789802,0.015347,0][1.11701,-0.498292,-0.809341][0.836191,0.497689,-0.230411][0.789802,0.015347,0][1.1233,-0.526758,-0.806951][0.607431,-0.791652,-0.0656848][0.791535,0.01041,0][0.9555,-0.502861,-1.18196][0.558531,-0.73509,-0.3843][0.718412,0.001807,0][0.6942,-0.47664,-1.44742][0.352981,-0.756824,-0.55011][0.65163,0,0][0.690329,-0.450579,-1.44611][0.52042,0.576057,-0.630335][0.650858,0.004656,0][0.950161,-0.481734,-1.18136][0.678156,0.581014,-0.450031][0.717452,0.005587,0][0.950161,-0.481734,-1.18136][0.678156,0.581014,-0.450031][0.717452,0.005587,0][0.9555,-0.502861,-1.18196][0.558531,-0.73509,-0.3843][0.718412,0.001807,0][0.6942,-0.47664,-1.44742][0.352981,-0.756824,-0.55011][0.65163,0,0][0.365,-0.43999,-1.62303][0.178323,-0.744356,-0.643533][0.584609,0.002632,0][0.362953,-0.412419,-1.62099][0.288561,0.594952,-0.750176][0.584169,0.007572,0][0.690329,-0.450579,-1.44611][0.52042,0.576057,-0.630335][0.650858,0.004656,0][0.690329,-0.450579,-1.44611][0.52042,0.576057,-0.630335][0.650858,0.004656,0][0.6942,-0.47664,-1.44742][0.352981,-0.756824,-0.55011][0.65163,0,0][0.365,-0.43999,-1.62303][0.178323,-0.744356,-0.643533][0.584609,0.002632,0][0,-0.417188,-1.68512][0,-0.698888,-0.715231][0.518281,0.004826,0][0,-0.396635,-1.68166][0,0.636406,-0.771354][0.518281,0.008554,0][0.362953,-0.412419,-1.62099][0.288561,0.594952,-0.750176][0.584169,0.007572,0][0.362953,-0.412419,-1.62099][0.288561,0.594952,-0.750176][0.584169,0.007572,0][0.365,-0.43999,-1.62303][0.178323,-0.744356,-0.643533][0.584609,0.002632,0][0,-0.417188,-1.68512][0,-0.698888,-0.715231][0.518281,0.004826,0][-0.362953,-0.412419,-1.62099][-0.288561,0.594952,-0.750176][0.452392,0.007572,0][0,-0.396635,-1.68166][0,0.636406,-0.771354][0.518281,0.008554,0][0,-0.417188,-1.68512][0,-0.698888,-0.715231][0.518281,0.004826,0][0,-0.417188,-1.68512][0,-0.698888,-0.715231][0.518281,0.004826,0][-0.365,-0.43999,-1.62303][-0.178323,-0.744356,-0.643533][0.451952,0.002632,0][-0.362953,-0.412419,-1.62099][-0.288561,0.594952,-0.750176][0.452392,0.007572,0][-0.690329,-0.450579,-1.44611][-0.52042,0.576057,-0.630334][0.385704,0.004656,0][-0.362953,-0.412419,-1.62099][-0.288561,0.594952,-0.750176][0.452392,0.007572,0][-0.365,-0.43999,-1.62303][-0.178323,-0.744356,-0.643533][0.451952,0.002632,0][-0.365,-0.43999,-1.62303][-0.178323,-0.744356,-0.643533][0.451952,0.002632,0][-0.6942,-0.47664,-1.44742][-0.352981,-0.756824,-0.55011][0.384931,0,0][-0.690329,-0.450579,-1.44611][-0.52042,0.576057,-0.630334][0.385704,0.004656,0][-0.950161,-0.481734,-1.18136][-0.678156,0.581014,-0.450031][0.31911,0.005587,0][-0.690329,-0.450579,-1.44611][-0.52042,0.576057,-0.630334][0.385704,0.004656,0][-0.6942,-0.47664,-1.44742][-0.352981,-0.756824,-0.55011][0.384931,0,0][-0.6942,-0.47664,-1.44742][-0.352981,-0.756824,-0.55011][0.384931,0,0][-0.9555,-0.502861,-1.18196][-0.558531,-0.73509,-0.3843][0.31815,0.001807,0][-0.950161,-0.481734,-1.18136][-0.678156,0.581014,-0.450031][0.31911,0.005587,0][-0.9555,-0.502861,-1.18196][-0.558531,-0.73509,-0.3843][0.31815,0.001807,0][-1.1233,-0.526758,-0.806951][-0.607431,-0.791652,-0.0656848][0.245029,0.01041,0][-1.11701,-0.498292,-0.809341][-0.836191,0.497689,-0.230411][0.246762,0.015347,0][-1.11701,-0.498292,-0.809341][-0.836191,0.497689,-0.230411][0.246762,0.015347,0][-0.950161,-0.481734,-1.18136][-0.678156,0.581014,-0.450031][0.31911,0.005587,0][-0.9555,-0.502861,-1.18196][-0.558531,-0.73509,-0.3843][0.31815,0.001807,0][-1.17449,-0.345292,0.254999][-0.992699,0.120616,-0.000104083][0.187683,0.223237,0][-1.11701,-0.347245,-0.107954][-0.961144,0.18855,-0.201622][0.149107,0.291732,0][-1.1233,-0.388066,-0.110001][-0.70404,-0.707137,-0.0654578][0.141778,0.286958,0][-1.1233,-0.388066,-0.110001][-0.70404,-0.707137,-0.0654578][0.141778,0.286958,0][-1.1811,-0.388066,0.254999][-0.761624,-0.64802,4.21466e-006][0.180827,0.217491,0][-1.17449,-0.345292,0.254999][-0.992699,0.120616,-0.000104083][0.187683,0.223237,0][-0.5461,0.542154,0.432499][-0.255003,0.963381,0.0828897][0.412445,0.309015,0][-0.374047,0.572614,0.376576][-0.100664,0.994382,0.0327285][0.445275,0.326938,0][-0.393363,0.572614,0.254999][-0.10587,0.99438,-1.46904e-007][0.436823,0.350063,0][-0.393363,0.572614,0.254999][-0.10587,0.99438,-1.46904e-007][0.436823,0.350063,0][-0.5743,0.542154,0.254999][-0.268186,0.963367,2.54549e-005][0.398649,0.341629,0][-0.5461,0.542154,0.432499][-0.255003,0.963381,0.0828897][0.412445,0.309015,0][-0.4646,0.542154,0.592499][-0.216937,0.963382,0.157586][0.433206,0.281465,0][-0.318224,0.572614,0.486167][-0.0856473,0.994381,0.0622186][0.459486,0.307282,0][-0.374047,0.572614,0.376576][-0.100664,0.994382,0.0327285][0.445275,0.326938,0][-0.374047,0.572614,0.376576][-0.100664,0.994382,0.0327285][0.445275,0.326938,0][-0.5461,0.542154,0.432499][-0.255003,0.963381,0.0828897][0.412445,0.309015,0][-0.4646,0.542154,0.592499][-0.216937,0.963382,0.157586][0.433206,0.281465,0][-0.3375,0.542154,0.719599][-0.157585,0.963382,0.216939][0.45922,0.261585,0][-0.231168,0.572614,0.573223][-0.0622189,0.994381,0.085647][0.477815,0.292333,0][-0.318224,0.572614,0.486167][-0.0856473,0.994381,0.0622186][0.459486,0.307282,0][-0.318224,0.572614,0.486167][-0.0856473,0.994381,0.0622186][0.459486,0.307282,0][-0.4646,0.542154,0.592499][-0.216937,0.963382,0.157586][0.433206,0.281465,0][-0.3375,0.542154,0.719599][-0.157585,0.963382,0.216939][0.45922,0.261585,0][-0.1775,0.542154,0.801099][-0.0829103,0.963386,0.254977][0.489493,0.248964,0][-0.121577,0.572614,0.629046][-0.0327285,0.994382,0.100664][0.499042,0.282768,0][-0.231168,0.572614,0.573223][-0.0622189,0.994381,0.085647][0.477815,0.292333,0][-0.231168,0.572614,0.573223][-0.0622189,0.994381,0.085647][0.477815,0.292333,0][-0.3375,0.542154,0.719599][-0.157585,0.963382,0.216939][0.45922,0.261585,0][-0.1775,0.542154,0.801099][-0.0829103,0.963386,0.254977][0.489493,0.248964,0][0,0.542154,0.829299][2.55628e-005,0.963367,0.268186][0.521515,0.244897,0][0,0.572614,0.648362][-1.38578e-007,0.99438,0.10587][0.521798,0.27965,0][-0.121577,0.572614,0.629046][-0.0327285,0.994382,0.100664][0.499042,0.282768,0][-0.121577,0.572614,0.629046][-0.0327285,0.994382,0.100664][0.499042,0.282768,0][-0.1775,0.542154,0.801099][-0.0829103,0.963386,0.254977][0.489493,0.248964,0][0,0.542154,0.829299][2.55628e-005,0.963367,0.268186][0.521515,0.244897,0][0.1775,0.542154,0.801099][0.0828897,0.963381,0.255003][0.554027,0.248945,0][0.121577,0.572614,0.629046][0.0327285,0.994382,0.100664][0.544932,0.28264,0][0,0.572614,0.648362][-1.38578e-007,0.99438,0.10587][0.521798,0.27965,0][0,0.572614,0.648362][-1.38578e-007,0.99438,0.10587][0.521798,0.27965,0][0,0.542154,0.829299][2.55628e-005,0.963367,0.268186][0.521515,0.244897,0][0.1775,0.542154,0.801099][0.0828897,0.963381,0.255003][0.554027,0.248945,0][0.3375,0.542154,0.719599][0.157586,0.963382,0.216937][0.584147,0.261729,0][0.231168,0.572614,0.573223][0.0622188,0.994381,0.085647][0.566117,0.292388,0][0.121577,0.572614,0.629046][0.0327285,0.994382,0.100664][0.544932,0.28264,0][0.121577,0.572614,0.629046][0.0327285,0.994382,0.100664][0.544932,0.28264,0][0.1775,0.542154,0.801099][0.0828897,0.963381,0.255003][0.554027,0.248945,0][0.3375,0.542154,0.719599][0.157586,0.963382,0.216937][0.584147,0.261729,0][0.4646,0.542154,0.592499][0.216939,0.963382,0.157585][0.610647,0.281601,0][0.318224,0.572614,0.486167][0.0856473,0.994381,0.0622184][0.584959,0.307011,0][0.231168,0.572614,0.573223][0.0622188,0.994381,0.085647][0.566117,0.292388,0][0.231168,0.572614,0.573223][0.0622188,0.994381,0.085647][0.566117,0.292388,0][0.3375,0.542154,0.719599][0.157586,0.963382,0.216937][0.584147,0.261729,0][0.4646,0.542154,0.592499][0.216939,0.963382,0.157585][0.610647,0.281601,0][0.5461,0.542154,0.432499][0.254977,0.963386,0.0829102][0.63174,0.30893,0][0.374047,0.572614,0.376576][0.100664,0.994382,0.0327284][0.599203,0.326852,0][0.318224,0.572614,0.486167][0.0856473,0.994381,0.0622184][0.584959,0.307011,0][0.318224,0.572614,0.486167][0.0856473,0.994381,0.0622184][0.584959,0.307011,0][0.4646,0.542154,0.592499][0.216939,0.963382,0.157585][0.610647,0.281601,0][0.5461,0.542154,0.432499][0.254977,0.963386,0.0829102][0.63174,0.30893,0][0.5743,0.542154,0.254999][0.268186,0.963367,-2.57236e-005][0.64633,0.341655,0][0.393363,0.572614,0.254999][0.10587,0.99438,0][0.607987,0.350077,0][0.374047,0.572614,0.376576][0.100664,0.994382,0.0327284][0.599203,0.326852,0][0.374047,0.572614,0.376576][0.100664,0.994382,0.0327284][0.599203,0.326852,0][0.5461,0.542154,0.432499][0.254977,0.963386,0.0829102][0.63174,0.30893,0][0.5743,0.542154,0.254999][0.268186,0.963367,-2.57236e-005][0.64633,0.341655,0][0.5461,0.542154,0.0774988][0.255003,0.963381,-0.0828898][0.649504,0.376928,0][0.374047,0.572614,0.133422][0.100664,0.994382,-0.0327286][0.607862,0.37406,0][0.393363,0.572614,0.254999][0.10587,0.99438,0][0.607987,0.350077,0][0.393363,0.572614,0.254999][0.10587,0.99438,0][0.607987,0.350077,0][0.5743,0.542154,0.254999][0.268186,0.963367,-2.57236e-005][0.64633,0.341655,0][0.5461,0.542154,0.0774988][0.255003,0.963381,-0.0828898][0.649504,0.376928,0][0.4646,0.542154,-0.0825012][0.216937,0.963382,-0.157586][0.650165,0.460973,0][0.318224,0.572614,0.0238307][0.0856472,0.994381,-0.0622187][0.610548,0.43135,0][0.374047,0.572614,0.133422][0.100664,0.994382,-0.0327286][0.626465,0.401858,0][0.374047,0.572614,0.133422][0.100664,0.994382,-0.0327286][0.626465,0.401858,0][0.5461,0.542154,0.0774988][0.255003,0.963381,-0.0828898][0.673835,0.418458,0][0.4646,0.542154,-0.0825012][0.216937,0.963382,-0.157586][0.650165,0.460973,0][0.3375,0.542154,-0.209601][0.157585,0.963382,-0.216939][0.614339,0.49572,0][0.231168,0.572614,-0.0632253][0.0622187,0.994381,-0.0856472][0.586396,0.454768,0][0.318224,0.572614,0.0238307][0.0856472,0.994381,-0.0622187][0.610548,0.43135,0][0.318224,0.572614,0.0238307][0.0856472,0.994381,-0.0622187][0.610548,0.43135,0][0.4646,0.542154,-0.0825012][0.216937,0.963382,-0.157586][0.650165,0.460973,0][0.3375,0.542154,-0.209601][0.157585,0.963382,-0.216939][0.614339,0.49572,0][0.1775,0.542154,-0.291101][0.0829102,0.963386,-0.254977][0.571221,0.517674,0][0.121577,0.572614,-0.119048][0.0327285,0.994382,-0.100664][0.556628,0.469789,0][0.231168,0.572614,-0.0632253][0.0622187,0.994381,-0.0856472][0.586396,0.454768,0][0.231168,0.572614,-0.0632253][0.0622187,0.994381,-0.0856472][0.586396,0.454768,0][0.3375,0.542154,-0.209601][0.157585,0.963382,-0.216939][0.614339,0.49572,0][0.1775,0.542154,-0.291101][0.0829102,0.963386,-0.254977][0.571221,0.517674,0][0,0.542154,-0.319301][-2.55682e-005,0.963367,-0.268186][0.523517,0.525236,0][0,0.572614,-0.138364][1.43633e-007,0.99438,-0.10587][0.523714,0.47493,0][0.121577,0.572614,-0.119048][0.0327285,0.994382,-0.100664][0.556628,0.469789,0][0.121577,0.572614,-0.119048][0.0327285,0.994382,-0.100664][0.556628,0.469789,0][0.1775,0.542154,-0.291101][0.0829102,0.963386,-0.254977][0.571221,0.517674,0][0,0.542154,-0.319301][-2.55682e-005,0.963367,-0.268186][0.523517,0.525236,0][-0.1775,0.542154,-0.291101][-0.0828897,0.963381,-0.255003][0.475781,0.517253,0][-0.121577,0.572614,-0.119048][-0.0327286,0.994382,-0.100664][0.490994,0.469592,0][0,0.572614,-0.138364][1.43633e-007,0.99438,-0.10587][0.523714,0.47493,0][0,0.572614,-0.138364][1.43633e-007,0.99438,-0.10587][0.523714,0.47493,0][0,0.542154,-0.319301][-2.55682e-005,0.963367,-0.268186][0.523517,0.525236,0][-0.1775,0.542154,-0.291101][-0.0828897,0.963381,-0.255003][0.475781,0.517253,0][-0.3375,0.542154,-0.209601][-0.157586,0.963382,-0.216937][0.432658,0.495053,0][-0.231168,0.572614,-0.0632253][-0.0622187,0.994381,-0.0856472][0.461089,0.454309,0][-0.121577,0.572614,-0.119048][-0.0327286,0.994382,-0.100664][0.490994,0.469592,0][-0.121577,0.572614,-0.119048][-0.0327286,0.994382,-0.100664][0.490994,0.469592,0][-0.1775,0.542154,-0.291101][-0.0828897,0.963381,-0.255003][0.475781,0.517253,0][-0.3375,0.542154,-0.209601][-0.157586,0.963382,-0.216937][0.432658,0.495053,0][-0.4646,0.542154,-0.0825012][-0.216939,0.963382,-0.157585][0.397417,0.460262,0][-0.318224,0.572614,0.0238307][-0.0856473,0.994381,-0.0622187][0.437103,0.430721,0][-0.231168,0.572614,-0.0632253][-0.0622187,0.994381,-0.0856472][0.461089,0.454309,0][-0.231168,0.572614,-0.0632253][-0.0622187,0.994381,-0.0856472][0.461089,0.454309,0][-0.3375,0.542154,-0.209601][-0.157586,0.963382,-0.216937][0.432658,0.495053,0][-0.4646,0.542154,-0.0825012][-0.216939,0.963382,-0.157585][0.397417,0.460262,0][-0.5461,0.542154,0.0774988][-0.254977,0.963386,-0.0829104][0.374245,0.417583,0][-0.374047,0.572614,0.133422][-0.100664,0.994382,-0.0327285][0.421747,0.401266,0][-0.318224,0.572614,0.0238307][-0.0856473,0.994381,-0.0622187][0.437103,0.430721,0][-0.318224,0.572614,0.0238307][-0.0856473,0.994381,-0.0622187][0.437103,0.430721,0][-0.4646,0.542154,-0.0825012][-0.216939,0.963382,-0.157585][0.397417,0.460262,0][-0.5461,0.542154,0.0774988][-0.254977,0.963386,-0.0829104][0.374245,0.417583,0][-0.5743,0.542154,0.254999][-0.268186,0.963367,2.54549e-005][0.398649,0.341629,0][-0.393363,0.572614,0.254999][-0.10587,0.99438,-1.46904e-007][0.436823,0.350063,0][-0.374047,0.572614,0.133422][-0.100664,0.994382,-0.0327285][0.437889,0.374031,0][-0.374047,0.572614,0.133422][-0.100664,0.994382,-0.0327285][0.437889,0.374031,0][-0.5461,0.542154,0.0774988][-0.254977,0.963386,-0.0829104][0.396263,0.376928,0][-0.5743,0.542154,0.254999][-0.268186,0.963367,2.54549e-005][0.398649,0.341629,0][-0.9315,-0.0821363,-0.421801][-0.790169,0.224147,-0.570431][0.206695,0.605383,0][-0.6768,-0.0821363,-0.676501][-0.574595,0.243102,-0.7815][0.270628,0.680471,0][-0.690329,-0.241051,-0.695162][-0.546457,0.61898,-0.564135][0.237169,0.709273,0][-0.690329,-0.241051,-0.695162][-0.546457,0.61898,-0.564135][0.237169,0.709273,0][-0.950161,-0.293045,-0.43533][-0.742981,0.531006,-0.407445][0.161169,0.639678,0][-0.9315,-0.0821363,-0.421801][-0.790169,0.224147,-0.570431][0.206695,0.605383,0][-0.6768,-0.0821363,-0.676501][-0.574595,0.243102,-0.7815][0.754101,0.770232,0][-0.3558,-0.0821363,-0.840001][-0.29934,0.289294,-0.909233][0.639201,0.744711,0][-0.362953,-0.176231,-0.862011][-0.307411,0.677037,-0.668669][0.642616,0.713476,0][-0.362953,-0.176231,-0.862011][-0.307411,0.677037,-0.668669][0.642616,0.713476,0][-0.690329,-0.241051,-0.695162][-0.546457,0.61898,-0.564135][0.764364,0.718817,0][-0.6768,-0.0821363,-0.676501][-0.574595,0.243102,-0.7815][0.754101,0.770232,0][-0.3558,-0.0821363,-0.840001][-0.29934,0.289294,-0.909233][0.639201,0.744711,0][0,-0.0821363,-0.896401][3.12463e-005,0.326732,-0.945117][0.520795,0.734982,0][0,-0.15123,-0.919491][0,0.722411,-0.691464][0.521082,0.711173,0][0,-0.15123,-0.919491][0,0.722411,-0.691464][0.521082,0.711173,0][-0.362953,-0.176231,-0.862011][-0.307411,0.677037,-0.668669][0.642616,0.713476,0][-0.3558,-0.0821363,-0.840001][-0.29934,0.289294,-0.909233][0.639201,0.744711,0][0,-0.15123,-0.919491][0,0.722411,-0.691464][0.521082,0.711173,0][0,-0.0821363,-0.896401][3.12463e-005,0.326732,-0.945117][0.520795,0.734982,0][0.3558,-0.0821363,-0.840001][0.299286,0.289299,-0.909249][0.402488,0.743952,0][0.3558,-0.0821363,-0.840001][0.299286,0.289299,-0.909249][0.402488,0.743952,0][0.362953,-0.176231,-0.862011][0.307411,0.677037,-0.668669][0.399305,0.712598,0][0,-0.15123,-0.919491][0,0.722411,-0.691464][0.521082,0.711173,0][0.362953,-0.176231,-0.862011][0.307411,0.677037,-0.668669][0.399305,0.712598,0][0.3558,-0.0821363,-0.840001][0.299286,0.289299,-0.909249][0.402488,0.743952,0][0.6768,-0.0821363,-0.676501][0.574619,0.243078,-0.781489][0.287035,0.768906,0][0.6768,-0.0821363,-0.676501][0.574619,0.243078,-0.781489][0.287035,0.768906,0][0.690329,-0.241051,-0.695162][0.546457,0.61898,-0.564135][0.277129,0.71713,0][0.362953,-0.176231,-0.862011][0.307411,0.677037,-0.668669][0.399305,0.712598,0][0.690329,-0.241051,-0.695162][0.546457,0.61898,-0.564135][0.807446,0.709273,0][0.6768,-0.0821363,-0.676501][0.574619,0.243078,-0.781489][0.774391,0.680552,0][0.9315,-0.0821363,-0.421801][0.790179,0.224172,-0.570407][0.837894,0.607079,0][0.9315,-0.0821363,-0.421801][0.790179,0.224172,-0.570407][0.837894,0.607079,0][0.950161,-0.293045,-0.43533][0.742981,0.531006,-0.407445][0.883885,0.641709,0][0.690329,-0.241051,-0.695162][0.546457,0.61898,-0.564135][0.807446,0.709273,0][0.950161,-0.293045,-0.43533][0.742981,0.531006,-0.407445][0.883885,0.641709,0][0.9315,-0.0821363,-0.421801][0.790179,0.224172,-0.570407][0.837894,0.607079,0][1.095,-0.0821363,-0.100801][0.929897,0.212906,-0.299938][0.894541,0.526616,0][1.095,-0.0821363,-0.100801][0.929897,0.212906,-0.299938][0.894541,0.526616,0][1.11701,-0.347245,-0.107954][0.96121,0.188372,-0.201474][0.953382,0.568325,0][0.950161,-0.293045,-0.43533][0.742981,0.531006,-0.407445][0.883885,0.641709,0][1.095,-0.0821363,-0.100801][0.929897,0.212906,-0.299938][0.847568,0.323077,0][1.1514,-0.0821363,0.254999][0.977394,0.211428,9.19156e-006][0.816718,0.25631,0][1.17449,-0.345292,0.254999][0.992722,0.120425,-0.000274695][0.859477,0.222309,0][1.17449,-0.345292,0.254999][0.992722,0.120425,-0.000274695][0.859477,0.222309,0][1.11701,-0.347245,-0.107954][0.96121,0.188372,-0.201474][0.896878,0.291082,0][1.095,-0.0821363,-0.100801][0.929897,0.212906,-0.299938][0.847568,0.323077,0][1.1514,-0.0821363,0.254999][0.977394,0.211428,9.19156e-006][0.816718,0.25631,0][1.095,-0.0821362,0.610799][0.929566,0.211384,0.302032][0.775036,0.195799,0][1.11701,-0.345292,0.617952][0.944087,0.120646,0.306829][0.810775,0.157019,0][1.11701,-0.345292,0.617952][0.944087,0.120646,0.306829][0.810775,0.157019,0][1.17449,-0.345292,0.254999][0.992722,0.120425,-0.000274695][0.859477,0.222309,0][1.1514,-0.0821363,0.254999][0.977394,0.211428,9.19156e-006][0.816718,0.25631,0][1.095,-0.0821362,0.610799][0.929566,0.211384,0.302032][0.775036,0.195799,0][0.9315,-0.0821362,0.931799][0.790765,0.21132,0.574487][0.722388,0.146466,0][0.950161,-0.345292,0.945328][0.80313,0.120302,0.583532][0.751567,0.102378,0][0.950161,-0.345292,0.945328][0.80313,0.120302,0.583532][0.751567,0.102378,0][1.11701,-0.345292,0.617952][0.944087,0.120646,0.306829][0.810775,0.157019,0][1.095,-0.0821362,0.610799][0.929566,0.211384,0.302032][0.775036,0.195799,0][0.9315,-0.0821362,0.931799][0.790765,0.21132,0.574487][0.722388,0.146466,0][0.6768,-0.0821362,1.1865][0.57449,0.211378,0.790747][0.661099,0.109414,0][0.690329,-0.345292,1.20516][0.583572,0.120277,0.803104][0.680987,0.061855,0][0.690329,-0.345292,1.20516][0.583572,0.120277,0.803104][0.680987,0.061855,0][0.950161,-0.345292,0.945328][0.80313,0.120302,0.583532][0.751567,0.102378,0][0.9315,-0.0821362,0.931799][0.790765,0.21132,0.574487][0.722388,0.146466,0][0.6768,-0.0821362,1.1865][0.57449,0.211378,0.790747][0.661099,0.109414,0][0.3558,-0.0821362,1.35][0.302028,0.211392,0.929566][0.593272,0.086017,0][0.362953,-0.345292,1.37201][0.306762,0.120638,0.94411][0.603784,0.036643,0][0.362953,-0.345292,1.37201][0.306762,0.120638,0.94411][0.603784,0.036643,0][0.690329,-0.345292,1.20516][0.583572,0.120277,0.803104][0.680987,0.061855,0][0.6768,-0.0821362,1.1865][0.57449,0.211378,0.790747][0.661099,0.109414,0][0.3558,-0.0821362,1.35][0.302028,0.211392,0.929566][0.593272,0.086017,0][0,-0.0821362,1.4064][-9.16461e-006,0.211428,0.977394][0.522315,0.078802,0][0,-0.345292,1.42949][2.36285e-005,0.120543,0.992708][0.5231,0.027896,0][0,-0.345292,1.42949][2.36285e-005,0.120543,0.992708][0.5231,0.027896,0][0.362953,-0.345292,1.37201][0.306762,0.120638,0.94411][0.603784,0.036643,0][0.3558,-0.0821362,1.35][0.302028,0.211392,0.929566][0.593272,0.086017,0][0,-0.0821362,1.4064][-9.16461e-006,0.211428,0.977394][0.522315,0.078802,0][-0.3558,-0.0821362,1.35][-0.302032,0.211384,0.929566][0.451165,0.086033,0][-0.362953,-0.345292,1.37201][-0.306829,0.120646,0.944087][0.441604,0.037185,0][-0.362953,-0.345292,1.37201][-0.306829,0.120646,0.944087][0.441604,0.037185,0][0,-0.345292,1.42949][2.36285e-005,0.120543,0.992708][0.5231,0.027896,0][0,-0.0821362,1.4064][-9.16461e-006,0.211428,0.977394][0.522315,0.078802,0][-0.3558,-0.0821362,1.35][-0.302032,0.211384,0.929566][0.451165,0.086033,0][-0.6768,-0.0821362,1.1865][-0.574487,0.21132,0.790765][0.38359,0.109324,0][-0.690329,-0.345292,1.20516][-0.583532,0.120303,0.80313][0.365079,0.062236,0][-0.690329,-0.345292,1.20516][-0.583532,0.120303,0.80313][0.365079,0.062236,0][-0.362953,-0.345292,1.37201][-0.306829,0.120646,0.944087][0.441604,0.037185,0][-0.3558,-0.0821362,1.35][-0.302032,0.211384,0.929566][0.451165,0.086033,0][-0.6768,-0.0821362,1.1865][-0.574487,0.21132,0.790765][0.38359,0.109324,0][-0.9315,-0.0821362,0.931799][-0.790747,0.211378,0.57449][0.322454,0.146574,0][-0.950161,-0.345292,0.945328][-0.803105,0.120277,0.583572][0.295511,0.10327,0][-0.950161,-0.345292,0.945328][-0.803105,0.120277,0.583572][0.295511,0.10327,0][-0.690329,-0.345292,1.20516][-0.583532,0.120303,0.80313][0.365079,0.062236,0][-0.6768,-0.0821362,1.1865][-0.574487,0.21132,0.790765][0.38359,0.109324,0][-0.9315,-0.0821362,0.931799][-0.790747,0.211378,0.57449][0.322454,0.146574,0][-1.095,-0.0821362,0.610799][-0.929566,0.211392,0.302028][0.270597,0.196039,0][-1.11701,-0.345292,0.617952][-0.94411,0.120638,0.306762][0.236602,0.157775,0][-1.11701,-0.345292,0.617952][-0.94411,0.120638,0.306762][0.236602,0.157775,0][-0.950161,-0.345292,0.945328][-0.803105,0.120277,0.583572][0.295511,0.10327,0][-0.9315,-0.0821362,0.931799][-0.790747,0.211378,0.57449][0.322454,0.146574,0][-1.095,-0.0821362,0.610799][-0.929566,0.211392,0.302028][0.270597,0.196039,0][-1.1514,-0.0821363,0.254999][-0.977407,0.211365,-8.12386e-005][0.229191,0.256736,0][-1.17449,-0.345292,0.254999][-0.992699,0.120616,-0.000104083][0.187683,0.223237,0][-1.17449,-0.345292,0.254999][-0.992699,0.120616,-0.000104083][0.187683,0.223237,0][-1.11701,-0.345292,0.617952][-0.94411,0.120638,0.306762][0.236602,0.157775,0][-1.095,-0.0821362,0.610799][-0.929566,0.211392,0.302028][0.270597,0.196039,0][-1.1514,-0.0821363,0.254999][-0.977407,0.211365,-8.12386e-005][0.229191,0.256736,0][-1.095,-0.0821363,-0.100801][-0.929937,0.21287,-0.299838][0.198664,0.323148,0][-1.11701,-0.347245,-0.107954][-0.961144,0.18855,-0.201622][0.149107,0.291732,0][-1.11701,-0.347245,-0.107954][-0.961144,0.18855,-0.201622][0.149107,0.291732,0][-1.17449,-0.345292,0.254999][-0.992699,0.120616,-0.000104083][0.187683,0.223237,0][-1.1514,-0.0821363,0.254999][-0.977407,0.211365,-8.12386e-005][0.229191,0.256736,0][-1.095,-0.0821363,-0.100801][-0.929937,0.21287,-0.299838][0.152034,0.524444,0][-0.9315,-0.0821363,-0.421801][-0.790169,0.224147,-0.570431][0.206695,0.605383,0][-0.950161,-0.293045,-0.43533][-0.742981,0.531006,-0.407445][0.161169,0.639678,0][-0.950161,-0.293045,-0.43533][-0.742981,0.531006,-0.407445][0.161169,0.639678,0][-1.11701,-0.347245,-0.107954][-0.961144,0.18855,-0.201622][0.092186,0.565216,0][-1.095,-0.0821363,-0.100801][-0.929937,0.21287,-0.299838][0.152034,0.524444,0][1.11701,-0.498292,-0.809341][0.836191,0.497689,-0.230411][0.789802,0.015347,0][1.11701,-0.347245,-0.107954][0.96121,0.188372,-0.201474][0.904646,0.072675,0][1.1233,-0.388066,-0.110001][0.704165,-0.70704,-0.0651536][0.906144,0.065429,0][1.1233,-0.388066,-0.110001][0.704165,-0.70704,-0.0651536][0.906144,0.065429,0][1.1233,-0.526758,-0.806951][0.607431,-0.791652,-0.0656848][0.791535,0.01041,0][1.11701,-0.498292,-0.809341][0.836191,0.497689,-0.230411][0.789802,0.015347,0][1.1233,-0.526758,-0.806951][0.607431,-0.791652,-0.0656848][0.012802,0.445728,0][1.1233,-0.388066,-0.110001][0.704165,-0.70704,-0.0651536][0.015702,0.402548,0][0.9555,-0.353385,-0.439201][-0.331835,-0.941265,0.0624898][0.025934,0.422459,0][0.9555,-0.353385,-0.439201][-0.331835,-0.941265,0.0624898][0.025934,0.422459,0][0.9555,-0.502861,-1.18196][0.558531,-0.73509,-0.3843][0.023141,0.468899,0][1.1233,-0.526758,-0.806951][0.607431,-0.791652,-0.0656848][0.012802,0.445728,0][1.11701,-0.498292,-0.809341][0.836191,0.497689,-0.230411][0.884328,0.991383,0][0.950161,-0.481734,-1.18136][0.678156,0.581014,-0.450031][0.83568,0.963113,0][0.950161,-0.293045,-0.43533][0.742981,0.531006,-0.407445][0.941768,0.965107,0][0.950161,-0.293045,-0.43533][0.742981,0.531006,-0.407445][0.941768,0.965107,0][1.11701,-0.347245,-0.107954][0.96121,0.188372,-0.201474][0.983182,0.995236,0][1.11701,-0.498292,-0.809341][0.836191,0.497689,-0.230411][0.884328,0.991383,0][0.9555,-0.502861,-1.18196][0.558531,-0.73509,-0.3843][0.023141,0.468899,0][0.9555,-0.353385,-0.439201][-0.331835,-0.941265,0.0624898][0.025934,0.422459,0][0.6942,-0.286514,-0.700501][-0.28728,-0.955809,0.0624465][0.041467,0.438701,0][0.6942,-0.286514,-0.700501][-0.28728,-0.955809,0.0624465][0.041467,0.438701,0][0.6942,-0.47664,-1.44742][0.352981,-0.756824,-0.55011][0.039383,0.485746,0][0.9555,-0.502861,-1.18196][0.558531,-0.73509,-0.3843][0.023141,0.468899,0][0.950161,-0.481734,-1.18136][0.678156,0.581014,-0.450031][0.83568,0.963113,0][0.690329,-0.450579,-1.44611][0.52042,0.576057,-0.630335][0.802038,0.924346,0][0.690329,-0.241051,-0.695162][0.546457,0.61898,-0.564135][0.909536,0.925363,0][0.690329,-0.241051,-0.695162][0.546457,0.61898,-0.564135][0.909536,0.925363,0][0.950161,-0.293045,-0.43533][0.742981,0.531006,-0.407445][0.941768,0.965107,0][0.950161,-0.481734,-1.18136][0.678156,0.581014,-0.450031][0.83568,0.963113,0][0.6942,-0.47664,-1.44742][0.352981,-0.756824,-0.55011][0.039383,0.485746,0][0.6942,-0.286514,-0.700501][-0.28728,-0.955809,0.0624465][0.041467,0.438701,0][0.365,-0.20315,-0.868301][-0.194438,-0.975895,0.0991048][0.061903,0.448928,0][0.365,-0.20315,-0.868301][-0.194438,-0.975895,0.0991048][0.061903,0.448928,0][0.365,-0.43999,-1.62303][0.178323,-0.744356,-0.643533][0.060525,0.497111,0][0.6942,-0.47664,-1.44742][0.352981,-0.756824,-0.55011][0.039383,0.485746,0][0.690329,-0.450579,-1.44611][0.52042,0.576057,-0.630335][0.802038,0.924346,0][0.362953,-0.412419,-1.62099][0.288561,0.594952,-0.750176][0.780623,0.877567,0][0.362953,-0.176231,-0.862011][0.307411,0.677037,-0.668669][0.890227,0.877676,0][0.362953,-0.176231,-0.862011][0.307411,0.677037,-0.668669][0.890227,0.877676,0][0.690329,-0.241051,-0.695162][0.546457,0.61898,-0.564135][0.909536,0.925363,0][0.690329,-0.450579,-1.44611][0.52042,0.576057,-0.630335][0.802038,0.924346,0][0.365,-0.43999,-1.62303][0.178323,-0.744356,-0.643533][0.060525,0.497111,0][0.365,-0.20315,-0.868301][-0.194438,-0.975895,0.0991048][0.061903,0.448928,0][0,-0.170997,-0.926101][0,-0.992121,0.125284][0.084008,0.452822,0][0,-0.170997,-0.926101][0,-0.992121,0.125284][0.084008,0.452822,0][0,-0.417188,-1.68512][0,-0.698888,-0.715231][0.083458,0.501622,0][0.365,-0.43999,-1.62303][0.178323,-0.744356,-0.643533][0.060525,0.497111,0][0.362953,-0.412419,-1.62099][0.288561,0.594952,-0.750176][0.780623,0.877567,0][0,-0.396635,-1.68166][0,0.636406,-0.771354][0.773326,0.827306,0][0,-0.15123,-0.919491][0,0.722411,-0.691464][0.883734,0.827305,0][0,-0.15123,-0.919491][0,0.722411,-0.691464][0.883734,0.827305,0][0.362953,-0.176231,-0.862011][0.307411,0.677037,-0.668669][0.890227,0.877676,0][0.362953,-0.412419,-1.62099][0.288561,0.594952,-0.750176][0.780623,0.877567,0][-0.365,-0.43999,-1.62303][-0.178323,-0.744356,-0.643533][0.106644,0.497983,0][0,-0.417188,-1.68512][0,-0.698888,-0.715231][0.083458,0.501622,0][0,-0.170997,-0.926101][0,-0.992121,0.125284][0.084008,0.452822,0][0,-0.170997,-0.926101][0,-0.992121,0.125284][0.084008,0.452822,0][-0.365,-0.20315,-0.868301][0.194438,-0.975895,0.0991048][0.106333,0.449703,0][-0.365,-0.43999,-1.62303][-0.178323,-0.744356,-0.643533][0.106644,0.497983,0][-0.362953,-0.412419,-1.62099][-0.288561,0.594952,-0.750176][0.780624,0.777044,0][-0.362953,-0.176231,-0.862011][-0.307411,0.677037,-0.668669][0.890225,0.776935,0][0,-0.15123,-0.919491][0,0.722411,-0.691464][0.883734,0.827305,0][0,-0.15123,-0.919491][0,0.722411,-0.691464][0.883734,0.827305,0][0,-0.396635,-1.68166][0,0.636406,-0.771354][0.773326,0.827306,0][-0.362953,-0.412419,-1.62099][-0.288561,0.594952,-0.750176][0.780624,0.777044,0][-0.6942,-0.47664,-1.44742][-0.352981,-0.756824,-0.55011][0.128028,0.487227,0][-0.365,-0.43999,-1.62303][-0.178323,-0.744356,-0.643533][0.106644,0.497983,0][-0.365,-0.20315,-0.868301][0.194438,-0.975895,0.0991048][0.106333,0.449703,0][-0.365,-0.20315,-0.868301][0.194438,-0.975895,0.0991048][0.106333,0.449703,0][-0.6942,-0.286514,-0.700501][0.28728,-0.955809,0.0624465][0.127327,0.440045,0][-0.6942,-0.47664,-1.44742][-0.352981,-0.756824,-0.55011][0.128028,0.487227,0][-0.690329,-0.450579,-1.44611][-0.52042,0.576057,-0.630334][0.802037,0.730266,0][-0.690329,-0.241051,-0.695162][-0.546457,0.61898,-0.564135][0.909533,0.729247,0][-0.362953,-0.176231,-0.862011][-0.307411,0.677037,-0.668669][0.890225,0.776935,0][-0.362953,-0.176231,-0.862011][-0.307411,0.677037,-0.668669][0.890225,0.776935,0][-0.362953,-0.412419,-1.62099][-0.288561,0.594952,-0.750176][0.780624,0.777044,0][-0.690329,-0.450579,-1.44611][-0.52042,0.576057,-0.630334][0.802037,0.730266,0][-0.9555,-0.502861,-1.18196][-0.558531,-0.73509,-0.3843][0.144723,0.470874,0][-0.6942,-0.47664,-1.44742][-0.352981,-0.756824,-0.55011][0.128028,0.487227,0][-0.6942,-0.286514,-0.700501][0.28728,-0.955809,0.0624465][0.127327,0.440045,0][-0.6942,-0.286514,-0.700501][0.28728,-0.955809,0.0624465][0.127327,0.440045,0][-0.9555,-0.353385,-0.439201][0.331835,-0.941265,0.0624898][0.143646,0.424516,0][-0.9555,-0.502861,-1.18196][-0.558531,-0.73509,-0.3843][0.144723,0.470874,0][-0.950161,-0.481734,-1.18136][-0.678156,0.581014,-0.450031][0.83568,0.691497,0][-0.950161,-0.293045,-0.43533][-0.742981,0.531006,-0.407445][0.941769,0.689502,0][-0.690329,-0.241051,-0.695162][-0.546457,0.61898,-0.564135][0.909533,0.729247,0][-0.690329,-0.241051,-0.695162][-0.546457,0.61898,-0.564135][0.909533,0.729247,0][-0.690329,-0.450579,-1.44611][-0.52042,0.576057,-0.630334][0.802037,0.730266,0][-0.950161,-0.481734,-1.18136][-0.678156,0.581014,-0.450031][0.83568,0.691497,0][-1.11701,-0.498292,-0.809341][-0.836191,0.497689,-0.230411][0.884327,0.663228,0][-1.11701,-0.347245,-0.107954][-0.961144,0.18855,-0.201622][0.983182,0.659374,0][-0.950161,-0.293045,-0.43533][-0.742981,0.531006,-0.407445][0.941769,0.689502,0][-0.950161,-0.293045,-0.43533][-0.742981,0.531006,-0.407445][0.941769,0.689502,0][-0.950161,-0.481734,-1.18136][-0.678156,0.581014,-0.450031][0.83568,0.691497,0][-1.11701,-0.498292,-0.809341][-0.836191,0.497689,-0.230411][0.884327,0.663228,0][-1.1233,-0.526758,-0.806951][-0.607431,-0.791652,-0.0656848][0.156099,0.448096,0][-0.9555,-0.502861,-1.18196][-0.558531,-0.73509,-0.3843][0.144723,0.470874,0][-0.9555,-0.353385,-0.439201][0.331835,-0.941265,0.0624898][0.143646,0.424516,0][-0.9555,-0.353385,-0.439201][0.331835,-0.941265,0.0624898][0.143646,0.424516,0][-1.1233,-0.388066,-0.110001][-0.70404,-0.707137,-0.0654578][0.154411,0.404546,0][-1.1233,-0.526758,-0.806951][-0.607431,-0.791652,-0.0656848][0.156099,0.448096,0][-1.11701,-0.498292,-0.809341][-0.836191,0.497689,-0.230411][0.246762,0.015347,0][-1.1233,-0.526758,-0.806951][-0.607431,-0.791652,-0.0656848][0.245029,0.01041,0][-1.1233,-0.388066,-0.110001][-0.70404,-0.707137,-0.0654578][0.130417,0.065429,0][-1.1233,-0.388066,-0.110001][-0.70404,-0.707137,-0.0654578][0.130417,0.065429,0][-1.11701,-0.347245,-0.107954][-0.961144,0.18855,-0.201622][0.131915,0.072675,0][-1.11701,-0.498292,-0.809341][-0.836191,0.497689,-0.230411][0.246762,0.015347,0][-1.1233,-0.388066,0.619999][-0.724384,-0.64796,0.235403][0.154696,0.35991,0][-1.1811,-0.388066,0.254999][-0.761624,-0.64802,4.21466e-006][0.158051,0.382367,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][-0.9555,-0.388066,0.949199][-0.61604,-0.648164,0.447636][0.144563,0.339576,0][-1.1233,-0.388066,0.619999][-0.724384,-0.64796,0.235403][0.154696,0.35991,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][-0.6942,-0.388066,1.2105][-0.447623,-0.648159,0.616055][0.12873,0.323357,0][-0.9555,-0.388066,0.949199][-0.61604,-0.648164,0.447636][0.144563,0.339576,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][-0.365,-0.388066,1.3783][-0.235427,-0.647956,0.724381][0.1087,0.31283,0][-0.6942,-0.388066,1.2105][-0.447623,-0.648159,0.616055][0.12873,0.323357,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][0,-0.388066,1.4361][4.1561e-006,-0.64802,0.761624][0.086575,0.308921,0][-0.365,-0.388066,1.3783][-0.235427,-0.647956,0.724381][0.1087,0.31283,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][0.365,-0.388066,1.3783][0.235403,-0.64796,0.724385][0.06427,0.312212,0][0,-0.388066,1.4361][4.1561e-006,-0.64802,0.761624][0.086575,0.308921,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][0.6942,-0.388066,1.2105][0.447636,-0.648164,0.61604][0.043934,0.32219,0][0.365,-0.388066,1.3783][0.235403,-0.64796,0.724385][0.06427,0.312212,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][0.9555,-0.388066,0.949199][0.616055,-0.648159,0.447623][0.027626,0.338041,0][0.6942,-0.388066,1.2105][0.447636,-0.648164,0.61604][0.043934,0.32219,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][1.1233,-0.388066,0.619999][0.724381,-0.647956,0.235427][0.016847,0.357989,0][0.9555,-0.388066,0.949199][0.616055,-0.648159,0.447623][0.027626,0.338041,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][1.1811,-0.388066,0.254999][0.761693,-0.647938,-0.000312581][0.012802,0.380207,0][1.1233,-0.388066,0.619999][0.724381,-0.647956,0.235427][0.016847,0.357989,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][1.1233,-0.388066,-0.110001][0.704165,-0.70704,-0.0651536][0.015702,0.402548,0][1.1811,-0.388066,0.254999][0.761693,-0.647938,-0.000312581][0.012802,0.380207,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][0.9555,-0.353385,-0.439201][-0.331835,-0.941265,0.0624898][0.025934,0.422459,0][1.1233,-0.388066,-0.110001][0.704165,-0.70704,-0.0651536][0.015702,0.402548,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][0.6942,-0.286514,-0.700501][-0.28728,-0.955809,0.0624465][0.041467,0.438701,0][0.9555,-0.353385,-0.439201][-0.331835,-0.941265,0.0624898][0.025934,0.422459,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][0.365,-0.20315,-0.868301][-0.194438,-0.975895,0.0991048][0.061903,0.448928,0][0.6942,-0.286514,-0.700501][-0.28728,-0.955809,0.0624465][0.041467,0.438701,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][0,-0.170997,-0.926101][0,-0.992121,0.125284][0.084008,0.452822,0][0.365,-0.20315,-0.868301][-0.194438,-0.975895,0.0991048][0.061903,0.448928,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][-0.365,-0.20315,-0.868301][0.194438,-0.975895,0.0991048][0.106333,0.449703,0][0,-0.170997,-0.926101][0,-0.992121,0.125284][0.084008,0.452822,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][-0.6942,-0.286514,-0.700501][0.28728,-0.955809,0.0624465][0.127327,0.440045,0][-0.365,-0.20315,-0.868301][0.194438,-0.975895,0.0991048][0.106333,0.449703,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][-0.9555,-0.353385,-0.439201][0.331835,-0.941265,0.0624898][0.143646,0.424516,0][-0.6942,-0.286514,-0.700501][0.28728,-0.955809,0.0624465][0.127327,0.440045,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][-1.1233,-0.388066,-0.110001][-0.70404,-0.707137,-0.0654578][0.154411,0.404546,0][-0.9555,-0.353385,-0.439201][0.331835,-0.941265,0.0624898][0.143646,0.424516,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][-1.1811,-0.388066,0.254999][-0.761624,-0.64802,4.21466e-006][0.158051,0.382367,0][-1.1233,-0.388066,-0.110001][-0.70404,-0.707137,-0.0654578][0.154411,0.404546,0][0,-0.279466,0.254999][0,-0.997855,-0.0654571][0.085266,0.38027,0][-0.068535,0.595503,0.323534][-0.572777,0.586388,0.572779][0.017622,0.947003,0][-0.074182,0.575983,0.329181][-0.654451,0.378654,0.654458][0.01647,0.943964,0][0,0.575983,0.359908][-4.50079e-006,0.378618,0.925553][0.033689,0.943964,0][0,0.575983,0.359908][-4.50079e-006,0.378618,0.925553][0.033689,0.943964,0][0,0.595503,0.351923][-1.86978e-006,0.586377,0.810038][0.032295,0.94725,0][-0.068535,0.595503,0.323534][-0.572777,0.586388,0.572779][0.017622,0.947003,0][0,0.595503,0.351923][-1.86978e-006,0.586377,0.810038][0.032295,0.94725,0][0,0.575983,0.359908][-4.50079e-006,0.378618,0.925553][0.033689,0.943964,0][0.074182,0.575983,0.329181][0.654458,0.378654,0.654451][0.045098,0.956054,0][0.074182,0.575983,0.329181][0.654458,0.378654,0.654451][0.045098,0.956054,0][0.068535,0.595503,0.323534][0.572779,0.586388,0.572776][0.041932,0.957229,0][0,0.595503,0.351923][-1.86978e-006,0.586377,0.810038][0.032295,0.94725,0][0.068535,0.595503,0.323534][0.572779,0.586388,0.572776][0.041932,0.957229,0][0.074182,0.575983,0.329181][0.654458,0.378654,0.654451][0.045098,0.956054,0][0.104909,0.575983,0.254999][0.925553,0.378619,4.4784e-006][0.045051,0.973163,0][0.104909,0.575983,0.254999][0.925553,0.378619,4.4784e-006][0.045051,0.973163,0][0.096924,0.595503,0.254999][0.810038,0.586377,1.9301e-006][0.04173,0.971735,0][0.068535,0.595503,0.323534][0.572779,0.586388,0.572776][0.041932,0.957229,0][0.096924,0.595503,0.254999][0.810038,0.586377,1.9301e-006][0.04173,0.971735,0][0.104909,0.575983,0.254999][0.925553,0.378619,4.4784e-006][0.045051,0.973163,0][0.074182,0.575983,0.180817][0.654452,0.378653,-0.654458][0.032718,0.984592,0][0.074182,0.575983,0.180817][0.654452,0.378653,-0.654458][0.032718,0.984592,0][0.068535,0.595503,0.186464][0.572776,0.586388,-0.572779][0.031572,0.98154,0][0.096924,0.595503,0.254999][0.810038,0.586377,1.9301e-006][0.04173,0.971735,0][0.068535,0.595503,0.186464][0.572776,0.586388,-0.572779][0.031572,0.98154,0][0.074182,0.575983,0.180817][0.654452,0.378653,-0.654458][0.032718,0.984592,0][0,0.575983,0.15009][4.36644e-006,0.378618,-0.925553][0.015471,0.984532,0][0,0.575983,0.15009][4.36644e-006,0.378618,-0.925553][0.015471,0.984532,0][0,0.595503,0.158075][1.85333e-006,0.586377,-0.810038][0.016876,0.981259,0][0.068535,0.595503,0.186464][0.572776,0.586388,-0.572779][0.031572,0.98154,0][0,0.595503,0.158075][1.85333e-006,0.586377,-0.810038][0.016876,0.981259,0][0,0.575983,0.15009][4.36644e-006,0.378618,-0.925553][0.015471,0.984532,0][-0.074182,0.575983,0.180817][-0.654458,0.378653,-0.654452][0.00418,0.972345,0][-0.074182,0.575983,0.180817][-0.654458,0.378653,-0.654452][0.00418,0.972345,0][-0.068535,0.595503,0.186464][-0.572779,0.586388,-0.572777][0.007295,0.971169,0][0,0.595503,0.158075][1.85333e-006,0.586377,-0.810038][0.016876,0.981259,0][-0.068535,0.595503,0.186464][-0.572779,0.586388,-0.572777][0.007295,0.971169,0][-0.074182,0.575983,0.180817][-0.654458,0.378653,-0.654452][0.00418,0.972345,0][-0.104909,0.575983,0.254999][-0.925553,0.378619,-4.38883e-006][0.004277,0.955266,0][-0.104909,0.575983,0.254999][-0.925553,0.378619,-4.38883e-006][0.004277,0.955266,0][-0.096924,0.595503,0.254999][-0.810038,0.586377,-1.82592e-006][0.007542,0.956632,0][-0.068535,0.595503,0.186464][-0.572779,0.586388,-0.572777][0.007295,0.971169,0][-0.096924,0.595503,0.254999][-0.810038,0.586377,-1.82592e-006][0.007542,0.956632,0][-0.104909,0.575983,0.254999][-0.925553,0.378619,-4.38883e-006][0.004277,0.955266,0][-0.074182,0.575983,0.329181][-0.654451,0.378654,0.654458][0.01647,0.943964,0][-0.074182,0.575983,0.329181][-0.654451,0.378654,0.654458][0.01647,0.943964,0][-0.068535,0.595503,0.323534][-0.572777,0.586388,0.572779][0.017622,0.947003,0][-0.096924,0.595503,0.254999][-0.810038,0.586377,-1.82592e-006][0.007542,0.956632,0][-0.052455,0.612054,0.307454][-0.342334,0.874996,0.342329][0.019508,0.951671,0][-0.068535,0.595503,0.323534][-0.572777,0.586388,0.572779][0.017622,0.947003,0][0,0.595503,0.351923][-1.86978e-006,0.586377,0.810038][0.032295,0.94725,0][0,0.595503,0.351923][-1.86978e-006,0.586377,0.810038][0.032295,0.94725,0][0,0.612054,0.329181][3.6796e-006,0.875003,0.484118][0.030313,0.951612,0][-0.052455,0.612054,0.307454][-0.342334,0.874996,0.342329][0.019508,0.951671,0][0,0.612054,0.329181][3.6796e-006,0.875003,0.484118][0.030313,0.951612,0][0,0.595503,0.351923][-1.86978e-006,0.586377,0.810038][0.032295,0.94725,0][0.068535,0.595503,0.323534][0.572779,0.586388,0.572776][0.041932,0.957229,0][0.068535,0.595503,0.323534][0.572779,0.586388,0.572776][0.041932,0.957229,0][0.052455,0.612054,0.307454][0.342329,0.874996,0.342335][0.037286,0.958974,0][0,0.612054,0.329181][3.6796e-006,0.875003,0.484118][0.030313,0.951612,0][0.052455,0.612054,0.307454][0.342329,0.874996,0.342335][0.037286,0.958974,0][0.068535,0.595503,0.323534][0.572779,0.586388,0.572776][0.041932,0.957229,0][0.096924,0.595503,0.254999][0.810038,0.586377,1.9301e-006][0.04173,0.971735,0][0.096924,0.595503,0.254999][0.810038,0.586377,1.9301e-006][0.04173,0.971735,0][0.074182,0.612054,0.254999][0.484118,0.875003,-3.52982e-006][0.037315,0.969689,0][0.052455,0.612054,0.307454][0.342329,0.874996,0.342335][0.037286,0.958974,0][0.074182,0.612054,0.254999][0.484118,0.875003,-3.52982e-006][0.037315,0.969689,0][0.096924,0.595503,0.254999][0.810038,0.586377,1.9301e-006][0.04173,0.971735,0][0.068535,0.595503,0.186464][0.572776,0.586388,-0.572779][0.031572,0.98154,0][0.068535,0.595503,0.186464][0.572776,0.586388,-0.572779][0.031572,0.98154,0][0.052455,0.612054,0.202544][0.342334,0.874996,-0.342329][0.029684,0.97681,0][0.074182,0.612054,0.254999][0.484118,0.875003,-3.52982e-006][0.037315,0.969689,0][0.052455,0.612054,0.202544][0.342334,0.874996,-0.342329][0.029684,0.97681,0][0.068535,0.595503,0.186464][0.572776,0.586388,-0.572779][0.031572,0.98154,0][0,0.595503,0.158075][1.85333e-006,0.586377,-0.810038][0.016876,0.981259,0][0,0.595503,0.158075][1.85333e-006,0.586377,-0.810038][0.016876,0.981259,0][0,0.612054,0.180817][-3.46742e-006,0.875003,-0.484118][0.018871,0.976858,0][0.052455,0.612054,0.202544][0.342334,0.874996,-0.342329][0.029684,0.97681,0][0,0.612054,0.180817][-3.46742e-006,0.875003,-0.484118][0.018871,0.976858,0][0,0.595503,0.158075][1.85333e-006,0.586377,-0.810038][0.016876,0.981259,0][-0.068535,0.595503,0.186464][-0.572779,0.586388,-0.572777][0.007295,0.971169,0][-0.068535,0.595503,0.186464][-0.572779,0.586388,-0.572777][0.007295,0.971169,0][-0.052455,0.612054,0.202544][-0.342329,0.874996,-0.342334][0.011936,0.969424,0][0,0.612054,0.180817][-3.46742e-006,0.875003,-0.484118][0.018871,0.976858,0][-0.052455,0.612054,0.202544][-0.342329,0.874996,-0.342334][0.011936,0.969424,0][-0.068535,0.595503,0.186464][-0.572779,0.586388,-0.572777][0.007295,0.971169,0][-0.096924,0.595503,0.254999][-0.810038,0.586377,-1.82592e-006][0.007542,0.956632,0][-0.096924,0.595503,0.254999][-0.810038,0.586377,-1.82592e-006][0.007542,0.956632,0][-0.074182,0.612054,0.254999][-0.484118,0.875003,3.52483e-006][0.011931,0.95866,0][-0.052455,0.612054,0.202544][-0.342329,0.874996,-0.342334][0.011936,0.969424,0][-0.074182,0.612054,0.254999][-0.484118,0.875003,3.52483e-006][0.011931,0.95866,0][-0.096924,0.595503,0.254999][-0.810038,0.586377,-1.82592e-006][0.007542,0.956632,0][-0.068535,0.595503,0.323534][-0.572777,0.586388,0.572779][0.017622,0.947003,0][-0.068535,0.595503,0.323534][-0.572777,0.586388,0.572779][0.017622,0.947003,0][-0.052455,0.612054,0.307454][-0.342334,0.874996,0.342329][0.019508,0.951671,0][-0.074182,0.612054,0.254999][-0.484118,0.875003,3.52483e-006][0.011931,0.95866,0][-0.028388,0.623104,0.283387][-0.162191,0.973338,0.162194][0.021666,0.957054,0][-0.052455,0.612054,0.307454][-0.342334,0.874996,0.342329][0.019508,0.951671,0][0,0.612054,0.329181][3.6796e-006,0.875003,0.484118][0.030313,0.951612,0][0,0.612054,0.329181][3.6796e-006,0.875003,0.484118][0.030313,0.951612,0][0,0.623104,0.295146][-1.76412e-006,0.973337,0.229378][0.027674,0.957054,0][-0.028388,0.623104,0.283387][-0.162191,0.973338,0.162194][0.021666,0.957054,0][0,0.623104,0.295146][-1.76412e-006,0.973337,0.229378][0.027674,0.957054,0][0,0.612054,0.329181][3.6796e-006,0.875003,0.484118][0.030313,0.951612,0][0.052455,0.612054,0.307454][0.342329,0.874996,0.342335][0.037286,0.958974,0][0.052455,0.612054,0.307454][0.342329,0.874996,0.342335][0.037286,0.958974,0][0.028388,0.623104,0.283387][0.162193,0.973338,0.162191][0.031882,0.961233,0][0,0.623104,0.295146][-1.76412e-006,0.973337,0.229378][0.027674,0.957054,0][0.028388,0.623104,0.283387][0.162193,0.973338,0.162191][0.031882,0.961233,0][0.052455,0.612054,0.307454][0.342329,0.874996,0.342335][0.037286,0.958974,0][0.074182,0.612054,0.254999][0.484118,0.875003,-3.52982e-006][0.037315,0.969689,0][0.074182,0.612054,0.254999][0.484118,0.875003,-3.52982e-006][0.037315,0.969689,0][0.040147,0.623104,0.254999][0.229378,0.973337,1.7388e-006][0.031839,0.967175,0][0.028388,0.623104,0.283387][0.162193,0.973338,0.162191][0.031882,0.961233,0][0.040147,0.623104,0.254999][0.229378,0.973337,1.7388e-006][0.031839,0.967175,0][0.074182,0.612054,0.254999][0.484118,0.875003,-3.52982e-006][0.037315,0.969689,0][0.052455,0.612054,0.202544][0.342334,0.874996,-0.342329][0.029684,0.97681,0][0.052455,0.612054,0.202544][0.342334,0.874996,-0.342329][0.029684,0.97681,0][0.028388,0.623104,0.226611][0.162191,0.973338,-0.162194][0.02756,0.971333,0][0.040147,0.623104,0.254999][0.229378,0.973337,1.7388e-006][0.031839,0.967175,0][0.028388,0.623104,0.226611][0.162191,0.973338,-0.162194][0.02756,0.971333,0][0.052455,0.612054,0.202544][0.342334,0.874996,-0.342329][0.029684,0.97681,0][0,0.612054,0.180817][-3.46742e-006,0.875003,-0.484118][0.018871,0.976858,0][0,0.612054,0.180817][-3.46742e-006,0.875003,-0.484118][0.018871,0.976858,0][0,0.623104,0.214852][1.71107e-006,0.973337,-0.229378][0.021547,0.971326,0][0.028388,0.623104,0.226611][0.162191,0.973338,-0.162194][0.02756,0.971333,0][0,0.623104,0.214852][1.71107e-006,0.973337,-0.229378][0.021547,0.971326,0][0,0.612054,0.180817][-3.46742e-006,0.875003,-0.484118][0.018871,0.976858,0][-0.052455,0.612054,0.202544][-0.342329,0.874996,-0.342334][0.011936,0.969424,0][-0.052455,0.612054,0.202544][-0.342329,0.874996,-0.342334][0.011936,0.969424,0][-0.028388,0.623104,0.226611][-0.162193,0.973338,-0.162191][0.017338,0.967157,0][0,0.623104,0.214852][1.71107e-006,0.973337,-0.229378][0.021547,0.971326,0][-0.028388,0.623104,0.226611][-0.162193,0.973338,-0.162191][0.017338,0.967157,0][-0.052455,0.612054,0.202544][-0.342329,0.874996,-0.342334][0.011936,0.969424,0][-0.074182,0.612054,0.254999][-0.484118,0.875003,3.52483e-006][0.011931,0.95866,0][-0.074182,0.612054,0.254999][-0.484118,0.875003,3.52483e-006][0.011931,0.95866,0][-0.040147,0.623104,0.254999][-0.229378,0.973337,-1.76171e-006][0.017377,0.961225,0][-0.028388,0.623104,0.226611][-0.162193,0.973338,-0.162191][0.017338,0.967157,0][-0.040147,0.623104,0.254999][-0.229378,0.973337,-1.76171e-006][0.017377,0.961225,0][-0.074182,0.612054,0.254999][-0.484118,0.875003,3.52483e-006][0.011931,0.95866,0][-0.052455,0.612054,0.307454][-0.342334,0.874996,0.342329][0.019508,0.951671,0][-0.052455,0.612054,0.307454][-0.342334,0.874996,0.342329][0.019508,0.951671,0][-0.028388,0.623104,0.283387][-0.162191,0.973338,0.162194][0.021666,0.957054,0][-0.040147,0.623104,0.254999][-0.229378,0.973337,-1.76171e-006][0.017377,0.961225,0][-0.028388,0.623104,0.283387][-0.162191,0.973338,0.162194][0.021666,0.957054,0][0,0.623104,0.295146][-1.76412e-006,0.973337,0.229378][0.027674,0.957054,0][0,0.626983,0.254999][0,1,0][0.024556,0.964218,0][0,0.623104,0.295146][-1.76412e-006,0.973337,0.229378][0.027674,0.957054,0][0.028388,0.623104,0.283387][0.162193,0.973338,0.162191][0.031882,0.961233,0][0,0.626983,0.254999][0,1,0][0.024556,0.964218,0][0.028388,0.623104,0.283387][0.162193,0.973338,0.162191][0.031882,0.961233,0][0.040147,0.623104,0.254999][0.229378,0.973337,1.7388e-006][0.031839,0.967175,0][0,0.626983,0.254999][0,1,0][0.024556,0.964218,0][0.040147,0.623104,0.254999][0.229378,0.973337,1.7388e-006][0.031839,0.967175,0][0.028388,0.623104,0.226611][0.162191,0.973338,-0.162194][0.02756,0.971333,0][0,0.626983,0.254999][0,1,0][0.024556,0.964218,0][0.028388,0.623104,0.226611][0.162191,0.973338,-0.162194][0.02756,0.971333,0][0,0.623104,0.214852][1.71107e-006,0.973337,-0.229378][0.021547,0.971326,0][0,0.626983,0.254999][0,1,0][0.024556,0.964218,0][0,0.623104,0.214852][1.71107e-006,0.973337,-0.229378][0.021547,0.971326,0][-0.028388,0.623104,0.226611][-0.162193,0.973338,-0.162191][0.017338,0.967157,0][0,0.626983,0.254999][0,1,0][0.024556,0.964218,0][-0.028388,0.623104,0.226611][-0.162193,0.973338,-0.162191][0.017338,0.967157,0][-0.040147,0.623104,0.254999][-0.229378,0.973337,-1.76171e-006][0.017377,0.961225,0][0,0.626983,0.254999][0,1,0][0.024556,0.964218,0][-0.040147,0.623104,0.254999][-0.229378,0.973337,-1.76171e-006][0.017377,0.961225,0][-0.028388,0.623104,0.283387][-0.162191,0.973338,0.162194][0.021666,0.957054,0][0,0.626983,0.254999][0,1,0][0.024556,0.964218,0] \ No newline at end of file diff --git a/charcustom/hats/fonts/RubberDuckie.mesh b/charcustom/hats/fonts/RubberDuckie.mesh new file mode 100644 index 0000000..88cb1e0 --- /dev/null +++ b/charcustom/hats/fonts/RubberDuckie.mesh @@ -0,0 +1,3 @@ +version 1.00 +442 +[-0.327341,0.36447,-1.1941][-0.934298,-0.23321,-0.269631][0.448424,0.697716,0][-0.319967,0.331362,-1.19102][-0.934298,-0.23321,-0.269631][0.455098,0.686845,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.485736,0.70184,0][-0.327341,0.36447,-1.1941][-0.934298,-0.23321,-0.269631][0.448424,0.697716,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.485736,0.70184,0][-0.348659,0.353338,-1.10998][-0.936136,-0.228311,-0.267439][0.477403,0.711986,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][-0.174654,0.574744,-1.38655][-0.377026,0.919896,0.107904][0.339651,0.722533,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][0,0.636961,-1.30937][-0.375239,0.920279,0.110822][0.307344,0.781011,0][0,0.324583,-1.25274][0.0591651,-0.98771,-0.144666][0.106178,0.915713,0][0,0.295712,-1.05562][0.0591651,-0.98771,-0.144666][0.159149,0.866801,0][-0.203675,0.277236,-1.01277][0.0591651,-0.98771,-0.144666][0.223852,0.910068,0][0,0.324583,-1.25274][0.0591651,-0.98771,-0.144666][0.106178,0.915713,0][-0.203675,0.277236,-1.01277][0.0591651,-0.98771,-0.144666][0.223852,0.910068,0][-0.17556,0.290735,-1.22181][0.182559,-0.982425,-0.0388902][0.162754,0.954271,0][-0.250894,0.405318,-1.31382][-0.474098,-0.158429,-0.866101][0.39417,0.684252,0][-0.262168,0.442083,-1.31438][-0.474098,-0.158429,-0.866101][0.391306,0.6979,0][-0.174654,0.574744,-1.38655][-0.377026,0.919896,0.107904][0.339651,0.722533,0][-0.250894,0.405318,-1.31382][-0.474098,-0.158429,-0.866101][0.39417,0.684252,0][-0.174654,0.574744,-1.38655][-0.377026,0.919896,0.107904][0.339651,0.722533,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.346879,0.699533,0][0,0.6418,-1.22582][-0.413408,0.873383,-0.257481][0.326295,0.804822,0][-0.20287,0.555397,-1.19317][-0.413408,0.873383,-0.257481][0.394649,0.761286,0][-0.222343,0.625608,-0.92375][-0.413408,0.873383,-0.257481][0.459104,0.841016,0][0,0.6418,-1.22582][-0.413408,0.873383,-0.257481][0.326295,0.804822,0][-0.222343,0.625608,-0.92375][-0.413408,0.873383,-0.257481][0.459104,0.841016,0][0,0.72498,-0.92375][-0.395722,0.885413,-0.243818][0.391525,0.899385,0][-0.348659,0.353338,-1.10998][-0.936136,-0.228311,-0.267439][0.477403,0.711986,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.485736,0.70184,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.562596,0.743023,0][-0.348659,0.353338,-1.10998][-0.936136,-0.228311,-0.267439][0.477403,0.711986,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.562596,0.743023,0][-0.389567,0.324558,-0.885599][-0.966349,-0.164998,-0.197346][0.552042,0.753156,0][-0.20287,0.555397,-1.19317][-0.413408,0.873383,-0.257481][0.394649,0.761286,0][-0.348659,0.353338,-1.10998][-0.936136,-0.228311,-0.267439][0.477403,0.711986,0][-0.389567,0.324558,-0.885599][-0.966349,-0.164998,-0.197346][0.552042,0.753156,0][-0.20287,0.555397,-1.19317][-0.413408,0.873383,-0.257481][0.394649,0.761286,0][-0.389567,0.324558,-0.885599][-0.966349,-0.164998,-0.197346][0.552042,0.753156,0][-0.222343,0.625608,-0.92375][-0.413408,0.873383,-0.257481][0.459104,0.841016,0][-0.17556,0.290735,-1.22181][0.182559,-0.982425,-0.0388902][0.162754,0.954271,0][-0.203675,0.277236,-1.01277][0.0591651,-0.98771,-0.144666][0.223852,0.910068,0][-0.322582,0.263542,-0.994787][0.106835,-0.993031,-0.0497599][0.258229,0.937961,0][-0.17556,0.290735,-1.22181][0.182559,-0.982425,-0.0388902][0.162754,0.954271,0][-0.322582,0.263542,-0.994787][0.106835,-0.993031,-0.0497599][0.258229,0.937961,0][-0.26351,0.274392,-1.18501][0.183,-0.983113,0.000754234][0.1933,0.968039,0][-0.363599,0.261861,-0.869841][0.118167,-0.992668,0.0254337][0.302887,0.918243,0][-0.322582,0.263542,-0.994787][0.106835,-0.993031,-0.0497599][0.258229,0.937961,0][-0.203675,0.277236,-1.01277][0.0591651,-0.98771,-0.144666][0.223852,0.910068,0][-0.363599,0.261861,-0.869841][0.118167,-0.992668,0.0254337][0.302887,0.918243,0][-0.203675,0.277236,-1.01277][0.0591651,-0.98771,-0.144666][0.223852,0.910068,0][-0.209418,0.27527,-0.903117][0.0837437,-0.996396,-0.0134827][0.255228,0.884333,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][0,0.582512,-1.39343][-0.00107123,-0.236582,-0.971611][0.283719,0.729492,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.346879,0.699533,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.346879,0.699533,0][-0.174654,0.574744,-1.38655][-0.377026,0.919896,0.107904][0.339651,0.722533,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][0,0.324583,-1.25274][0.0591651,-0.98771,-0.144666][0.106178,0.915713,0][-0.17556,0.290735,-1.22181][0.182559,-0.982425,-0.0388902][0.162754,0.954271,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][-0.17556,0.290735,-1.22181][0.182559,-0.982425,-0.0388902][0.162754,0.954271,0][-0.168874,0.334962,-1.28343][0.10032,-0.813451,-0.572917][0.140737,0.968933,0][-0.26351,0.274392,-1.18501][0.183,-0.983113,0.000754234][0.1933,0.968039,0][-0.168874,0.334962,-1.28343][0.10032,-0.813451,-0.572917][0.140737,0.968933,0][-0.17556,0.290735,-1.22181][0.182559,-0.982425,-0.0388902][0.162754,0.954271,0][-0.337563,0.292297,-1.0015][-0.852257,-0.426961,-0.302263][0.262244,0.949752,0][-0.276593,0.31059,-1.19925][-0.852257,-0.426961,-0.302263][0.191286,0.982369,0][-0.26351,0.274392,-1.18501][0.183,-0.983113,0.000754234][0.1933,0.968039,0][-0.337563,0.292297,-1.0015][-0.852257,-0.426961,-0.302263][0.262244,0.949752,0][-0.26351,0.274392,-1.18501][0.183,-0.983113,0.000754234][0.1933,0.968039,0][-0.322582,0.263542,-0.994787][0.106835,-0.993031,-0.0497599][0.258229,0.937961,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.307281,0.930221,0][-0.337563,0.292297,-1.0015][-0.852257,-0.426961,-0.302263][0.262244,0.949752,0][-0.322582,0.263542,-0.994787][0.106835,-0.993031,-0.0497599][0.258229,0.937961,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.307281,0.930221,0][-0.322582,0.263542,-0.994787][0.106835,-0.993031,-0.0497599][0.258229,0.937961,0][-0.363599,0.261861,-0.869841][0.118167,-0.992668,0.0254337][0.302887,0.918243,0][-0.176716,0.37791,-1.30555][-0.0186145,-0.456968,-0.889288][0.12885,0.982369,0][0,0.418049,-1.32987][-0.0186145,-0.456968,-0.889288][0.067901,0.941797,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][-0.176716,0.37791,-1.30555][-0.0186145,-0.456968,-0.889288][0.12885,0.982369,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][-0.168874,0.334962,-1.28343][0.10032,-0.813451,-0.572917][0.140737,0.968933,0][-0.276593,0.31059,-1.19925][-0.852257,-0.426961,-0.302263][0.191286,0.982369,0][-0.176716,0.37791,-1.30555][-0.0186145,-0.456968,-0.889288][0.12885,0.982369,0][-0.168874,0.334962,-1.28343][0.10032,-0.813451,-0.572917][0.140737,0.968933,0][-0.276593,0.31059,-1.19925][-0.852257,-0.426961,-0.302263][0.191286,0.982369,0][-0.168874,0.334962,-1.28343][0.10032,-0.813451,-0.572917][0.140737,0.968933,0][-0.26351,0.274392,-1.18501][0.183,-0.983113,0.000754234][0.1933,0.968039,0][-0.163189,0.484138,-1.22448][0.436763,-0.894138,-0.0987634][0.158257,0.811764,0][0,0.566613,-1.24949][0.436763,-0.894138,-0.0987634][0.110997,0.76449,0][0,0.547534,-1.07676][0.436763,-0.894138,-0.0987634][0.162654,0.728833,0][-0.163189,0.484138,-1.22448][0.436763,-0.894138,-0.0987634][0.158257,0.811764,0][0,0.547534,-1.07676][0.436763,-0.894138,-0.0987634][0.162654,0.728833,0][-0.147566,0.466234,-1.0635][0.46779,-0.872291,-0.142414][0.203695,0.774415,0][0,0.418049,-1.32987][-0.0186145,-0.456968,-0.889288][0.528767,0.935062,0][-0.176716,0.37791,-1.30555][-0.0186145,-0.456968,-0.889288][0.471157,0.974949,0][-0.146649,0.36565,-1.03891][-0.211969,0.974857,0.0687241][0.412709,0.897418,0][0,0.418049,-1.32987][-0.0186145,-0.456968,-0.889288][0.528767,0.935062,0][-0.146649,0.36565,-1.03891][-0.211969,0.974857,0.0687241][0.412709,0.897418,0][0,0.396496,-1.05144][-0.19905,0.977066,0.0756331][0.459353,0.861769,0][-0.176716,0.37791,-1.30555][-0.0186145,-0.456968,-0.889288][0.471157,0.974949,0][-0.276593,0.31059,-1.19925][-0.852257,-0.426961,-0.302263][0.413091,0.974949,0][-0.232148,0.332513,-1.01783][-0.53681,0.843183,0.0296172][0.383008,0.913985,0][-0.176716,0.37791,-1.30555][-0.0186145,-0.456968,-0.889288][0.471157,0.974949,0][-0.232148,0.332513,-1.01783][-0.53681,0.843183,0.0296172][0.383008,0.913985,0][-0.146649,0.36565,-1.03891][-0.211969,0.974857,0.0687241][0.412709,0.897418,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.247419,0.852681,0][-0.319967,0.331362,-1.19102][-0.934298,-0.23321,-0.269631][0.217925,0.865435,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.247419,0.852681,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.236003,0.412786,-1.0225][0.669035,-0.743068,-0.0155382][0.238612,0.794226,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.247419,0.852681,0][-0.236003,0.412786,-1.0225][0.669035,-0.743068,-0.0155382][0.238612,0.794226,0][-0.301829,0.365536,-0.974166][0.621562,-0.778712,0.0852557][0.270661,0.805859,0][-0.276593,0.31059,-1.19925][-0.852257,-0.426961,-0.302263][0.413091,0.974949,0][-0.337563,0.292297,-1.0015][-0.852257,-0.426961,-0.302263][0.348518,0.93662,0][-0.319188,0.303985,-0.952][-0.434781,0.899098,-0.0508823][0.342437,0.91804,0][-0.276593,0.31059,-1.19925][-0.852257,-0.426961,-0.302263][0.413091,0.974949,0][-0.319188,0.303985,-0.952][-0.434781,0.899098,-0.0508823][0.342437,0.91804,0][-0.232148,0.332513,-1.01783][-0.53681,0.843183,0.0296172][0.383008,0.913985,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.323301,0.816375,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.247419,0.852681,0][-0.301829,0.365536,-0.974166][0.621562,-0.778712,0.0852557][0.270661,0.805859,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.323301,0.816375,0][-0.301829,0.365536,-0.974166][0.621562,-0.778712,0.0852557][0.270661,0.805859,0][-0.342842,0.309398,-0.886424][0.381958,-0.849153,-0.364757][0.311078,0.804144,0][-0.337563,0.292297,-1.0015][-0.852257,-0.426961,-0.302263][0.348518,0.93662,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.306454,0.914462,0][-0.342842,0.309398,-0.886424][0.381958,-0.849153,-0.364757][0.320856,0.904885,0][-0.337563,0.292297,-1.0015][-0.852257,-0.426961,-0.302263][0.348518,0.93662,0][-0.342842,0.309398,-0.886424][0.381958,-0.849153,-0.364757][0.320856,0.904885,0][-0.319188,0.303985,-0.952][-0.434781,0.899098,-0.0508823][0.342437,0.91804,0][-0.262168,0.442083,-1.31438][-0.474098,-0.158429,-0.866101][0.391306,0.6979,0][-0.327341,0.36447,-1.1941][-0.934298,-0.23321,-0.269631][0.448424,0.697716,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][-0.262168,0.442083,-1.31438][-0.474098,-0.158429,-0.866101][0.391306,0.6979,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][-0.174654,0.574744,-1.38655][-0.377026,0.919896,0.107904][0.339651,0.722533,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.163189,0.484138,-1.22448][0.436763,-0.894138,-0.0987634][0.158257,0.811764,0][-0.147566,0.466234,-1.0635][0.46779,-0.872291,-0.142414][0.203695,0.774415,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.147566,0.466234,-1.0635][0.46779,-0.872291,-0.142414][0.203695,0.774415,0][-0.236003,0.412786,-1.0225][0.669035,-0.743068,-0.0155382][0.238612,0.794226,0][-0.327341,0.36447,-1.1941][-0.934298,-0.23321,-0.269631][0.448424,0.697716,0][-0.262168,0.442083,-1.31438][-0.474098,-0.158429,-0.866101][0.391306,0.6979,0][-0.250894,0.405318,-1.31382][-0.474098,-0.158429,-0.866101][0.39417,0.684252,0][-0.327341,0.36447,-1.1941][-0.934298,-0.23321,-0.269631][0.448424,0.697716,0][-0.250894,0.405318,-1.31382][-0.474098,-0.158429,-0.866101][0.39417,0.684252,0][-0.319967,0.331362,-1.19102][-0.934298,-0.23321,-0.269631][0.455098,0.686845,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.319967,0.331362,-1.19102][-0.934298,-0.23321,-0.269631][0.217925,0.865435,0][-0.250894,0.405318,-1.31382][-0.474098,-0.158429,-0.866101][0.160583,0.865435,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][-0.327341,0.36447,-1.1941][-0.934298,-0.23321,-0.269631][0.448424,0.697716,0][-0.348659,0.353338,-1.10998][-0.936136,-0.228311,-0.267439][0.477403,0.711986,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][-0.348659,0.353338,-1.10998][-0.936136,-0.228311,-0.267439][0.477403,0.711986,0][-0.20287,0.555397,-1.19317][-0.413408,0.873383,-0.257481][0.394649,0.761286,0][0,0.636961,-1.30937][-0.375239,0.920279,0.110822][0.307344,0.781011,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][-0.20287,0.555397,-1.19317][-0.413408,0.873383,-0.257481][0.394649,0.761286,0][0,0.636961,-1.30937][-0.375239,0.920279,0.110822][0.307344,0.781011,0][-0.20287,0.555397,-1.19317][-0.413408,0.873383,-0.257481][0.394649,0.761286,0][0,0.6418,-1.22582][-0.413408,0.873383,-0.257481][0.326295,0.804822,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.250894,0.405318,-1.31382][-0.474098,-0.158429,-0.866101][0.160583,0.865435,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.116166,0.846189,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.116166,0.846189,0][-0.163189,0.484138,-1.22448][0.436763,-0.894138,-0.0987634][0.158257,0.811764,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.116166,0.846189,0][0,0.582512,-1.39343][-0.00107123,-0.236582,-0.971611][0.067901,0.794118,0][0,0.566613,-1.24949][0.436763,-0.894138,-0.0987634][0.110997,0.76449,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.116166,0.846189,0][0,0.566613,-1.24949][0.436763,-0.894138,-0.0987634][0.110997,0.76449,0][-0.163189,0.484138,-1.22448][0.436763,-0.894138,-0.0987634][0.158257,0.811764,0][-0.208093,-0.0695008,-0.364725][-0.387089,-0.836854,0.387089][0.815984,0.448889,0][-0.120142,-0.0695008,-0.276774][-0.387089,-0.836854,0.387089][0.858503,0.449154,0][-0.221994,0.0592109,-0.100362][-0.387089,-0.836854,0.387089][0.869923,0.523425,0][-0.208093,-0.0695008,-0.364725][-0.387089,-0.836854,0.387089][0.815984,0.448889,0][-0.221994,0.0592109,-0.100362][-0.387089,-0.836854,0.387089][0.869923,0.523425,0][-0.384504,0.0592108,-0.262873][-0.387091,-0.836853,0.387088][0.802455,0.521508,0][-0.120142,-0.0695008,-0.276774][-0.387089,-0.836854,0.387089][0.858503,0.449154,0][0,-0.0695008,-0.244582][-0.141685,-0.836853,0.528774][0.896951,0.435719,0][0,0.0592109,-0.0408789][-0.141685,-0.836853,0.528774][0.938645,0.502704,0][-0.120142,-0.0695008,-0.276774][-0.387089,-0.836854,0.387089][0.858503,0.449154,0][0,0.0592109,-0.0408789][-0.141685,-0.836853,0.528774][0.938645,0.502704,0][-0.221994,0.0592109,-0.100362][-0.387089,-0.836854,0.387089][0.869923,0.523425,0][0,-0.0695008,-0.725151][-0.141685,-0.836854,-0.528773][0.702425,0.334379,0][-0.120142,-0.0695008,-0.692959][-0.141685,-0.836854,-0.528773][0.714303,0.375241,0][-0.221994,0.0592108,-0.869371][-0.141685,-0.836854,-0.528773][0.646018,0.407253,0][0,-0.0695008,-0.725151][-0.141685,-0.836854,-0.528773][0.702425,0.334379,0][-0.221994,0.0592108,-0.869371][-0.141685,-0.836854,-0.528773][0.646018,0.407253,0][0,0.0592109,-0.928855][-0.141686,-0.836854,-0.528772][0.623322,0.338746,0][-0.120142,-0.0695008,-0.692959][-0.141685,-0.836854,-0.528773][0.714303,0.375241,0][-0.208093,-0.0695008,-0.605009][-0.387088,-0.836853,-0.387092][0.73983,0.410089,0][-0.384504,0.0592108,-0.706861][-0.387088,-0.836853,-0.387092][0.686536,0.461374,0][-0.120142,-0.0695008,-0.692959][-0.141685,-0.836854,-0.528773][0.714303,0.375241,0][-0.384504,0.0592108,-0.706861][-0.387088,-0.836853,-0.387092][0.686536,0.461374,0][-0.221994,0.0592108,-0.869371][-0.141685,-0.836854,-0.528773][0.646018,0.407253,0][-0.208093,-0.0695008,-0.605009][-0.387088,-0.836853,-0.387092][0.73983,0.410089,0][-0.240284,-0.0695008,-0.484867][-0.528774,-0.836854,-0.14168][0.774996,0.435392,0][-0.443987,0.0592108,-0.484867][-0.528774,-0.836854,-0.14168][0.740018,0.500101,0][-0.208093,-0.0695008,-0.605009][-0.387088,-0.836853,-0.387092][0.73983,0.410089,0][-0.443987,0.0592108,-0.484867][-0.528774,-0.836854,-0.14168][0.740018,0.500101,0][-0.384504,0.0592108,-0.706861][-0.387088,-0.836853,-0.387092][0.686536,0.461374,0][-0.240284,-0.0695008,-0.484867][-0.528774,-0.836854,-0.14168][0.774996,0.435392,0][-0.208093,-0.0695008,-0.364725][-0.387089,-0.836854,0.387089][0.815984,0.448889,0][-0.384504,0.0592108,-0.262873][-0.387091,-0.836853,0.387088][0.802455,0.521508,0][-0.240284,-0.0695008,-0.484867][-0.528774,-0.836854,-0.14168][0.774996,0.435392,0][-0.384504,0.0592108,-0.262873][-0.387091,-0.836853,0.387088][0.802455,0.521508,0][-0.443987,0.0592108,-0.484867][-0.528774,-0.836854,-0.14168][0.740018,0.500101,0][-0.384504,0.0592108,-0.262873][-0.387091,-0.836853,0.387088][0.802455,0.521508,0][-0.221994,0.0592109,-0.100362][-0.387089,-0.836854,0.387089][0.869923,0.523425,0][-0.290049,0.251841,0.0175121][-0.584045,-0.563726,0.584041][0.876327,0.593507,0][-0.384504,0.0592108,-0.262873][-0.387091,-0.836853,0.387088][0.802455,0.521508,0][-0.290049,0.251841,0.0175121][-0.584045,-0.563726,0.584041][0.876327,0.593507,0][-0.502379,0.251841,-0.194818][-0.584042,-0.563729,0.584042][0.789318,0.588049,0][-0.221994,0.0592109,-0.100362][-0.387089,-0.836854,0.387089][0.869923,0.523425,0][0,0.0592109,-0.0408789][-0.141685,-0.836853,0.528774][0.938645,0.502704,0][0,0.25184,0.0952311][-0.213774,-0.56373,0.797815][0.968062,0.574789,0][-0.221994,0.0592109,-0.100362][-0.387089,-0.836854,0.387089][0.869923,0.523425,0][0,0.25184,0.0952311][-0.213774,-0.56373,0.797815][0.968062,0.574789,0][-0.290049,0.251841,0.0175121][-0.584045,-0.563726,0.584041][0.876327,0.593507,0][0,0.0592109,-0.928855][-0.141686,-0.836854,-0.528772][0.623322,0.338746,0][-0.221994,0.0592108,-0.869371][-0.141685,-0.836854,-0.528773][0.646018,0.407253,0][-0.290049,0.251841,-0.987246][-0.213777,-0.563729,-0.797815][0.585313,0.441949,0][0,0.0592109,-0.928855][-0.141686,-0.836854,-0.528772][0.623322,0.338746,0][-0.290049,0.251841,-0.987246][-0.213777,-0.563729,-0.797815][0.585313,0.441949,0][0,0.251841,-1.06496][-0.213776,-0.563728,-0.797816][0.548019,0.355783,0][-0.221994,0.0592108,-0.869371][-0.141685,-0.836854,-0.528773][0.646018,0.407253,0][-0.384504,0.0592108,-0.706861][-0.387088,-0.836853,-0.387092][0.686536,0.461374,0][-0.502379,0.251841,-0.774916][-0.584042,-0.563729,-0.584042][0.639667,0.510144,0][-0.221994,0.0592108,-0.869371][-0.141685,-0.836854,-0.528773][0.646018,0.407253,0][-0.502379,0.251841,-0.774916][-0.584042,-0.563729,-0.584042][0.639667,0.510144,0][-0.290049,0.251841,-0.987246][-0.213777,-0.563729,-0.797815][0.585313,0.441949,0][-0.384504,0.0592108,-0.706861][-0.387088,-0.836853,-0.387092][0.686536,0.461374,0][-0.443987,0.0592108,-0.484867][-0.528774,-0.836854,-0.14168][0.740018,0.500101,0][-0.580098,0.251841,-0.484867][-0.797815,-0.563731,-0.213773][0.709002,0.559642,0][-0.384504,0.0592108,-0.706861][-0.387088,-0.836853,-0.387092][0.686536,0.461374,0][-0.580098,0.251841,-0.484867][-0.797815,-0.563731,-0.213773][0.709002,0.559642,0][-0.502379,0.251841,-0.774916][-0.584042,-0.563729,-0.584042][0.639667,0.510144,0][-0.443987,0.0592108,-0.484867][-0.528774,-0.836854,-0.14168][0.740018,0.500101,0][-0.384504,0.0592108,-0.262873][-0.387091,-0.836853,0.387088][0.802455,0.521508,0][-0.502379,0.251841,-0.194818][-0.584042,-0.563729,0.584042][0.789318,0.588049,0][-0.443987,0.0592108,-0.484867][-0.528774,-0.836854,-0.14168][0.740018,0.500101,0][-0.502379,0.251841,-0.194818][-0.584042,-0.563729,0.584042][0.789318,0.588049,0][-0.580098,0.251841,-0.484867][-0.797815,-0.563731,-0.213773][0.709002,0.559642,0][-0.502379,0.251841,-0.194818][-0.584042,-0.563729,0.584042][0.789318,0.588049,0][-0.290049,0.251841,0.0175121][-0.584045,-0.563726,0.584041][0.876327,0.593507,0][-0.313947,0.479064,0.0589051][-0.692948,-0.199114,0.692948][0.879397,0.665468,0][-0.502379,0.251841,-0.194818][-0.584042,-0.563729,0.584042][0.789318,0.588049,0][-0.313947,0.479064,0.0589051][-0.692948,-0.199114,0.692948][0.879397,0.665468,0][-0.543771,0.479064,-0.17092][-0.69295,-0.199111,0.692947][0.774857,0.656789,0][-0.290049,0.251841,0.0175121][-0.584045,-0.563726,0.584041][0.876327,0.593507,0][0,0.25184,0.0952311][-0.213774,-0.56373,0.797815][0.968062,0.574789,0][0,0.479064,0.143027][-0.253639,-0.199111,0.946584][0.98482,0.649459,0][-0.290049,0.251841,0.0175121][-0.584045,-0.563726,0.584041][0.876327,0.593507,0][0,0.479064,0.143027][-0.253639,-0.199111,0.946584][0.98482,0.649459,0][-0.313947,0.479064,0.0589051][-0.692948,-0.199114,0.692948][0.879397,0.665468,0][0,0.251841,-1.06496][-0.213776,-0.563728,-0.797816][0.548019,0.355783,0][-0.290049,0.251841,-0.987246][-0.213777,-0.563729,-0.797815][0.585313,0.441949,0][-0.313947,0.479064,-1.02864][-0.253639,-0.19911,-0.946585][0.524748,0.481021,0][0,0.251841,-1.06496][-0.213776,-0.563728,-0.797816][0.548019,0.355783,0][-0.313947,0.479064,-1.02864][-0.253639,-0.19911,-0.946585][0.524748,0.481021,0][0,0.479064,-1.11276][-0.25364,-0.199112,-0.946584][0.477138,0.384967,0][-0.290049,0.251841,-0.987246][-0.213777,-0.563729,-0.797815][0.585313,0.441949,0][-0.502379,0.251841,-0.774916][-0.584042,-0.563729,-0.584042][0.639667,0.510144,0][-0.543771,0.479064,-0.798814][-0.692948,-0.199111,-0.692948][0.591998,0.561742,0][-0.290049,0.251841,-0.987246][-0.213777,-0.563729,-0.797815][0.585313,0.441949,0][-0.543771,0.479064,-0.798814][-0.692948,-0.199111,-0.692948][0.591998,0.561742,0][-0.313947,0.479064,-1.02864][-0.253639,-0.19911,-0.946585][0.524748,0.481021,0][-0.502379,0.251841,-0.774916][-0.584042,-0.563729,-0.584042][0.639667,0.510144,0][-0.580098,0.251841,-0.484867][-0.797815,-0.563731,-0.213773][0.709002,0.559642,0][-0.627894,0.479064,-0.484867][-0.946584,-0.199112,-0.253638][0.677025,0.621617,0][-0.502379,0.251841,-0.774916][-0.584042,-0.563729,-0.584042][0.639667,0.510144,0][-0.627894,0.479064,-0.484867][-0.946584,-0.199112,-0.253638][0.677025,0.621617,0][-0.543771,0.479064,-0.798814][-0.692948,-0.199111,-0.692948][0.591998,0.561742,0][-0.580098,0.251841,-0.484867][-0.797815,-0.563731,-0.213773][0.709002,0.559642,0][-0.502379,0.251841,-0.194818][-0.584042,-0.563729,0.584042][0.789318,0.588049,0][-0.543771,0.479064,-0.17092][-0.69295,-0.199111,0.692947][0.774857,0.656789,0][-0.580098,0.251841,-0.484867][-0.797815,-0.563731,-0.213773][0.709002,0.559642,0][-0.543771,0.479064,-0.17092][-0.69295,-0.199111,0.692947][0.774857,0.656789,0][-0.627894,0.479064,-0.484867][-0.946584,-0.199112,-0.253638][0.677025,0.621617,0][-0.543771,0.479064,-0.17092][-0.69295,-0.199111,0.692947][0.451077,0.425801,0][-0.313947,0.479064,0.0589051][-0.692948,-0.199114,0.692948][0.527316,0.512289,0][-0.290049,0.706287,0.0175121][-0.692949,0.199114,0.692946][0.462074,0.557001,0][-0.543771,0.479064,-0.17092][-0.69295,-0.199111,0.692947][0.451077,0.425801,0][-0.290049,0.706287,0.0175121][-0.692949,0.199114,0.692946][0.462074,0.557001,0][-0.502379,0.706286,-0.194818][-0.692948,0.199111,0.692948][0.400365,0.483857,0][-0.313947,0.479064,0.0589051][-0.692948,-0.199114,0.692948][0.527316,0.512289,0][0,0.479064,0.143027][-0.253639,-0.199111,0.946584][0.582479,0.616197,0][0,0.706287,0.0952311][-0.253637,0.199113,0.946585][0.50562,0.650379,0][-0.313947,0.479064,0.0589051][-0.692948,-0.199114,0.692948][0.527316,0.512289,0][0,0.706287,0.0952311][-0.253637,0.199113,0.946585][0.50562,0.650379,0][-0.290049,0.706287,0.0175121][-0.692949,0.199114,0.692946][0.462074,0.557001,0][0,0.479064,-1.11276][-0.25364,-0.199112,-0.946584][0.01749,0.341591,0][-0.313947,0.479064,-1.02864][-0.253639,-0.19911,-0.946585][0.132645,0.320807,0][-0.290049,0.706286,-0.987246][-0.25364,0.199111,-0.946584][0.138213,0.399651,0][0,0.479064,-1.11276][-0.25364,-0.199112,-0.946584][0.01749,0.341591,0][-0.290049,0.706286,-0.987246][-0.25364,0.199111,-0.946584][0.138213,0.399651,0][0,0.706287,-1.06496][-0.253639,0.199113,-0.946584][0.038156,0.422989,0][-0.313947,0.479064,-1.02864][-0.253639,-0.19911,-0.946585][0.132645,0.320807,0][-0.543771,0.479064,-0.798814][-0.692948,-0.199111,-0.692948][0.247585,0.327131,0][-0.502379,0.706286,-0.774916][-0.692948,0.199111,-0.692949][0.233824,0.402977,0][-0.313947,0.479064,-1.02864][-0.253639,-0.19911,-0.946585][0.132645,0.320807,0][-0.502379,0.706286,-0.774916][-0.692948,0.199111,-0.692949][0.233824,0.402977,0][-0.290049,0.706286,-0.987246][-0.25364,0.199111,-0.946584][0.138213,0.399651,0][-0.543771,0.479064,-0.798814][-0.692948,-0.199111,-0.692948][0.247585,0.327131,0][-0.627894,0.479064,-0.484867][-0.946584,-0.199112,-0.253638][0.355976,0.362721,0][-0.580098,0.706286,-0.484867][-0.946584,0.199113,-0.25364][0.322795,0.431682,0][-0.543771,0.479064,-0.798814][-0.692948,-0.199111,-0.692948][0.247585,0.327131,0][-0.580098,0.706286,-0.484867][-0.946584,0.199113,-0.25364][0.322795,0.431682,0][-0.502379,0.706286,-0.774916][-0.692948,0.199111,-0.692949][0.233824,0.402977,0][-0.627894,0.479064,-0.484867][-0.946584,-0.199112,-0.253638][0.355976,0.362721,0][-0.543771,0.479064,-0.17092][-0.69295,-0.199111,0.692947][0.451077,0.425801,0][-0.502379,0.706286,-0.194818][-0.692948,0.199111,0.692948][0.400365,0.483857,0][-0.627894,0.479064,-0.484867][-0.946584,-0.199112,-0.253638][0.355976,0.362721,0][-0.502379,0.706286,-0.194818][-0.692948,0.199111,0.692948][0.400365,0.483857,0][-0.580098,0.706286,-0.484867][-0.946584,0.199113,-0.25364][0.322795,0.431682,0][-0.502379,0.706286,-0.194818][-0.692948,0.199111,0.692948][0.400365,0.483857,0][-0.290049,0.706287,0.0175121][-0.692949,0.199114,0.692946][0.462074,0.557001,0][-0.221994,0.898918,-0.100362][-0.584045,0.563723,0.584045][0.396546,0.596918,0][-0.502379,0.706286,-0.194818][-0.692948,0.199111,0.692948][0.400365,0.483857,0][-0.221994,0.898918,-0.100362][-0.584045,0.563723,0.584045][0.396546,0.596918,0][-0.384504,0.898918,-0.262873][-0.584046,0.563725,0.584042][0.350444,0.53879,0][-0.290049,0.706287,0.0175121][-0.692949,0.199114,0.692946][0.462074,0.557001,0][0,0.706287,0.0952311][-0.253637,0.199113,0.946585][0.50562,0.650379,0][-1.30065e-007,0.898918,-0.0408789][-0.213777,0.563724,0.797819][0.423537,0.671373,0][-0.290049,0.706287,0.0175121][-0.692949,0.199114,0.692946][0.462074,0.557001,0][-1.30065e-007,0.898918,-0.0408789][-0.213777,0.563724,0.797819][0.423537,0.671373,0][-0.221994,0.898918,-0.100362][-0.584045,0.563723,0.584045][0.396546,0.596918,0][0,0.706287,-1.06496][-0.253639,0.199113,-0.946584][0.038156,0.422989,0][-0.290049,0.706286,-0.987246][-0.25364,0.199111,-0.946584][0.138213,0.399651,0][-0.221994,0.898918,-0.869371][-0.213777,0.563725,-0.797818][0.147381,0.476332,0][0,0.706287,-1.06496][-0.253639,0.199113,-0.946584][0.038156,0.422989,0][-0.221994,0.898918,-0.869371][-0.213777,0.563725,-0.797818][0.147381,0.476332,0][-1.30065e-007,0.898919,-0.928854][-0.213777,0.563725,-0.797818][0.07263,0.501165,0][-0.290049,0.706286,-0.987246][-0.25364,0.199111,-0.946584][0.138213,0.399651,0][-0.502379,0.706286,-0.774916][-0.692948,0.199111,-0.692949][0.233824,0.402977,0][-0.384504,0.898918,-0.706861][-0.584044,0.563725,-0.584044][0.221448,0.476373,0][-0.290049,0.706286,-0.987246][-0.25364,0.199111,-0.946584][0.138213,0.399651,0][-0.384504,0.898918,-0.706861][-0.584044,0.563725,-0.584044][0.221448,0.476373,0][-0.221994,0.898918,-0.869371][-0.213777,0.563725,-0.797818][0.147381,0.476332,0][-0.502379,0.706286,-0.774916][-0.692948,0.199111,-0.692949][0.233824,0.402977,0][-0.580098,0.706286,-0.484867][-0.946584,0.199113,-0.25364][0.322795,0.431682,0][-0.443987,0.898918,-0.484867][-0.797817,0.563727,-0.213776][0.290593,0.497945,0][-0.502379,0.706286,-0.774916][-0.692948,0.199111,-0.692949][0.233824,0.402977,0][-0.443987,0.898918,-0.484867][-0.797817,0.563727,-0.213776][0.290593,0.497945,0][-0.384504,0.898918,-0.706861][-0.584044,0.563725,-0.584044][0.221448,0.476373,0][-0.580098,0.706286,-0.484867][-0.946584,0.199113,-0.25364][0.322795,0.431682,0][-0.502379,0.706286,-0.194818][-0.692948,0.199111,0.692948][0.400365,0.483857,0][-0.384504,0.898918,-0.262873][-0.584046,0.563725,0.584042][0.350444,0.53879,0][-0.580098,0.706286,-0.484867][-0.946584,0.199113,-0.25364][0.322795,0.431682,0][-0.384504,0.898918,-0.262873][-0.584046,0.563725,0.584042][0.350444,0.53879,0][-0.443987,0.898918,-0.484867][-0.797817,0.563727,-0.213776][0.290593,0.497945,0][-0.384504,0.898918,-0.262873][-0.584046,0.563725,0.584042][0.350444,0.53879,0][-0.221994,0.898918,-0.100362][-0.584045,0.563723,0.584045][0.396546,0.596918,0][-0.120142,1.02763,-0.276774][-0.387088,0.836855,0.387086][0.322621,0.634123,0][-0.384504,0.898918,-0.262873][-0.584046,0.563725,0.584042][0.350444,0.53879,0][-0.120142,1.02763,-0.276774][-0.387088,0.836855,0.387086][0.322621,0.634123,0][-0.208093,1.02763,-0.364725][-0.387088,0.836855,0.387088][0.293552,0.596678,0][-0.221994,0.898918,-0.100362][-0.584045,0.563723,0.584045][0.396546,0.596918,0][-1.30065e-007,0.898918,-0.0408789][-0.213777,0.563724,0.797819][0.423537,0.671373,0][-1.495e-007,1.02763,-0.244582][-0.141684,0.836855,0.528771][0.3369,0.678582,0][-0.221994,0.898918,-0.100362][-0.584045,0.563723,0.584045][0.396546,0.596918,0][-1.495e-007,1.02763,-0.244582][-0.141684,0.836855,0.528771][0.3369,0.678582,0][-0.120142,1.02763,-0.276774][-0.387088,0.836855,0.387086][0.322621,0.634123,0][-1.30065e-007,0.898919,-0.928854][-0.213777,0.563725,-0.797818][0.07263,0.501165,0][-0.221994,0.898918,-0.869371][-0.213777,0.563725,-0.797818][0.147381,0.476332,0][-0.120142,1.02763,-0.692959][-0.141687,0.836856,-0.52877][0.162179,0.557456,0][-1.30065e-007,0.898919,-0.928854][-0.213777,0.563725,-0.797818][0.07263,0.501165,0][-0.120142,1.02763,-0.692959][-0.141687,0.836856,-0.52877][0.162179,0.557456,0][-1.495e-007,1.02763,-0.725151][-0.141683,0.836857,-0.528768][0.120414,0.573369,0][-0.221994,0.898918,-0.869371][-0.213777,0.563725,-0.797818][0.147381,0.476332,0][-0.384504,0.898918,-0.706861][-0.584044,0.563725,-0.584044][0.221448,0.476373,0][-0.208093,1.02763,-0.605009][-0.387088,0.836855,-0.387088][0.208828,0.556445,0][-0.221994,0.898918,-0.869371][-0.213777,0.563725,-0.797818][0.147381,0.476332,0][-0.208093,1.02763,-0.605009][-0.387088,0.836855,-0.387088][0.208828,0.556445,0][-0.120142,1.02763,-0.692959][-0.141687,0.836856,-0.52877][0.162179,0.557456,0][-0.384504,0.898918,-0.706861][-0.584044,0.563725,-0.584044][0.221448,0.476373,0][-0.443987,0.898918,-0.484867][-0.797817,0.563727,-0.213776][0.290593,0.497945,0][-0.240284,1.02763,-0.484867][-0.528771,0.836855,-0.141684][0.254203,0.569997,0][-0.384504,0.898918,-0.706861][-0.584044,0.563725,-0.584044][0.221448,0.476373,0][-0.240284,1.02763,-0.484867][-0.528771,0.836855,-0.141684][0.254203,0.569997,0][-0.208093,1.02763,-0.605009][-0.387088,0.836855,-0.387088][0.208828,0.556445,0][-0.443987,0.898918,-0.484867][-0.797817,0.563727,-0.213776][0.290593,0.497945,0][-0.384504,0.898918,-0.262873][-0.584046,0.563725,0.584042][0.350444,0.53879,0][-0.208093,1.02763,-0.364725][-0.387088,0.836855,0.387088][0.293552,0.596678,0][-0.443987,0.898918,-0.484867][-0.797817,0.563727,-0.213776][0.290593,0.497945,0][-0.208093,1.02763,-0.364725][-0.387088,0.836855,0.387088][0.293552,0.596678,0][-0.240284,1.02763,-0.484867][-0.528771,0.836855,-0.141684][0.254203,0.569997,0][-0.208093,1.02763,-0.364725][-0.387088,0.836855,0.387088][0.293552,0.596678,0][-0.120142,1.02763,-0.276774][-0.387088,0.836855,0.387086][0.322621,0.634123,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.2369,0.670661,0][-0.120142,1.02763,-0.276774][-0.387088,0.836855,0.387086][0.322621,0.634123,0][-1.495e-007,1.02763,-0.244582][-0.141684,0.836855,0.528771][0.3369,0.678582,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.245239,0.683499,0][-1.495e-007,1.02763,-0.725151][-0.141683,0.836857,-0.528768][0.120414,0.573369,0][-0.120142,1.02763,-0.692959][-0.141687,0.836856,-0.52877][0.162179,0.557456,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.17155,0.64481,0][-0.120142,1.02763,-0.692959][-0.141687,0.836856,-0.52877][0.162179,0.557456,0][-0.208093,1.02763,-0.605009][-0.387088,0.836855,-0.387088][0.208828,0.556445,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.187424,0.645633,0][-0.208093,1.02763,-0.605009][-0.387088,0.836855,-0.387088][0.208828,0.556445,0][-0.240284,1.02763,-0.484867][-0.528771,0.836855,-0.141684][0.254203,0.569997,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.205753,0.649482,0][-0.240284,1.02763,-0.484867][-0.528771,0.836855,-0.141684][0.254203,0.569997,0][-0.208093,1.02763,-0.364725][-0.387088,0.836855,0.387088][0.293552,0.596678,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.223155,0.658145,0][1.56325e-007,-0.997757,-0.924002][-0.145697,-0.736772,-0.660258][0.059946,0,0][-0.407561,-0.997757,-0.834067][-0.145697,-0.736772,-0.660258][0.18279,0.035281,0][-0.499972,-0.789165,-1.04644][-0.145697,-0.736772,-0.660258][0.158647,0.117501,0][1.56325e-007,-0.997757,-0.924002][-0.145697,-0.736772,-0.660258][0.059946,0,0][-0.499972,-0.789165,-1.04644][-0.145697,-0.736772,-0.660258][0.158647,0.117501,0][1.24828e-007,-0.789165,-1.15677][-0.145697,-0.736773,-0.660256][0.019926,0.085008,0][1.24828e-007,-0.789165,-1.15677][-0.145697,-0.736773,-0.660256][0.019926,0.085008,0][-0.499972,-0.789165,-1.04644][-0.145697,-0.736772,-0.660258][0.158647,0.117501,0][-0.530576,-0.546867,-1.11677][-0.205783,-0.296678,-0.932543][0.148749,0.179852,0][1.24828e-007,-0.789165,-1.15677][-0.145697,-0.736773,-0.660256][0.019926,0.085008,0][-0.530576,-0.546867,-1.11677][-0.205783,-0.296678,-0.932543][0.148749,0.179852,0][0,-0.546868,-1.23385][-0.205782,-0.296678,-0.932543][0,0.160878,0][0,-0.546868,-1.23385][-0.205782,-0.296678,-0.932543][0,0.160878,0][-0.530576,-0.546867,-1.11677][-0.205783,-0.296678,-0.932543][0.148749,0.179852,0][-0.499972,-0.304568,-1.04644][-0.205782,0.296677,-0.932543][0.147258,0.244852,0][0,-0.546868,-1.23385][-0.205782,-0.296678,-0.932543][0,0.160878,0][-0.499972,-0.304568,-1.04644][-0.205782,0.296677,-0.932543][0.147258,0.244852,0][0,-0.304568,-1.15677][-0.205783,0.296674,-0.932544][0.00031,0.239113,0][0,-0.304568,-1.15677][-0.205783,0.296674,-0.932544][0.00031,0.239113,0][-0.499972,-0.304568,-1.04644][-0.205782,0.296677,-0.932543][0.147258,0.244852,0][-0.429374,-0.141697,-0.942974][-0.175392,0.580941,-0.794824][0.143496,0.302722,0][0,-0.304568,-1.15677][-0.205783,0.296674,-0.932544][0.00031,0.239113,0][-0.429374,-0.141697,-0.942974][-0.175392,0.580941,-0.794824][0.143496,0.302722,0][0,-0.141697,-1.03809][-0.176233,0.579684,-0.795555][0.00748,0.301032,0][0,-0.141697,-1.03809][-0.176233,0.579684,-0.795555][0.988246,0.830177,0][-0.429374,-0.141697,-0.942974][-0.175392,0.580941,-0.794824][0.964636,0.912688,0][-0.328856,-0.021594,-0.693246][-0.0891249,0.911147,-0.402329][0.912807,0.888485,0][0,-0.141697,-1.03809][-0.176233,0.579684,-0.795555][0.988246,0.830177,0][-0.328856,-0.021594,-0.693246][-0.0891249,0.911147,-0.402329][0.912807,0.888485,0][0,-0.00861444,-0.782325][-0.158033,0.875949,-0.455783][0.932082,0.825226,0][0,0.0957862,0.00374914][-0.137496,0.989918,-0.0340115][0.776792,0.822001,0][-0.347371,0.047516,0.00311714][-0.137496,0.989918,-0.0340115][0.7776,0.890066,0][-0.323678,0.064973,0.415428][-0.137496,0.989918,-0.0340115][0.698022,0.886122,0][0,0.0957862,0.00374914][-0.137496,0.989918,-0.0340115][0.776792,0.822001,0][-0.323678,0.064973,0.415428][-0.137496,0.989918,-0.0340115][0.698022,0.886122,0][0,0.110834,0.39975][-0.141972,0.989157,-0.037588][0.699519,0.822756,0][-0.379894,0.0200702,0.747827][-0.21953,0.975494,0.0147718][0.634145,0.900326,0][0,0.103121,0.909119][-0.21953,0.975494,0.0147718][0.600438,0.825981,0][0,0.110834,0.39975][-0.141972,0.989157,-0.037588][0.699519,0.822756,0][-0.379894,0.0200702,0.747827][-0.21953,0.975494,0.0147718][0.634145,0.900326,0][0,0.110834,0.39975][-0.141972,0.989157,-0.037588][0.699519,0.822756,0][-0.323678,0.064973,0.415428][-0.137496,0.989918,-0.0340115][0.698022,0.886122,0][0,0.14663,1.29137][-0.648847,0.648429,0.398168][0.984306,0.373164,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.807563,0.322664,0][-0.553427,-0.304568,1.12431][-0.648847,0.648429,0.398168][0.812325,0.242761,0][0,-0.304568,1.36188][-0.378615,0.280594,0.881996][0.990064,0.233902,0][-0.553427,-0.304568,1.12431][-0.648847,0.648429,0.398168][0.812325,0.242761,0][-0.587303,-0.546867,1.18685][-0.378615,0.280594,0.881996][0.812186,0.17617,0][0,-0.304568,1.36188][-0.378615,0.280594,0.881996][0.990064,0.233902,0][-0.587303,-0.546867,1.18685][-0.378615,0.280594,0.881996][0.812186,0.17617,0][0,-0.546868,1.39309][-0.328918,0.120678,0.936616][0.989042,0.1566,0][0,-0.546868,1.39309][-0.328918,0.120678,0.936616][0.989042,0.1566,0][-0.587303,-0.546867,1.18685][-0.378615,0.280594,0.881996][0.812186,0.17617,0][-0.553427,-0.789165,1.12431][-0.31824,-0.278404,0.906209][0.802336,0.111517,0][0,-0.546868,1.39309][-0.328918,0.120678,0.936616][0.989042,0.1566,0][-0.553427,-0.789165,1.12431][-0.31824,-0.278404,0.906209][0.802336,0.111517,0][1.24829e-007,-0.789167,1.32727][-0.333644,-0.247126,0.909731][0.969027,0.079254,0][1.24829e-007,-0.789167,1.32727][-0.333644,-0.247126,0.909731][0.969027,0.079254,0][-0.553427,-0.789165,1.12431][-0.31824,-0.278404,0.906209][0.802336,0.111517,0][-0.451135,-0.997757,0.935451][-0.241189,-0.713684,0.657634][0.779464,0.029921,0][1.24829e-007,-0.789167,1.32727][-0.333644,-0.247126,0.909731][0.969027,0.079254,0][-0.451135,-0.997757,0.935451][-0.241189,-0.713684,0.657634][0.779464,0.029921,0][1.56325e-007,-0.997757,1.12911][-0.297162,-0.657642,0.692244][0.928433,0,0][1.56325e-007,-0.997757,1.12911][-0.297162,-0.657642,0.692244][0.588979,0.812006,0][-0.451135,-0.997757,0.935451][-0.241189,-0.713684,0.657634][0.626479,0.72465,0][-0.679464,-0.997757,0.459542][0,-1,0][0.718633,0.680437,0][1.56325e-007,-0.997757,1.12911][-0.297162,-0.657642,0.692244][0.588979,0.812006,0][-0.679464,-0.997757,0.459542][0,-1,0][0.718633,0.680437,0][1.56325e-007,-0.997757,0.459542][1.75446e-007,-1,0][0.718633,0.812007,0][1.56325e-007,-0.997757,0.459542][1.75446e-007,-1,0][0.718633,0.812007,0][-0.679464,-0.997757,0.459542][0,-1,0][0.718633,0.680437,0][-0.746653,-0.997757,0.00270119][1.75446e-007,-1,0][0.807094,0.667427,0][1.56325e-007,-0.997757,0.459542][1.75446e-007,-1,0][0.718633,0.812007,0][-0.746653,-0.997757,0.00270119][1.75446e-007,-1,0][0.807094,0.667427,0][1.56325e-007,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.812007,0][1.56325e-007,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.812007,0][-0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.680606,0][-0.407561,-0.997757,-0.834067][-0.145697,-0.736772,-0.660258][0.969123,0.733088,0][1.56325e-007,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.812007,0][-0.407561,-0.997757,-0.834067][-0.145697,-0.736772,-0.660258][0.969123,0.733088,0][1.56325e-007,-0.997757,-0.924002][-0.145697,-0.736772,-0.660258][0.986538,0.812007,0][-0.679464,-0.997757,0.459542][0,-1,0][0.614797,0.033746,0][-0.451135,-0.997757,0.935451][-0.241189,-0.713684,0.657634][0.779464,0.029921,0][-0.553427,-0.789165,1.12431][-0.31824,-0.278404,0.906209][0.802336,0.111517,0][-0.679464,-0.997757,0.459542][0,-1,0][0.614797,0.033746,0][-0.553427,-0.789165,1.12431][-0.31824,-0.278404,0.906209][0.802336,0.111517,0][-0.833527,-0.789165,0.607587][-0.625527,-0.702666,0.339083][0.642439,0.116156,0][-0.746653,-0.997757,0.00270119][1.75446e-007,-1,0][0.468852,0.038255,0][-0.679464,-0.997757,0.459542][0,-1,0][0.614797,0.033746,0][-0.833527,-0.789165,0.607587][-0.625527,-0.702666,0.339083][0.642439,0.116156,0][-0.746653,-0.997757,0.00270119][1.75446e-007,-1,0][0.468852,0.038255,0][-0.833527,-0.789165,0.607587][-0.625527,-0.702666,0.339083][0.642439,0.116156,0][-0.915951,-0.789165,0.00174517][-0.772383,-0.626404,0.105082][0.469108,0.117792,0][-0.407561,-0.997757,-0.834067][-0.145697,-0.736772,-0.660258][0.18279,0.035281,0][-0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.325927,0.041277,0][-0.83246,-0.789165,-0.614746][-0.560936,-0.727808,-0.394521][0.298707,0.123146,0][-0.407561,-0.997757,-0.834067][-0.145697,-0.736772,-0.660258][0.18279,0.035281,0][-0.83246,-0.789165,-0.614746][-0.560936,-0.727808,-0.394521][0.298707,0.123146,0][-0.499972,-0.789165,-1.04644][-0.145697,-0.736772,-0.660258][0.158647,0.117501,0][-0.833527,-0.789165,0.607587][-0.625527,-0.702666,0.339083][0.642439,0.116156,0][-0.553427,-0.789165,1.12431][-0.31824,-0.278404,0.906209][0.802336,0.111517,0][-0.587303,-0.546867,1.18685][-0.378615,0.280594,0.881996][0.812186,0.17617,0][-0.833527,-0.789165,0.607587][-0.625527,-0.702666,0.339083][0.642439,0.116156,0][-0.587303,-0.546867,1.18685][-0.378615,0.280594,0.881996][0.812186,0.17617,0][-0.884548,-0.546867,0.656615][-0.839404,-0.271971,0.470565][0.652545,0.184563,0][-0.915951,-0.789165,0.00174517][-0.772383,-0.626404,0.105082][0.469108,0.117792,0][-0.833527,-0.789165,0.607587][-0.625527,-0.702666,0.339083][0.642439,0.116156,0][-0.884548,-0.546867,0.656615][-0.839404,-0.271971,0.470565][0.652545,0.184563,0][-0.915951,-0.789165,0.00174517][-0.772383,-0.626404,0.105082][0.469108,0.117792,0][-0.884548,-0.546867,0.656615][-0.839404,-0.271971,0.470565][0.652545,0.184563,0][-0.972017,-0.546867,0.00142816][-0.966157,-0.223393,0.128984][0.469923,0.187939,0][-0.499972,-0.789165,-1.04644][-0.145697,-0.736772,-0.660258][0.158647,0.117501,0][-0.83246,-0.789165,-0.614746][-0.560936,-0.727808,-0.394521][0.298707,0.123146,0][-0.883416,-0.546867,-0.669733][-0.757772,-0.291811,-0.583633][0.289458,0.187739,0][-0.499972,-0.789165,-1.04644][-0.145697,-0.736772,-0.660258][0.158647,0.117501,0][-0.883416,-0.546867,-0.669733][-0.757772,-0.291811,-0.583633][0.289458,0.187739,0][-0.530576,-0.546867,-1.11677][-0.205783,-0.296678,-0.932543][0.148749,0.179852,0][-0.884548,-0.546867,0.656615][-0.839404,-0.271971,0.470565][0.652545,0.184563,0][-0.587303,-0.546867,1.18685][-0.378615,0.280594,0.881996][0.812186,0.17617,0][-0.553427,-0.304568,1.12431][-0.648847,0.648429,0.398168][0.812325,0.242761,0][-0.884548,-0.546867,0.656615][-0.839404,-0.271971,0.470565][0.652545,0.184563,0][-0.553427,-0.304568,1.12431][-0.648847,0.648429,0.398168][0.812325,0.242761,0][-0.833527,-0.304568,0.607587][-0.84624,0.271014,0.458726][0.647,0.254393,0][-0.972017,-0.546867,0.00142816][-0.966157,-0.223393,0.128984][0.469923,0.187939,0][-0.884548,-0.546867,0.656615][-0.839404,-0.271971,0.470565][0.652545,0.184563,0][-0.833527,-0.304568,0.607587][-0.84624,0.271014,0.458726][0.647,0.254393,0][-0.972017,-0.546867,0.00142816][-0.966157,-0.223393,0.128984][0.469923,0.187939,0][-0.833527,-0.304568,0.607587][-0.84624,0.271014,0.458726][0.647,0.254393,0][-0.915951,-0.304568,0.00174515][-0.965848,0.223317,0.131402][0.470082,0.258416,0][-0.530576,-0.546867,-1.11677][-0.205783,-0.296678,-0.932543][0.148749,0.179852,0][-0.883416,-0.546867,-0.669733][-0.757772,-0.291811,-0.583633][0.289458,0.187739,0][-0.83246,-0.304568,-0.614746][-0.750667,0.292326,-0.592491][0.294551,0.253712,0][-0.530576,-0.546867,-1.11677][-0.205783,-0.296678,-0.932543][0.148749,0.179852,0][-0.83246,-0.304568,-0.614746][-0.750667,0.292326,-0.592491][0.294551,0.253712,0][-0.499972,-0.304568,-1.04644][-0.205782,0.296677,-0.932543][0.147258,0.244852,0][-0.833527,-0.304568,0.607587][-0.84624,0.271014,0.458726][0.647,0.254393,0][-0.553427,-0.304568,1.12431][-0.648847,0.648429,0.398168][0.812325,0.242761,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.807563,0.322664,0][-0.833527,-0.304568,0.607587][-0.84624,0.271014,0.458726][0.647,0.254393,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.807563,0.322664,0][-0.718595,-0.116742,0.528267][-0.691722,0.595683,0.408268][0.638082,0.323364,0][-0.915951,-0.304568,0.00174515][-0.965848,0.223317,0.131402][0.470082,0.258416,0][-0.833527,-0.304568,0.607587][-0.84624,0.271014,0.458726][0.647,0.254393,0][-0.718595,-0.116742,0.528267][-0.691722,0.595683,0.408268][0.638082,0.323364,0][-0.915951,-0.304568,0.00174515][-0.965848,0.223317,0.131402][0.470082,0.258416,0][-0.718595,-0.116742,0.528267][-0.691722,0.595683,0.408268][0.638082,0.323364,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.469315,0.324285,0][-0.499972,-0.304568,-1.04644][-0.205782,0.296677,-0.932543][0.147258,0.244852,0][-0.83246,-0.304568,-0.614746][-0.750667,0.292326,-0.592491][0.294551,0.253712,0][-0.717676,-0.13189,-0.539266][-0.620653,0.621517,-0.478024][0.29819,0.316682,0][-0.499972,-0.304568,-1.04644][-0.205782,0.296677,-0.932543][0.147258,0.244852,0][-0.717676,-0.13189,-0.539266][-0.620653,0.621517,-0.478024][0.29819,0.316682,0][-0.429374,-0.141697,-0.942974][-0.175392,0.580941,-0.794824][0.143496,0.302722,0][-0.328856,-0.021594,-0.693246][-0.0891249,0.911147,-0.402329][0.912807,0.888485,0][-0.429374,-0.141697,-0.942974][-0.175392,0.580941,-0.794824][0.964636,0.912688,0][-0.717676,-0.13189,-0.539266][-0.620653,0.621517,-0.478024][0.884865,0.967652,0][-0.328856,-0.021594,-0.693246][-0.0891249,0.911147,-0.402329][0.912807,0.888485,0][-0.717676,-0.13189,-0.539266][-0.620653,0.621517,-0.478024][0.884865,0.967652,0][-0.529325,-0.0271139,-0.462165][-0.367915,0.880768,-0.298137][0.867963,0.926576,0][-0.554202,0.00972374,0.462732][-0.502936,0.864308,0.00515395][0.689958,0.931647,0][-0.595328,-0.0114631,0.00255414][-0.502936,0.864308,0.00515395][0.778306,0.939277,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.779396,0.982912,0][-0.554202,0.00972374,0.462732][-0.502936,0.864308,0.00515395][0.689958,0.931647,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.779396,0.982912,0][-0.718595,-0.116742,0.528267][-0.691722,0.595683,0.408268][0.676461,0.971346,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.58549,0.919903,0][-0.379894,0.0200702,0.747827][-0.21953,0.975494,0.0147718][0.634145,0.900326,0][-0.554202,0.00972374,0.462732][-0.502936,0.864308,0.00515395][0.689958,0.931647,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.58549,0.919903,0][-0.554202,0.00972374,0.462732][-0.502936,0.864308,0.00515395][0.689958,0.931647,0][-0.718595,-0.116742,0.528267][-0.691722,0.595683,0.408268][0.676461,0.971346,0][-0.554202,0.00972374,0.462732][-0.502936,0.864308,0.00515395][0.689958,0.931647,0][-0.379894,0.0200702,0.747827][-0.21953,0.975494,0.0147718][0.634145,0.900326,0][-0.323678,0.064973,0.415428][-0.137496,0.989918,-0.0340115][0.698022,0.886122,0][-0.323678,0.064973,0.415428][-0.137496,0.989918,-0.0340115][0.698022,0.886122,0][-0.347371,0.047516,0.00311714][-0.137496,0.989918,-0.0340115][0.7776,0.890066,0][-0.595328,-0.0114631,0.00255414][-0.502936,0.864308,0.00515395][0.778306,0.939277,0][-0.323678,0.064973,0.415428][-0.137496,0.989918,-0.0340115][0.698022,0.886122,0][-0.595328,-0.0114631,0.00255414][-0.502936,0.864308,0.00515395][0.778306,0.939277,0][-0.554202,0.00972374,0.462732][-0.502936,0.864308,0.00515395][0.689958,0.931647,0][-0.308571,0.0310527,-0.388919][-0.203772,0.966881,-0.153682][0.853425,0.882687,0][-0.328856,-0.021594,-0.693246][-0.0891249,0.911147,-0.402329][0.912807,0.888485,0][-0.529325,-0.0271139,-0.462165][-0.367915,0.880768,-0.298137][0.867963,0.926576,0][0,-0.00861444,-0.782325][-0.158033,0.875949,-0.455783][0.932082,0.825226,0][-0.328856,-0.021594,-0.693246][-0.0891249,0.911147,-0.402329][0.912807,0.888485,0][-0.308571,0.0310527,-0.388919][-0.203772,0.966881,-0.153682][0.853425,0.882687,0][0,-0.00861444,-0.782325][-0.158033,0.875949,-0.455783][0.932082,0.825226,0][-0.308571,0.0310527,-0.388919][-0.203772,0.966881,-0.153682][0.853425,0.882687,0][0,0.0815955,-0.382883][-0.153618,0.963856,-0.217677][0.852241,0.821973,0][0,0.103121,0.909119][-0.21953,0.975494,0.0147718][0.600438,0.825981,0][-0.379894,0.0200702,0.747827][-0.21953,0.975494,0.0147718][0.634145,0.900326,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.58549,0.919903,0][0,0.103121,0.909119][-0.21953,0.975494,0.0147718][0.600438,0.825981,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.58549,0.919903,0][0,0.14663,1.29137][-0.648847,0.648429,0.398168][0.525402,0.821973,0][0,0.0815955,-0.382883][-0.153618,0.963856,-0.217677][0.852241,0.821973,0][-0.308571,0.0310527,-0.388919][-0.203772,0.966881,-0.153682][0.853425,0.882687,0][-0.347371,0.047516,0.00311714][-0.137496,0.989918,-0.0340115][0.7776,0.890066,0][0,0.0815955,-0.382883][-0.153618,0.963856,-0.217677][0.852241,0.821973,0][-0.347371,0.047516,0.00311714][-0.137496,0.989918,-0.0340115][0.7776,0.890066,0][0,0.0957862,0.00374914][-0.137496,0.989918,-0.0340115][0.776792,0.822001,0][-0.595328,-0.0114631,0.00255414][-0.502936,0.864308,0.00515395][0.778306,0.939277,0][-0.347371,0.047516,0.00311714][-0.137496,0.989918,-0.0340115][0.7776,0.890066,0][-0.308571,0.0310527,-0.388919][-0.203772,0.966881,-0.153682][0.853425,0.882687,0][-0.595328,-0.0114631,0.00255414][-0.502936,0.864308,0.00515395][0.778306,0.939277,0][-0.308571,0.0310527,-0.388919][-0.203772,0.966881,-0.153682][0.853425,0.882687,0][-0.529325,-0.0271139,-0.462165][-0.367915,0.880768,-0.298137][0.867963,0.926576,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.779396,0.982912,0][-0.595328,-0.0114631,0.00255414][-0.502936,0.864308,0.00515395][0.778306,0.939277,0][-0.529325,-0.0271139,-0.462165][-0.367915,0.880768,-0.298137][0.867963,0.926576,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.779396,0.982912,0][-0.529325,-0.0271139,-0.462165][-0.367915,0.880768,-0.298137][0.867963,0.926576,0][-0.717676,-0.13189,-0.539266][-0.620653,0.621517,-0.478024][0.884865,0.967652,0][-0.83246,-0.304568,-0.614746][-0.750667,0.292326,-0.592491][0.294551,0.253712,0][-0.915951,-0.304568,0.00174515][-0.965848,0.223317,0.131402][0.470082,0.258416,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.469315,0.324285,0][-0.83246,-0.304568,-0.614746][-0.750667,0.292326,-0.592491][0.294551,0.253712,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.469315,0.324285,0][-0.717676,-0.13189,-0.539266][-0.620653,0.621517,-0.478024][0.29819,0.316682,0][-0.883416,-0.546867,-0.669733][-0.757772,-0.291811,-0.583633][0.289458,0.187739,0][-0.972017,-0.546867,0.00142816][-0.966157,-0.223393,0.128984][0.469923,0.187939,0][-0.915951,-0.304568,0.00174515][-0.965848,0.223317,0.131402][0.470082,0.258416,0][-0.883416,-0.546867,-0.669733][-0.757772,-0.291811,-0.583633][0.289458,0.187739,0][-0.915951,-0.304568,0.00174515][-0.965848,0.223317,0.131402][0.470082,0.258416,0][-0.83246,-0.304568,-0.614746][-0.750667,0.292326,-0.592491][0.294551,0.253712,0][-0.83246,-0.789165,-0.614746][-0.560936,-0.727808,-0.394521][0.298707,0.123146,0][-0.915951,-0.789165,0.00174517][-0.772383,-0.626404,0.105082][0.469108,0.117792,0][-0.972017,-0.546867,0.00142816][-0.966157,-0.223393,0.128984][0.469923,0.187939,0][-0.83246,-0.789165,-0.614746][-0.560936,-0.727808,-0.394521][0.298707,0.123146,0][-0.972017,-0.546867,0.00142816][-0.966157,-0.223393,0.128984][0.469923,0.187939,0][-0.883416,-0.546867,-0.669733][-0.757772,-0.291811,-0.583633][0.289458,0.187739,0][-0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.325927,0.041277,0][-0.746653,-0.997757,0.00270119][1.75446e-007,-1,0][0.468852,0.038255,0][-0.915951,-0.789165,0.00174517][-0.772383,-0.626404,0.105082][0.469108,0.117792,0][-0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.325927,0.041277,0][-0.915951,-0.789165,0.00174517][-0.772383,-0.626404,0.105082][0.469108,0.117792,0][-0.83246,-0.789165,-0.614746][-0.560936,-0.727808,-0.394521][0.298707,0.123146,0][1.56325e-007,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.812007,0][-0.746653,-0.997757,0.00270119][1.75446e-007,-1,0][0.807094,0.667427,0][-0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.680606,0][1.56325e-007,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.812007,0][-0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.680606,0][1.56325e-007,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.812007,0][0,0.14663,1.29137][-0.648847,0.648429,0.398168][0.984306,0.373164,0][-0.553427,-0.304568,1.12431][-0.648847,0.648429,0.398168][0.812325,0.242761,0][0,-0.304568,1.36188][-0.378615,0.280594,0.881996][0.990064,0.233902,0][0.327341,0.36447,-1.1941][0.936136,-0.22831,-0.267438][0.448424,0.697716,0][0.348659,0.353338,-1.10998][0.936136,-0.22831,-0.267438][0.477403,0.711986,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.485736,0.70184,0][0.327341,0.36447,-1.1941][0.936136,-0.22831,-0.267438][0.448424,0.697716,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.485736,0.70184,0][0.319967,0.331361,-1.19102][0.934301,-0.233202,-0.269628][0.455098,0.686845,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][0,0.636961,-1.30937][-0.375239,0.920279,0.110822][0.307344,0.781011,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0.174654,0.574744,-1.38655][0.377025,0.919896,0.107904][0.339651,0.722533,0][0,0.324583,-1.25274][0.0591651,-0.98771,-0.144666][0.106178,0.915713,0][0.17556,0.290735,-1.22181][-0.182559,-0.982426,-0.0388902][0.162754,0.954271,0][0.203675,0.277236,-1.01277][-0.182559,-0.982426,-0.0388902][0.223852,0.910068,0][0,0.324583,-1.25274][0.0591651,-0.98771,-0.144666][0.106178,0.915713,0][0.203675,0.277236,-1.01277][-0.182559,-0.982426,-0.0388902][0.223852,0.910068,0][0,0.295712,-1.05562][0.0591651,-0.98771,-0.144666][0.159149,0.866801,0][0.250894,0.405318,-1.31382][0.517103,-0.130419,-0.845929][0.39417,0.684252,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.346879,0.699533,0][0.174654,0.574744,-1.38655][0.377025,0.919896,0.107904][0.339651,0.722533,0][0.250894,0.405318,-1.31382][0.517103,-0.130419,-0.845929][0.39417,0.684252,0][0.174654,0.574744,-1.38655][0.377025,0.919896,0.107904][0.339651,0.722533,0][0.262168,0.442083,-1.31438][0.474098,-0.158429,-0.866101][0.391306,0.6979,0][0,0.6418,-1.22582][-0.413408,0.873383,-0.257481][0.326295,0.804822,0][0,0.72498,-0.92375][-0.395722,0.885413,-0.243818][0.391525,0.899385,0][0.222343,0.625607,-0.92375][0.395725,0.885412,-0.243818][0.459104,0.841016,0][0,0.6418,-1.22582][-0.413408,0.873383,-0.257481][0.326295,0.804822,0][0.222343,0.625607,-0.92375][0.395725,0.885412,-0.243818][0.459104,0.841016,0][0.20287,0.555397,-1.19317][0.413407,0.873384,-0.257478][0.394649,0.761286,0][0.348659,0.353338,-1.10998][0.936136,-0.22831,-0.267438][0.477403,0.711986,0][0.389567,0.324557,-0.885599][0.966348,-0.165002,-0.197348][0.552042,0.753156,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.562596,0.743023,0][0.348659,0.353338,-1.10998][0.936136,-0.22831,-0.267438][0.477403,0.711986,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.562596,0.743023,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.485736,0.70184,0][0.20287,0.555397,-1.19317][0.413407,0.873384,-0.257478][0.394649,0.761286,0][0.222343,0.625607,-0.92375][0.395725,0.885412,-0.243818][0.459104,0.841016,0][0.389567,0.324557,-0.885599][0.966348,-0.165002,-0.197348][0.552042,0.753156,0][0.20287,0.555397,-1.19317][0.413407,0.873384,-0.257478][0.394649,0.761286,0][0.389567,0.324557,-0.885599][0.966348,-0.165002,-0.197348][0.552042,0.753156,0][0.348659,0.353338,-1.10998][0.936136,-0.22831,-0.267438][0.477403,0.711986,0][0.17556,0.290735,-1.22181][-0.182559,-0.982426,-0.0388902][0.162754,0.954271,0][0.26351,0.274392,-1.18501][-0.183,-0.983113,0.000754389][0.1933,0.968039,0][0.322582,0.263542,-0.994787][-0.183,-0.983113,0.000754389][0.258229,0.937961,0][0.17556,0.290735,-1.22181][-0.182559,-0.982426,-0.0388902][0.162754,0.954271,0][0.322582,0.263542,-0.994787][-0.183,-0.983113,0.000754389][0.258229,0.937961,0][0.203675,0.277236,-1.01277][-0.182559,-0.982426,-0.0388902][0.223852,0.910068,0][0.363599,0.261861,-0.869841][-0.0837435,-0.996396,-0.0134827][0.302887,0.918243,0][0.209418,0.27527,-0.903117][-0.0837435,-0.996396,-0.0134827][0.255228,0.884333,0][0.203675,0.277236,-1.01277][-0.182559,-0.982426,-0.0388902][0.223852,0.910068,0][0.363599,0.261861,-0.869841][-0.0837435,-0.996396,-0.0134827][0.302887,0.918243,0][0.203675,0.277236,-1.01277][-0.182559,-0.982426,-0.0388902][0.223852,0.910068,0][0.322582,0.263542,-0.994787][-0.183,-0.983113,0.000754389][0.258229,0.937961,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][0.174654,0.574744,-1.38655][0.377025,0.919896,0.107904][0.339651,0.722533,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.346879,0.699533,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.346879,0.699533,0][0,0.582512,-1.39343][-0.00107123,-0.236582,-0.971611][0.283719,0.729492,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][0.168874,0.334962,-1.28343][-0.100319,-0.813451,-0.572917][0.140737,0.968933,0][0.17556,0.290735,-1.22181][-0.182559,-0.982426,-0.0388902][0.162754,0.954271,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][0.17556,0.290735,-1.22181][-0.182559,-0.982426,-0.0388902][0.162754,0.954271,0][0,0.324583,-1.25274][0.0591651,-0.98771,-0.144666][0.106178,0.915713,0][0.26351,0.274392,-1.18501][-0.183,-0.983113,0.000754389][0.1933,0.968039,0][0.17556,0.290735,-1.22181][-0.182559,-0.982426,-0.0388902][0.162754,0.954271,0][0.168874,0.334962,-1.28343][-0.100319,-0.813451,-0.572917][0.140737,0.968933,0][0.337563,0.292298,-1.0015][0.821778,-0.49434,-0.283389][0.262244,0.949752,0][0.322582,0.263542,-0.994787][-0.183,-0.983113,0.000754389][0.258229,0.937961,0][0.26351,0.274392,-1.18501][-0.183,-0.983113,0.000754389][0.1933,0.968039,0][0.337563,0.292298,-1.0015][0.821778,-0.49434,-0.283389][0.262244,0.949752,0][0.26351,0.274392,-1.18501][-0.183,-0.983113,0.000754389][0.1933,0.968039,0][0.276593,0.31059,-1.19925][0.852257,-0.42696,-0.302263][0.191286,0.982369,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.307281,0.930221,0][0.363599,0.261861,-0.869841][-0.0837435,-0.996396,-0.0134827][0.302887,0.918243,0][0.322582,0.263542,-0.994787][-0.183,-0.983113,0.000754389][0.258229,0.937961,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.307281,0.930221,0][0.322582,0.263542,-0.994787][-0.183,-0.983113,0.000754389][0.258229,0.937961,0][0.337563,0.292298,-1.0015][0.821778,-0.49434,-0.283389][0.262244,0.949752,0][0.176716,0.37791,-1.30555][0.018731,-0.460451,-0.887487][0.12885,0.982369,0][0.168874,0.334962,-1.28343][-0.100319,-0.813451,-0.572917][0.140737,0.968933,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][0.176716,0.37791,-1.30555][0.018731,-0.460451,-0.887487][0.12885,0.982369,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][0,0.418049,-1.32987][-0.0186145,-0.456968,-0.889288][0.067901,0.941797,0][0.276593,0.31059,-1.19925][0.852257,-0.42696,-0.302263][0.191286,0.982369,0][0.26351,0.274392,-1.18501][-0.183,-0.983113,0.000754389][0.1933,0.968039,0][0.168874,0.334962,-1.28343][-0.100319,-0.813451,-0.572917][0.140737,0.968933,0][0.276593,0.31059,-1.19925][0.852257,-0.42696,-0.302263][0.191286,0.982369,0][0.168874,0.334962,-1.28343][-0.100319,-0.813451,-0.572917][0.140737,0.968933,0][0.176716,0.37791,-1.30555][0.018731,-0.460451,-0.887487][0.12885,0.982369,0][0.163189,0.484138,-1.22448][-0.467789,-0.872291,-0.142414][0.158257,0.811764,0][0.147566,0.466234,-1.0635][-0.467789,-0.872291,-0.142414][0.203695,0.774415,0][0,0.547534,-1.07676][0.436763,-0.894138,-0.0987634][0.162654,0.728833,0][0.163189,0.484138,-1.22448][-0.467789,-0.872291,-0.142414][0.158257,0.811764,0][0,0.547534,-1.07676][0.436763,-0.894138,-0.0987634][0.162654,0.728833,0][0,0.566613,-1.24949][0.436763,-0.894138,-0.0987634][0.110997,0.76449,0][0,0.418049,-1.32987][-0.0186145,-0.456968,-0.889288][0.528767,0.935062,0][0,0.396496,-1.05144][-0.19905,0.977066,0.0756331][0.459353,0.861769,0][0.146649,0.36565,-1.03891][0.19905,0.977066,0.0756331][0.412709,0.897418,0][0,0.418049,-1.32987][-0.0186145,-0.456968,-0.889288][0.528767,0.935062,0][0.146649,0.36565,-1.03891][0.19905,0.977066,0.0756331][0.412709,0.897418,0][0.176716,0.37791,-1.30555][0.018731,-0.460451,-0.887487][0.471157,0.974949,0][0.176716,0.37791,-1.30555][0.018731,-0.460451,-0.887487][0.471157,0.974949,0][0.146649,0.36565,-1.03891][0.19905,0.977066,0.0756331][0.412709,0.897418,0][0.232148,0.332513,-1.01783][0.342607,0.935923,0.0816651][0.383008,0.913985,0][0.176716,0.37791,-1.30555][0.018731,-0.460451,-0.887487][0.471157,0.974949,0][0.232148,0.332513,-1.01783][0.342607,0.935923,0.0816651][0.383008,0.913985,0][0.276593,0.31059,-1.19925][0.852257,-0.42696,-0.302263][0.413091,0.974949,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.247419,0.852681,0][0.301829,0.365536,-0.974166][-0.621562,-0.778712,0.0852555][0.270661,0.805859,0][0.236003,0.412786,-1.0225][-0.621562,-0.778712,0.0852555][0.238612,0.794226,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.247419,0.852681,0][0.236003,0.412786,-1.0225][-0.621562,-0.778712,0.0852555][0.238612,0.794226,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.247419,0.852681,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.319967,0.331361,-1.19102][0.934301,-0.233202,-0.269628][0.217925,0.865435,0][0.276593,0.31059,-1.19925][0.852257,-0.42696,-0.302263][0.413091,0.974949,0][0.232148,0.332513,-1.01783][0.342607,0.935923,0.0816651][0.383008,0.913985,0][0.319188,0.303985,-0.952][0.333225,0.942296,-0.0322329][0.342437,0.91804,0][0.276593,0.31059,-1.19925][0.852257,-0.42696,-0.302263][0.413091,0.974949,0][0.319188,0.303985,-0.952][0.333225,0.942296,-0.0322329][0.342437,0.91804,0][0.337563,0.292298,-1.0015][0.821778,-0.49434,-0.283389][0.348518,0.93662,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.323301,0.816375,0][0.342842,0.309398,-0.886424][-0.381957,-0.849153,-0.364757][0.311078,0.804144,0][0.301829,0.365536,-0.974166][-0.621562,-0.778712,0.0852555][0.270661,0.805859,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.323301,0.816375,0][0.301829,0.365536,-0.974166][-0.621562,-0.778712,0.0852555][0.270661,0.805859,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.247419,0.852681,0][0.337563,0.292298,-1.0015][0.821778,-0.49434,-0.283389][0.348518,0.93662,0][0.319188,0.303985,-0.952][0.333225,0.942296,-0.0322329][0.342437,0.91804,0][0.342842,0.309398,-0.886424][-0.381957,-0.849153,-0.364757][0.320856,0.904885,0][0.337563,0.292298,-1.0015][0.821778,-0.49434,-0.283389][0.348518,0.93662,0][0.342842,0.309398,-0.886424][-0.381957,-0.849153,-0.364757][0.320856,0.904885,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.306454,0.914462,0][0.262168,0.442083,-1.31438][0.474098,-0.158429,-0.866101][0.391306,0.6979,0][0.174654,0.574744,-1.38655][0.377025,0.919896,0.107904][0.339651,0.722533,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0.262168,0.442083,-1.31438][0.474098,-0.158429,-0.866101][0.391306,0.6979,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0.327341,0.36447,-1.1941][0.936136,-0.22831,-0.267438][0.448424,0.697716,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.236003,0.412786,-1.0225][-0.621562,-0.778712,0.0852555][0.238612,0.794226,0][0.147566,0.466234,-1.0635][-0.467789,-0.872291,-0.142414][0.203695,0.774415,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.147566,0.466234,-1.0635][-0.467789,-0.872291,-0.142414][0.203695,0.774415,0][0.163189,0.484138,-1.22448][-0.467789,-0.872291,-0.142414][0.158257,0.811764,0][0.327341,0.36447,-1.1941][0.936136,-0.22831,-0.267438][0.448424,0.697716,0][0.319967,0.331361,-1.19102][0.934301,-0.233202,-0.269628][0.455098,0.686845,0][0.250894,0.405318,-1.31382][0.517103,-0.130419,-0.845929][0.39417,0.684252,0][0.327341,0.36447,-1.1941][0.936136,-0.22831,-0.267438][0.448424,0.697716,0][0.250894,0.405318,-1.31382][0.517103,-0.130419,-0.845929][0.39417,0.684252,0][0.262168,0.442083,-1.31438][0.474098,-0.158429,-0.866101][0.391306,0.6979,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.250894,0.405318,-1.31382][0.517103,-0.130419,-0.845929][0.160583,0.865435,0][0.319967,0.331361,-1.19102][0.934301,-0.233202,-0.269628][0.217925,0.865435,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0.20287,0.555397,-1.19317][0.413407,0.873384,-0.257478][0.394649,0.761286,0][0.348659,0.353338,-1.10998][0.936136,-0.22831,-0.267438][0.477403,0.711986,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0.348659,0.353338,-1.10998][0.936136,-0.22831,-0.267438][0.477403,0.711986,0][0.327341,0.36447,-1.1941][0.936136,-0.22831,-0.267438][0.448424,0.697716,0][0,0.636961,-1.30937][-0.375239,0.920279,0.110822][0.307344,0.781011,0][0,0.6418,-1.22582][-0.413408,0.873383,-0.257481][0.326295,0.804822,0][0.20287,0.555397,-1.19317][0.413407,0.873384,-0.257478][0.394649,0.761286,0][0,0.636961,-1.30937][-0.375239,0.920279,0.110822][0.307344,0.781011,0][0.20287,0.555397,-1.19317][0.413407,0.873384,-0.257478][0.394649,0.761286,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.163189,0.484138,-1.22448][-0.467789,-0.872291,-0.142414][0.158257,0.811764,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.116166,0.846189,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.116166,0.846189,0][0.250894,0.405318,-1.31382][0.517103,-0.130419,-0.845929][0.160583,0.865435,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.116166,0.846189,0][0.163189,0.484138,-1.22448][-0.467789,-0.872291,-0.142414][0.158257,0.811764,0][0,0.566613,-1.24949][0.436763,-0.894138,-0.0987634][0.110997,0.76449,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.116166,0.846189,0][0,0.566613,-1.24949][0.436763,-0.894138,-0.0987634][0.110997,0.76449,0][0,0.582512,-1.39343][-0.00107123,-0.236582,-0.971611][0.067901,0.794118,0][0.208093,-0.0694998,-0.364725][0.387093,-0.836854,0.387086][0.815984,0.448889,0][0.384504,0.0592119,-0.262873][0.387093,-0.836854,0.387086][0.802455,0.521508,0][0.221994,0.0592109,-0.100362][0.387093,-0.836854,0.387085][0.869923,0.523425,0][0.208093,-0.0694998,-0.364725][0.387093,-0.836854,0.387086][0.815984,0.448889,0][0.221994,0.0592109,-0.100362][0.387093,-0.836854,0.387085][0.869923,0.523425,0][0.120142,-0.0694998,-0.276774][0.387087,-0.836856,0.387087][0.858503,0.449154,0][0.120142,-0.0694998,-0.276774][0.387087,-0.836856,0.387087][0.858503,0.449154,0][0.221994,0.0592109,-0.100362][0.387093,-0.836854,0.387085][0.869923,0.523425,0][0,0.0592109,-0.0408789][-0.141685,-0.836853,0.528774][0.938645,0.502704,0][0.120142,-0.0694998,-0.276774][0.387087,-0.836856,0.387087][0.858503,0.449154,0][0,0.0592109,-0.0408789][-0.141685,-0.836853,0.528774][0.938645,0.502704,0][0,-0.0695008,-0.244582][-0.141685,-0.836853,0.528774][0.896951,0.435719,0][0,-0.0695008,-0.725151][-0.141685,-0.836854,-0.528773][0.702425,0.334379,0][0,0.0592109,-0.928855][-0.141686,-0.836854,-0.528772][0.623322,0.338746,0][0.221994,0.0592119,-0.869371][0.14169,-0.836854,-0.528772][0.646018,0.407253,0][0,-0.0695008,-0.725151][-0.141685,-0.836854,-0.528773][0.702425,0.334379,0][0.221994,0.0592119,-0.869371][0.14169,-0.836854,-0.528772][0.646018,0.407253,0][0.120142,-0.0694989,-0.692959][0.141696,-0.836857,-0.528765][0.714303,0.375241,0][0.120142,-0.0694989,-0.692959][0.141696,-0.836857,-0.528765][0.714303,0.375241,0][0.221994,0.0592119,-0.869371][0.14169,-0.836854,-0.528772][0.646018,0.407253,0][0.384504,0.0592109,-0.706861][0.387084,-0.836856,-0.387089][0.686536,0.461374,0][0.120142,-0.0694989,-0.692959][0.141696,-0.836857,-0.528765][0.714303,0.375241,0][0.384504,0.0592109,-0.706861][0.387084,-0.836856,-0.387089][0.686536,0.461374,0][0.208093,-0.0694998,-0.605009][0.387083,-0.836854,-0.387096][0.73983,0.410089,0][0.208093,-0.0694998,-0.605009][0.387083,-0.836854,-0.387096][0.73983,0.410089,0][0.384504,0.0592109,-0.706861][0.387084,-0.836856,-0.387089][0.686536,0.461374,0][0.443987,0.059211,-0.484867][0.528773,-0.836854,-0.141684][0.740018,0.500101,0][0.208093,-0.0694998,-0.605009][0.387083,-0.836854,-0.387096][0.73983,0.410089,0][0.443987,0.059211,-0.484867][0.528773,-0.836854,-0.141684][0.740018,0.500101,0][0.240284,-0.0694998,-0.484867][0.528772,-0.836856,-0.14168][0.774996,0.435392,0][0.240284,-0.0694998,-0.484867][0.528772,-0.836856,-0.14168][0.774996,0.435392,0][0.443987,0.059211,-0.484867][0.528773,-0.836854,-0.141684][0.740018,0.500101,0][0.384504,0.0592119,-0.262873][0.387093,-0.836854,0.387086][0.802455,0.521508,0][0.240284,-0.0694998,-0.484867][0.528772,-0.836856,-0.14168][0.774996,0.435392,0][0.384504,0.0592119,-0.262873][0.387093,-0.836854,0.387086][0.802455,0.521508,0][0.208093,-0.0694998,-0.364725][0.387093,-0.836854,0.387086][0.815984,0.448889,0][0.384504,0.0592119,-0.262873][0.387093,-0.836854,0.387086][0.802455,0.521508,0][0.502379,0.251841,-0.194818][0.584041,-0.56373,0.584041][0.789318,0.588049,0][0.290049,0.251841,0.0175121][0.584041,-0.56373,0.584041][0.876327,0.593507,0][0.384504,0.0592119,-0.262873][0.387093,-0.836854,0.387086][0.802455,0.521508,0][0.290049,0.251841,0.0175121][0.584041,-0.56373,0.584041][0.876327,0.593507,0][0.221994,0.0592109,-0.100362][0.387093,-0.836854,0.387085][0.869923,0.523425,0][0.221994,0.0592109,-0.100362][0.387093,-0.836854,0.387085][0.869923,0.523425,0][0.290049,0.251841,0.0175121][0.584041,-0.56373,0.584041][0.876327,0.593507,0][0,0.25184,0.0952311][-0.213774,-0.56373,0.797815][0.968062,0.574789,0][0.221994,0.0592109,-0.100362][0.387093,-0.836854,0.387085][0.869923,0.523425,0][0,0.25184,0.0952311][-0.213774,-0.56373,0.797815][0.968062,0.574789,0][0,0.0592109,-0.0408789][-0.141685,-0.836853,0.528774][0.938645,0.502704,0][0,0.0592109,-0.928855][-0.141686,-0.836854,-0.528772][0.623322,0.338746,0][0,0.251841,-1.06496][-0.213776,-0.563728,-0.797816][0.548019,0.355783,0][0.290049,0.251841,-0.987246][0.213776,-0.563728,-0.797816][0.585313,0.441949,0][0,0.0592109,-0.928855][-0.141686,-0.836854,-0.528772][0.623322,0.338746,0][0.290049,0.251841,-0.987246][0.213776,-0.563728,-0.797816][0.585313,0.441949,0][0.221994,0.0592119,-0.869371][0.14169,-0.836854,-0.528772][0.646018,0.407253,0][0.221994,0.0592119,-0.869371][0.14169,-0.836854,-0.528772][0.646018,0.407253,0][0.290049,0.251841,-0.987246][0.213776,-0.563728,-0.797816][0.585313,0.441949,0][0.502379,0.251841,-0.774916][0.584041,-0.56373,-0.584041][0.639667,0.510144,0][0.221994,0.0592119,-0.869371][0.14169,-0.836854,-0.528772][0.646018,0.407253,0][0.502379,0.251841,-0.774916][0.584041,-0.56373,-0.584041][0.639667,0.510144,0][0.384504,0.0592109,-0.706861][0.387084,-0.836856,-0.387089][0.686536,0.461374,0][0.384504,0.0592109,-0.706861][0.387084,-0.836856,-0.387089][0.686536,0.461374,0][0.502379,0.251841,-0.774916][0.584041,-0.56373,-0.584041][0.639667,0.510144,0][0.580098,0.251841,-0.484867][0.797816,-0.563729,-0.213776][0.709002,0.559642,0][0.384504,0.0592109,-0.706861][0.387084,-0.836856,-0.387089][0.686536,0.461374,0][0.580098,0.251841,-0.484867][0.797816,-0.563729,-0.213776][0.709002,0.559642,0][0.443987,0.059211,-0.484867][0.528773,-0.836854,-0.141684][0.740018,0.500101,0][0.443987,0.059211,-0.484867][0.528773,-0.836854,-0.141684][0.740018,0.500101,0][0.580098,0.251841,-0.484867][0.797816,-0.563729,-0.213776][0.709002,0.559642,0][0.502379,0.251841,-0.194818][0.584041,-0.56373,0.584041][0.789318,0.588049,0][0.443987,0.059211,-0.484867][0.528773,-0.836854,-0.141684][0.740018,0.500101,0][0.502379,0.251841,-0.194818][0.584041,-0.56373,0.584041][0.789318,0.588049,0][0.384504,0.0592119,-0.262873][0.387093,-0.836854,0.387086][0.802455,0.521508,0][0.502379,0.251841,-0.194818][0.584041,-0.56373,0.584041][0.789318,0.588049,0][0.543771,0.479064,-0.17092][0.69295,-0.199111,0.692947][0.774857,0.656789,0][0.313947,0.479064,0.0589051][0.69295,-0.199111,0.692947][0.879397,0.665468,0][0.502379,0.251841,-0.194818][0.584041,-0.56373,0.584041][0.789318,0.588049,0][0.313947,0.479064,0.0589051][0.69295,-0.199111,0.692947][0.879397,0.665468,0][0.290049,0.251841,0.0175121][0.584041,-0.56373,0.584041][0.876327,0.593507,0][0.290049,0.251841,0.0175121][0.584041,-0.56373,0.584041][0.876327,0.593507,0][0.313947,0.479064,0.0589051][0.69295,-0.199111,0.692947][0.879397,0.665468,0][0,0.479064,0.143027][-0.253639,-0.199111,0.946584][0.98482,0.649459,0][0.290049,0.251841,0.0175121][0.584041,-0.56373,0.584041][0.876327,0.593507,0][0,0.479064,0.143027][-0.253639,-0.199111,0.946584][0.98482,0.649459,0][0,0.25184,0.0952311][-0.213774,-0.56373,0.797815][0.968062,0.574789,0][0,0.251841,-1.06496][-0.213776,-0.563728,-0.797816][0.548019,0.355783,0][0,0.479064,-1.11276][-0.25364,-0.199112,-0.946584][0.477138,0.384967,0][0.313947,0.479064,-1.02864][0.25364,-0.199112,-0.946584][0.524748,0.481021,0][0,0.251841,-1.06496][-0.213776,-0.563728,-0.797816][0.548019,0.355783,0][0.313947,0.479064,-1.02864][0.25364,-0.199112,-0.946584][0.524748,0.481021,0][0.290049,0.251841,-0.987246][0.213776,-0.563728,-0.797816][0.585313,0.441949,0][0.290049,0.251841,-0.987246][0.213776,-0.563728,-0.797816][0.585313,0.441949,0][0.313947,0.479064,-1.02864][0.25364,-0.199112,-0.946584][0.524748,0.481021,0][0.543771,0.479064,-0.798814][0.692948,-0.19911,-0.692949][0.591998,0.561742,0][0.290049,0.251841,-0.987246][0.213776,-0.563728,-0.797816][0.585313,0.441949,0][0.543771,0.479064,-0.798814][0.692948,-0.19911,-0.692949][0.591998,0.561742,0][0.502379,0.251841,-0.774916][0.584041,-0.56373,-0.584041][0.639667,0.510144,0][0.502379,0.251841,-0.774916][0.584041,-0.56373,-0.584041][0.639667,0.510144,0][0.543771,0.479064,-0.798814][0.692948,-0.19911,-0.692949][0.591998,0.561742,0][0.627894,0.479064,-0.484867][0.946584,-0.19911,-0.25364][0.677025,0.621617,0][0.502379,0.251841,-0.774916][0.584041,-0.56373,-0.584041][0.639667,0.510144,0][0.627894,0.479064,-0.484867][0.946584,-0.19911,-0.25364][0.677025,0.621617,0][0.580098,0.251841,-0.484867][0.797816,-0.563729,-0.213776][0.709002,0.559642,0][0.580098,0.251841,-0.484867][0.797816,-0.563729,-0.213776][0.709002,0.559642,0][0.627894,0.479064,-0.484867][0.946584,-0.19911,-0.25364][0.677025,0.621617,0][0.543771,0.479064,-0.17092][0.69295,-0.199111,0.692947][0.774857,0.656789,0][0.580098,0.251841,-0.484867][0.797816,-0.563729,-0.213776][0.709002,0.559642,0][0.543771,0.479064,-0.17092][0.69295,-0.199111,0.692947][0.774857,0.656789,0][0.502379,0.251841,-0.194818][0.584041,-0.56373,0.584041][0.789318,0.588049,0][0.543771,0.479064,-0.17092][0.69295,-0.199111,0.692947][0.451077,0.425801,0][0.502379,0.706287,-0.194818][0.692949,0.199112,0.692948][0.400365,0.483857,0][0.290049,0.706288,0.0175121][0.692949,0.199112,0.692948][0.462074,0.557001,0][0.543771,0.479064,-0.17092][0.69295,-0.199111,0.692947][0.451077,0.425801,0][0.290049,0.706288,0.0175121][0.692949,0.199112,0.692948][0.462074,0.557001,0][0.313947,0.479064,0.0589051][0.69295,-0.199111,0.692947][0.527316,0.512289,0][0.313947,0.479064,0.0589051][0.69295,-0.199111,0.692947][0.527316,0.512289,0][0.290049,0.706288,0.0175121][0.692949,0.199112,0.692948][0.462074,0.557001,0][0,0.706287,0.0952311][-0.253637,0.199113,0.946585][0.50562,0.650379,0][0.313947,0.479064,0.0589051][0.69295,-0.199111,0.692947][0.527316,0.512289,0][0,0.706287,0.0952311][-0.253637,0.199113,0.946585][0.50562,0.650379,0][0,0.479064,0.143027][-0.253639,-0.199111,0.946584][0.582479,0.616197,0][0,0.479064,-1.11276][-0.25364,-0.199112,-0.946584][0.01749,0.341591,0][0,0.706287,-1.06496][-0.253639,0.199113,-0.946584][0.038156,0.422989,0][0.290049,0.706287,-0.987246][0.253639,0.199113,-0.946584][0.138213,0.399651,0][0,0.479064,-1.11276][-0.25364,-0.199112,-0.946584][0.01749,0.341591,0][0.290049,0.706287,-0.987246][0.253639,0.199113,-0.946584][0.138213,0.399651,0][0.313947,0.479064,-1.02864][0.25364,-0.199112,-0.946584][0.132645,0.320807,0][0.313947,0.479064,-1.02864][0.25364,-0.199112,-0.946584][0.132645,0.320807,0][0.290049,0.706287,-0.987246][0.253639,0.199113,-0.946584][0.138213,0.399651,0][0.502379,0.706287,-0.774916][0.692948,0.199111,-0.692948][0.233824,0.402977,0][0.313947,0.479064,-1.02864][0.25364,-0.199112,-0.946584][0.132645,0.320807,0][0.502379,0.706287,-0.774916][0.692948,0.199111,-0.692948][0.233824,0.402977,0][0.543771,0.479064,-0.798814][0.692948,-0.19911,-0.692949][0.247585,0.327131,0][0.543771,0.479064,-0.798814][0.692948,-0.19911,-0.692949][0.247585,0.327131,0][0.502379,0.706287,-0.774916][0.692948,0.199111,-0.692948][0.233824,0.402977,0][0.580098,0.706287,-0.484867][0.946585,0.199111,-0.253638][0.322795,0.431682,0][0.543771,0.479064,-0.798814][0.692948,-0.19911,-0.692949][0.247585,0.327131,0][0.580098,0.706287,-0.484867][0.946585,0.199111,-0.253638][0.322795,0.431682,0][0.627894,0.479064,-0.484867][0.946584,-0.19911,-0.25364][0.355976,0.362721,0][0.627894,0.479064,-0.484867][0.946584,-0.19911,-0.25364][0.355976,0.362721,0][0.580098,0.706287,-0.484867][0.946585,0.199111,-0.253638][0.322795,0.431682,0][0.502379,0.706287,-0.194818][0.692949,0.199112,0.692948][0.400365,0.483857,0][0.627894,0.479064,-0.484867][0.946584,-0.19911,-0.25364][0.355976,0.362721,0][0.502379,0.706287,-0.194818][0.692949,0.199112,0.692948][0.400365,0.483857,0][0.543771,0.479064,-0.17092][0.69295,-0.199111,0.692947][0.451077,0.425801,0][0.502379,0.706287,-0.194818][0.692949,0.199112,0.692948][0.400365,0.483857,0][0.384504,0.898918,-0.262873][0.584045,0.563725,0.584042][0.350444,0.53879,0][0.221994,0.898918,-0.100362][0.584045,0.563725,0.584042][0.396546,0.596918,0][0.502379,0.706287,-0.194818][0.692949,0.199112,0.692948][0.400365,0.483857,0][0.221994,0.898918,-0.100362][0.584045,0.563725,0.584042][0.396546,0.596918,0][0.290049,0.706288,0.0175121][0.692949,0.199112,0.692948][0.462074,0.557001,0][0.290049,0.706288,0.0175121][0.692949,0.199112,0.692948][0.462074,0.557001,0][0.221994,0.898918,-0.100362][0.584045,0.563725,0.584042][0.396546,0.596918,0][-1.30065e-007,0.898918,-0.0408789][-0.213777,0.563724,0.797819][0.423537,0.671373,0][0.290049,0.706288,0.0175121][0.692949,0.199112,0.692948][0.462074,0.557001,0][-1.30065e-007,0.898918,-0.0408789][-0.213777,0.563724,0.797819][0.423537,0.671373,0][0,0.706287,0.0952311][-0.253637,0.199113,0.946585][0.50562,0.650379,0][0,0.706287,-1.06496][-0.253639,0.199113,-0.946584][0.038156,0.422989,0][-1.30065e-007,0.898919,-0.928854][-0.213777,0.563725,-0.797818][0.07263,0.501165,0][0.221994,0.898918,-0.869371][0.213777,0.563725,-0.797818][0.147381,0.476332,0][0,0.706287,-1.06496][-0.253639,0.199113,-0.946584][0.038156,0.422989,0][0.221994,0.898918,-0.869371][0.213777,0.563725,-0.797818][0.147381,0.476332,0][0.290049,0.706287,-0.987246][0.253639,0.199113,-0.946584][0.138213,0.399651,0][0.290049,0.706287,-0.987246][0.253639,0.199113,-0.946584][0.138213,0.399651,0][0.221994,0.898918,-0.869371][0.213777,0.563725,-0.797818][0.147381,0.476332,0][0.384504,0.898919,-0.70686][0.584044,0.563725,-0.584044][0.221448,0.476373,0][0.290049,0.706287,-0.987246][0.253639,0.199113,-0.946584][0.138213,0.399651,0][0.384504,0.898919,-0.70686][0.584044,0.563725,-0.584044][0.221448,0.476373,0][0.502379,0.706287,-0.774916][0.692948,0.199111,-0.692948][0.233824,0.402977,0][0.502379,0.706287,-0.774916][0.692948,0.199111,-0.692948][0.233824,0.402977,0][0.384504,0.898919,-0.70686][0.584044,0.563725,-0.584044][0.221448,0.476373,0][0.443987,0.898919,-0.484867][0.797819,0.563724,-0.213776][0.290593,0.497945,0][0.502379,0.706287,-0.774916][0.692948,0.199111,-0.692948][0.233824,0.402977,0][0.443987,0.898919,-0.484867][0.797819,0.563724,-0.213776][0.290593,0.497945,0][0.580098,0.706287,-0.484867][0.946585,0.199111,-0.253638][0.322795,0.431682,0][0.580098,0.706287,-0.484867][0.946585,0.199111,-0.253638][0.322795,0.431682,0][0.443987,0.898919,-0.484867][0.797819,0.563724,-0.213776][0.290593,0.497945,0][0.384504,0.898918,-0.262873][0.584045,0.563725,0.584042][0.350444,0.53879,0][0.580098,0.706287,-0.484867][0.946585,0.199111,-0.253638][0.322795,0.431682,0][0.384504,0.898918,-0.262873][0.584045,0.563725,0.584042][0.350444,0.53879,0][0.502379,0.706287,-0.194818][0.692949,0.199112,0.692948][0.400365,0.483857,0][0.384504,0.898918,-0.262873][0.584045,0.563725,0.584042][0.350444,0.53879,0][0.208093,1.02763,-0.364725][0.387084,0.836854,0.387093][0.293552,0.596678,0][0.120142,1.02763,-0.276774][0.387084,0.836854,0.387093][0.322621,0.634123,0][0.384504,0.898918,-0.262873][0.584045,0.563725,0.584042][0.350444,0.53879,0][0.120142,1.02763,-0.276774][0.387084,0.836854,0.387093][0.322621,0.634123,0][0.221994,0.898918,-0.100362][0.584045,0.563725,0.584042][0.396546,0.596918,0][0.221994,0.898918,-0.100362][0.584045,0.563725,0.584042][0.396546,0.596918,0][0.120142,1.02763,-0.276774][0.387084,0.836854,0.387093][0.322621,0.634123,0][-1.495e-007,1.02763,-0.244582][-0.141684,0.836855,0.528771][0.3369,0.678582,0][0.221994,0.898918,-0.100362][0.584045,0.563725,0.584042][0.396546,0.596918,0][-1.495e-007,1.02763,-0.244582][-0.141684,0.836855,0.528771][0.3369,0.678582,0][-1.30065e-007,0.898918,-0.0408789][-0.213777,0.563724,0.797819][0.423537,0.671373,0][-1.30065e-007,0.898919,-0.928854][-0.213777,0.563725,-0.797818][0.07263,0.501165,0][-1.495e-007,1.02763,-0.725151][-0.141683,0.836857,-0.528768][0.120414,0.573369,0][0.120142,1.02763,-0.692958][0.141688,0.836857,-0.528768][0.162179,0.557456,0][-1.30065e-007,0.898919,-0.928854][-0.213777,0.563725,-0.797818][0.07263,0.501165,0][0.120142,1.02763,-0.692958][0.141688,0.836857,-0.528768][0.162179,0.557456,0][0.221994,0.898918,-0.869371][0.213777,0.563725,-0.797818][0.147381,0.476332,0][0.221994,0.898918,-0.869371][0.213777,0.563725,-0.797818][0.147381,0.476332,0][0.120142,1.02763,-0.692958][0.141688,0.836857,-0.528768][0.162179,0.557456,0][0.208093,1.02763,-0.605009][0.387075,0.836858,-0.387093][0.208828,0.556445,0][0.221994,0.898918,-0.869371][0.213777,0.563725,-0.797818][0.147381,0.476332,0][0.208093,1.02763,-0.605009][0.387075,0.836858,-0.387093][0.208828,0.556445,0][0.384504,0.898919,-0.70686][0.584044,0.563725,-0.584044][0.221448,0.476373,0][0.384504,0.898919,-0.70686][0.584044,0.563725,-0.584044][0.221448,0.476373,0][0.208093,1.02763,-0.605009][0.387075,0.836858,-0.387093][0.208828,0.556445,0][0.240284,1.02763,-0.484867][0.528775,0.836854,-0.141681][0.254203,0.569997,0][0.384504,0.898919,-0.70686][0.584044,0.563725,-0.584044][0.221448,0.476373,0][0.240284,1.02763,-0.484867][0.528775,0.836854,-0.141681][0.254203,0.569997,0][0.443987,0.898919,-0.484867][0.797819,0.563724,-0.213776][0.290593,0.497945,0][0.443987,0.898919,-0.484867][0.797819,0.563724,-0.213776][0.290593,0.497945,0][0.240284,1.02763,-0.484867][0.528775,0.836854,-0.141681][0.254203,0.569997,0][0.208093,1.02763,-0.364725][0.387084,0.836854,0.387093][0.293552,0.596678,0][0.443987,0.898919,-0.484867][0.797819,0.563724,-0.213776][0.290593,0.497945,0][0.208093,1.02763,-0.364725][0.387084,0.836854,0.387093][0.293552,0.596678,0][0.384504,0.898918,-0.262873][0.584045,0.563725,0.584042][0.350444,0.53879,0][0.208093,1.02763,-0.364725][0.387084,0.836854,0.387093][0.293552,0.596678,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.2369,0.670661,0][0.120142,1.02763,-0.276774][0.387084,0.836854,0.387093][0.322621,0.634123,0][0.120142,1.02763,-0.276774][0.387084,0.836854,0.387093][0.322621,0.634123,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.245239,0.683499,0][-1.495e-007,1.02763,-0.244582][-0.141684,0.836855,0.528771][0.3369,0.678582,0][-1.495e-007,1.02763,-0.725151][-0.141683,0.836857,-0.528768][0.120414,0.573369,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.17155,0.64481,0][0.120142,1.02763,-0.692958][0.141688,0.836857,-0.528768][0.162179,0.557456,0][0.120142,1.02763,-0.692958][0.141688,0.836857,-0.528768][0.162179,0.557456,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.187424,0.645633,0][0.208093,1.02763,-0.605009][0.387075,0.836858,-0.387093][0.208828,0.556445,0][0.208093,1.02763,-0.605009][0.387075,0.836858,-0.387093][0.208828,0.556445,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.205753,0.649482,0][0.240284,1.02763,-0.484867][0.528775,0.836854,-0.141681][0.254203,0.569997,0][0.240284,1.02763,-0.484867][0.528775,0.836854,-0.141681][0.254203,0.569997,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.223155,0.658145,0][0.208093,1.02763,-0.364725][0.387084,0.836854,0.387093][0.293552,0.596678,0][1.56325e-007,-0.997757,-0.924002][-0.145697,-0.736772,-0.660258][0.059946,0,0][1.24828e-007,-0.789165,-1.15677][-0.145697,-0.736773,-0.660256][0.019926,0.085008,0][0.499972,-0.789165,-1.04644][0.145698,-0.736773,-0.660256][0.158647,0.117501,0][1.56325e-007,-0.997757,-0.924002][-0.145697,-0.736772,-0.660258][0.059946,0,0][0.499972,-0.789165,-1.04644][0.145698,-0.736773,-0.660256][0.158647,0.117501,0][0.407561,-0.997757,-0.834067][0.145697,-0.736771,-0.660258][0.18279,0.035281,0][1.24828e-007,-0.789165,-1.15677][-0.145697,-0.736773,-0.660256][0.019926,0.085008,0][0,-0.546868,-1.23385][-0.205782,-0.296678,-0.932543][0,0.160878,0][0.530576,-0.546867,-1.11677][0.205783,-0.296678,-0.932543][0.148749,0.179852,0][1.24828e-007,-0.789165,-1.15677][-0.145697,-0.736773,-0.660256][0.019926,0.085008,0][0.530576,-0.546867,-1.11677][0.205783,-0.296678,-0.932543][0.148749,0.179852,0][0.499972,-0.789165,-1.04644][0.145698,-0.736773,-0.660256][0.158647,0.117501,0][0,-0.546868,-1.23385][-0.205782,-0.296678,-0.932543][0,0.160878,0][0,-0.304568,-1.15677][-0.205783,0.296674,-0.932544][0.00031,0.239113,0][0.499972,-0.304568,-1.04644][0.205783,0.296675,-0.932544][0.147258,0.244852,0][0,-0.546868,-1.23385][-0.205782,-0.296678,-0.932543][0,0.160878,0][0.499972,-0.304568,-1.04644][0.205783,0.296675,-0.932544][0.147258,0.244852,0][0.530576,-0.546867,-1.11677][0.205783,-0.296678,-0.932543][0.148749,0.179852,0][0,-0.304568,-1.15677][-0.205783,0.296674,-0.932544][0.00031,0.239113,0][0,-0.141697,-1.03809][-0.176233,0.579684,-0.795555][0.00748,0.301032,0][0.429374,-0.141697,-0.942975][0.176231,0.579685,-0.795555][0.143496,0.302722,0][0,-0.304568,-1.15677][-0.205783,0.296674,-0.932544][0.00031,0.239113,0][0.429374,-0.141697,-0.942975][0.176231,0.579685,-0.795555][0.143496,0.302722,0][0.499972,-0.304568,-1.04644][0.205783,0.296675,-0.932544][0.147258,0.244852,0][0,-0.141697,-1.03809][-0.176233,0.579684,-0.795555][0.988246,0.830177,0][0,-0.00861444,-0.782325][-0.158033,0.875949,-0.455783][0.932082,0.825226,0][0.328856,-0.0215939,-0.693246][0.158033,0.875949,-0.455783][0.912807,0.888485,0][0,-0.141697,-1.03809][-0.176233,0.579684,-0.795555][0.988246,0.830177,0][0.328856,-0.0215939,-0.693246][0.158033,0.875949,-0.455783][0.912807,0.888485,0][0.429374,-0.141697,-0.942975][0.176231,0.579685,-0.795555][0.964636,0.912688,0][0,0.0957862,0.00374914][-0.137496,0.989918,-0.0340115][0.776792,0.822001,0][0,0.110834,0.39975][-0.141972,0.989157,-0.037588][0.699519,0.822756,0][0.323678,0.064974,0.415428][0.141969,0.989157,-0.037588][0.698022,0.886122,0][0,0.0957862,0.00374914][-0.137496,0.989918,-0.0340115][0.776792,0.822001,0][0.323678,0.064974,0.415428][0.141969,0.989157,-0.037588][0.698022,0.886122,0][0.347371,0.0475161,0.00311714][0.137496,0.989918,-0.0340138][0.7776,0.890066,0][0.379894,0.0200703,0.747827][0.134186,0.984794,0.110342][0.634145,0.900326,0][0.323678,0.064974,0.415428][0.141969,0.989157,-0.037588][0.698022,0.886122,0][0,0.110834,0.39975][-0.141972,0.989157,-0.037588][0.699519,0.822756,0][0.379894,0.0200703,0.747827][0.134186,0.984794,0.110342][0.634145,0.900326,0][0,0.110834,0.39975][-0.141972,0.989157,-0.037588][0.699519,0.822756,0][0,0.103121,0.909119][-0.21953,0.975494,0.0147718][0.600438,0.825981,0][0,0.14663,1.29137][-0.648847,0.648429,0.398168][0.984306,0.373164,0][0.553427,-0.304568,1.12431][0.648848,0.64843,0.398165][0.812325,0.242761,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.807563,0.322664,0][0,-0.304568,1.36188][-0.378615,0.280594,0.881996][0.990064,0.233902,0][0,-0.546868,1.39309][-0.328918,0.120678,0.936616][0.989042,0.1566,0][0.587303,-0.546867,1.18685][0.328918,0.120678,0.936616][0.812186,0.17617,0][0,-0.304568,1.36188][-0.378615,0.280594,0.881996][0.990064,0.233902,0][0.587303,-0.546867,1.18685][0.328918,0.120678,0.936616][0.812186,0.17617,0][0.553427,-0.304568,1.12431][0.648848,0.64843,0.398165][0.812325,0.242761,0][0,-0.546868,1.39309][-0.328918,0.120678,0.936616][0.989042,0.1566,0][1.24829e-007,-0.789167,1.32727][-0.333644,-0.247126,0.909731][0.969027,0.079254,0][0.553427,-0.789167,1.12431][0.333643,-0.247126,0.909731][0.802336,0.111517,0][0,-0.546868,1.39309][-0.328918,0.120678,0.936616][0.989042,0.1566,0][0.553427,-0.789167,1.12431][0.333643,-0.247126,0.909731][0.802336,0.111517,0][0.587303,-0.546867,1.18685][0.328918,0.120678,0.936616][0.812186,0.17617,0][1.24829e-007,-0.789167,1.32727][-0.333644,-0.247126,0.909731][0.969027,0.079254,0][1.56325e-007,-0.997757,1.12911][-0.297162,-0.657642,0.692244][0.928433,0,0][0.451135,-0.997757,0.935451][0.297162,-0.657642,0.692244][0.779464,0.029921,0][1.24829e-007,-0.789167,1.32727][-0.333644,-0.247126,0.909731][0.969027,0.079254,0][0.451135,-0.997757,0.935451][0.297162,-0.657642,0.692244][0.779464,0.029921,0][0.553427,-0.789167,1.12431][0.333643,-0.247126,0.909731][0.802336,0.111517,0][1.56325e-007,-0.997757,1.12911][-0.297162,-0.657642,0.692244][0.588979,0.812006,0][1.56325e-007,-0.997757,0.459542][1.75446e-007,-1,0][0.718633,0.812007,0][0.679464,-0.997757,0.459542][0,-1,0][0.718633,0.680437,0][1.56325e-007,-0.997757,1.12911][-0.297162,-0.657642,0.692244][0.588979,0.812006,0][0.679464,-0.997757,0.459542][0,-1,0][0.718633,0.680437,0][0.451135,-0.997757,0.935451][0.297162,-0.657642,0.692244][0.626479,0.72465,0][1.56325e-007,-0.997757,0.459542][1.75446e-007,-1,0][0.718633,0.812007,0][1.56325e-007,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.812007,0][0.746653,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.667427,0][1.56325e-007,-0.997757,0.459542][1.75446e-007,-1,0][0.718633,0.812007,0][0.746653,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.667427,0][0.679464,-0.997757,0.459542][0,-1,0][0.718633,0.680437,0][1.56325e-007,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.812007,0][1.56325e-007,-0.997757,-0.924002][-0.145697,-0.736772,-0.660258][0.986538,0.812007,0][0.407561,-0.997757,-0.834067][0.145697,-0.736771,-0.660258][0.969123,0.733088,0][1.56325e-007,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.812007,0][0.407561,-0.997757,-0.834067][0.145697,-0.736771,-0.660258][0.969123,0.733088,0][0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.680606,0][0.679464,-0.997757,0.459542][0,-1,0][0.614797,0.033746,0][0.833527,-0.789165,0.607587][0.625528,-0.702665,0.339081][0.642439,0.116156,0][0.553427,-0.789167,1.12431][0.333643,-0.247126,0.909731][0.802336,0.111517,0][0.679464,-0.997757,0.459542][0,-1,0][0.614797,0.033746,0][0.553427,-0.789167,1.12431][0.333643,-0.247126,0.909731][0.802336,0.111517,0][0.451135,-0.997757,0.935451][0.297162,-0.657642,0.692244][0.779464,0.029921,0][0.746653,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.468852,0.038255,0][0.915951,-0.789165,0.00174517][0.772384,-0.626404,0.105082][0.469108,0.117792,0][0.833527,-0.789165,0.607587][0.625528,-0.702665,0.339081][0.642439,0.116156,0][0.746653,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.468852,0.038255,0][0.833527,-0.789165,0.607587][0.625528,-0.702665,0.339081][0.642439,0.116156,0][0.679464,-0.997757,0.459542][0,-1,0][0.614797,0.033746,0][0.407561,-0.997757,-0.834067][0.145697,-0.736771,-0.660258][0.18279,0.035281,0][0.499972,-0.789165,-1.04644][0.145698,-0.736773,-0.660256][0.158647,0.117501,0][0.83246,-0.789165,-0.614746][0.568038,-0.697084,-0.4375][0.298707,0.123146,0][0.407561,-0.997757,-0.834067][0.145697,-0.736771,-0.660258][0.18279,0.035281,0][0.83246,-0.789165,-0.614746][0.568038,-0.697084,-0.4375][0.298707,0.123146,0][0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.325927,0.041277,0][0.833527,-0.789165,0.607587][0.625528,-0.702665,0.339081][0.642439,0.116156,0][0.884548,-0.546867,0.656615][0.839405,-0.271971,0.470565][0.652545,0.184563,0][0.587303,-0.546867,1.18685][0.328918,0.120678,0.936616][0.812186,0.17617,0][0.833527,-0.789165,0.607587][0.625528,-0.702665,0.339081][0.642439,0.116156,0][0.587303,-0.546867,1.18685][0.328918,0.120678,0.936616][0.812186,0.17617,0][0.553427,-0.789167,1.12431][0.333643,-0.247126,0.909731][0.802336,0.111517,0][0.915951,-0.789165,0.00174517][0.772384,-0.626404,0.105082][0.469108,0.117792,0][0.972017,-0.546867,0.00142816][0.966157,-0.223392,0.128984][0.469923,0.187939,0][0.884548,-0.546867,0.656615][0.839405,-0.271971,0.470565][0.652545,0.184563,0][0.915951,-0.789165,0.00174517][0.772384,-0.626404,0.105082][0.469108,0.117792,0][0.884548,-0.546867,0.656615][0.839405,-0.271971,0.470565][0.652545,0.184563,0][0.833527,-0.789165,0.607587][0.625528,-0.702665,0.339081][0.642439,0.116156,0][0.499972,-0.789165,-1.04644][0.145698,-0.736773,-0.660256][0.158647,0.117501,0][0.530576,-0.546867,-1.11677][0.205783,-0.296678,-0.932543][0.148749,0.179852,0][0.883416,-0.546867,-0.669733][0.756083,-0.26872,-0.596765][0.289458,0.187739,0][0.499972,-0.789165,-1.04644][0.145698,-0.736773,-0.660256][0.158647,0.117501,0][0.883416,-0.546867,-0.669733][0.756083,-0.26872,-0.596765][0.289458,0.187739,0][0.83246,-0.789165,-0.614746][0.568038,-0.697084,-0.4375][0.298707,0.123146,0][0.884548,-0.546867,0.656615][0.839405,-0.271971,0.470565][0.652545,0.184563,0][0.833527,-0.304568,0.607587][0.84624,0.271014,0.458726][0.647,0.254393,0][0.553427,-0.304568,1.12431][0.648848,0.64843,0.398165][0.812325,0.242761,0][0.884548,-0.546867,0.656615][0.839405,-0.271971,0.470565][0.652545,0.184563,0][0.553427,-0.304568,1.12431][0.648848,0.64843,0.398165][0.812325,0.242761,0][0.587303,-0.546867,1.18685][0.328918,0.120678,0.936616][0.812186,0.17617,0][0.972017,-0.546867,0.00142816][0.966157,-0.223392,0.128984][0.469923,0.187939,0][0.915951,-0.304568,0.00174515][0.965848,0.223317,0.131402][0.470082,0.258416,0][0.833527,-0.304568,0.607587][0.84624,0.271014,0.458726][0.647,0.254393,0][0.972017,-0.546867,0.00142816][0.966157,-0.223392,0.128984][0.469923,0.187939,0][0.833527,-0.304568,0.607587][0.84624,0.271014,0.458726][0.647,0.254393,0][0.884548,-0.546867,0.656615][0.839405,-0.271971,0.470565][0.652545,0.184563,0][0.530576,-0.546867,-1.11677][0.205783,-0.296678,-0.932543][0.148749,0.179852,0][0.499972,-0.304568,-1.04644][0.205783,0.296675,-0.932544][0.147258,0.244852,0][0.83246,-0.304567,-0.614746][0.763468,0.267113,-0.58802][0.294551,0.253712,0][0.530576,-0.546867,-1.11677][0.205783,-0.296678,-0.932543][0.148749,0.179852,0][0.83246,-0.304567,-0.614746][0.763468,0.267113,-0.58802][0.294551,0.253712,0][0.883416,-0.546867,-0.669733][0.756083,-0.26872,-0.596765][0.289458,0.187739,0][0.833527,-0.304568,0.607587][0.84624,0.271014,0.458726][0.647,0.254393,0][0.718595,-0.116742,0.528267][0.691721,0.595683,0.408269][0.638082,0.323364,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.807563,0.322664,0][0.833527,-0.304568,0.607587][0.84624,0.271014,0.458726][0.647,0.254393,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.807563,0.322664,0][0.553427,-0.304568,1.12431][0.648848,0.64843,0.398165][0.812325,0.242761,0][0.915951,-0.304568,0.00174515][0.965848,0.223317,0.131402][0.470082,0.258416,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.469315,0.324285,0][0.718595,-0.116742,0.528267][0.691721,0.595683,0.408269][0.638082,0.323364,0][0.915951,-0.304568,0.00174515][0.965848,0.223317,0.131402][0.470082,0.258416,0][0.718595,-0.116742,0.528267][0.691721,0.595683,0.408269][0.638082,0.323364,0][0.833527,-0.304568,0.607587][0.84624,0.271014,0.458726][0.647,0.254393,0][0.499972,-0.304568,-1.04644][0.205783,0.296675,-0.932544][0.147258,0.244852,0][0.429374,-0.141697,-0.942975][0.176231,0.579685,-0.795555][0.143496,0.302722,0][0.717676,-0.13189,-0.539266][0.651835,0.587314,-0.479764][0.29819,0.316682,0][0.499972,-0.304568,-1.04644][0.205783,0.296675,-0.932544][0.147258,0.244852,0][0.717676,-0.13189,-0.539266][0.651835,0.587314,-0.479764][0.29819,0.316682,0][0.83246,-0.304567,-0.614746][0.763468,0.267113,-0.58802][0.294551,0.253712,0][0.328856,-0.0215939,-0.693246][0.158033,0.875949,-0.455783][0.912807,0.888485,0][0.529325,-0.0271137,-0.462165][0.367915,0.880769,-0.298137][0.867963,0.926576,0][0.717676,-0.13189,-0.539266][0.651835,0.587314,-0.479764][0.884865,0.967652,0][0.328856,-0.0215939,-0.693246][0.158033,0.875949,-0.455783][0.912807,0.888485,0][0.717676,-0.13189,-0.539266][0.651835,0.587314,-0.479764][0.884865,0.967652,0][0.429374,-0.141697,-0.942975][0.176231,0.579685,-0.795555][0.964636,0.912688,0][0.554202,0.00972391,0.462732][0.591178,0.803675,0.06793][0.689958,0.931647,0][0.718595,-0.116742,0.528267][0.691721,0.595683,0.408269][0.676461,0.971346,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.779396,0.982912,0][0.554202,0.00972391,0.462732][0.591178,0.803675,0.06793][0.689958,0.931647,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.779396,0.982912,0][0.595328,-0.0114629,0.00255414][0.502936,0.864309,0.00515395][0.778306,0.939277,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.58549,0.919903,0][0.718595,-0.116742,0.528267][0.691721,0.595683,0.408269][0.676461,0.971346,0][0.554202,0.00972391,0.462732][0.591178,0.803675,0.06793][0.689958,0.931647,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.58549,0.919903,0][0.554202,0.00972391,0.462732][0.591178,0.803675,0.06793][0.689958,0.931647,0][0.379894,0.0200703,0.747827][0.134186,0.984794,0.110342][0.634145,0.900326,0][0.554202,0.00972391,0.462732][0.591178,0.803675,0.06793][0.689958,0.931647,0][0.323678,0.064974,0.415428][0.141969,0.989157,-0.037588][0.698022,0.886122,0][0.379894,0.0200703,0.747827][0.134186,0.984794,0.110342][0.634145,0.900326,0][0.323678,0.064974,0.415428][0.141969,0.989157,-0.037588][0.698022,0.886122,0][0.554202,0.00972391,0.462732][0.591178,0.803675,0.06793][0.689958,0.931647,0][0.595328,-0.0114629,0.00255414][0.502936,0.864309,0.00515395][0.778306,0.939277,0][0.323678,0.064974,0.415428][0.141969,0.989157,-0.037588][0.698022,0.886122,0][0.595328,-0.0114629,0.00255414][0.502936,0.864309,0.00515395][0.778306,0.939277,0][0.347371,0.0475161,0.00311714][0.137496,0.989918,-0.0340138][0.7776,0.890066,0][0.308571,0.0310528,-0.388919][0.203772,0.966881,-0.153682][0.853425,0.882687,0][0.529325,-0.0271137,-0.462165][0.367915,0.880769,-0.298137][0.867963,0.926576,0][0.328856,-0.0215939,-0.693246][0.158033,0.875949,-0.455783][0.912807,0.888485,0][0,-0.00861444,-0.782325][-0.158033,0.875949,-0.455783][0.932082,0.825226,0][0,0.0815955,-0.382883][-0.153618,0.963856,-0.217677][0.852241,0.821973,0][0.308571,0.0310528,-0.388919][0.203772,0.966881,-0.153682][0.853425,0.882687,0][0,-0.00861444,-0.782325][-0.158033,0.875949,-0.455783][0.932082,0.825226,0][0.308571,0.0310528,-0.388919][0.203772,0.966881,-0.153682][0.853425,0.882687,0][0.328856,-0.0215939,-0.693246][0.158033,0.875949,-0.455783][0.912807,0.888485,0][0,0.103121,0.909119][-0.21953,0.975494,0.0147718][0.600438,0.825981,0][0,0.14663,1.29137][-0.648847,0.648429,0.398168][0.525402,0.821973,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.58549,0.919903,0][0,0.103121,0.909119][-0.21953,0.975494,0.0147718][0.600438,0.825981,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.58549,0.919903,0][0.379894,0.0200703,0.747827][0.134186,0.984794,0.110342][0.634145,0.900326,0][0,0.0815955,-0.382883][-0.153618,0.963856,-0.217677][0.852241,0.821973,0][0,0.0957862,0.00374914][-0.137496,0.989918,-0.0340115][0.776792,0.822001,0][0.347371,0.0475161,0.00311714][0.137496,0.989918,-0.0340138][0.7776,0.890066,0][0,0.0815955,-0.382883][-0.153618,0.963856,-0.217677][0.852241,0.821973,0][0.347371,0.0475161,0.00311714][0.137496,0.989918,-0.0340138][0.7776,0.890066,0][0.308571,0.0310528,-0.388919][0.203772,0.966881,-0.153682][0.853425,0.882687,0][0.595328,-0.0114629,0.00255414][0.502936,0.864309,0.00515395][0.778306,0.939277,0][0.529325,-0.0271137,-0.462165][0.367915,0.880769,-0.298137][0.867963,0.926576,0][0.308571,0.0310528,-0.388919][0.203772,0.966881,-0.153682][0.853425,0.882687,0][0.595328,-0.0114629,0.00255414][0.502936,0.864309,0.00515395][0.778306,0.939277,0][0.308571,0.0310528,-0.388919][0.203772,0.966881,-0.153682][0.853425,0.882687,0][0.347371,0.0475161,0.00311714][0.137496,0.989918,-0.0340138][0.7776,0.890066,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.779396,0.982912,0][0.717676,-0.13189,-0.539266][0.651835,0.587314,-0.479764][0.884865,0.967652,0][0.529325,-0.0271137,-0.462165][0.367915,0.880769,-0.298137][0.867963,0.926576,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.779396,0.982912,0][0.529325,-0.0271137,-0.462165][0.367915,0.880769,-0.298137][0.867963,0.926576,0][0.595328,-0.0114629,0.00255414][0.502936,0.864309,0.00515395][0.778306,0.939277,0][0.83246,-0.304567,-0.614746][0.763468,0.267113,-0.58802][0.294551,0.253712,0][0.717676,-0.13189,-0.539266][0.651835,0.587314,-0.479764][0.29819,0.316682,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.469315,0.324285,0][0.83246,-0.304567,-0.614746][0.763468,0.267113,-0.58802][0.294551,0.253712,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.469315,0.324285,0][0.915951,-0.304568,0.00174515][0.965848,0.223317,0.131402][0.470082,0.258416,0][0.883416,-0.546867,-0.669733][0.756083,-0.26872,-0.596765][0.289458,0.187739,0][0.83246,-0.304567,-0.614746][0.763468,0.267113,-0.58802][0.294551,0.253712,0][0.915951,-0.304568,0.00174515][0.965848,0.223317,0.131402][0.470082,0.258416,0][0.883416,-0.546867,-0.669733][0.756083,-0.26872,-0.596765][0.289458,0.187739,0][0.915951,-0.304568,0.00174515][0.965848,0.223317,0.131402][0.470082,0.258416,0][0.972017,-0.546867,0.00142816][0.966157,-0.223392,0.128984][0.469923,0.187939,0][0.83246,-0.789165,-0.614746][0.568038,-0.697084,-0.4375][0.298707,0.123146,0][0.883416,-0.546867,-0.669733][0.756083,-0.26872,-0.596765][0.289458,0.187739,0][0.972017,-0.546867,0.00142816][0.966157,-0.223392,0.128984][0.469923,0.187939,0][0.83246,-0.789165,-0.614746][0.568038,-0.697084,-0.4375][0.298707,0.123146,0][0.972017,-0.546867,0.00142816][0.966157,-0.223392,0.128984][0.469923,0.187939,0][0.915951,-0.789165,0.00174517][0.772384,-0.626404,0.105082][0.469108,0.117792,0][0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.325927,0.041277,0][0.83246,-0.789165,-0.614746][0.568038,-0.697084,-0.4375][0.298707,0.123146,0][0.915951,-0.789165,0.00174517][0.772384,-0.626404,0.105082][0.469108,0.117792,0][0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.325927,0.041277,0][0.915951,-0.789165,0.00174517][0.772384,-0.626404,0.105082][0.469108,0.117792,0][0.746653,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.468852,0.038255,0][1.56325e-007,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.812007,0][1.56325e-007,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.812007,0][0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.680606,0][1.56325e-007,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.812007,0][0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.680606,0][0.746653,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.667427,0][0,0.14663,1.29137][-0.648847,0.648429,0.398168][0.984306,0.373164,0][0,-0.304568,1.36188][-0.378615,0.280594,0.881996][0.990064,0.233902,0][0.553427,-0.304568,1.12431][0.648848,0.64843,0.398165][0.812325,0.242761,0] \ No newline at end of file diff --git a/charcustom/hats/fonts/SantaHat.mesh b/charcustom/hats/fonts/SantaHat.mesh new file mode 100644 index 0000000..cfd4011 --- /dev/null +++ b/charcustom/hats/fonts/SantaHat.mesh @@ -0,0 +1,3 @@ +version 1.00 +854 +[-0.849858,0.482622,7.07818e-007][-0.913596,0.405951,0.0233465][0.2309,0.387171,0][-0.898697,0.243419,0.303609][-0.900438,0.333669,0.279065][0.167443,0.437166,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][0.728969,1.85899,-0.235635][0.375554,0.184848,-0.90818][0.643927,0.0994954,0][0.808619,1.79383,-0.193009][0.64946,-0.0384623,-0.759422][0.652836,0.113114,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.0281239,0,1.05689][0.0154793,0.965037,2.4819][0.914076,0.488043,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][0.273347,0.878875,0.676493][0.277064,0.324141,0.904527][0.83457,0.30435,0][-0.826917,0,0.621224][0,-2.43473,0][0.823018,0.488043,0][-0.826918,0,-0.621222][0,-2.51327,0][0.563335,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][-0.168217,1.24397,0.431713][-0.503277,0.567901,0.651307][0.140668,0.228041,0][-0.124607,1.00708,0.610274][-0.302557,0.457351,0.836235][0.103347,0.277553,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.28015,0.0896171,0][0.382497,1.64555,-0.368398][-0.0729991,0.468239,-0.880581][0.307898,0.144108,0][0.751085,2.08796,-0.132824][-0.165166,0.661114,-0.73188][0.258661,0.0516391,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.138426,0.598638,0][-0.587999,0.154875,0.770512][0.313957,0.824604,-0.470594][0.170341,0.592917,0][-0.80313,0.135706,0.56217][0.245016,0.916799,-0.315352][0.213886,0.58891,0][-0.0425376,0.129121,1.17491][-0.0171125,0.634941,0.772371][0.582222,0.679029,0][-0.245152,0.0188195,1.19288][-0.189165,0.0673815,0.979631][0.585978,0.655975,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.590554,0.654904,0][-0.764066,-0.153167,0.740235][0.107275,-0.992221,0.0631661][0.176669,0.528533,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.13815,0.540634,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.118845,0.531058,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.16333,0.532393,0][-0.357874,0.420968,-0.809125][-0.402638,0.376846,-0.834188][0.400015,0.400057,0][-0.593101,0,-0.85504][-1.05758,0.624285,-1.16138][0.409611,0.488043,0][-0.499288,0.662361,-0.589522][-0.581832,0.429403,-0.690713][0.354115,0.349603,0][-0.826918,0,-0.621222][0,-2.51327,0][0.563335,0.488043,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][0.981113,-0.142346,0.265592][-0.157941,-0.98283,-0.0953895][0.392166,0.62229,0][0.912511,-0.106362,0.255835][-0.609722,-0.75665,-0.236049][0.390126,0.629811,0][0.926938,-0.0683631,-0.0459559][-0.811245,-0.58463,-0.00942857][0.327049,0.637753,0][1.10441,0.179189,-0.0879798][0.222288,0.974981,0.000437925][0.318266,0.689494,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.248765,0.689064,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.391689,0.688287,0][-1.02144,-0.177575,0.200632][0.718,-0.694922,-0.0394894][0.289451,0.523432,0][-1.03008,-0.167882,-0.122019][0.893366,-0.449286,0.00632539][0.356889,0.525458,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.844325,0.158148,-0.625008][0.238468,0.956082,0.170412][0.462018,0.593601,0][-0.868679,0.115683,-0.450257][0.634884,0.69357,0.340417][0.425493,0.584725,0][-0.545884,0.0422081,-0.776463][0.58989,0.223486,0.775941][0.493674,0.569368,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][-0.815674,0.139803,-0.834896][-0.338818,0.868249,-0.362416][0.162153,0.681262,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.135537,0.680569,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-1.14065,0.0940102,-0.312672][-0.765956,0.618254,-0.176277][0.271303,0.67169,0][-1.09039,0.071416,-0.508853][-0.859529,0.350196,-0.372253][0.230299,0.666968,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.574987,-0.0627342,-1.09214][0.427397,-0.362641,-0.828144][0.559654,0.547434,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.43708,0.097067,-0.854276][-0.400855,0.646044,0.649571][0.158102,0.672329,0][0.415389,0.0263701,-0.816313][-0.499727,0.264193,0.824909][0.166037,0.657553,0][0.639929,0.0361261,-0.657771][-0.654276,0.313054,0.688418][0.199174,0.659592,0][-0.844325,0.158148,-0.625008][0.238468,0.956082,0.170412][0.462018,0.593601,0][-0.545884,0.0422081,-0.776463][0.58989,0.223486,0.775941][0.493674,0.569368,0][-0.434514,0.108111,-0.88703][0.36384,0.555769,0.74749][0.516783,0.583143,0][-0.156803,-0.171805,-1.12598][-0.0640342,-0.963518,-0.259871][0.566726,0.524638,0][-0.301273,-0.148268,-0.97666][0.113418,-0.858065,0.500859][0.535517,0.529557,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][-0.606715,0.918732,-0.118783][-0.82612,0.553412,-0.106113][0.255726,0.296019,0][-0.838765,0.481231,-0.142058][-0.899377,0.401956,-0.171907][0.260591,0.387461,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][0.218505,1.74859,0.227683][-0.455598,0.692628,0.559193][0.183312,0.122571,0][-0.168217,1.24397,0.431713][-0.503277,0.567901,0.651307][0.140668,0.228041,0][-0.235054,-0.0933124,1.1447][-0.130327,-0.739664,0.660236][0.575907,0.632538,0][-0.395056,-0.116515,1.0616][-0.173889,-0.892706,0.41574][0.55854,0.627689,0][0.13406,-0.145709,1.09706][-0.0120323,-0.952659,0.303803][0.56595,0.621587,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][-1.02627,0.109059,0.542669][-0.493167,0.84343,0.213102][0.450078,0.674836,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.349054,0.67298,0][0.819887,0.555474,0.234641][0.906512,0.273161,0.321899][0.742219,0.371944,0][0.64038,0.601182,0.536918][0.752421,0.283643,0.594482][0.805397,0.36239,0][0.780167,0.278353,0.533768][0.763684,0.388516,0.515599][0.804739,0.429865,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][-0.826917,0,0.621224][0,-2.43473,0][0.823018,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][0.926938,-0.0683631,-0.0459559][-0.811245,-0.58463,-0.00942857][0.327049,0.637753,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.323486,0.623874,0][0.981113,-0.142346,0.265592][-0.157941,-0.98283,-0.0953895][0.392166,0.62229,0][0.869439,-0.12949,-0.485315][-0.391334,-0.873626,0.289198][0.235219,0.624977,0][0.818027,-0.0741065,-0.451186][-0.729688,-0.549367,0.407125][0.242352,0.636552,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][1.20413,0.0361795,-0.294733][0.979506,0.104485,-0.172196][0.392987,0.568108,0][1.11332,0.142551,-0.455818][0.575975,0.792788,-0.199347][0.426656,0.590341,0][1.17604,0.143261,-0.101126][0.728111,0.68497,-0.0258946][0.352522,0.590489,0][0.972224,0.0919753,-0.769733][0.606789,0.601631,-0.519468][0.492267,0.57977,0][0.872237,0.000153834,-0.906709][0.666296,0.0253514,-0.745256][0.520896,0.560579,0][0.721754,0.0683565,-0.994283][0.458434,0.504602,-0.731584][0.5392,0.574834,0][0.981113,-0.142346,0.265592][-0.157941,-0.98283,-0.0953895][0.392166,0.62229,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.487095,0.617793,0][0.912511,-0.106362,0.255835][-0.609722,-0.75665,-0.236049][0.390126,0.629811,0][0.130864,-0.10961,0.943977][-0.164423,-0.559635,-0.812264][0.533955,0.629132,0][0.129876,-0.0391991,0.903293][-0.0954299,-0.262111,-0.960308][0.525451,0.643848,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.884423,0.139878,0.409708][-0.64107,0.700861,-0.312768][0.422287,0.681277,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.391689,0.688287,0][0.975081,0.151071,0.0957407][-0.587392,0.808209,-0.0420508][0.356665,0.683617,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.522703,0.667535,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.272127,-0.00564807,0.870069][-0.279542,0.338212,-0.898593][0.518507,0.650861,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.494157,0.914588,0][1.32328,2.32801,0.11229][0.871484,0.237054,0.429326][0.491867,0.873327,0][1.27687,2.2015,0.177887][0.678472,-0.239137,0.694614][0.501567,0.899769,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.0747728,0.99,0][0.908474,2.08678,-0.00212442][-0.718412,-0.694103,0.0458877][0.0987511,0.978011,0][0.886564,2.1306,0.0653084][-0.821546,-0.506627,0.261515][0.0895922,0.98259,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.776086,1.39824,0.175855][0.899364,-0.0897434,0.427891][0.729932,0.195798,0][0.693441,0.905796,0.358862][0.87134,0.0882126,0.482686][0.768182,0.298723,0][0.407597,1.8648,0.221299][-0.318501,0.664012,0.676495][0.184646,0.0982825,0][0.643021,1.92931,0.226895][-0.0149847,0.483065,0.875456][0.183476,0.0847996,0][0.751085,2.08796,0.132824][-0.118599,0.63005,0.767445][0.203138,0.0516391,0][0.922196,2.19562,-0.179111][-0.66893,-0.367799,-0.645954][0.0760021,0.975143,0][0.886564,2.1306,-0.0695573][-0.808301,-0.489681,-0.326898][0.0895922,0.98259,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.0747728,0.99,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.034741,0.893368,0][1.32328,2.32801,-0.116539][0.913329,0.22673,-0.338266][0.048331,0.891313,0][0.0238805,-0.13829,-1.19868][-0.047955,-0.676699,-0.734696][0.581921,0.531642,0][0.0277378,-0.0683013,-1.23874][0.0469238,-0.28212,-0.958231][0.590294,0.546271,0][0.220523,-0.0304661,-1.21809][0.236126,-0.0855595,-0.967948][0.585978,0.554179,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.135537,0.680569,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.172721,0.686014,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.10944,0.681769,0][-0.606715,0.918732,-0.118783][-0.82612,0.553412,-0.106113][0.255726,0.296019,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][-0.327681,1.30656,-0.0955081][-0.762453,0.629528,-0.149534][0.250862,0.21496,0][0.382497,1.64555,-0.368398][-0.0729991,0.468239,-0.880581][0.307898,0.144108,0][0.25193,1.72759,-0.273902][-0.367009,0.638862,-0.676136][0.288148,0.12696,0][0.569512,1.98944,-0.168696][-0.273012,0.693498,-0.666727][0.266159,0.0722306,0][-0.943136,-0.136206,-0.664218][-0.409153,-0.868458,-0.279953][0.197827,0.623573,0][-0.988039,-0.0801959,-0.688873][-0.740815,-0.465411,-0.484341][0.192673,0.63528,0][-0.840207,-0.111369,-0.845488][-0.556189,-0.641667,-0.528126][0.159939,0.628764,0][-1.04123,-0.142485,-0.482088][-0.444563,-0.873017,-0.200509][0.235893,0.622261,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-1.09206,-0.0877226,-0.4949][-0.835444,-0.436777,-0.333556][0.233216,0.633707,0][0.135691,-0.10126,1.16822][0.0565671,-0.646236,0.761038][0.087217,0.539382,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.077486,0.563409,0][-0.0557947,-0.0234923,1.2136][-0.05711,-0.208462,0.976362][0.0777306,0.555636,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][0.805856,-0.142495,0.792698][0.475068,-0.780231,0.406878][0.165704,0.530764,0][0.929811,-0.133043,0.6333][0.490353,-0.806856,0.329449][0.19902,0.532739,0][0.969817,0,0.479815][0.896916,0.432149,0.291424][0.793462,0.488043,0][1.072,0,0.165331][1.30668,0.647,0.384929][0.727732,0.488043,0][0.908152,0.262314,0.280618][0.871414,0.388507,0.299498][0.751828,0.433217,0][0.941159,0.258178,-0.142059][0.913365,0.38602,-0.129432][0.663485,0.434081,0][0.854043,0.269095,-0.41227][0.824702,0.386224,-0.413155][0.607008,0.4318,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][0.451855,0.482395,-0.742841][0.461347,0.329512,-0.82376][0.537915,0.387218,0][0.561456,0.461657,-0.674486][0.62333,0.292223,-0.725304][0.552202,0.391552,0][0.883162,0,-0.621223][0.082139,0.0435687,-0.118484][0.563335,0.488043,0][0.0799565,0.552761,-0.83371][0.0117295,0.354687,-0.934912][0.518923,0.372511,0][0.382706,1.2211,-0.52954][0.545522,0.146805,-0.825139][0.582497,0.232821,0][0.208104,0.528515,-0.823446][0.237864,0.356444,-0.903531][0.521068,0.377578,0][-1.21797,-0.126086,0.104586][-0.874292,-0.482019,-0.0571869][0.358514,0.625688,0][-1.15935,-0.175458,0.0866602][-0.40527,-0.911791,-0.0662822][0.354767,0.615369,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-0.743173,-0.0276365,0.967832][-0.511557,-0.401452,0.759701][0.538941,0.646265,0][-0.745699,0.0132188,0.971718][-0.597551,0.102645,0.795234][0.539753,0.654804,0][-0.999484,-0.0212405,0.745957][-0.738984,0.124406,0.662137][0.492567,0.647602,0][1.12587,-0.108258,-0.263447][0.53543,-0.839102,-0.0960319][0.386448,0.53792,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][0.73503,-0.0113983,-1.01061][0.545912,-0.0766649,-0.834328][0.542612,0.558164,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.574987,-0.0627342,-1.09214][0.427397,-0.362641,-0.828144][0.559654,0.547434,0][-0.887257,0.0414162,-0.292242][0.937882,0.26583,0.22296][0.392467,0.569203,0][-0.926431,0.110962,-0.302059][0.660001,0.731454,0.171387][0.394519,0.583739,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.294289,0.587688,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.229563,0.589776,0][-0.319499,0.159871,0.917721][0.162323,0.822015,-0.545841][0.139573,0.593961,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.138426,0.598638,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][0.131686,0.043177,0.903801][-0.066218,0.267845,-0.961184][0.525558,0.661066,0][0.13648,0.115446,0.945318][0.0185653,0.723634,-0.689935][0.534235,0.676171,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.522703,0.667535,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][0.52439,-0.00156935,1.09647][0.45658,0.0383579,0.888855][0.102212,0.560218,0][0.6938,0.0733359,0.96398][0.494438,0.547315,0.67526][0.129904,0.575874,0][0.847956,0.0786369,0.820737][0.65569,0.464722,0.595066][0.159843,0.576982,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][1.25496,2.08678,0.110454][0.511921,-0.699539,0.49858][0.506146,0.923747,0][1.27687,2.2015,0.177887][0.678472,-0.239137,0.694614][0.501567,0.899769,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][1.11578,2.06971,-0.175814][0.152257,-0.742893,-0.651864][0.102319,0.934682,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][1.25496,2.08678,-0.114703][0.562894,-0.708479,-0.425685][0.0987511,0.905593,0][0.925923,0.0907754,-0.0494777][-0.863204,0.504853,0.00165961][0.326313,0.671014,0][0.89068,0.00974836,-0.184495][-0.978056,-0.0353922,0.205315][0.298093,0.654079,0][0.905117,0.0095525,-0.0437636][-0.999599,-0.0206828,-0.0193643][0.327507,0.654038,0][0.329637,0.132566,-0.979345][-0.037065,0.991858,0.121833][0.131962,0.679749,0][0.670857,0.108103,-0.691406][-0.506415,0.654287,0.561651][0.192144,0.674636,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.203064,0.684969,0][1.04264,2.5114,0.0395513][-0.166864,0.9537,0.250224][0.550522,0.834996,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][1.01067,2.45392,0.147665][-0.225494,0.765507,0.602621][0.557204,0.84701,0][1.12192,2.5114,-0.0695573][0.110013,0.934483,-0.338585][0.01,0.9334,0][1.10183,2.39303,-0.225957][0.00650135,0.562933,-0.826477][0.034741,0.937598,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][-0.298472,0,1.00516][0,-2.51327,0][0.903265,0.488043,0][-0.826917,0,0.621224][0,-2.43473,0][0.823018,0.488043,0][-0.411279,0.212997,0.87541][-0.445537,0.340092,0.828151][0.0479305,0.443525,0][-0.401542,0.643866,0.674486][-0.487591,0.421573,0.764546][0.0899255,0.353469,0][-0.719209,0,0.747333][-0.853624,0.535487,1.01981][0.0746998,0.488043,0][0.211726,0.0839651,-1.17187][0.158111,0.681481,-0.714552][0.576317,0.578096,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.566099,0.587776,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.0292531,0.014075,-1.23744][0.0614803,0.359155,-0.931251][0.371606,0.99,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.371076,0.966039,0][0.211726,0.0839651,-1.17187][0.158111,0.681481,-0.714552][0.410253,0.977802,0][-0.385166,0.159121,1.06691][-0.207462,0.846007,0.491154][0.559649,0.685299,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-0.234954,0.0985992,1.17372][-0.167458,0.510449,0.843445][0.581973,0.67265,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-0.999484,-0.0212405,0.745957][-0.738984,0.124406,0.662137][0.492567,0.647602,0][-0.745699,0.0132188,0.971718][-0.597551,0.102645,0.795234][0.539753,0.654804,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.349054,0.67298,0][-1.23463,-0.00780537,0.0978408][-0.979773,0.193795,0.0498782][0.357104,0.65041,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][-1.15071,-0.126895,0.455403][-0.678985,-0.662585,0.316166][0.431838,0.625519,0][-1.17152,-0.0505837,0.462046][-0.932351,0.0103318,0.361406][0.433226,0.641469,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][1.22339,0.0338603,-0.104533][0.99949,-0.0316782,-0.00400833][0.353234,0.567624,0][1.21288,0.0294806,0.0905947][0.990983,-0.0418889,0.12727][0.31245,0.566708,0][0.929811,-0.133043,0.6333][0.490353,-0.806856,0.329449][0.19902,0.532739,0][0.805856,-0.142495,0.792698][0.475068,-0.780231,0.406878][0.165704,0.530764,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-0.546919,-0.040168,-0.776863][0.577888,-0.326997,0.747742][0.493757,0.552151,0][-0.671759,-0.0752003,-0.68937][0.655507,-0.471575,0.589854][0.47547,0.544829,0][-0.934418,-0.08531,-0.138446][0.842914,-0.527385,0.106589][0.360322,0.542716,0][-1.03008,-0.167882,-0.122019][0.893366,-0.449286,0.00632539][0.356889,0.525458,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][0.882463,1.73342,-0.0373209][0.949773,0.295348,-0.103448][0.685376,0.125741,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][0.587278,1.73562,0.312964][0.22365,0.301747,0.926784][0.758589,0.125283,0][0.273347,0.878875,0.676493][0.277064,0.324141,0.904527][0.83457,0.30435,0][0.451615,-0.153831,-0.879014][-0.400738,0.0728588,0.913291][0.152932,0.619889,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][0.290679,-0.0977864,-0.886699][-0.286799,-0.487428,0.824718][0.151326,0.631603,0][0.00456253,-0.0584856,-0.931307][-0.0691712,-0.31798,0.945571][0.142002,0.639817,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.126183,0.619143,0][0.290679,-0.0977864,-0.886699][-0.286799,-0.487428,0.824718][0.151326,0.631603,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][0.966964,2.39303,0.177887][-0.461784,0.48968,0.739574][0.56634,0.859737,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][0.983457,2.2015,0.221708][-0.481138,-0.186663,0.856542][0.562892,0.899769,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][1.13983,2.19562,0.245574][0.176133,-0.250814,0.951877][0.53021,0.900998,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][-0.464491,-0.115469,0.849119][0.102474,-0.989507,-0.101855][0.153911,0.536412,0][-0.764066,-0.153167,0.740235][0.107275,-0.992221,0.0631661][0.176669,0.528533,0][-0.155759,0.0572934,0.887584][0.218986,0.0842997,-0.972079][0.145872,0.572521,0][-0.157569,-0.0250827,0.885835][0.226027,-0.255412,-0.940041][0.146237,0.555304,0][-0.544189,-0.0250008,0.709689][0.543142,-0.277962,-0.792297][0.183054,0.555321,0][-0.357874,0.420968,-0.809125][-0.402638,0.376846,-0.834188][0.400015,0.400057,0][-0.499288,0.662361,-0.589522][-0.581832,0.429403,-0.690713][0.354115,0.349603,0][-0.289622,1.06024,-0.484315][-0.532148,0.508043,-0.677282][0.332126,0.266442,0][-0.289622,1.06024,-0.484315][-0.532148,0.508043,-0.677282][0.332126,0.266442,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][-0.272734,1.28499,-0.277176][-0.669266,0.607672,-0.427571][0.288832,0.219468,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.155434,1.47204,0.165677][-0.680188,0.663334,0.31198][0.196272,0.180372,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.336299,1.91606,-0.0489582][-0.552679,0.8268,-0.104635][0.241132,0.0875687,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.65996,0.0669656,0.65074][-0.622233,0.45152,-0.639497][0.472665,0.666038,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.487095,0.617793,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][0.912511,-0.106362,0.255835][-0.609722,-0.75665,-0.236049][0.390126,0.629811,0][-0.147204,0.137236,-1.03704][0.0567344,0.97506,0.214567][0.548136,0.58923,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.5586,0.590275,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.495319,0.594519,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.119158,0.679823,0][0.00903557,0.0939686,-0.970002][-0.0288356,0.730125,0.682705][0.133915,0.671682,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][-0.539935,-0.00449521,-1.13039][-0.461088,0.0209924,-0.887106][0.100391,0.651102,0][-0.523346,-0.117653,-1.09007][-0.381388,-0.643711,-0.663461][0.108819,0.627451,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.077486,0.647856,0][0.0212981,-0.162503,-1.16613][-0.0265358,-0.903526,-0.427711][0.092921,0.618077,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.100541,0.620821,0][0.948664,-0.101762,-0.746352][0.596673,-0.721055,-0.352222][0.48738,0.539277,0][1.08474,0.0268643,-0.639541][0.879868,-0.13081,-0.456859][0.465056,0.566161,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][1.08474,0.0268643,-0.639541][0.879868,-0.13081,-0.456859][0.465056,0.566161,0][1.06633,0.104413,-0.628253][0.653398,0.629066,-0.421125][0.462696,0.58237,0][1.13726,0.111986,-0.467393][0.835515,0.488789,-0.250999][0.429075,0.583953,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.541857,0.527648,0][0.00456253,-0.0584856,-0.931307][-0.0691712,-0.31798,0.945571][0.526038,0.548322,0][-0.282756,-0.0504053,-0.902912][0.209084,-0.378239,0.901786][0.520103,0.550011,0][-0.419758,-0.0450573,-0.852073][0.401458,-0.304306,0.863846][0.509477,0.551129,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-0.301273,-0.148268,-0.97666][0.113418,-0.858065,0.500859][0.535517,0.529557,0][0.454128,0.648608,0.676557][0.527235,0.279253,0.802522][0.834583,0.352478,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][0.333097,0.504865,0.792905][0.51228,0.342006,0.787783][0.858901,0.382522,0][0.333097,0.504865,0.792905][0.51228,0.342006,0.787783][0.858901,0.382522,0][0.507941,0,0.941693][0.795412,0.733051,1.65457][0.889999,0.488043,0][0.454128,0.648608,0.676557][0.527235,0.279253,0.802522][0.834583,0.352478,0][0.808619,1.79383,-0.193009][0.64946,-0.0384623,-0.759422][0.652836,0.113114,0][0.728969,1.85899,-0.235635][0.375554,0.184848,-0.90818][0.643927,0.0994954,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][0.86461,1.74803,-0.108309][0.888663,-0.202213,-0.411568][0.670539,0.122688,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.693441,0.905796,0.358862][0.87134,0.0882126,0.482686][0.768182,0.298723,0][0.774166,0.874114,0.188664][0.948427,0.110069,0.297272][0.732609,0.305345,0][0.941159,0.258178,0.142057][0.913649,0.391758,0.108498][0.722868,0.434081,0][0.941159,0.258178,-0.142059][0.913365,0.38602,-0.129432][0.663485,0.434081,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][1.27687,2.2015,-0.182136][0.633168,-0.244279,-0.734456][0.0747728,0.901013,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][1.13983,2.19562,-0.249823][0.0394769,-0.22673,-0.973157][0.0760021,0.929656,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][0.986627,2.32801,-0.225923][-0.391392,0.251143,-0.885291][0.048331,0.961676,0][1.16572,0.139328,0.0870666][0.69293,0.711056,0.119364][0.313188,0.589667,0][1.21288,0.0294806,0.0905947][0.990983,-0.0418889,0.12727][0.31245,0.566708,0][1.22339,0.0338603,-0.104533][0.99949,-0.0316782,-0.00400833][0.353234,0.567624,0][1.0786,0.0961145,0.470652][0.784955,0.487194,0.382737][0.233015,0.580635,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][0.977069,0.0882719,0.653029][0.746135,0.377081,0.548718][0.194896,0.578996,0][-0.826918,0,-0.621222][0,-2.51327,0][0.563335,0.488043,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.474996,0.488043,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][0.193456,-1.25309e-007,-1.04388][0,0.483188,-1.25436][0.474996,0.488043,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.474996,0.488043,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.536425,0.328573,0][-0.699126,0.700172,-0.25763][-0.835889,0.465032,-0.291607][0.284747,0.3417,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][-0.751649,0.470314,-0.41227][-0.816471,0.379059,-0.435533][0.317068,0.389743,0][-0.826917,0,0.621224][0,-2.43473,0][0.823018,0.488043,0][-1.01575,0,-0.165333][0,-2.67035,0][0.65862,0.488043,0][-0.826918,0,-0.621222][0,-2.51327,0][0.563335,0.488043,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.100575,0.595754,0][0.488895,0.145942,0.990606][0.243992,0.904599,0.349527][0.124339,0.59105,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.100575,0.595754,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.138426,0.598638,0][0.854043,0.269095,-0.41227][0.824702,0.386224,-0.413155][0.607008,0.4318,0][0.941159,0.258178,-0.142059][0.913365,0.38602,-0.129432][0.663485,0.434081,0][1.03328,0,-0.326596][2.54973,1.3029,-0.816645][0.624915,0.488043,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][0.883162,0,-0.621223][0.082139,0.0435687,-0.118484][0.563335,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][1.26032,2.45392,-0.0707987][0.581801,0.773308,-0.251996][0.0220143,0.904472,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.034741,0.893368,0][1.23009,2.39303,-0.184281][0.524639,0.522939,-0.671781][0.034741,0.910789,0][1.21486,2.45392,0.129122][0.449151,0.761654,0.467062][0.514527,0.84701,0][1.31345,2.39303,0.0653084][0.83456,0.499586,0.232214][0.493922,0.859737,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.523713,0.834996,0][-1.03856,0.133151,-0.503348][-0.49468,0.842758,-0.212251][0.23145,0.679871,0][-1.09039,0.071416,-0.508853][-0.859529,0.350196,-0.372253][0.230299,0.666968,0][-1.14065,0.0940102,-0.312672][-0.765956,0.618254,-0.176277][0.271303,0.67169,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.294289,0.587688,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-0.926431,0.110962,-0.302059][0.660001,0.731454,0.171387][0.394519,0.583739,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][-1.07787,-0.115688,0.604006][-0.688104,-0.560082,0.461326][0.462897,0.627862,0][-0.982334,-0.0988274,0.733889][-0.581941,-0.556274,0.593215][0.490044,0.631386,0][-0.464491,-0.115469,0.849119][0.102474,-0.989507,-0.101855][0.153911,0.536412,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.16333,0.532393,0][-0.764066,-0.153167,0.740235][0.107275,-0.992221,0.0631661][0.176669,0.528533,0][-0.35606,1.08165,0.40259][-0.634612,0.535931,0.556817][0.146755,0.261968,0][-0.155434,1.47204,0.165677][-0.680188,0.663334,0.31198][0.196272,0.180372,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-0.699126,0.700172,0.257631][-0.808754,0.47751,0.343367][0.177052,0.3417,0][-0.898697,0.243419,0.303609][-0.900438,0.333669,0.279065][0.167443,0.437166,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.034741,0.893368,0][1.34789,2.19562,0.0365472][0.970764,-0.200906,0.131356][0.0760021,0.88617,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.0747728,0.890773,0][1.15737,2.01222,-0.0438002][0.282473,-0.950217,-0.13152][0.114333,0.92599,0][1.31232,2.1306,-0.0730275][0.845459,-0.49173,-0.208328][0.0895922,0.893604,0][1.27007,2.06971,0.0365472][0.595821,-0.798345,0.087423][0.102319,0.902434,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][0.25193,1.72759,-0.273902][-0.367009,0.638862,-0.676136][0.288148,0.12696,0][-0.0368969,1.41677,-0.379109][-0.454375,0.589281,-0.668051][0.310137,0.191925,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][-0.155434,1.47204,0.165677][-0.680188,0.663334,0.31198][0.196272,0.180372,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][1.11332,0.142551,-0.455818][0.575975,0.792788,-0.199347][0.426656,0.590341,0][1.13726,0.111986,-0.467393][0.835515,0.488789,-0.250999][0.429075,0.583953,0][1.06633,0.104413,-0.628253][0.653398,0.629066,-0.421125][0.462696,0.58237,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.329637,0.132566,-0.979345][-0.037065,0.991858,0.121833][0.536078,0.588254,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.464976,0.593474,0][0.493084,-0.176767,-0.949697][0.0707232,-0.996045,-0.0537756][0.529881,0.5236,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][0.0122331,-0.174511,-1.04564][-0.0130506,-0.989549,0.143603][0.549934,0.524072,0][-0.156803,-0.171805,-1.12598][-0.0640342,-0.963518,-0.259871][0.566726,0.524638,0][0.0212981,-0.162503,-1.16613][-0.0265358,-0.903526,-0.427711][0.575119,0.526582,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][-0.662464,-0.0702684,0.632407][0.733462,-0.170155,-0.658088][0.199206,0.54586,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-0.875782,0.0316185,0.27557][0.92319,0.259649,-0.283376][0.273788,0.567155,0][-0.913465,-0.00429873,-0.143983][0.98599,-0.10629,0.128551][0.361479,0.559648,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][1.12587,-0.108258,-0.263447][0.53543,-0.839102,-0.0960319][0.386448,0.53792,0][0.948664,-0.101762,-0.746352][0.596673,-0.721055,-0.352222][0.48738,0.539277,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.413328,0.531419,0][0.750517,-0.161722,-0.771202][0.0634641,-0.997952,0.00797214][0.492574,0.526745,0][0.985152,2.06971,0.129122][-0.408672,-0.769116,0.491373][0.562538,0.927315,0][0.886564,2.1306,0.0653084][-0.821546,-0.506627,0.261515][0.583144,0.914588,0][0.908474,2.08678,-0.00212442][-0.718412,-0.694103,0.0458877][0.578565,0.923747,0][1.15737,2.01222,-0.0438002][0.282473,-0.950217,-0.13152][0.526544,0.939329,0][1.27007,2.06971,0.0365472][0.595821,-0.798345,0.087423][0.502988,0.927315,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.543112,0.939329,0][-0.245152,0.0188195,1.19288][-0.189165,0.0673815,0.979631][0.585978,0.655975,0][-0.0557947,-0.0234923,1.2136][-0.05711,-0.208462,0.976362][0.590309,0.647131,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.590554,0.654904,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.593874,0.0174512,1.06432][-0.441354,0.0793077,0.893822][0.559108,0.655689,0][-0.743173,-0.0276365,0.967832][-0.511557,-0.401452,0.759701][0.538941,0.646265,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][-0.539935,-0.00449521,-1.13039][-0.461088,0.0209924,-0.887106][0.100391,0.651102,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][-0.343291,0.101004,-1.15653][-0.178977,0.667023,-0.72322][0.0949277,0.673152,0][-0.355831,-0.0113315,-1.20322][-0.283619,0.0743696,-0.956049][0.0851693,0.649673,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.391689,0.688287,0][0.884423,0.139878,0.409708][-0.64107,0.700861,-0.312768][0.422287,0.681277,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][0.488895,0.145942,0.990606][0.243992,0.904599,0.349527][0.124339,0.59105,0][0.600733,0.140938,0.826926][-0.212792,0.941052,-0.262946][0.15855,0.590004,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][0.751085,2.08796,-0.132824][-0.165166,0.661114,-0.73188][0.665415,0.0516391,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.643927,0.0896171,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][0.89091,2.21842,0.0140458][-0.357686,0.918735,0.167292][0.227964,0.0243726,0][0.702127,-0.0049209,0.982153][0.617227,-0.0982616,0.780625][0.126106,0.559518,0][0.6938,0.0733359,0.96398][0.494438,0.547315,0.67526][0.129904,0.575874,0][0.52439,-0.00156935,1.09647][0.45658,0.0383579,0.888855][0.102212,0.560218,0][0.52439,-0.00156935,1.09647][0.45658,0.0383579,0.888855][0.102212,0.560218,0][0.50534,-0.116874,1.05909][0.3507,-0.605722,0.71422][0.110025,0.536119,0][0.702127,-0.0049209,0.982153][0.617227,-0.0982616,0.780625][0.126106,0.559518,0][0.728969,1.85899,-0.235635][0.375554,0.184848,-0.90818][0.643927,0.0994954,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.592303,1.12337,-0.433747][0.626988,0.136686,-0.766944][0.602519,0.253249,0][0.561456,0.461657,-0.674486][0.62333,0.292223,-0.725304][0.552202,0.391552,0][0.451855,0.482395,-0.742841][0.461347,0.329512,-0.82376][0.537915,0.387218,0][0.409275,1.01732,-0.580652][0.479636,0.261064,-0.837732][0.571815,0.275413,0][1.21486,2.45392,0.129122][0.449151,0.761654,0.467062][0.514527,0.84701,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][1.31345,2.39303,0.0653084][0.83456,0.499586,0.232214][0.493922,0.859737,0][1.15919,2.43685,0.180032][0.155062,0.702186,0.694903][0.526162,0.850578,0][1.13728,2.32213,0.247465][0.0907094,0.242698,0.965852][0.530742,0.874556,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][0.87415,2.32213,0.110454][-0.898059,0.18909,0.397158][0.585739,0.874556,0][0.887692,2.39303,0.0687787][-0.824464,0.509546,0.246217][0.582908,0.859737,0][0.852125,2.32801,-0.0407961][-0.970226,0.194618,-0.144172][0.590342,0.873327,0][0.852125,2.32801,-0.0407961][-0.970226,0.194618,-0.144172][0.048331,0.989788,0][0.887692,2.39303,-0.0730275][-0.80624,0.503502,-0.310585][0.034741,0.982355,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][0.969817,0,0.479815][0.896916,0.432149,0.291424][0.793462,0.488043,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][0.507941,0,0.941693][0.795412,0.733051,1.65457][0.889999,0.488043,0][0.580825,0.303334,0.73467][0.646705,0.347404,0.679031][0.84673,0.424643,0][0.552579,0.623539,0.6143][0.628646,0.287661,0.722534][0.821571,0.357717,0][0.926938,-0.0683631,-0.0459559][-0.811245,-0.58463,-0.00942857][0.327049,0.637753,0][0.905117,0.0095525,-0.0437636][-0.999599,-0.0206828,-0.0193643][0.327507,0.654038,0][0.89068,0.00974836,-0.184495][-0.978056,-0.0353922,0.205315][0.298093,0.654079,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.203064,0.684969,0][0.670857,0.108103,-0.691406][-0.506415,0.654287,0.561651][0.192144,0.674636,0][0.875424,0.0887662,-0.329668][-0.779865,0.558359,0.282923][0.267751,0.670594,0][-0.662464,-0.0702684,0.632407][0.733462,-0.170155,-0.658088][0.199206,0.54586,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][-0.544189,-0.0250008,0.709689][0.543142,-0.277962,-0.792297][0.183054,0.555321,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][-0.544189,-0.0250008,0.709689][0.543142,-0.277962,-0.792297][0.183054,0.555321,0][-0.157569,-0.0250827,0.885835][0.226027,-0.255412,-0.940041][0.146237,0.555304,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.392273,0.52543,0][-0.766163,-0.155736,-0.776447][-0.386739,-0.900444,-0.199079][0.49367,0.527996,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-0.766163,-0.155736,-0.776447][-0.386739,-0.900444,-0.199079][0.17437,0.619491,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.275767,0.616925,0][-0.593874,0.0174512,1.06432][-0.441354,0.0793077,0.893822][0.559108,0.655689,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-0.80313,0.135706,0.56217][0.245016,0.916799,-0.315352][0.213886,0.58891,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.229563,0.589776,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.138426,0.598638,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][0.13406,-0.145709,1.09706][-0.0120323,-0.952659,0.303803][0.56595,0.621587,0][-0.395056,-0.116515,1.0616][-0.173889,-0.892706,0.41574][0.55854,0.627689,0][0.659004,-0.147096,0.92741][0.395968,-0.789808,0.468415][0.137548,0.529802,0][0.702127,-0.0049209,0.982153][0.617227,-0.0982616,0.780625][0.126106,0.559518,0][0.50534,-0.116874,1.05909][0.3507,-0.605722,0.71422][0.110025,0.536119,0][-0.913465,-0.00429873,-0.143983][0.98599,-0.10629,0.128551][0.361479,0.559648,0][-0.934418,-0.08531,-0.138446][0.842914,-0.527385,0.106589][0.360322,0.542716,0][-0.847508,-0.0759333,-0.433841][0.821599,-0.412094,0.393895][0.422062,0.544676,0][-0.671759,-0.0752003,-0.68937][0.655507,-0.471575,0.589854][0.47547,0.544829,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-1.02547,-0.166577,0.563929][-0.298952,-0.923124,0.241804][0.454521,0.617225,0][-0.982334,-0.0988274,0.733889][-0.581941,-0.556274,0.593215][0.490044,0.631386,0][-1.07787,-0.115688,0.604006][-0.688104,-0.560082,0.461326][0.462897,0.627862,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.414302,0.613103,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-1.15935,-0.175458,0.0866602][-0.40527,-0.911791,-0.0662822][0.354767,0.615369,0][0.648459,-0.0540569,0.644055][-0.677967,-0.229081,-0.698485][0.471268,0.640743,0][0.65996,0.0669656,0.65074][-0.622233,0.45152,-0.639497][0.472665,0.666038,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.487095,0.617793,0][0.451072,-0.164026,0.924802][-0.103849,-0.978355,-0.178987][0.529947,0.617758,0][0.925923,0.0907754,-0.0494777][-0.863204,0.504853,0.00165961][0.326313,0.671014,0][0.905117,0.0095525,-0.0437636][-0.999599,-0.0206828,-0.0193643][0.327507,0.654038,0][0.871764,0.0443309,0.246563][-0.889391,0.408635,-0.204943][0.388189,0.661307,0][0.819023,-0.0440294,0.39133][-0.88339,-0.187882,-0.429327][0.418446,0.642839,0][0.912511,-0.106362,0.255835][-0.609722,-0.75665,-0.236049][0.390126,0.629811,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][-0.977037,0,0.326597][-1.03284,0.399103,0.52626][0.162638,0.488043,0][-0.826917,0,0.621224][0,-2.43473,0][0.101058,0.488043,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-0.826917,0,0.621224][0,-2.43473,0][0.823018,0.488043,0][-0.977037,0,0.326597][-1.03284,0.399103,0.52626][0.761438,0.488043,0][-1.01575,0,-0.165333][0,-2.67035,0][0.65862,0.488043,0][-0.124607,1.00708,0.610274][-0.302557,0.457351,0.836235][0.103347,0.277553,0][-0.168217,1.24397,0.431713][-0.503277,0.567901,0.651307][0.140668,0.228041,0][-0.401542,0.643866,0.674486][-0.487591,0.421573,0.764546][0.0899255,0.353469,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.58277,0.678156,0.490043][-0.697758,0.458665,0.550237][0.128476,0.346302,0][-0.35606,1.08165,0.40259][-0.634612,0.535931,0.556817][0.146755,0.261968,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.114333,0.942559,0][1.0291,2.01222,-0.00212443][-0.308972,-0.95103,0.00889753][0.114333,0.952798,0][1.07809,2.01222,-0.0695573][-0.10394,-0.95103,-0.2911][0.114333,0.942559,0][0.939691,2.06971,-0.0707987][-0.57291,-0.742893,-0.346243][0.102319,0.971486,0][1.04082,2.08678,-0.184281][-0.326131,-0.670847,-0.666035][0.0987511,0.95035,0][1.07809,2.01222,-0.0695573][-0.10394,-0.95103,-0.2911][0.114333,0.942559,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][-0.840207,-0.111369,-0.845488][-0.556189,-0.641667,-0.528126][0.159939,0.628764,0][-0.988039,-0.0801959,-0.688873][-0.740815,-0.465411,-0.484341][0.192673,0.63528,0][-0.815674,0.139803,-0.834896][-0.338818,0.868249,-0.362416][0.162153,0.681262,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][-0.986038,0.0789427,-0.699849][-0.754516,0.42672,-0.498613][0.190379,0.668541,0][0.00903557,0.0939686,-0.970002][-0.0288356,0.730125,0.682705][0.534125,0.580187,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.548882,0.588328,0][-0.147204,0.137236,-1.03704][0.0567344,0.97506,0.214567][0.548136,0.58923,0][-0.291261,0.102572,-0.939522][0.233875,0.660794,0.7132][0.527754,0.581985,0][-0.418808,0.0373188,-0.850806][0.41011,0.246435,0.878111][0.509212,0.568347,0][-0.139275,0.0272654,-0.927272][0.116782,0.244828,0.962508][0.525194,0.566245,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][0.774165,0.874114,-0.188665][0.957379,0.0870037,-0.275419][0.653744,0.305345,0][0.790725,1.20385,-0.0722335][0.993517,0.0812246,-0.0795379][0.678079,0.236426,0][0.749194,1.41514,-0.227683][0.983125,-0.133311,-0.125271][0.645589,0.192266,0][0.790725,1.20385,-0.0722335][0.993517,0.0812246,-0.0795379][0.678079,0.236426,0][0.774165,0.874114,-0.188665][0.957379,0.0870037,-0.275419][0.653744,0.305345,0][0.00495392,0.762982,0.74997][-0.0709285,0.39875,0.914313][0.849927,0.328573,0][0.0281239,0,1.05689][0.0154793,0.965037,2.4819][0.914076,0.488043,0][0.326764,1.45651,0.456064][0.00584289,0.420704,0.907179][0.788498,0.183618,0][-0.401542,0.643866,0.674486][-0.487591,0.421573,0.764546][0.0899255,0.353469,0][-0.411279,0.212997,0.87541][-0.445537,0.340092,0.828151][0.0479305,0.443525,0][-0.124607,1.00708,0.610274][-0.302557,0.457351,0.836235][0.103347,0.277553,0][1.06018,2.32801,0.245574][-0.124189,0.326282,0.937079][0.546856,0.873327,0][0.966964,2.39303,0.177887][-0.461784,0.48968,0.739574][0.56634,0.859737,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][0.985152,2.06971,0.129122][-0.408672,-0.769116,0.491373][0.562538,0.927315,0][0.969916,2.1306,0.180032][-0.516925,-0.483155,0.706647][0.565723,0.914588,0][0.886564,2.1306,0.0653084][-0.821546,-0.506627,0.261515][0.583144,0.914588,0][0.208104,0.528515,-0.823446][0.237864,0.356444,-0.903531][0.521068,0.377578,0][0.409275,1.01732,-0.580652][0.479636,0.261064,-0.837732][0.571815,0.275413,0][0.451855,0.482395,-0.742841][0.461347,0.329512,-0.82376][0.537915,0.387218,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.474996,0.488043,0][0.193456,-1.25309e-007,-1.04388][0,0.483188,-1.25436][0.474996,0.488043,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][1.09629,-0.118293,0.280313][0.62762,-0.766513,0.136202][0.272797,0.535822,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][1.07886,-0.0630241,0.475145][0.803996,-0.482228,0.347918][0.232075,0.547374,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][1.12584,0.134041,0.276542][0.672309,0.714337,0.194225][0.273585,0.588562,0][1.0786,0.0961145,0.470652][0.784955,0.487194,0.382737][0.233015,0.580635,0][0.211726,0.0839651,-1.17187][0.158111,0.681481,-0.714552][0.576317,0.578096,0][0.220523,-0.0304661,-1.21809][0.236126,-0.0855595,-0.967948][0.585978,0.554179,0][0.0292531,0.014075,-1.23744][0.0614803,0.359155,-0.931251][0.590021,0.563488,0][0.568005,0.058457,-1.08071][0.339249,0.491161,-0.802291][0.557264,0.572765,0][0.73503,-0.0113983,-1.01061][0.545912,-0.0766649,-0.834328][0.542612,0.558164,0][0.405334,-0.0284817,-1.16833][0.285596,-0.0509241,-0.956996][0.575577,0.554594,0][-1.03856,0.133151,-0.503348][-0.49468,0.842758,-0.212251][0.23145,0.679871,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.27075,0.683448,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.172721,0.686014,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.172721,0.686014,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.135537,0.680569,0][-0.939754,0.13943,-0.680409][-0.443896,0.852882,-0.274863][0.194442,0.681184,0][0.360866,1.89839,-0.142083][-0.473661,0.760013,-0.445001][0.260596,0.0912604,0][0.336299,1.91606,-0.0489582][-0.552679,0.8268,-0.104635][0.241132,0.0875687,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.159903,1.78541,-0.0605957][-0.615734,0.77069,-0.164038][0.243565,0.114875,0][0.360866,1.89839,-0.142083][-0.473661,0.760013,-0.445001][0.260596,0.0912604,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][0.757144,1.83595,0.226895][0.490874,0.0860341,0.866972][0.7406,0.104313,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.995795,2.10817,0.063489][0.724392,-0.159798,0.670612][0.706446,0.047416,0][0.89091,2.21842,0.0140458][-0.357686,0.918735,0.167292][0.227964,0.0243726,0][0.901967,2.20679,-0.0527757][-0.247832,0.812664,-0.527405][0.24193,0.0268019,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.0277378,-0.0683013,-1.23874][0.0469238,-0.28212,-0.958231][0.0777459,0.637766,0][0.0238805,-0.13829,-1.19868][-0.047955,-0.676699,-0.734696][0.0861184,0.623137,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.077486,0.647856,0][-0.355831,-0.0113315,-1.20322][-0.283619,0.0743696,-0.956049][0.0851693,0.649673,0][-0.343291,0.101004,-1.15653][-0.178977,0.667023,-0.72322][0.0949277,0.673152,0][-0.161578,0.0598636,-1.21703][-0.0566902,0.561279,-0.825683][0.0822839,0.664553,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][-0.523346,-0.117653,-1.09007][-0.381388,-0.643711,-0.663461][0.108819,0.627451,0][-0.766163,-0.155736,-0.776447][-0.386739,-0.900444,-0.199079][0.17437,0.619491,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.100541,0.620821,0][1.04082,2.08678,-0.184281][-0.326131,-0.670847,-0.666035][0.0987511,0.95035,0][0.886564,2.1306,-0.0695573][-0.808301,-0.489681,-0.326898][0.0895922,0.98259,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][1.13728,2.32213,-0.251714][0.0958692,0.177468,-0.979446][0.0495604,0.930188,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.387651,0.328573,0][-0.173183,0.600658,-0.792906][-0.242749,0.406287,-0.880911][0.396625,0.3625,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][0.25193,1.72759,-0.273902][-0.367009,0.638862,-0.676136][0.288148,0.12696,0][0.382497,1.64555,-0.368398][-0.0729991,0.468239,-0.880581][0.307898,0.144108,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.545173,0.618288,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][0.451072,-0.164026,0.924802][-0.103849,-0.978355,-0.178987][0.529947,0.617758,0][0.13406,-0.145709,1.09706][-0.0120323,-0.952659,0.303803][0.56595,0.621587,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.545173,0.618288,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.872237,0.000153834,-0.906709][0.666296,0.0253514,-0.745256][0.520896,0.560579,0][0.989103,0.0138912,-0.784125][0.789439,-0.071561,-0.609643][0.495275,0.56345,0][0.972224,0.0919753,-0.769733][0.606789,0.601631,-0.519468][0.492267,0.57977,0][0.989103,0.0138912,-0.784125][0.789439,-0.071561,-0.609643][0.495275,0.56345,0][0.872237,0.000153834,-0.906709][0.666296,0.0253514,-0.745256][0.520896,0.560579,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.493084,-0.176767,-0.949697][0.0707232,-0.996045,-0.0537756][0.529881,0.5236,0][0.0122331,-0.174511,-1.04564][-0.0130506,-0.989549,0.143603][0.549934,0.524072,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.126183,0.619143,0][0.451615,-0.153831,-0.879014][-0.400738,0.0728588,0.913291][0.152932,0.619889,0][0.290679,-0.0977864,-0.886699][-0.286799,-0.487428,0.824718][0.151326,0.631603,0][-1.15935,-0.175458,0.0866602][-0.40527,-0.911791,-0.0662822][0.354767,0.615369,0][-1.21797,-0.126086,0.104586][-0.874292,-0.482019,-0.0571869][0.358514,0.625688,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][-1.18277,0.0805455,-0.116692][-0.799773,0.594269,-0.0848969][0.312265,0.668876,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][-1.23463,-0.00780537,0.0978408][-0.979773,0.193795,0.0498782][0.357104,0.65041,0][-0.847508,-0.0759333,-0.433841][0.821599,-0.412094,0.393895][0.422062,0.544676,0][-0.832486,0.0450917,-0.433111][0.860073,0.211615,0.464212][0.42191,0.569971,0][-0.887257,0.0414162,-0.292242][0.937882,0.26583,0.22296][0.392467,0.569203,0][-0.926431,0.110962,-0.302059][0.660001,0.731454,0.171387][0.394519,0.583739,0][-0.887257,0.0414162,-0.292242][0.937882,0.26583,0.22296][0.392467,0.569203,0][-0.832486,0.0450917,-0.433111][0.860073,0.211615,0.464212][0.42191,0.569971,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.590554,0.827712,0][1.0064,0.172895,-0.229047][-0.109018,0.98762,0.112792][0.583945,0.787406,0][0.975081,0.151071,0.0957407][-0.587392,0.808209,-0.0420508][0.580065,0.719317,0][0.975081,0.151071,0.0957407][-0.587392,0.808209,-0.0420508][0.356665,0.683617,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.391689,0.688287,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.248765,0.689064,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][0.488895,0.145942,0.990606][0.243992,0.904599,0.349527][0.124339,0.59105,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.100575,0.595754,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.590554,0.654904,0][0.143703,0.0921268,1.19385][0.0970247,0.548667,0.830392][0.586181,0.671297,0][-0.0425376,0.129121,1.17491][-0.0171125,0.634941,0.772371][0.582222,0.679029,0][-1.15935,-0.175458,0.0866602][-0.40527,-0.911791,-0.0662822][0.354767,0.615369,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.275767,0.616925,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.414302,0.613103,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-1.04123,-0.142485,-0.482088][-0.444563,-0.873017,-0.200509][0.235893,0.622261,0][-1.14981,-0.165675,-0.0990524][-0.55197,-0.824536,-0.124377][0.315951,0.617414,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.522703,0.667535,0][0.272127,-0.00564807,0.870069][-0.279542,0.338212,-0.898593][0.518507,0.650861,0][0.131686,0.043177,0.903801][-0.066218,0.267845,-0.961184][0.525558,0.661066,0][-0.157569,-0.0250827,0.885835][0.226027,-0.255412,-0.940041][0.146237,0.555304,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.13815,0.540634,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][0.159903,1.78541,-0.0605957][-0.615734,0.77069,-0.164038][0.243565,0.114875,0][-0.272734,1.28499,-0.277176][-0.669266,0.607672,-0.427571][0.288832,0.219468,0][-0.606715,0.918732,-0.118783][-0.82612,0.553412,-0.106113][0.255726,0.296019,0][-0.327681,1.30656,-0.0955081][-0.762453,0.629528,-0.149534][0.250862,0.21496,0][-1.03008,-0.167882,-0.122019][0.893366,-0.449286,0.00632539][0.356889,0.525458,0][-0.934418,-0.08531,-0.138446][0.842914,-0.527385,0.106589][0.360322,0.542716,0][-0.927063,-0.0919544,0.153973][0.895766,-0.411936,-0.167067][0.299203,0.541327,0][-0.832994,0.073257,0.408494][0.770182,0.442984,-0.458895][0.246006,0.575858,0][-0.875086,-0.0507577,0.279532][0.915689,-0.257999,-0.308141][0.27296,0.549938,0][-0.875782,0.0316185,0.27557][0.92319,0.259649,-0.283376][0.273788,0.567155,0][-0.999484,-0.0212405,0.745957][-0.738984,0.124406,0.662137][0.492567,0.647602,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-1.07812,0.043451,0.590053][-0.734467,0.534698,0.417918][0.459981,0.661123,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][-1.17152,-0.0505837,0.462046][-0.932351,0.0103318,0.361406][0.433226,0.641469,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][-0.593874,0.0174512,1.06432][-0.441354,0.0793077,0.893822][0.559108,0.655689,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-0.593874,0.0174512,1.06432][-0.441354,0.0793077,0.893822][0.559108,0.655689,0][0.0288813,1.61873,0.20963][-0.57474,0.687302,0.444175][0.187085,0.149713,0][-0.168217,1.24397,0.431713][-0.503277,0.567901,0.651307][0.140668,0.228041,0][0.218505,1.74859,0.227683][-0.455598,0.692628,0.559193][0.183312,0.122571,0][0.218505,1.74859,0.227683][-0.455598,0.692628,0.559193][0.183312,0.122571,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][0.0288813,1.61873,0.20963][-0.57474,0.687302,0.444175][0.187085,0.149713,0][-0.582771,0.678156,-0.490042][-0.698626,0.447202,-0.558509][0.333323,0.346302,0][-0.751649,0.470314,-0.41227][-0.816471,0.379059,-0.435533][0.317068,0.389743,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][-0.289622,1.06024,-0.484315][-0.532148,0.508043,-0.677282][0.332126,0.266442,0][-0.499288,0.662361,-0.589522][-0.581832,0.429403,-0.690713][0.354115,0.349603,0][0.898882,-0.101626,-0.337433][-0.467095,-0.864758,0.184432][0.266128,0.630801,0][0.911842,-0.0682274,-0.189904][-0.817102,-0.537027,0.209632][0.296963,0.637781,0][0.818027,-0.0741065,-0.451186][-0.729688,-0.549367,0.407125][0.242352,0.636552,0][0.911842,-0.0682274,-0.189904][-0.817102,-0.537027,0.209632][0.296963,0.637781,0][0.89068,0.00974836,-0.184495][-0.978056,-0.0353922,0.205315][0.298093,0.654079,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.724459,2.11267,0.0965024][-0.316864,0.80516,0.501313][0.21073,0.0464755,0][0.89091,2.21842,0.0140458][-0.357686,0.918735,0.167292][0.227964,0.0243726,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][0.751085,2.08796,0.132824][-0.118599,0.63005,0.767445][0.720938,0.0516391,0][0.643021,1.92931,0.226895][-0.0149847,0.483065,0.875456][0.7406,0.0847996,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.695068,0.01,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][0.414438,-0.056006,-0.814908][-0.464014,-0.146007,0.873712][0.166331,0.640336,0][0.146554,-0.0185205,-0.906011][-0.184575,0.000473701,0.982818][0.147289,0.64817,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][0.00530766,0.0238906,-0.930004][-0.080415,0.245478,0.966061][0.142275,0.657035,0][-0.301273,-0.148268,-0.97666][0.113418,-0.858065,0.500859][0.535517,0.529557,0][-0.282756,-0.0504053,-0.902912][0.209084,-0.378239,0.901786][0.520103,0.550011,0][-0.419758,-0.0450573,-0.852073][0.401458,-0.304306,0.863846][0.509477,0.551129,0][-0.434514,0.108111,-0.88703][0.36384,0.555769,0.74749][0.516783,0.583143,0][-0.545884,0.0422081,-0.776463][0.58989,0.223486,0.775941][0.493674,0.569368,0][-0.418808,0.0373188,-0.850806][0.41011,0.246435,0.878111][0.509212,0.568347,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][0.43708,0.097067,-0.854276][-0.400855,0.646044,0.649571][0.158102,0.672329,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.119158,0.679823,0][0.329637,0.132566,-0.979345][-0.037065,0.991858,0.121833][0.536078,0.588254,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.566099,0.587776,0][0.676945,1.26582,0.326505][0.741205,0.0978063,0.664115][0.761419,0.223476,0][0.693441,0.905796,0.358862][0.87134,0.0882126,0.482686][0.768182,0.298723,0][0.776086,1.39824,0.175855][0.899364,-0.0897434,0.427891][0.729932,0.195798,0][0.757144,1.83595,0.226895][0.490874,0.0860341,0.866972][0.7406,0.104313,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.424682,-0.123694,0.860418][-0.335629,-0.678446,-0.653502][0.51649,0.626188,0][0.130864,-0.10961,0.943977][-0.164423,-0.559635,-0.812264][0.533955,0.629132,0][0.424682,-0.123694,0.860418][-0.335629,-0.678446,-0.653502][0.51649,0.626188,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.648459,-0.0540569,0.644055][-0.677967,-0.229081,-0.698485][0.471268,0.640743,0][1.13728,2.32213,0.247465][0.0907094,0.242698,0.965852][0.530742,0.874556,0][0.983457,2.2015,0.221708][-0.481138,-0.186663,0.856542][0.562892,0.899769,0][1.13983,2.19562,0.245574][0.176133,-0.250814,0.951877][0.53021,0.900998,0][0.983457,2.2015,0.221708][-0.481138,-0.186663,0.856542][0.562892,0.899769,0][1.06018,2.32801,0.245574][-0.124189,0.326282,0.937079][0.546856,0.873327,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.180945,0.526298,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][0.805856,-0.142495,0.792698][0.475068,-0.780231,0.406878][0.165704,0.530764,0][0.50534,-0.116874,1.05909][0.3507,-0.605722,0.71422][0.110025,0.536119,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.122867,0.526793,0][0.659004,-0.147096,0.92741][0.395968,-0.789808,0.468415][0.137548,0.529802,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][1.07886,-0.0630241,0.475145][0.803996,-0.482228,0.347918][0.232075,0.547374,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][0.975929,-0.0708667,0.656592][0.748486,-0.390797,0.535767][0.194151,0.545735,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][0.0122331,-0.174511,-1.04564][-0.0130506,-0.989549,0.143603][0.549934,0.524072,0][0.0212981,-0.162503,-1.16613][-0.0265358,-0.903526,-0.427711][0.575119,0.526582,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.405334,-0.0284817,-1.16833][0.285596,-0.0509241,-0.956996][0.575577,0.554594,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.0238805,-0.13829,-1.19868][-0.047955,-0.676699,-0.734696][0.581921,0.531642,0][0.643021,1.92931,0.226895][-0.0149847,0.483065,0.875456][0.183476,0.0847996,0][0.407597,1.8648,0.221299][-0.318501,0.664012,0.676495][0.184646,0.0982825,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][0.00495392,0.762982,0.74997][-0.0709285,0.39875,0.914313][0.0741487,0.328573,0][0.326764,1.45651,0.456064][0.00584289,0.420704,0.907179][0.135578,0.183618,0][1.12192,2.5114,-0.0695573][0.110013,0.934483,-0.338585][0.01,0.9334,0][1.23009,2.39303,-0.184281][0.524639,0.522939,-0.671781][0.034741,0.910789,0][1.10183,2.39303,-0.225957][0.00650135,0.562933,-0.826477][0.034741,0.937598,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][1.27687,2.2015,-0.182136][0.633168,-0.244279,-0.734456][0.0747728,0.901013,0][1.13983,2.19562,-0.249823][0.0394769,-0.22673,-0.973157][0.0760021,0.929656,0][-0.699126,0.700172,0.257631][-0.808754,0.47751,0.343367][0.177052,0.3417,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.472541,1.11917,0.107147][-0.815635,0.574398,0.0693237][0.208505,0.254125,0][-0.327681,1.30656,-0.0955081][-0.762453,0.629528,-0.149534][0.250862,0.21496,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][1.09629,-0.118293,0.280313][0.62762,-0.766513,0.136202][0.272797,0.535822,0][0.929811,-0.133043,0.6333][0.490353,-0.806856,0.329449][0.19902,0.532739,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.344553,0.532379,0][1.31232,2.1306,-0.0730275][0.845459,-0.49173,-0.208328][0.0895922,0.893604,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.0895922,0.893604,0][1.27007,2.06971,0.0365472][0.595821,-0.798345,0.087423][0.102319,0.902434,0][1.25496,2.08678,0.110454][0.511921,-0.699539,0.49858][0.506146,0.923747,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.494157,0.914588,0][1.27687,2.2015,0.177887][0.678472,-0.239137,0.694614][0.501567,0.899769,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][0.750517,-0.161722,-0.771202][0.0634641,-0.997952,0.00797214][0.175466,0.61824,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.254712,0.622913,0][0.911842,-0.0682274,-0.189904][-0.817102,-0.537027,0.209632][0.296963,0.637781,0][0.898882,-0.101626,-0.337433][-0.467095,-0.864758,0.184432][0.266128,0.630801,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.323486,0.623874,0][1.04264,2.5114,0.0395513][-0.166864,0.9537,0.250224][0.550522,0.834996,0][1.01067,2.45392,0.147665][-0.225494,0.765507,0.602621][0.557204,0.84701,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.523713,0.834996,0][1.26032,2.45392,-0.0707987][0.581801,0.773308,-0.251996][0.0220143,0.904472,0][1.23009,2.39303,-0.184281][0.524639,0.522939,-0.671781][0.034741,0.910789,0][1.12192,2.5114,-0.0695573][0.110013,0.934483,-0.338585][0.01,0.9334,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][0.969916,2.1306,0.180032][-0.516925,-0.483155,0.706647][0.565723,0.914588,0][0.985152,2.06971,0.129122][-0.408672,-0.769116,0.491373][0.562538,0.927315,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.543112,0.939329,0][1.25496,2.08678,0.110454][0.511921,-0.699539,0.49858][0.506146,0.923747,0][1.11578,2.06971,0.171565][-0.0490418,-0.751333,0.658098][0.535236,0.927315,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.203806,0.59312,0][0.977069,0.0882719,0.653029][0.746135,0.377081,0.548718][0.194896,0.578996,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][0.6938,0.0733359,0.96398][0.494438,0.547315,0.67526][0.129904,0.575874,0][0.809753,0.133141,0.784861][0.368979,0.846999,0.382684][0.167342,0.588374,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][-0.593101,0,-0.85504][-1.05758,0.624285,-1.16138][0.409611,0.488043,0][-0.826918,0,-0.621222][0,-2.51327,0][0.360741,0.488043,0][-0.582771,0.678156,-0.490042][-0.698626,0.447202,-0.558509][0.333323,0.346302,0][-0.826918,0,-0.621222][0,-2.51327,0][0.563335,0.488043,0][-0.593101,0,-0.85504][-1.05758,0.624285,-1.16138][0.514465,0.488043,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.474996,0.488043,0][-0.173183,0.600658,-0.792906][-0.242749,0.406287,-0.880911][0.396625,0.3625,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.387651,0.328573,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.44908,0.488043,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.44908,0.488043,0][-0.593101,0,-0.85504][-1.05758,0.624285,-1.16138][0.409611,0.488043,0][-0.357874,0.420968,-0.809125][-0.402638,0.376846,-0.834188][0.400015,0.400057,0][0.0281239,0,1.05689][0.0154793,0.965037,2.4819][0.01,0.488043,0][-0.173182,0.600658,0.792906][-0.254028,0.398154,0.881444][0.0651746,0.3625,0][-0.298472,0,1.00516][0,-2.51327,0][0.0208115,0.488043,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][0.0281239,0,1.05689][0.0154793,0.965037,2.4819][0.914076,0.488043,0][-0.298472,0,1.00516][0,-2.51327,0][0.903265,0.488043,0][1.27687,2.2015,-0.182136][0.633168,-0.244279,-0.734456][0.0747728,0.901013,0][1.25496,2.08678,-0.114703][0.562894,-0.708479,-0.425685][0.0987511,0.905593,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.0747728,0.890773,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.0895922,0.893604,0][1.31232,2.1306,-0.0730275][0.845459,-0.49173,-0.208328][0.0895922,0.893604,0][-0.743173,-0.0276365,0.967832][-0.511557,-0.401452,0.759701][0.538941,0.646265,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.50471,0.623888,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.982334,-0.0988274,0.733889][-0.581941,-0.556274,0.593215][0.490044,0.631386,0][-1.02547,-0.166577,0.563929][-0.298952,-0.923124,0.241804][0.454521,0.617225,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.50471,0.623888,0][0.852125,2.32801,-0.0407961][-0.970226,0.194618,-0.144172][0.048331,0.989788,0][0.887692,2.39303,0.0687787][-0.824464,0.509546,0.246217][0.034741,0.982355,0][0.887692,2.39303,-0.0730275][-0.80624,0.503502,-0.310585][0.034741,0.982355,0][0.929942,2.45392,-0.0407961][-0.63609,0.759925,-0.133806][0.574078,0.84701,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][1.04264,2.5114,0.0395513][-0.166864,0.9537,0.250224][0.550522,0.834996,0][-0.898697,0.243419,0.303609][-0.900438,0.333669,0.279065][0.167443,0.437166,0][-0.849858,0.482622,7.07818e-007][-0.913596,0.405951,0.0233465][0.2309,0.387171,0][-1.01575,0,-0.165333][0,-2.67035,0][0.265456,0.488043,0][-0.838765,0.481231,-0.142058][-0.899377,0.401956,-0.171907][0.260591,0.387461,0][-0.751649,0.470314,-0.41227][-0.816471,0.379059,-0.435533][0.317068,0.389743,0][-1.01575,0,-0.165333][0,-2.67035,0][0.265456,0.488043,0][0.382706,1.2211,-0.52954][0.545522,0.146805,-0.825139][0.582497,0.232821,0][0.0799565,0.552761,-0.83371][0.0117295,0.354687,-0.934912][0.518923,0.372511,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.643927,0.0896171,0][0.382706,1.2211,-0.52954][0.545522,0.146805,-0.825139][0.582497,0.232821,0][0.728969,1.85899,-0.235635][0.375554,0.184848,-0.90818][0.643927,0.0994954,0][0.592303,1.12337,-0.433747][0.626988,0.136686,-0.766944][0.602519,0.253249,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.229563,0.589776,0][-0.80313,0.135706,0.56217][0.245016,0.916799,-0.315352][0.213886,0.58891,0][-0.915283,0.0990168,0.291209][0.582319,0.778312,-0.23481][0.27052,0.581242,0][-0.875782,0.0316185,0.27557][0.92319,0.259649,-0.283376][0.273788,0.567155,0][-0.915283,0.0990168,0.291209][0.582319,0.778312,-0.23481][0.27052,0.581242,0][-0.832994,0.073257,0.408494][0.770182,0.442984,-0.458895][0.246006,0.575858,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.569512,1.98944,-0.168696][-0.273012,0.693498,-0.666727][0.266159,0.0722306,0][0.360866,1.89839,-0.142083][-0.473661,0.760013,-0.445001][0.260596,0.0912604,0][0.751085,2.08796,-0.132824][-0.165166,0.661114,-0.73188][0.258661,0.0516391,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.901967,2.20679,-0.0527757][-0.247832,0.812664,-0.527405][0.24193,0.0268019,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.749194,1.41514,-0.227683][0.983125,-0.133311,-0.125271][0.645589,0.192266,0][0.86461,1.74803,-0.108309][0.888663,-0.202213,-0.411568][0.670539,0.122688,0][0.86461,1.74803,-0.108309][0.888663,-0.202213,-0.411568][0.670539,0.122688,0][0.808619,1.79383,-0.193009][0.64946,-0.0384623,-0.759422][0.652836,0.113114,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][0.643021,1.92931,0.226895][-0.0149847,0.483065,0.875456][0.7406,0.0847996,0][0.587278,1.73562,0.312964][0.22365,0.301747,0.926784][0.758589,0.125283,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.695068,0.01,0][0.995795,2.10817,0.063489][0.724392,-0.159798,0.670612][0.706446,0.047416,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.695068,0.01,0][0.757144,1.83595,0.226895][0.490874,0.0860341,0.866972][0.7406,0.104313,0][1.32328,2.32801,0.11229][0.871484,0.237054,0.429326][0.491867,0.873327,0][1.34789,2.19562,0.0365472][0.970764,-0.200906,0.131356][0.486723,0.900998,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.493922,0.859737,0][1.31345,2.39303,0.0653084][0.83456,0.499586,0.232214][0.034741,0.893368,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.034741,0.893368,0][1.26032,2.45392,-0.0707987][0.581801,0.773308,-0.251996][0.0220143,0.904472,0][-0.401542,0.643866,0.674486][-0.487591,0.421573,0.764546][0.0899255,0.353469,0][-0.58277,0.678156,0.490043][-0.697758,0.458665,0.550237][0.128476,0.346302,0][-0.719209,0,0.747333][-0.853624,0.535487,1.01981][0.0746998,0.488043,0][-0.401542,0.643866,0.674486][-0.487591,0.421573,0.764546][0.0899255,0.353469,0][-0.35606,1.08165,0.40259][-0.634612,0.535931,0.556817][0.146755,0.261968,0][-0.58277,0.678156,0.490043][-0.697758,0.458665,0.550237][0.128476,0.346302,0][1.15715,0.0344441,-0.474879][0.931562,-0.113787,-0.345319][0.43064,0.567746,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][1.08474,0.0268643,-0.639541][0.879868,-0.13081,-0.456859][0.465056,0.566161,0][1.22339,0.0338603,-0.104533][0.99949,-0.0316782,-0.00400833][0.353234,0.567624,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.13815,0.540634,0][-0.157569,-0.0250827,0.885835][0.226027,-0.255412,-0.940041][0.146237,0.555304,0][0.129876,-0.0391991,0.903293][-0.0954299,-0.262111,-0.960308][0.142588,0.552353,0][0.129876,-0.0391991,0.903293][-0.0954299,-0.262111,-0.960308][0.142588,0.552353,0][0.130864,-0.10961,0.943977][-0.164423,-0.559635,-0.812264][0.134085,0.537637,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.13815,0.540634,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][0.941159,0.258178,0.142057][0.913649,0.391758,0.108498][0.722868,0.434081,0][0.780167,0.278353,0.533768][0.763684,0.388516,0.515599][0.804739,0.429865,0][0.908152,0.262314,0.280618][0.871414,0.388507,0.299498][0.751828,0.433217,0][0.819887,0.555474,0.234641][0.906512,0.273161,0.321899][0.742219,0.371944,0][1.15919,2.43685,0.180032][0.155062,0.702186,0.694903][0.526162,0.850578,0][0.966964,2.39303,0.177887][-0.461784,0.48968,0.739574][0.56634,0.859737,0][1.13728,2.32213,0.247465][0.0907094,0.242698,0.965852][0.530742,0.874556,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.523713,0.834996,0][1.01067,2.45392,0.147665][-0.225494,0.765507,0.602621][0.557204,0.84701,0][1.15919,2.43685,0.180032][0.155062,0.702186,0.694903][0.526162,0.850578,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.373751,0.679183,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.349054,0.67298,0][-1.02627,0.109059,0.542669][-0.493167,0.84343,0.213102][0.450078,0.674836,0][-1.14065,0.0940102,-0.312672][-0.765956,0.618254,-0.176277][0.271303,0.67169,0][-1.11228,0.13049,-0.13394][-0.193551,0.977902,0.0790338][0.30866,0.679315,0][-1.03856,0.133151,-0.503348][-0.49468,0.842758,-0.212251][0.23145,0.679871,0][-0.298648,0.100117,0.862038][0.259071,0.661676,-0.70361][0.151211,0.581472,0][-0.155759,0.0572934,0.887584][0.218986,0.0842997,-0.972079][0.145872,0.572521,0][-0.543417,0.0573753,0.710089][0.509132,0.358456,-0.782492][0.18297,0.572538,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][-0.587999,0.154875,0.770512][0.313957,0.824604,-0.470594][0.170341,0.592917,0][-0.543417,0.0573753,0.710089][0.509132,0.358456,-0.782492][0.18297,0.572538,0][1.13983,2.19562,0.245574][0.176133,-0.250814,0.951877][0.53021,0.900998,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][1.27687,2.2015,0.177887][0.678472,-0.239137,0.694614][0.501567,0.899769,0][1.32328,2.32801,0.11229][0.871484,0.237054,0.429326][0.491867,0.873327,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][1.27687,2.2015,0.177887][0.678472,-0.239137,0.694614][0.501567,0.899769,0][0.409275,1.01732,-0.580652][0.479636,0.261064,-0.837732][0.571815,0.275413,0][0.635522,0.928528,-0.431712][0.745757,0.165828,-0.64525][0.602944,0.293972,0][0.561456,0.461657,-0.674486][0.62333,0.292223,-0.725304][0.552202,0.391552,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][0.640379,0.601183,-0.536919][0.775387,0.236771,-0.585418][0.580955,0.36239,0][0.635522,0.928528,-0.431712][0.745757,0.165828,-0.64525][0.602944,0.293972,0][-0.663576,0.171398,0.86963][-0.226715,0.949743,0.215842][0.518415,0.687865,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.529614,0.690133,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.567465,0.687249,0][0.871764,0.0443309,0.246563][-0.889391,0.408635,-0.204943][0.388189,0.661307,0][0.884423,0.139878,0.409708][-0.64107,0.700861,-0.312768][0.422287,0.681277,0][0.975081,0.151071,0.0957407][-0.587392,0.808209,-0.0420508][0.356665,0.683617,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.819023,-0.0440294,0.39133][-0.88339,-0.187882,-0.429327][0.418446,0.642839,0][0.743742,-0.0499416,0.524848][-0.833698,-0.136285,-0.535139][0.446353,0.641603,0][0.813534,0.136589,-0.844348][0.263913,0.894556,-0.36072][0.507862,0.589095,0][0.972224,0.0919753,-0.769733][0.606789,0.601631,-0.519468][0.492267,0.57977,0][0.721754,0.0683565,-0.994283][0.458434,0.504602,-0.731584][0.5392,0.574834,0][0.972224,0.0919753,-0.769733][0.606789,0.601631,-0.519468][0.492267,0.57977,0][0.813534,0.136589,-0.844348][0.263913,0.894556,-0.36072][0.507862,0.589095,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.419275,0.597569,0][-0.147204,0.137236,-1.03704][0.0567344,0.97506,0.214567][0.548136,0.58923,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.548882,0.588328,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.5586,0.590275,0][-0.161578,0.0598636,-1.21703][-0.0566902,0.561279,-0.825683][0.0822839,0.664553,0][-0.343291,0.101004,-1.15653][-0.178977,0.667023,-0.72322][0.0949277,0.673152,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.10194,0.679271,0][0.326764,1.45651,0.456064][0.00584289,0.420704,0.907179][0.788498,0.183618,0][0.273347,0.878875,0.676493][0.277064,0.324141,0.904527][0.83457,0.30435,0][0.587278,1.73562,0.312964][0.22365,0.301747,0.926784][0.758589,0.125283,0][0.273347,0.878875,0.676493][0.277064,0.324141,0.904527][0.83457,0.30435,0][0.326764,1.45651,0.456064][0.00584289,0.420704,0.907179][0.788498,0.183618,0][0.0281239,0,1.05689][0.0154793,0.965037,2.4819][0.914076,0.488043,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.275767,0.616925,0][-0.943136,-0.136206,-0.664218][-0.409153,-0.868458,-0.279953][0.197827,0.623573,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.275767,0.616925,0][-1.14981,-0.165675,-0.0990524][-0.55197,-0.824536,-0.124377][0.315951,0.617414,0][-0.943136,-0.136206,-0.664218][-0.409153,-0.868458,-0.279953][0.197827,0.623573,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][0.407597,1.8648,0.221299][-0.318501,0.664012,0.676495][0.184646,0.0982825,0][0.724459,2.11267,0.0965024][-0.316864,0.80516,0.501313][0.21073,0.0464755,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][0.218505,1.74859,0.227683][-0.455598,0.692628,0.559193][0.183312,0.122571,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][-1.07812,0.043451,0.590053][-0.734467,0.534698,0.417918][0.459981,0.661123,0][-0.819456,0.140938,0.794313][-0.455594,0.819059,0.348678][0.502674,0.681499,0][-1.02627,0.109059,0.542669][-0.493167,0.84343,0.213102][0.450078,0.674836,0][-0.819456,0.140938,0.794313][-0.455594,0.819059,0.348678][0.502674,0.681499,0][-0.663576,0.171398,0.86963][-0.226715,0.949743,0.215842][0.518415,0.687865,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.438477,0.681271,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][0.986627,2.32801,-0.225923][-0.391392,0.251143,-0.885291][0.048331,0.961676,0][1.13728,2.32213,-0.251714][0.0958692,0.177468,-0.979446][0.0495604,0.930188,0][1.13728,2.32213,-0.251714][0.0958692,0.177468,-0.979446][0.0495604,0.930188,0][1.10183,2.39303,-0.225957][0.00650135,0.562933,-0.826477][0.034741,0.937598,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.522703,0.667535,0][0.560484,0.0988917,0.77275][-0.440293,0.704935,-0.556066][0.498167,0.672711,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][0.600733,0.140938,0.826926][-0.212792,0.941052,-0.262946][0.50949,0.681499,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.464233,0.684614,0][-0.868679,0.115683,-0.450257][0.634884,0.69357,0.340417][0.425493,0.584725,0][-0.844325,0.158148,-0.625008][0.238468,0.956082,0.170412][0.462018,0.593601,0][-0.99434,0.147865,-0.312201][0.243962,0.965523,0.090814][0.396638,0.591452,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.39729,0.591953,0][-0.99434,0.147865,-0.312201][0.243962,0.965523,0.090814][0.396638,0.591452,0][-0.844325,0.158148,-0.625008][0.238468,0.956082,0.170412][0.462018,0.593601,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.276351,0.596792,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][1.10441,0.179189,-0.0879798][0.222288,0.974981,0.000437925][0.349774,0.597999,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][1.0786,0.0961145,0.470652][0.784955,0.487194,0.382737][0.233015,0.580635,0][1.12584,0.134041,0.276542][0.672309,0.714337,0.194225][0.273585,0.588562,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][-0.0368969,1.41677,-0.379109][-0.454375,0.589281,-0.668051][0.310137,0.191925,0][0.25193,1.72759,-0.273902][-0.367009,0.638862,-0.676136][0.288148,0.12696,0][-0.289622,1.06024,-0.484315][-0.532148,0.508043,-0.677282][0.332126,0.266442,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][-0.357874,0.420968,-0.809125][-0.402638,0.376846,-0.834188][0.400015,0.400057,0][0.639929,0.0361261,-0.657771][-0.654276,0.313054,0.688418][0.199174,0.659592,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.875424,0.0887662,-0.329668][-0.779865,0.558359,0.282923][0.267751,0.670594,0][0.670857,0.108103,-0.691406][-0.506415,0.654287,0.561651][0.192144,0.674636,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][0.887692,2.39303,-0.0730275][-0.80624,0.503502,-0.310585][0.034741,0.982355,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][1.04264,2.5114,-0.0438002][-0.242033,0.9542,-0.175847][0.01,0.949968,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][0.929942,2.45392,-0.0407961][-0.63609,0.759925,-0.133806][0.0220143,0.973524,0][0.454128,0.648608,0.676557][0.527235,0.279253,0.802522][0.834583,0.352478,0][0.552579,0.623539,0.6143][0.628646,0.287661,0.722534][0.821571,0.357717,0][0.676945,1.26582,0.326505][0.741205,0.0978063,0.664115][0.761419,0.223476,0][0.552579,0.623539,0.6143][0.628646,0.287661,0.722534][0.821571,0.357717,0][0.454128,0.648608,0.676557][0.527235,0.279253,0.802522][0.834583,0.352478,0][0.507941,0,0.941693][0.795412,0.733051,1.65457][0.889999,0.488043,0][0.776086,1.39824,0.175855][0.899364,-0.0897434,0.427891][0.729932,0.195798,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][1.01089,2.0923,0.0277455][0.866408,-0.302895,0.396979][0.698976,0.0507328,0][0.580825,0.303334,0.73467][0.646705,0.347404,0.679031][0.84673,0.424643,0][0.780167,0.278353,0.533768][0.763684,0.388516,0.515599][0.804739,0.429865,0][0.64038,0.601182,0.536918][0.752421,0.283643,0.594482][0.805397,0.36239,0][0.969817,0,0.479815][0.896916,0.432149,0.291424][0.793462,0.488043,0][0.775456,0,0.747331][0,-2.74889,1.20158e-007][0.849376,0.488043,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.764066,-0.153167,0.740235][0.107275,-0.992221,0.0631661][0.176669,0.528533,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.253738,0.521608,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.414302,0.613103,0][-1.02547,-0.166577,0.563929][-0.298952,-0.923124,0.241804][0.454521,0.617225,0][-0.291261,0.102572,-0.939522][0.233875,0.660794,0.7132][0.527754,0.581985,0][-0.139275,0.0272654,-0.927272][0.116782,0.244828,0.962508][0.525194,0.566245,0][0.00903557,0.0939686,-0.970002][-0.0288356,0.730125,0.682705][0.534125,0.580187,0][0.00903557,0.0939686,-0.970002][-0.0288356,0.730125,0.682705][0.133915,0.671682,0][0.00530766,0.0238906,-0.930004][-0.080415,0.245478,0.966061][0.142275,0.657035,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][1.0064,0.172895,-0.229047][-0.109018,0.98762,0.112792][0.288781,0.688178,0][0.875424,0.0887662,-0.329668][-0.779865,0.558359,0.282923][0.267751,0.670594,0][0.925923,0.0907754,-0.0494777][-0.863204,0.504853,0.00165961][0.326313,0.671014,0][0.875424,0.0887662,-0.329668][-0.779865,0.558359,0.282923][0.267751,0.670594,0][1.0064,0.172895,-0.229047][-0.109018,0.98762,0.112792][0.288781,0.688178,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.203064,0.684969,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][0.13648,0.115446,0.945318][0.0185653,0.723634,-0.689935][0.133805,0.584676,0][-0.298648,0.100117,0.862038][0.259071,0.661676,-0.70361][0.151211,0.581472,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.145336,0.57604,0][0.13648,0.115446,0.945318][0.0185653,0.723634,-0.689935][0.133805,0.584676,0][1.11332,0.142551,-0.455818][0.575975,0.792788,-0.199347][0.426656,0.590341,0][1.20413,0.0361795,-0.294733][0.979506,0.104485,-0.172196][0.392987,0.568108,0][1.13726,0.111986,-0.467393][0.835515,0.488789,-0.250999][0.429075,0.583953,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][1.15715,0.0344441,-0.474879][0.931562,-0.113787,-0.345319][0.43064,0.567746,0][1.20413,0.0361795,-0.294733][0.979506,0.104485,-0.172196][0.392987,0.568108,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.245225,-0.0223106,1.18666][-0.198485,-0.331875,0.922206][0.584678,0.647378,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.395056,-0.116515,1.0616][-0.173889,-0.892706,0.41574][0.55854,0.627689,0][-0.235054,-0.0933124,1.1447][-0.130327,-0.739664,0.660236][0.575907,0.632538,0][0.568005,0.058457,-1.08071][0.339249,0.491161,-0.802291][0.557264,0.572765,0][0.211726,0.0839651,-1.17187][0.158111,0.681481,-0.714552][0.576317,0.578096,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.220523,-0.0304661,-1.21809][0.236126,-0.0855595,-0.967948][0.585978,0.554179,0][0.211726,0.0839651,-1.17187][0.158111,0.681481,-0.714552][0.576317,0.578096,0][0.568005,0.058457,-1.08071][0.339249,0.491161,-0.802291][0.557264,0.572765,0][-0.826918,0,-0.621222][0,-2.51327,0][0.360741,0.488043,0][-1.01575,0,-0.165333][0,-2.67035,0][0.265456,0.488043,0][-0.751649,0.470314,-0.41227][-0.816471,0.379059,-0.435533][0.317068,0.389743,0][-0.751649,0.470314,-0.41227][-0.816471,0.379059,-0.435533][0.317068,0.389743,0][-0.582771,0.678156,-0.490042][-0.698626,0.447202,-0.558509][0.333323,0.346302,0][-0.826918,0,-0.621222][0,-2.51327,0][0.360741,0.488043,0][0.989103,0.0138912,-0.784125][0.789439,-0.071561,-0.609643][0.495275,0.56345,0][0.948664,-0.101762,-0.746352][0.596673,-0.721055,-0.352222][0.48738,0.539277,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][0.948664,-0.101762,-0.746352][0.596673,-0.721055,-0.352222][0.48738,0.539277,0][1.12587,-0.108258,-0.263447][0.53543,-0.839102,-0.0960319][0.386448,0.53792,0][-1.07812,0.043451,0.590053][-0.734467,0.534698,0.417918][0.459981,0.661123,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][-0.999484,-0.0212405,0.745957][-0.738984,0.124406,0.662137][0.492567,0.647602,0][-0.982334,-0.0988274,0.733889][-0.581941,-0.556274,0.593215][0.490044,0.631386,0][-0.999484,-0.0212405,0.745957][-0.738984,0.124406,0.662137][0.492567,0.647602,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.464976,0.593474,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.419275,0.597569,0][0.813534,0.136589,-0.844348][0.263913,0.894556,-0.36072][0.507862,0.589095,0][1.0064,0.172895,-0.229047][-0.109018,0.98762,0.112792][0.288781,0.688178,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.248765,0.689064,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.203064,0.684969,0][-0.523346,-0.117653,-1.09007][-0.381388,-0.643711,-0.663461][0.108819,0.627451,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.100541,0.620821,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.571124,0.754403,0][-0.351889,-0.0910096,-1.18427][-0.20044,-0.497915,-0.843744][0.570752,0.766137,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.529961,0.766972,0][-0.543417,0.0573753,0.710089][0.509132,0.358456,-0.782492][0.18297,0.572538,0][-0.587999,0.154875,0.770512][0.313957,0.824604,-0.470594][0.170341,0.592917,0][-0.319499,0.159871,0.917721][0.162323,0.822015,-0.545841][0.139573,0.593961,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.138426,0.598638,0][-0.319499,0.159871,0.917721][0.162323,0.822015,-0.545841][0.139573,0.593961,0][-0.587999,0.154875,0.770512][0.313957,0.824604,-0.470594][0.170341,0.592917,0][-0.927063,-0.0919544,0.153973][0.895766,-0.411936,-0.167067][0.299203,0.541327,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-1.03008,-0.167882,-0.122019][0.893366,-0.449286,0.00632539][0.356889,0.525458,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.875086,-0.0507577,0.279532][0.915689,-0.257999,-0.308141][0.27296,0.549938,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][0.986627,2.32801,-0.225923][-0.391392,0.251143,-0.885291][0.048331,0.961676,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][0.922196,2.19562,-0.179111][-0.66893,-0.367799,-0.645954][0.0760021,0.975143,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.0747728,0.99,0][1.27687,2.2015,-0.182136][0.633168,-0.244279,-0.734456][0.0747728,0.901013,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][1.32328,2.32801,-0.116539][0.913329,0.22673,-0.338266][0.048331,0.891313,0][1.25496,2.08678,-0.114703][0.562894,-0.708479,-0.425685][0.0987511,0.905593,0][1.27687,2.2015,-0.182136][0.633168,-0.244279,-0.734456][0.0747728,0.901013,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.0747728,0.890773,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][1.01089,2.0923,0.0277455][0.866408,-0.302895,0.396979][0.698976,0.0507328,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.695068,0.01,0][1.09902,2.26713,0.00698902][0.902483,0.757265,3.43348e-006][0.694637,0.0141904,0][0.87415,2.32213,0.110454][-0.898059,0.18909,0.397158][0.585739,0.874556,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.590554,0.899769,0][0.876735,2.19562,0.11229][-0.864634,-0.207643,0.457486][0.585198,0.900998,0][0.876735,2.19562,0.11229][-0.864634,-0.207643,0.457486][0.585198,0.900998,0][0.969916,2.1306,0.180032][-0.516925,-0.483155,0.706647][0.565723,0.914588,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][0.33503,0.00628045,1.1743][0.300248,0.000114532,0.953861][0.0859444,0.561859,0][0.52439,-0.00156935,1.09647][0.45658,0.0383579,0.888855][0.102212,0.560218,0][0.50534,-0.116874,1.05909][0.3507,-0.605722,0.71422][0.110025,0.536119,0][0.52439,-0.00156935,1.09647][0.45658,0.0383579,0.888855][0.102212,0.560218,0][0.33503,0.00628045,1.1743][0.300248,0.000114532,0.953861][0.0859444,0.561859,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][0.869439,-0.12949,-0.485315][-0.391334,-0.873626,0.289198][0.235219,0.624977,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.254712,0.622913,0][0.869439,-0.12949,-0.485315][-0.391334,-0.873626,0.289198][0.235219,0.624977,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][0.774165,0.874114,-0.188665][0.957379,0.0870037,-0.275419][0.653744,0.305345,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.749194,1.41514,-0.227683][0.983125,-0.133311,-0.125271][0.645589,0.192266,0][0.635522,0.928528,-0.431712][0.745757,0.165828,-0.64525][0.602944,0.293972,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][-0.161578,0.0598636,-1.21703][-0.0566902,0.561279,-0.825683][0.0822839,0.664553,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.077486,0.647856,0][-0.355831,-0.0113315,-1.20322][-0.283619,0.0743696,-0.956049][0.0851693,0.649673,0][-0.351889,-0.0910096,-1.18427][-0.20044,-0.497915,-0.843744][0.0891302,0.63302,0][-0.355831,-0.0113315,-1.20322][-0.283619,0.0743696,-0.956049][0.0851693,0.649673,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.077486,0.647856,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][-0.832994,0.073257,0.408494][0.770182,0.442984,-0.458895][0.246006,0.575858,0][-0.587999,0.154875,0.770512][0.313957,0.824604,-0.470594][0.170341,0.592917,0][-0.875086,-0.0507577,0.279532][0.915689,-0.257999,-0.308141][0.27296,0.549938,0][-0.832994,0.073257,0.408494][0.770182,0.442984,-0.458895][0.246006,0.575858,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][-0.419758,-0.0450573,-0.852073][0.401458,-0.304306,0.863846][0.509477,0.551129,0][-0.418808,0.0373188,-0.850806][0.41011,0.246435,0.878111][0.509212,0.568347,0][-0.545884,0.0422081,-0.776463][0.58989,0.223486,0.775941][0.493674,0.569368,0][-0.546919,-0.040168,-0.776863][0.577888,-0.326997,0.747742][0.493757,0.552151,0][-0.545884,0.0422081,-0.776463][0.58989,0.223486,0.775941][0.493674,0.569368,0][-0.868679,0.115683,-0.450257][0.634884,0.69357,0.340417][0.425493,0.584725,0][-1.00366,-0.00155977,-0.701869][-0.844522,-0.0268741,-0.534846][0.189957,0.651715,0][-1.09206,-0.0877226,-0.4949][-0.835444,-0.436777,-0.333556][0.233216,0.633707,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-0.988039,-0.0801959,-0.688873][-0.740815,-0.465411,-0.484341][0.192673,0.63528,0][-1.00366,-0.00155977,-0.701869][-0.844522,-0.0268741,-0.534846][0.189957,0.651715,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][-1.19828,-0.130597,0.288008][-0.855129,-0.489999,0.169279][0.396851,0.624745,0][-1.15071,-0.126895,0.455403][-0.678985,-0.662585,0.316166][0.431838,0.625519,0][-1.21797,-0.126086,0.104586][-0.874292,-0.482019,-0.0571869][0.358514,0.625688,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][0.13406,-0.145709,1.09706][-0.0120323,-0.952659,0.303803][0.56595,0.621587,0][0.135691,-0.10126,1.16822][0.0565671,-0.646236,0.761038][0.580823,0.630877,0][-0.235054,-0.0933124,1.1447][-0.130327,-0.739664,0.660236][0.575907,0.632538,0][0.323202,-0.10911,1.13153][0.190397,-0.648588,0.736941][0.0948846,0.537741,0][0.13406,-0.145709,1.09706][-0.0120323,-0.952659,0.303803][0.10209,0.530092,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.122867,0.526793,0][0.901967,2.20679,-0.0527757][-0.247832,0.812664,-0.527405][0.24193,0.0268019,0][0.89091,2.21842,0.0140458][-0.357686,0.918735,0.167292][0.227964,0.0243726,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.229008,0.01,0][0.89091,2.21842,0.0140458][-0.357686,0.918735,0.167292][0.227964,0.0243726,0][0.751085,2.08796,0.132824][-0.118599,0.63005,0.767445][0.203138,0.0516391,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.229008,0.01,0][-0.832486,0.0450917,-0.433111][0.860073,0.211615,0.464212][0.42191,0.569971,0][-0.847508,-0.0759333,-0.433841][0.821599,-0.412094,0.393895][0.422062,0.544676,0][-0.671759,-0.0752003,-0.68937][0.655507,-0.471575,0.589854][0.47547,0.544829,0][-0.671759,-0.0752003,-0.68937][0.655507,-0.471575,0.589854][0.47547,0.544829,0][-0.546919,-0.040168,-0.776863][0.577888,-0.326997,0.747742][0.493757,0.552151,0][-0.832486,0.0450917,-0.433111][0.860073,0.211615,0.464212][0.42191,0.569971,0][0.659004,-0.147096,0.92741][0.395968,-0.789808,0.468415][0.137548,0.529802,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.122867,0.526793,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.180945,0.526298,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.122867,0.526793,0][0.451072,-0.164026,0.924802][-0.103849,-0.978355,-0.178987][0.138093,0.526264,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.180945,0.526298,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.135537,0.680569,0][-0.701006,0.0781278,-1.0064][-0.55252,0.472428,-0.686682][0.126308,0.668371,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][-0.840207,-0.111369,-0.845488][-0.556189,-0.641667,-0.528126][0.159939,0.628764,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][0.898882,-0.101626,-0.337433][-0.467095,-0.864758,0.184432][0.266128,0.630801,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.254712,0.622913,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.323486,0.623874,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.344553,0.532379,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.413328,0.531419,0][1.32328,2.32801,0.11229][0.871484,0.237054,0.429326][0.048331,0.891313,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.034741,0.893368,0][1.31345,2.39303,0.0653084][0.83456,0.499586,0.232214][0.034741,0.893368,0][1.32328,2.32801,0.11229][0.871484,0.237054,0.429326][0.491867,0.873327,0][1.31345,2.39303,0.0653084][0.83456,0.499586,0.232214][0.493922,0.859737,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][-0.699126,0.700172,-0.25763][-0.835889,0.465032,-0.291607][0.284747,0.3417,0][-0.606715,0.918732,-0.118783][-0.82612,0.553412,-0.106113][0.255726,0.296019,0][-0.606715,0.918732,-0.118783][-0.82612,0.553412,-0.106113][0.255726,0.296019,0][-0.272734,1.28499,-0.277176][-0.669266,0.607672,-0.427571][0.288832,0.219468,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][0.0238805,-0.13829,-1.19868][-0.047955,-0.676699,-0.734696][0.581921,0.531642,0][0.220523,-0.0304661,-1.21809][0.236126,-0.0855595,-0.967948][0.585978,0.554179,0][0.405334,-0.0284817,-1.16833][0.285596,-0.0509241,-0.956996][0.575577,0.554594,0][0.568005,0.058457,-1.08071][0.339249,0.491161,-0.802291][0.557264,0.572765,0][0.405334,-0.0284817,-1.16833][0.285596,-0.0509241,-0.956996][0.575577,0.554594,0][0.220523,-0.0304661,-1.21809][0.236126,-0.0855595,-0.967948][0.585978,0.554179,0][0.65996,0.0669656,0.65074][-0.622233,0.45152,-0.639497][0.472665,0.666038,0][0.648459,-0.0540569,0.644055][-0.677967,-0.229081,-0.698485][0.471268,0.640743,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.560484,0.0988917,0.77275][-0.440293,0.704935,-0.556066][0.498167,0.672711,0][0.65996,0.0669656,0.65074][-0.622233,0.45152,-0.639497][0.472665,0.666038,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.985152,2.06971,0.129122][-0.408672,-0.769116,0.491373][0.562538,0.927315,0][0.908474,2.08678,-0.00212442][-0.718412,-0.694103,0.0458877][0.578565,0.923747,0][1.0291,2.01222,-0.00212443][-0.308972,-0.95103,0.00889753][0.553352,0.939329,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.0747728,0.99,0][0.886564,2.1306,-0.0695573][-0.808301,-0.489681,-0.326898][0.0895922,0.98259,0][0.908474,2.08678,-0.00212442][-0.718412,-0.694103,0.0458877][0.0987511,0.978011,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][1.03328,0,-0.326596][2.54973,1.3029,-0.816645][0.624915,0.488043,0][0.941159,0.258178,-0.142059][0.913365,0.38602,-0.129432][0.663485,0.434081,0][0.941159,0.258178,-0.142059][0.913365,0.38602,-0.129432][0.663485,0.434081,0][0.941159,0.258178,0.142057][0.913649,0.391758,0.108498][0.722868,0.434081,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.643927,0.0896171,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.536425,0.328573,0][0.382497,1.64555,-0.368398][-0.0729991,0.468239,-0.880581][0.616178,0.144108,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.387651,0.328573,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][0.382497,1.64555,-0.368398][-0.0729991,0.468239,-0.880581][0.307898,0.144108,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][0.336299,1.91606,-0.0489582][-0.552679,0.8268,-0.104635][0.241132,0.0875687,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][0.159903,1.78541,-0.0605957][-0.615734,0.77069,-0.164038][0.243565,0.114875,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][0.774166,0.874114,0.188664][0.948427,0.110069,0.297272][0.732609,0.305345,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][0.790725,1.20385,-0.0722335][0.993517,0.0812246,-0.0795379][0.678079,0.236426,0][0.819887,0.555474,0.234641][0.906512,0.273161,0.321899][0.742219,0.371944,0][0.908152,0.262314,0.280618][0.871414,0.388507,0.299498][0.751828,0.433217,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][-0.759414,0.234726,0.577497][-0.748947,0.357668,0.55781][0.110197,0.438983,0][-0.719209,0,0.747333][-0.853624,0.535487,1.01981][0.0746998,0.488043,0][-0.58277,0.678156,0.490043][-0.697758,0.458665,0.550237][0.128476,0.346302,0][-0.58277,0.678156,0.490043][-0.697758,0.458665,0.550237][0.128476,0.346302,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-1.02627,0.109059,0.542669][-0.493167,0.84343,0.213102][0.450078,0.674836,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][-1.07812,0.043451,0.590053][-0.734467,0.534698,0.417918][0.459981,0.661123,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][-1.07812,0.043451,0.590053][-0.734467,0.534698,0.417918][0.459981,0.661123,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][0.912511,-0.106362,0.255835][-0.609722,-0.75665,-0.236049][0.390126,0.629811,0][0.905117,0.0095525,-0.0437636][-0.999599,-0.0206828,-0.0193643][0.327507,0.654038,0][0.926938,-0.0683631,-0.0459559][-0.811245,-0.58463,-0.00942857][0.327049,0.637753,0][0.912511,-0.106362,0.255835][-0.609722,-0.75665,-0.236049][0.390126,0.629811,0][0.819023,-0.0440294,0.39133][-0.88339,-0.187882,-0.429327][0.418446,0.642839,0][0.905117,0.0095525,-0.0437636][-0.999599,-0.0206828,-0.0193643][0.327507,0.654038,0][0.600733,0.140938,0.826926][-0.212792,0.941052,-0.262946][0.50949,0.681499,0][0.488895,0.145942,0.990606][0.243992,0.904599,0.349527][0.543701,0.682545,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.464233,0.684614,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.203806,0.59312,0][0.809753,0.133141,0.784861][0.368979,0.846999,0.382684][0.167342,0.588374,0][0.977069,0.0882719,0.653029][0.746135,0.377081,0.548718][0.194896,0.578996,0][0.883162,0,-0.621223][0.082139,0.0435687,-0.118484][0.563335,0.488043,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][0.451855,0.482395,-0.742841][0.461347,0.329512,-0.82376][0.537915,0.387218,0][0.451855,0.482395,-0.742841][0.461347,0.329512,-0.82376][0.537915,0.387218,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][0.208104,0.528515,-0.823446][0.237864,0.356444,-0.903531][0.521068,0.377578,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][0.146554,-0.0185205,-0.906011][-0.184575,0.000473701,0.982818][0.147289,0.64817,0][0.414438,-0.056006,-0.814908][-0.464014,-0.146007,0.873712][0.166331,0.640336,0][0.414438,-0.056006,-0.814908][-0.464014,-0.146007,0.873712][0.166331,0.640336,0][0.290679,-0.0977864,-0.886699][-0.286799,-0.487428,0.824718][0.151326,0.631603,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][-0.434514,0.108111,-0.88703][0.36384,0.555769,0.74749][0.516783,0.583143,0][-0.147204,0.137236,-1.03704][0.0567344,0.97506,0.214567][0.548136,0.58923,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.495319,0.594519,0][-0.434514,0.108111,-0.88703][0.36384,0.555769,0.74749][0.516783,0.583143,0][-0.418808,0.0373188,-0.850806][0.41011,0.246435,0.878111][0.509212,0.568347,0][-0.291261,0.102572,-0.939522][0.233875,0.660794,0.7132][0.527754,0.581985,0][1.03328,0,-0.326596][2.54973,1.3029,-0.816645][0.624915,0.488043,0][0.883162,0,-0.621223][0.082139,0.0435687,-0.118484][0.563335,0.488043,0][0.854043,0.269095,-0.41227][0.824702,0.386224,-0.413155][0.607008,0.4318,0][0.883162,0,-0.621223][0.082139,0.0435687,-0.118484][0.563335,0.488043,0][1.03328,0,-0.326596][2.54973,1.3029,-0.816645][0.624915,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][0.87415,2.32213,0.110454][-0.898059,0.18909,0.397158][0.585739,0.874556,0][0.852125,2.32801,-0.0407961][-0.970226,0.194618,-0.144172][0.590342,0.873327,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.590554,0.899769,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.0747728,0.99,0][0.852125,2.32801,-0.0407961][-0.970226,0.194618,-0.144172][0.048331,0.989788,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][0.809753,0.133141,0.784861][0.368979,0.846999,0.382684][0.167342,0.588374,0][0.847956,0.0786369,0.820737][0.65569,0.464722,0.595066][0.159843,0.576982,0][0.977069,0.0882719,0.653029][0.746135,0.377081,0.548718][0.194896,0.578996,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][0.977069,0.0882719,0.653029][0.746135,0.377081,0.548718][0.194896,0.578996,0][0.847956,0.0786369,0.820737][0.65569,0.464722,0.595066][0.159843,0.576982,0][0.749194,1.41514,-0.227683][0.983125,-0.133311,-0.125271][0.645589,0.192266,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.790725,1.20385,-0.0722335][0.993517,0.0812246,-0.0795379][0.678079,0.236426,0][0.790725,1.20385,-0.0722335][0.993517,0.0812246,-0.0795379][0.678079,0.236426,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.774166,0.874114,0.188664][0.948427,0.110069,0.297272][0.732609,0.305345,0][-0.139275,0.0272654,-0.927272][0.116782,0.244828,0.962508][0.525194,0.566245,0][-0.282756,-0.0504053,-0.902912][0.209084,-0.378239,0.901786][0.520103,0.550011,0][0.00456253,-0.0584856,-0.931307][-0.0691712,-0.31798,0.945571][0.526038,0.548322,0][0.00530766,0.0238906,-0.930004][-0.080415,0.245478,0.966061][0.142275,0.657035,0][0.00456253,-0.0584856,-0.931307][-0.0691712,-0.31798,0.945571][0.142002,0.639817,0][0.146554,-0.0185205,-0.906011][-0.184575,0.000473701,0.982818][0.147289,0.64817,0][-1.11228,0.13049,-0.13394][-0.193551,0.977902,0.0790338][0.30866,0.679315,0][-1.18277,0.0805455,-0.116692][-0.799773,0.594269,-0.0848969][0.312265,0.668876,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.349054,0.67298,0][-1.23463,-0.00780537,0.0978408][-0.979773,0.193795,0.0498782][0.357104,0.65041,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.349054,0.67298,0][-1.18277,0.0805455,-0.116692][-0.799773,0.594269,-0.0848969][0.312265,0.668876,0][0.600733,0.140938,0.826926][-0.212792,0.941052,-0.262946][0.50949,0.681499,0][0.560484,0.0988917,0.77275][-0.440293,0.704935,-0.556066][0.498167,0.672711,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.522703,0.667535,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.522703,0.667535,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.54913,0.685205,0][0.600733,0.140938,0.826926][-0.212792,0.941052,-0.262946][0.50949,0.681499,0][0.143703,0.0921268,1.19385][0.0970247,0.548667,0.830392][0.0818583,0.579802,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.100575,0.595754,0][-0.0425376,0.129121,1.17491][-0.0171125,0.634941,0.772371][0.085818,0.587534,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.567465,0.687249,0][-0.385166,0.159121,1.06691][-0.207462,0.846007,0.491154][0.559649,0.685299,0][-0.0425376,0.129121,1.17491][-0.0171125,0.634941,0.772371][0.582222,0.679029,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][0.639929,0.0361261,-0.657771][-0.654276,0.313054,0.688418][0.199174,0.659592,0][0.415389,0.0263701,-0.816313][-0.499727,0.264193,0.824909][0.166037,0.657553,0][0.415389,0.0263701,-0.816313][-0.499727,0.264193,0.824909][0.166037,0.657553,0][0.414438,-0.056006,-0.814908][-0.464014,-0.146007,0.873712][0.166331,0.640336,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][1.21288,0.0294806,0.0905947][0.990983,-0.0418889,0.12727][0.31245,0.566708,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][1.12584,0.134041,0.276542][0.672309,0.714337,0.194225][0.273585,0.588562,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][1.21288,0.0294806,0.0905947][0.990983,-0.0418889,0.12727][0.31245,0.566708,0][1.17604,0.143261,-0.101126][0.728111,0.68497,-0.0258946][0.352522,0.590489,0][1.22339,0.0338603,-0.104533][0.99949,-0.0316782,-0.00400833][0.353234,0.567624,0][1.20413,0.0361795,-0.294733][0.979506,0.104485,-0.172196][0.392987,0.568108,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][1.20413,0.0361795,-0.294733][0.979506,0.104485,-0.172196][0.392987,0.568108,0][1.22339,0.0338603,-0.104533][0.99949,-0.0316782,-0.00400833][0.353234,0.567624,0][0.805856,-0.142495,0.792698][0.475068,-0.780231,0.406878][0.165704,0.530764,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][0.702127,-0.0049209,0.982153][0.617227,-0.0982616,0.780625][0.126106,0.559518,0][0.6938,0.0733359,0.96398][0.494438,0.547315,0.67526][0.129904,0.575874,0][0.702127,-0.0049209,0.982153][0.617227,-0.0982616,0.780625][0.126106,0.559518,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][0.948664,-0.101762,-0.746352][0.596673,-0.721055,-0.352222][0.48738,0.539277,0][0.989103,0.0138912,-0.784125][0.789439,-0.071561,-0.609643][0.495275,0.56345,0][1.08474,0.0268643,-0.639541][0.879868,-0.13081,-0.456859][0.465056,0.566161,0][1.06633,0.104413,-0.628253][0.653398,0.629066,-0.421125][0.462696,0.58237,0][1.08474,0.0268643,-0.639541][0.879868,-0.13081,-0.456859][0.465056,0.566161,0][0.989103,0.0138912,-0.784125][0.789439,-0.071561,-0.609643][0.495275,0.56345,0][0.326764,1.45651,0.456064][0.00584289,0.420704,0.907179][0.135578,0.183618,0][0.643021,1.92931,0.226895][-0.0149847,0.483065,0.875456][0.183476,0.0847996,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][0.587278,1.73562,0.312964][0.22365,0.301747,0.926784][0.758589,0.125283,0][0.643021,1.92931,0.226895][-0.0149847,0.483065,0.875456][0.7406,0.0847996,0][0.326764,1.45651,0.456064][0.00584289,0.420704,0.907179][0.788498,0.183618,0][-1.14981,-0.165675,-0.0990524][-0.55197,-0.824536,-0.124377][0.315951,0.617414,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-1.14065,0.0940102,-0.312672][-0.765956,0.618254,-0.176277][0.271303,0.67169,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][0.884423,0.139878,0.409708][-0.64107,0.700861,-0.312768][0.422287,0.681277,0][0.871764,0.0443309,0.246563][-0.889391,0.408635,-0.204943][0.388189,0.661307,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][0.884423,0.139878,0.409708][-0.64107,0.700861,-0.312768][0.422287,0.681277,0][1.04264,2.5114,-0.0438002][-0.242033,0.9542,-0.175847][0.01,0.949968,0][0.929942,2.45392,-0.0407961][-0.63609,0.759925,-0.133806][0.0220143,0.973524,0][1.04264,2.5114,0.0395513][-0.166864,0.9537,0.250224][0.01,0.949968,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.01,0.92316,0][1.04264,2.5114,-0.0438002][-0.242033,0.9542,-0.175847][0.01,0.949968,0][1.04264,2.5114,0.0395513][-0.166864,0.9537,0.250224][0.01,0.949968,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.39729,0.591953,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.294289,0.587688,0][-0.99434,0.147865,-0.312201][0.243962,0.965523,0.090814][0.396638,0.591452,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.349054,0.67298,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.373751,0.679183,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.27075,0.683448,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.695068,0.01,0][0.995795,2.10817,0.063489][0.724392,-0.159798,0.670612][0.706446,0.047416,0][1.09902,2.26713,0.00698902][0.902483,0.757265,3.43348e-006][0.694637,0.0141904,0][1.01089,2.0923,0.0277455][0.866408,-0.302895,0.396979][0.698976,0.0507328,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][1.09902,2.26713,0.00698902][0.902483,0.757265,3.43348e-006][0.694637,0.0141904,0][-0.764066,-0.153167,0.740235][0.107275,-0.992221,0.0631661][0.491371,0.620028,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.50471,0.623888,0][-1.02547,-0.166577,0.563929][-0.298952,-0.923124,0.241804][0.454521,0.617225,0][-1.02547,-0.166577,0.563929][-0.298952,-0.923124,0.241804][0.454521,0.617225,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.414302,0.613103,0][-0.764066,-0.153167,0.740235][0.107275,-0.992221,0.0631661][0.491371,0.620028,0][1.04082,2.08678,-0.184281][-0.326131,-0.670847,-0.666035][0.0987511,0.95035,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][1.04082,2.08678,-0.184281][-0.326131,-0.670847,-0.666035][0.0987511,0.95035,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][1.11578,2.06971,-0.175814][0.152257,-0.742893,-0.651864][0.102319,0.934682,0][-0.124607,1.00708,0.610274][-0.302557,0.457351,0.836235][0.103347,0.277553,0][-0.173182,0.600658,0.792906][-0.254028,0.398154,0.881444][0.0651746,0.3625,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][-0.173182,0.600658,0.792906][-0.254028,0.398154,0.881444][0.0651746,0.3625,0][-0.124607,1.00708,0.610274][-0.302557,0.457351,0.836235][0.103347,0.277553,0][-0.411279,0.212997,0.87541][-0.445537,0.340092,0.828151][0.0479305,0.443525,0][1.11578,2.06971,-0.175814][0.152257,-0.742893,-0.651864][0.102319,0.934682,0][1.25496,2.08678,-0.114703][0.562894,-0.708479,-0.425685][0.0987511,0.905593,0][1.15737,2.01222,-0.0438002][0.282473,-0.950217,-0.13152][0.114333,0.92599,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.114333,0.942559,0][1.07809,2.01222,-0.0695573][-0.10394,-0.95103,-0.2911][0.114333,0.942559,0][1.15737,2.01222,-0.0438002][0.282473,-0.950217,-0.13152][0.114333,0.92599,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.100575,0.595754,0][0.143703,0.0921268,1.19385][0.0970247,0.548667,0.830392][0.0818583,0.579802,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][0.33503,0.00628045,1.1743][0.300248,0.000114532,0.953861][0.0859444,0.561859,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][0.143703,0.0921268,1.19385][0.0970247,0.548667,0.830392][0.0818583,0.579802,0][-0.0368969,1.41677,-0.379109][-0.454375,0.589281,-0.668051][0.310137,0.191925,0][-0.272734,1.28499,-0.277176][-0.669266,0.607672,-0.427571][0.288832,0.219468,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][-0.272734,1.28499,-0.277176][-0.669266,0.607672,-0.427571][0.288832,0.219468,0][-0.327681,1.30656,-0.0955081][-0.762453,0.629528,-0.149534][0.250862,0.21496,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][0.808619,1.79383,-0.193009][0.64946,-0.0384623,-0.759422][0.652836,0.113114,0][0.86461,1.74803,-0.108309][0.888663,-0.202213,-0.411568][0.670539,0.122688,0][0.749194,1.41514,-0.227683][0.983125,-0.133311,-0.125271][0.645589,0.192266,0][0.749194,1.41514,-0.227683][0.983125,-0.133311,-0.125271][0.645589,0.192266,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.808619,1.79383,-0.193009][0.64946,-0.0384623,-0.759422][0.652836,0.113114,0][-0.282756,-0.0504053,-0.902912][0.209084,-0.378239,0.901786][0.520103,0.550011,0][-0.301273,-0.148268,-0.97666][0.113418,-0.858065,0.500859][0.535517,0.529557,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.541857,0.527648,0][-0.301273,-0.148268,-0.97666][0.113418,-0.858065,0.500859][0.572083,0.721493,0][-0.156803,-0.171805,-1.12598][-0.0640342,-0.963518,-0.259871][0.53468,0.743557,0][0.0122331,-0.174511,-1.04564][-0.0130506,-0.989549,0.143603][0.505082,0.717981,0][1.16572,0.139328,0.0870666][0.69293,0.711056,0.119364][0.313188,0.589667,0][1.10441,0.179189,-0.0879798][0.222288,0.974981,0.000437925][0.349774,0.597999,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][1.22339,0.0338603,-0.104533][0.99949,-0.0316782,-0.00400833][0.353234,0.567624,0][1.17604,0.143261,-0.101126][0.728111,0.68497,-0.0258946][0.352522,0.590489,0][1.16572,0.139328,0.0870666][0.69293,0.711056,0.119364][0.313188,0.589667,0][-0.544189,-0.0250008,0.709689][0.543142,-0.277962,-0.792297][0.183054,0.555321,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][-0.662464,-0.0702684,0.632407][0.733462,-0.170155,-0.658088][0.199206,0.54586,0][-0.662464,-0.0702684,0.632407][0.733462,-0.170155,-0.658088][0.199206,0.54586,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.245152,0.0188195,1.19288][-0.189165,0.0673815,0.979631][0.585978,0.655975,0][-0.234954,0.0985992,1.17372][-0.167458,0.510449,0.843445][0.581973,0.67265,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-0.245225,-0.0223106,1.18666][-0.198485,-0.331875,0.922206][0.584678,0.647378,0][-0.245152,0.0188195,1.19288][-0.189165,0.0673815,0.979631][0.585978,0.655975,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-1.02547,-0.166577,0.563929][-0.298952,-0.923124,0.241804][0.454521,0.617225,0][-1.07787,-0.115688,0.604006][-0.688104,-0.560082,0.461326][0.462897,0.627862,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-1.15071,-0.126895,0.455403][-0.678985,-0.662585,0.316166][0.431838,0.625519,0][-1.19828,-0.130597,0.288008][-0.855129,-0.489999,0.169279][0.396851,0.624745,0][-0.282756,-0.0504053,-0.902912][0.209084,-0.378239,0.901786][0.520103,0.550011,0][-0.139275,0.0272654,-0.927272][0.116782,0.244828,0.962508][0.525194,0.566245,0][-0.418808,0.0373188,-0.850806][0.41011,0.246435,0.878111][0.509212,0.568347,0][-0.418808,0.0373188,-0.850806][0.41011,0.246435,0.878111][0.509212,0.568347,0][-0.419758,-0.0450573,-0.852073][0.401458,-0.304306,0.863846][0.509477,0.551129,0][-0.282756,-0.0504053,-0.902912][0.209084,-0.378239,0.901786][0.520103,0.550011,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][1.13983,2.19562,0.245574][0.176133,-0.250814,0.951877][0.53021,0.900998,0][1.27687,2.2015,0.177887][0.678472,-0.239137,0.694614][0.501567,0.899769,0][1.13728,2.32213,0.247465][0.0907094,0.242698,0.965852][0.530742,0.874556,0][1.13983,2.19562,0.245574][0.176133,-0.250814,0.951877][0.53021,0.900998,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][-0.939754,0.13943,-0.680409][-0.443896,0.852882,-0.274863][0.194442,0.681184,0][-0.986038,0.0789427,-0.699849][-0.754516,0.42672,-0.498613][0.190379,0.668541,0][-1.09039,0.071416,-0.508853][-0.859529,0.350196,-0.372253][0.230299,0.666968,0][-1.09039,0.071416,-0.508853][-0.859529,0.350196,-0.372253][0.230299,0.666968,0][-1.00366,-0.00155977,-0.701869][-0.844522,-0.0268741,-0.534846][0.189957,0.651715,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-0.999484,-0.0212405,0.745957][-0.738984,0.124406,0.662137][0.492567,0.647602,0][-0.982334,-0.0988274,0.733889][-0.581941,-0.556274,0.593215][0.490044,0.631386,0][-0.743173,-0.0276365,0.967832][-0.511557,-0.401452,0.759701][0.538941,0.646265,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.50471,0.623888,0][-0.743173,-0.0276365,0.967832][-0.511557,-0.401452,0.759701][0.538941,0.646265,0][-0.982334,-0.0988274,0.733889][-0.581941,-0.556274,0.593215][0.490044,0.631386,0][-0.235054,-0.0933124,1.1447][-0.130327,-0.739664,0.660236][0.575907,0.632538,0][-0.245225,-0.0223106,1.18666][-0.198485,-0.331875,0.922206][0.584678,0.647378,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.0557947,-0.0234923,1.2136][-0.05711,-0.208462,0.976362][0.590309,0.647131,0][-0.235054,-0.0933124,1.1447][-0.130327,-0.739664,0.660236][0.575907,0.632538,0][0.135691,-0.10126,1.16822][0.0565671,-0.646236,0.761038][0.580823,0.630877,0][1.07886,-0.0630241,0.475145][0.803996,-0.482228,0.347918][0.232075,0.547374,0][0.929811,-0.133043,0.6333][0.490353,-0.806856,0.329449][0.19902,0.532739,0][1.09629,-0.118293,0.280313][0.62762,-0.766513,0.136202][0.272797,0.535822,0][0.929811,-0.133043,0.6333][0.490353,-0.806856,0.329449][0.19902,0.532739,0][0.975929,-0.0708667,0.656592][0.748486,-0.390797,0.535767][0.194151,0.545735,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][0.193456,-1.25309e-007,-1.04388][0,0.483188,-1.25436][0.474996,0.488043,0][0.208104,0.528515,-0.823446][0.237864,0.356444,-0.903531][0.521068,0.377578,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][0.0799565,0.552761,-0.83371][0.0117295,0.354687,-0.934912][0.518923,0.372511,0][0.208104,0.528515,-0.823446][0.237864,0.356444,-0.903531][0.521068,0.377578,0][0.193456,-1.25309e-007,-1.04388][0,0.483188,-1.25436][0.474996,0.488043,0][0.693441,0.905796,0.358862][0.87134,0.0882126,0.482686][0.768182,0.298723,0][0.676945,1.26582,0.326505][0.741205,0.0978063,0.664115][0.761419,0.223476,0][0.552579,0.623539,0.6143][0.628646,0.287661,0.722534][0.821571,0.357717,0][0.774166,0.874114,0.188664][0.948427,0.110069,0.297272][0.732609,0.305345,0][0.693441,0.905796,0.358862][0.87134,0.0882126,0.482686][0.768182,0.298723,0][0.64038,0.601182,0.536918][0.752421,0.283643,0.594482][0.805397,0.36239,0][0.750517,-0.161722,-0.771202][0.0634641,-0.997952,0.00797214][0.492574,0.526745,0][0.493084,-0.176767,-0.949697][0.0707232,-0.996045,-0.0537756][0.529881,0.5236,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.126183,0.619143,0][0.493084,-0.176767,-0.949697][0.0707232,-0.996045,-0.0537756][0.138159,0.615095,0][0.750517,-0.161722,-0.771202][0.0634641,-0.997952,0.00797214][0.175466,0.61824,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.371076,0.966039,0][0.0292531,0.014075,-1.23744][0.0614803,0.359155,-0.931251][0.371606,0.99,0][-0.161578,0.0598636,-1.21703][-0.0566902,0.561279,-0.825683][0.331918,0.984174,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.077486,0.647856,0][-0.161578,0.0598636,-1.21703][-0.0566902,0.561279,-0.825683][0.0822839,0.664553,0][0.0292531,0.014075,-1.23744][0.0614803,0.359155,-0.931251][0.0780184,0.654983,0][-0.155434,1.47204,0.165677][-0.680188,0.663334,0.31198][0.196272,0.180372,0][-0.35606,1.08165,0.40259][-0.634612,0.535931,0.556817][0.146755,0.261968,0][0.0288813,1.61873,0.20963][-0.57474,0.687302,0.444175][0.187085,0.149713,0][0.0288813,1.61873,0.20963][-0.57474,0.687302,0.444175][0.187085,0.149713,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][-0.155434,1.47204,0.165677][-0.680188,0.663334,0.31198][0.196272,0.180372,0][-0.819456,0.140938,0.794313][-0.455594,0.819059,0.348678][0.502674,0.681499,0][-1.07812,0.043451,0.590053][-0.734467,0.534698,0.417918][0.459981,0.661123,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-0.663576,0.171398,0.86963][-0.226715,0.949743,0.215842][0.518415,0.687865,0][-0.819456,0.140938,0.794313][-0.455594,0.819059,0.348678][0.502674,0.681499,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.948664,-0.101762,-0.746352][0.596673,-0.721055,-0.352222][0.48738,0.539277,0][-0.934418,-0.08531,-0.138446][0.842914,-0.527385,0.106589][0.360322,0.542716,0][-0.913465,-0.00429873,-0.143983][0.98599,-0.10629,0.128551][0.361479,0.559648,0][-0.906776,-0.0103152,0.141766][0.927095,-0.361007,-0.100838][0.301755,0.558391,0][-0.906776,-0.0103152,0.141766][0.927095,-0.361007,-0.100838][0.301755,0.558391,0][-0.927063,-0.0919544,0.153973][0.895766,-0.411936,-0.167067][0.299203,0.541327,0][-0.934418,-0.08531,-0.138446][0.842914,-0.527385,0.106589][0.360322,0.542716,0][1.11332,0.142551,-0.455818][0.575975,0.792788,-0.199347][0.426656,0.590341,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.419275,0.597569,0][1.10441,0.179189,-0.0879798][0.222288,0.974981,0.000437925][0.349774,0.597999,0][1.06633,0.104413,-0.628253][0.653398,0.629066,-0.421125][0.462696,0.58237,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.419275,0.597569,0][1.11332,0.142551,-0.455818][0.575975,0.792788,-0.199347][0.426656,0.590341,0][-0.766163,-0.155736,-0.776447][-0.386739,-0.900444,-0.199079][0.49367,0.527996,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-0.766163,-0.155736,-0.776447][-0.386739,-0.900444,-0.199079][0.49367,0.527996,0][-0.156803,-0.171805,-1.12598][-0.0640342,-0.963518,-0.259871][0.566726,0.524638,0][0.329637,0.132566,-0.979345][-0.037065,0.991858,0.121833][0.536078,0.588254,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.566099,0.587776,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.548882,0.588328,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.548882,0.588328,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.566099,0.587776,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.5586,0.590275,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.135537,0.680569,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.10944,0.681769,0][-0.701006,0.0781278,-1.0064][-0.55252,0.472428,-0.686682][0.126308,0.668371,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.135537,0.680569,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][0.728969,1.85899,-0.235635][0.375554,0.184848,-0.90818][0.643927,0.0994954,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.643927,0.0896171,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.643927,0.0896171,0][0.728969,1.85899,-0.235635][0.375554,0.184848,-0.90818][0.643927,0.0994954,0][0.382706,1.2211,-0.52954][0.545522,0.146805,-0.825139][0.582497,0.232821,0][-0.157569,-0.0250827,0.885835][0.226027,-0.255412,-0.940041][0.146237,0.555304,0][-0.155759,0.0572934,0.887584][0.218986,0.0842997,-0.972079][0.145872,0.572521,0][0.131686,0.043177,0.903801][-0.066218,0.267845,-0.961184][0.142482,0.569571,0][0.131686,0.043177,0.903801][-0.066218,0.267845,-0.961184][0.142482,0.569571,0][0.129876,-0.0391991,0.903293][-0.0954299,-0.262111,-0.960308][0.142588,0.552353,0][-0.157569,-0.0250827,0.885835][0.226027,-0.255412,-0.940041][0.146237,0.555304,0][0.561456,0.461657,-0.674486][0.62333,0.292223,-0.725304][0.552202,0.391552,0][0.854043,0.269095,-0.41227][0.824702,0.386224,-0.413155][0.607008,0.4318,0][0.883162,0,-0.621223][0.082139,0.0435687,-0.118484][0.563335,0.488043,0][0.640379,0.601183,-0.536919][0.775387,0.236771,-0.585418][0.580955,0.36239,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][0.854043,0.269095,-0.41227][0.824702,0.386224,-0.413155][0.607008,0.4318,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.529889,0.632128,0][0.130864,-0.10961,0.943977][-0.164423,-0.559635,-0.812264][0.533955,0.629132,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][0.130864,-0.10961,0.943977][-0.164423,-0.559635,-0.812264][0.533955,0.629132,0][0.424682,-0.123694,0.860418][-0.335629,-0.678446,-0.653502][0.51649,0.626188,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][-1.23463,-0.00780537,0.0978408][-0.979773,0.193795,0.0498782][0.357104,0.65041,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][-1.23463,-0.00780537,0.0978408][-0.979773,0.193795,0.0498782][0.357104,0.65041,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.405334,-0.0284817,-1.16833][0.285596,-0.0509241,-0.956996][0.575577,0.554594,0][0.574987,-0.0627342,-1.09214][0.427397,-0.362641,-0.828144][0.559654,0.547434,0][0.73503,-0.0113983,-1.01061][0.545912,-0.0766649,-0.834328][0.542612,0.558164,0][0.574987,-0.0627342,-1.09214][0.427397,-0.362641,-0.828144][0.559654,0.547434,0][0.405334,-0.0284817,-1.16833][0.285596,-0.0509241,-0.956996][0.575577,0.554594,0][0.871764,0.0443309,0.246563][-0.889391,0.408635,-0.204943][0.388189,0.661307,0][0.975081,0.151071,0.0957407][-0.587392,0.808209,-0.0420508][0.356665,0.683617,0][0.925923,0.0907754,-0.0494777][-0.863204,0.504853,0.00165961][0.326313,0.671014,0][1.0064,0.172895,-0.229047][-0.109018,0.98762,0.112792][0.288781,0.688178,0][0.925923,0.0907754,-0.0494777][-0.863204,0.504853,0.00165961][0.326313,0.671014,0][0.975081,0.151071,0.0957407][-0.587392,0.808209,-0.0420508][0.356665,0.683617,0][-0.875086,-0.0507577,0.279532][0.915689,-0.257999,-0.308141][0.27296,0.549938,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.927063,-0.0919544,0.153973][0.895766,-0.411936,-0.167067][0.299203,0.541327,0][-0.927063,-0.0919544,0.153973][0.895766,-0.411936,-0.167067][0.299203,0.541327,0][-0.906776,-0.0103152,0.141766][0.927095,-0.361007,-0.100838][0.301755,0.558391,0][-0.875086,-0.0507577,0.279532][0.915689,-0.257999,-0.308141][0.27296,0.549938,0][0.922196,2.19562,-0.179111][-0.66893,-0.367799,-0.645954][0.0760021,0.975143,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][0.886564,2.1306,-0.0695573][-0.808301,-0.489681,-0.326898][0.0895922,0.98259,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][0.922196,2.19562,-0.179111][-0.66893,-0.367799,-0.645954][0.0760021,0.975143,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][-0.289622,1.06024,-0.484315][-0.532148,0.508043,-0.677282][0.332126,0.266442,0][-0.0368969,1.41677,-0.379109][-0.454375,0.589281,-0.668051][0.310137,0.191925,0][-0.272734,1.28499,-0.277176][-0.669266,0.607672,-0.427571][0.288832,0.219468,0][-0.0368969,1.41677,-0.379109][-0.454375,0.589281,-0.668051][0.310137,0.191925,0][-0.289622,1.06024,-0.484315][-0.532148,0.508043,-0.677282][0.332126,0.266442,0][1.0291,2.01222,-0.00212443][-0.308972,-0.95103,0.00889753][0.114333,0.952798,0][0.939691,2.06971,-0.0707987][-0.57291,-0.742893,-0.346243][0.102319,0.971486,0][1.07809,2.01222,-0.0695573][-0.10394,-0.95103,-0.2911][0.114333,0.942559,0][1.0291,2.01222,-0.00212443][-0.308972,-0.95103,0.00889753][0.114333,0.952798,0][0.908474,2.08678,-0.00212442][-0.718412,-0.694103,0.0458877][0.0987511,0.978011,0][0.939691,2.06971,-0.0707987][-0.57291,-0.742893,-0.346243][0.102319,0.971486,0][0.986627,2.32801,-0.225923][-0.391392,0.251143,-0.885291][0.048331,0.961676,0][1.10183,2.39303,-0.225957][0.00650135,0.562933,-0.826477][0.034741,0.937598,0][1.13728,2.32213,-0.251714][0.0958692,0.177468,-0.979446][0.0495604,0.930188,0][0.986627,2.32801,-0.225923][-0.391392,0.251143,-0.885291][0.048331,0.961676,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][1.10183,2.39303,-0.225957][0.00650135,0.562933,-0.826477][0.034741,0.937598,0][0.73503,-0.0113983,-1.01061][0.545912,-0.0766649,-0.834328][0.542612,0.558164,0][0.721754,0.0683565,-0.994283][0.458434,0.504602,-0.731584][0.5392,0.574834,0][0.872237,0.000153834,-0.906709][0.666296,0.0253514,-0.745256][0.520896,0.560579,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.73503,-0.0113983,-1.01061][0.545912,-0.0766649,-0.834328][0.542612,0.558164,0][0.872237,0.000153834,-0.906709][0.666296,0.0253514,-0.745256][0.520896,0.560579,0][-1.01575,0,-0.165333][0,-2.67035,0][0.265456,0.488043,0][-0.977037,0,0.326597][-1.03284,0.399103,0.52626][0.162638,0.488043,0][-0.898697,0.243419,0.303609][-0.900438,0.333669,0.279065][0.167443,0.437166,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-0.898697,0.243419,0.303609][-0.900438,0.333669,0.279065][0.167443,0.437166,0][-0.977037,0,0.326597][-1.03284,0.399103,0.52626][0.162638,0.488043,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.172721,0.686014,0][-0.939754,0.13943,-0.680409][-0.443896,0.852882,-0.274863][0.194442,0.681184,0][-1.03856,0.133151,-0.503348][-0.49468,0.842758,-0.212251][0.23145,0.679871,0][-1.09039,0.071416,-0.508853][-0.859529,0.350196,-0.372253][0.230299,0.666968,0][-1.03856,0.133151,-0.503348][-0.49468,0.842758,-0.212251][0.23145,0.679871,0][-0.939754,0.13943,-0.680409][-0.443896,0.852882,-0.274863][0.194442,0.681184,0][-0.539935,-0.00449521,-1.13039][-0.461088,0.0209924,-0.887106][0.100391,0.651102,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][-0.355831,-0.0113315,-1.20322][-0.283619,0.0743696,-0.956049][0.0851693,0.649673,0][-0.355831,-0.0113315,-1.20322][-0.283619,0.0743696,-0.956049][0.0851693,0.649673,0][-0.351889,-0.0910096,-1.18427][-0.20044,-0.497915,-0.843744][0.0891302,0.63302,0][-0.539935,-0.00449521,-1.13039][-0.461088,0.0209924,-0.887106][0.100391,0.651102,0][-0.327681,1.30656,-0.0955081][-0.762453,0.629528,-0.149534][0.250862,0.21496,0][-0.472541,1.11917,0.107147][-0.815635,0.574398,0.0693237][0.208505,0.254125,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][-0.327681,1.30656,-0.0955081][-0.762453,0.629528,-0.149534][0.250862,0.21496,0][0.33503,0.00628045,1.1743][0.300248,0.000114532,0.953861][0.0859444,0.561859,0][0.323202,-0.10911,1.13153][0.190397,-0.648588,0.736941][0.0948846,0.537741,0][0.50534,-0.116874,1.05909][0.3507,-0.605722,0.71422][0.110025,0.536119,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.122867,0.526793,0][0.50534,-0.116874,1.05909][0.3507,-0.605722,0.71422][0.110025,0.536119,0][0.323202,-0.10911,1.13153][0.190397,-0.648588,0.736941][0.0948846,0.537741,0][-0.395056,-0.116515,1.0616][-0.173889,-0.892706,0.41574][0.55854,0.627689,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.50471,0.623888,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][-0.395056,-0.116515,1.0616][-0.173889,-0.892706,0.41574][0.55854,0.627689,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.50471,0.623888,0][-0.155759,0.0572934,0.887584][0.218986,0.0842997,-0.972079][0.145872,0.572521,0][-0.298648,0.100117,0.862038][0.259071,0.661676,-0.70361][0.151211,0.581472,0][0.13648,0.115446,0.945318][0.0185653,0.723634,-0.689935][0.133805,0.584676,0][0.13648,0.115446,0.945318][0.0185653,0.723634,-0.689935][0.133805,0.584676,0][0.131686,0.043177,0.903801][-0.066218,0.267845,-0.961184][0.142482,0.569571,0][-0.155759,0.0572934,0.887584][0.218986,0.0842997,-0.972079][0.145872,0.572521,0][0.323202,-0.10911,1.13153][0.190397,-0.648588,0.736941][0.0948846,0.537741,0][0.33503,0.00628045,1.1743][0.300248,0.000114532,0.953861][0.0859444,0.561859,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.077486,0.563409,0][0.143703,0.0921268,1.19385][0.0970247,0.548667,0.830392][0.0818583,0.579802,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.077486,0.563409,0][0.33503,0.00628045,1.1743][0.300248,0.000114532,0.953861][0.0859444,0.561859,0][0.64038,0.601182,0.536918][0.752421,0.283643,0.594482][0.805397,0.36239,0][0.819887,0.555474,0.234641][0.906512,0.273161,0.321899][0.742219,0.371944,0][0.774166,0.874114,0.188664][0.948427,0.110069,0.297272][0.732609,0.305345,0][0.819887,0.555474,0.234641][0.906512,0.273161,0.321899][0.742219,0.371944,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][0.774166,0.874114,0.188664][0.948427,0.110069,0.297272][0.732609,0.305345,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][0.743742,-0.0499416,0.524848][-0.833698,-0.136285,-0.535139][0.446353,0.641603,0][0.819023,-0.0440294,0.39133][-0.88339,-0.187882,-0.429327][0.418446,0.642839,0][0.648459,-0.0540569,0.644055][-0.677967,-0.229081,-0.698485][0.471268,0.640743,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][0.424682,-0.123694,0.860418][-0.335629,-0.678446,-0.653502][0.51649,0.626188,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][-0.671759,-0.0752003,-0.68937][0.655507,-0.471575,0.589854][0.47547,0.544829,0][-0.847508,-0.0759333,-0.433841][0.821599,-0.412094,0.393895][0.422062,0.544676,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][-0.847508,-0.0759333,-0.433841][0.821599,-0.412094,0.393895][0.422062,0.544676,0][-0.934418,-0.08531,-0.138446][0.842914,-0.527385,0.106589][0.360322,0.542716,0][-0.840207,-0.111369,-0.845488][-0.556189,-0.641667,-0.528126][0.159939,0.628764,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-0.943136,-0.136206,-0.664218][-0.409153,-0.868458,-0.279953][0.197827,0.623573,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-0.840207,-0.111369,-0.845488][-0.556189,-0.641667,-0.528126][0.159939,0.628764,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.229008,0.01,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.234078,0.0123798,0][0.901967,2.20679,-0.0527757][-0.247832,0.812664,-0.527405][0.24193,0.0268019,0][0.751085,2.08796,-0.132824][-0.165166,0.661114,-0.73188][0.258661,0.0516391,0][0.901967,2.20679,-0.0527757][-0.247832,0.812664,-0.527405][0.24193,0.0268019,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.234078,0.0123798,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.543112,0.939329,0][0.985152,2.06971,0.129122][-0.408672,-0.769116,0.491373][0.562538,0.927315,0][1.0291,2.01222,-0.00212443][-0.308972,-0.95103,0.00889753][0.553352,0.939329,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.543112,0.939329,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][0.985152,2.06971,0.129122][-0.408672,-0.769116,0.491373][0.562538,0.927315,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.01,0.92316,0][1.26032,2.45392,-0.0707987][0.581801,0.773308,-0.251996][0.0220143,0.904472,0][1.12192,2.5114,-0.0695573][0.110013,0.934483,-0.338585][0.01,0.9334,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.523713,0.834996,0][1.31345,2.39303,0.0653084][0.83456,0.499586,0.232214][0.493922,0.859737,0][1.26032,2.45392,-0.0707987][0.581801,0.773308,-0.251996][0.505026,0.84701,0][1.32328,2.32801,0.11229][0.871484,0.237054,0.429326][0.491867,0.873327,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.494157,0.914588,0][1.34789,2.19562,0.0365472][0.970764,-0.200906,0.131356][0.486723,0.900998,0][1.34789,2.19562,0.0365472][0.970764,-0.200906,0.131356][0.0760021,0.88617,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.0895922,0.893604,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.0747728,0.890773,0][-0.147204,0.137236,-1.03704][0.0567344,0.97506,0.214567][0.548136,0.58923,0][-0.291261,0.102572,-0.939522][0.233875,0.660794,0.7132][0.527754,0.581985,0][0.00903557,0.0939686,-0.970002][-0.0288356,0.730125,0.682705][0.534125,0.580187,0][-0.291261,0.102572,-0.939522][0.233875,0.660794,0.7132][0.527754,0.581985,0][-0.147204,0.137236,-1.03704][0.0567344,0.97506,0.214567][0.548136,0.58923,0][-0.434514,0.108111,-0.88703][0.36384,0.555769,0.74749][0.516783,0.583143,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.543112,0.939329,0][1.27007,2.06971,0.0365472][0.595821,-0.798345,0.087423][0.502988,0.927315,0][1.25496,2.08678,0.110454][0.511921,-0.699539,0.49858][0.506146,0.923747,0][1.27007,2.06971,0.0365472][0.595821,-0.798345,0.087423][0.502988,0.927315,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.494157,0.914588,0][1.25496,2.08678,0.110454][0.511921,-0.699539,0.49858][0.506146,0.923747,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.523713,0.834996,0][1.15919,2.43685,0.180032][0.155062,0.702186,0.694903][0.526162,0.850578,0][1.21486,2.45392,0.129122][0.449151,0.761654,0.467062][0.514527,0.84701,0][1.15919,2.43685,0.180032][0.155062,0.702186,0.694903][0.526162,0.850578,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][1.21486,2.45392,0.129122][0.449151,0.761654,0.467062][0.514527,0.84701,0][0.87415,2.32213,0.110454][-0.898059,0.18909,0.397158][0.585739,0.874556,0][0.876735,2.19562,0.11229][-0.864634,-0.207643,0.457486][0.585198,0.900998,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][0.87415,2.32213,0.110454][-0.898059,0.18909,0.397158][0.585739,0.874556,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][-0.464491,-0.115469,0.849119][0.102474,-0.989507,-0.101855][0.153911,0.536412,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.13815,0.540634,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.16333,0.532393,0][-0.464491,-0.115469,0.849119][0.102474,-0.989507,-0.101855][0.153911,0.536412,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.13815,0.540634,0][0.676945,1.26582,0.326505][0.741205,0.0978063,0.664115][0.761419,0.223476,0][0.776086,1.39824,0.175855][0.899364,-0.0897434,0.427891][0.729932,0.195798,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.776086,1.39824,0.175855][0.899364,-0.0897434,0.427891][0.729932,0.195798,0][0.451072,-0.164026,0.924802][-0.103849,-0.978355,-0.178987][0.529947,0.617758,0][0.424682,-0.123694,0.860418][-0.335629,-0.678446,-0.653502][0.51649,0.626188,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][0.424682,-0.123694,0.860418][-0.335629,-0.678446,-0.653502][0.51649,0.626188,0][0.451072,-0.164026,0.924802][-0.103849,-0.978355,-0.178987][0.529947,0.617758,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][1.12192,2.5114,-0.0695573][0.110013,0.934483,-0.338585][0.01,0.9334,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][1.04264,2.5114,-0.0438002][-0.242033,0.9542,-0.175847][0.01,0.949968,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.01,0.92316,0][1.12192,2.5114,-0.0695573][0.110013,0.934483,-0.338585][0.01,0.9334,0][1.04264,2.5114,-0.0438002][-0.242033,0.9542,-0.175847][0.01,0.949968,0][0.981113,-0.142346,0.265592][-0.157941,-0.98283,-0.0953895][0.275874,0.530795,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.180945,0.526298,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][0.981113,-0.142346,0.265592][-0.157941,-0.98283,-0.0953895][0.275874,0.530795,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.344553,0.532379,0][1.27687,2.2015,-0.182136][0.633168,-0.244279,-0.734456][0.0747728,0.901013,0][1.32328,2.32801,-0.116539][0.913329,0.22673,-0.338266][0.048331,0.891313,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.0747728,0.890773,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.322735,0.932105,0][1.32328,2.32801,-0.116539][0.913329,0.22673,-0.338266][0.297076,0.9385,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.281606,0.932033,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.180945,0.526298,0][0.805856,-0.142495,0.792698][0.475068,-0.780231,0.406878][0.165704,0.530764,0][0.659004,-0.147096,0.92741][0.395968,-0.789808,0.468415][0.137548,0.529802,0][0.702127,-0.0049209,0.982153][0.617227,-0.0982616,0.780625][0.126106,0.559518,0][0.659004,-0.147096,0.92741][0.395968,-0.789808,0.468415][0.137548,0.529802,0][0.805856,-0.142495,0.792698][0.475068,-0.780231,0.406878][0.165704,0.530764,0][0.818027,-0.0741065,-0.451186][-0.729688,-0.549367,0.407125][0.242352,0.636552,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.818027,-0.0741065,-0.451186][-0.729688,-0.549367,0.407125][0.242352,0.636552,0][0.911842,-0.0682274,-0.189904][-0.817102,-0.537027,0.209632][0.296963,0.637781,0][0.159903,1.78541,-0.0605957][-0.615734,0.77069,-0.164038][0.243565,0.114875,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][0.336299,1.91606,-0.0489582][-0.552679,0.8268,-0.104635][0.241132,0.0875687,0][0.360866,1.89839,-0.142083][-0.473661,0.760013,-0.445001][0.260596,0.0912604,0][0.159903,1.78541,-0.0605957][-0.615734,0.77069,-0.164038][0.243565,0.114875,0][0.336299,1.91606,-0.0489582][-0.552679,0.8268,-0.104635][0.241132,0.0875687,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.413328,0.531419,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][1.12587,-0.108258,-0.263447][0.53543,-0.839102,-0.0960319][0.386448,0.53792,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.413328,0.531419,0][1.12587,-0.108258,-0.263447][0.53543,-0.839102,-0.0960319][0.386448,0.53792,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][-0.868679,0.115683,-0.450257][0.634884,0.69357,0.340417][0.425493,0.584725,0][-0.832486,0.0450917,-0.433111][0.860073,0.211615,0.464212][0.42191,0.569971,0][-0.546919,-0.040168,-0.776863][0.577888,-0.326997,0.747742][0.493757,0.552151,0][-0.832486,0.0450917,-0.433111][0.860073,0.211615,0.464212][0.42191,0.569971,0][-0.868679,0.115683,-0.450257][0.634884,0.69357,0.340417][0.425493,0.584725,0][-0.926431,0.110962,-0.302059][0.660001,0.731454,0.171387][0.394519,0.583739,0][0.0212981,-0.162503,-1.16613][-0.0265358,-0.903526,-0.427711][0.092921,0.618077,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.077486,0.647856,0][0.0238805,-0.13829,-1.19868][-0.047955,-0.676699,-0.734696][0.0861184,0.623137,0][0.0238805,-0.13829,-1.19868][-0.047955,-0.676699,-0.734696][0.581921,0.531642,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.0212981,-0.162503,-1.16613][-0.0265358,-0.903526,-0.427711][0.575119,0.526582,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.751085,2.08796,-0.132824][-0.165166,0.661114,-0.73188][0.258661,0.0516391,0][0.569512,1.98944,-0.168696][-0.273012,0.693498,-0.666727][0.266159,0.0722306,0][0.382497,1.64555,-0.368398][-0.0729991,0.468239,-0.880581][0.307898,0.144108,0][0.569512,1.98944,-0.168696][-0.273012,0.693498,-0.666727][0.266159,0.0722306,0][0.751085,2.08796,-0.132824][-0.165166,0.661114,-0.73188][0.258661,0.0516391,0][0.329637,0.132566,-0.979345][-0.037065,0.991858,0.121833][0.131962,0.679749,0][0.43708,0.097067,-0.854276][-0.400855,0.646044,0.649571][0.158102,0.672329,0][0.670857,0.108103,-0.691406][-0.506415,0.654287,0.561651][0.192144,0.674636,0][0.329637,0.132566,-0.979345][-0.037065,0.991858,0.121833][0.131962,0.679749,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.119158,0.679823,0][0.43708,0.097067,-0.854276][-0.400855,0.646044,0.649571][0.158102,0.672329,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-0.913465,-0.00429873,-0.143983][0.98599,-0.10629,0.128551][0.361479,0.559648,0][-0.887257,0.0414162,-0.292242][0.937882,0.26583,0.22296][0.392467,0.569203,0][-0.847508,-0.0759333,-0.433841][0.821599,-0.412094,0.393895][0.422062,0.544676,0][-0.887257,0.0414162,-0.292242][0.937882,0.26583,0.22296][0.392467,0.569203,0][-0.913465,-0.00429873,-0.143983][0.98599,-0.10629,0.128551][0.361479,0.559648,0][-0.849858,0.482622,7.07818e-007][-0.913596,0.405951,0.0233465][0.2309,0.387171,0][-0.838765,0.481231,-0.142058][-0.899377,0.401956,-0.171907][0.260591,0.387461,0][-1.01575,0,-0.165333][0,-2.67035,0][0.265456,0.488043,0][-0.838765,0.481231,-0.142058][-0.899377,0.401956,-0.171907][0.260591,0.387461,0][-0.849858,0.482622,7.07818e-007][-0.913596,0.405951,0.0233465][0.2309,0.387171,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][1.13983,2.19562,-0.249823][0.0394769,-0.22673,-0.973157][0.0760021,0.929656,0][1.13728,2.32213,-0.251714][0.0958692,0.177468,-0.979446][0.0495604,0.930188,0][1.13728,2.32213,-0.251714][0.0958692,0.177468,-0.979446][0.0495604,0.930188,0][1.13983,2.19562,-0.249823][0.0394769,-0.22673,-0.973157][0.0760021,0.929656,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][0.218505,1.74859,0.227683][-0.455598,0.692628,0.559193][0.183312,0.122571,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][0.407597,1.8648,0.221299][-0.318501,0.664012,0.676495][0.184646,0.0982825,0][0.407597,1.8648,0.221299][-0.318501,0.664012,0.676495][0.184646,0.0982825,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][0.218505,1.74859,0.227683][-0.455598,0.692628,0.559193][0.183312,0.122571,0][1.07809,2.01222,-0.0695573][-0.10394,-0.95103,-0.2911][0.114333,0.942559,0][1.11578,2.06971,-0.175814][0.152257,-0.742893,-0.651864][0.102319,0.934682,0][1.15737,2.01222,-0.0438002][0.282473,-0.950217,-0.13152][0.114333,0.92599,0][1.07809,2.01222,-0.0695573][-0.10394,-0.95103,-0.2911][0.114333,0.942559,0][1.04082,2.08678,-0.184281][-0.326131,-0.670847,-0.666035][0.0987511,0.95035,0][1.11578,2.06971,-0.175814][0.152257,-0.742893,-0.651864][0.102319,0.934682,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.100541,0.620821,0][-0.156803,-0.171805,-1.12598][-0.0640342,-0.963518,-0.259871][0.101314,0.616132,0][-0.766163,-0.155736,-0.776447][-0.386739,-0.900444,-0.199079][0.17437,0.619491,0][-0.156803,-0.171805,-1.12598][-0.0640342,-0.963518,-0.259871][0.101314,0.616132,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.100541,0.620821,0][0.0212981,-0.162503,-1.16613][-0.0265358,-0.903526,-0.427711][0.092921,0.618077,0][-1.02627,0.109059,0.542669][-0.493167,0.84343,0.213102][0.450078,0.674836,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.438477,0.681271,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.373751,0.679183,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.438477,0.681271,0][-1.02627,0.109059,0.542669][-0.493167,0.84343,0.213102][0.450078,0.674836,0][-0.819456,0.140938,0.794313][-0.455594,0.819059,0.348678][0.502674,0.681499,0][-0.35606,1.08165,0.40259][-0.634612,0.535931,0.556817][0.146755,0.261968,0][-0.401542,0.643866,0.674486][-0.487591,0.421573,0.764546][0.0899255,0.353469,0][-0.168217,1.24397,0.431713][-0.503277,0.567901,0.651307][0.140668,0.228041,0][-0.168217,1.24397,0.431713][-0.503277,0.567901,0.651307][0.140668,0.228041,0][0.0288813,1.61873,0.20963][-0.57474,0.687302,0.444175][0.187085,0.149713,0][-0.35606,1.08165,0.40259][-0.634612,0.535931,0.556817][0.146755,0.261968,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-0.745699,0.0132188,0.971718][-0.597551,0.102645,0.795234][0.539753,0.654804,0][-0.593874,0.0174512,1.06432][-0.441354,0.0793077,0.893822][0.559108,0.655689,0][-0.745699,0.0132188,0.971718][-0.597551,0.102645,0.795234][0.539753,0.654804,0][-0.743173,-0.0276365,0.967832][-0.511557,-0.401452,0.759701][0.538941,0.646265,0][-0.593874,0.0174512,1.06432][-0.441354,0.0793077,0.893822][0.559108,0.655689,0][-0.926431,0.110962,-0.302059][0.660001,0.731454,0.171387][0.394519,0.583739,0][-0.99434,0.147865,-0.312201][0.243962,0.965523,0.090814][0.396638,0.591452,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.294289,0.587688,0][-0.99434,0.147865,-0.312201][0.243962,0.965523,0.090814][0.396638,0.591452,0][-0.926431,0.110962,-0.302059][0.660001,0.731454,0.171387][0.394519,0.583739,0][-0.868679,0.115683,-0.450257][0.634884,0.69357,0.340417][0.425493,0.584725,0][-0.906776,-0.0103152,0.141766][0.927095,-0.361007,-0.100838][0.301755,0.558391,0][-0.913465,-0.00429873,-0.143983][0.98599,-0.10629,0.128551][0.361479,0.559648,0][-0.875782,0.0316185,0.27557][0.92319,0.259649,-0.283376][0.273788,0.567155,0][-0.875782,0.0316185,0.27557][0.92319,0.259649,-0.283376][0.273788,0.567155,0][-0.875086,-0.0507577,0.279532][0.915689,-0.257999,-0.308141][0.27296,0.549938,0][-0.906776,-0.0103152,0.141766][0.927095,-0.361007,-0.100838][0.301755,0.558391,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][-0.898697,0.243419,0.303609][-0.900438,0.333669,0.279065][0.167443,0.437166,0][-0.699126,0.700172,0.257631][-0.808754,0.47751,0.343367][0.177052,0.3417,0][-0.699126,0.700172,0.257631][-0.808754,0.47751,0.343367][0.177052,0.3417,0][-0.472541,1.11917,0.107147][-0.815635,0.574398,0.0693237][0.208505,0.254125,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][0.809753,0.133141,0.784861][0.368979,0.846999,0.382684][0.167342,0.588374,0][0.6938,0.0733359,0.96398][0.494438,0.547315,0.67526][0.129904,0.575874,0][0.847956,0.0786369,0.820737][0.65569,0.464722,0.595066][0.159843,0.576982,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][0.847956,0.0786369,0.820737][0.65569,0.464722,0.595066][0.159843,0.576982,0][0.6938,0.0733359,0.96398][0.494438,0.547315,0.67526][0.129904,0.575874,0][-0.663576,0.171398,0.86963][-0.226715,0.949743,0.215842][0.518415,0.687865,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.529614,0.690133,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.438477,0.681271,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.529614,0.690133,0][-0.663576,0.171398,0.86963][-0.226715,0.949743,0.215842][0.518415,0.687865,0][-0.544189,-0.0250008,0.709689][0.543142,-0.277962,-0.792297][0.183054,0.555321,0][-0.543417,0.0573753,0.710089][0.509132,0.358456,-0.782492][0.18297,0.572538,0][-0.155759,0.0572934,0.887584][0.218986,0.0842997,-0.972079][0.145872,0.572521,0][-0.543417,0.0573753,0.710089][0.509132,0.358456,-0.782492][0.18297,0.572538,0][-0.544189,-0.0250008,0.709689][0.543142,-0.277962,-0.792297][0.183054,0.555321,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][-0.298472,0,1.00516][0,-2.51327,0][0.903265,0.488043,0][-0.719209,0,0.747333][-0.853624,0.535487,1.01981][0.849376,0.488043,0][-0.826917,0,0.621224][0,-2.43473,0][0.823018,0.488043,0][-0.719209,0,0.747333][-0.853624,0.535487,1.01981][0.0746998,0.488043,0][-0.759414,0.234726,0.577497][-0.748947,0.357668,0.55781][0.110197,0.438983,0][-0.826917,0,0.621224][0,-2.43473,0][0.101058,0.488043,0][0.25193,1.72759,-0.273902][-0.367009,0.638862,-0.676136][0.288148,0.12696,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][0.360866,1.89839,-0.142083][-0.473661,0.760013,-0.445001][0.260596,0.0912604,0][0.360866,1.89839,-0.142083][-0.473661,0.760013,-0.445001][0.260596,0.0912604,0][0.569512,1.98944,-0.168696][-0.273012,0.693498,-0.666727][0.266159,0.0722306,0][0.25193,1.72759,-0.273902][-0.367009,0.638862,-0.676136][0.288148,0.12696,0][0.908152,0.262314,0.280618][0.871414,0.388507,0.299498][0.751828,0.433217,0][0.941159,0.258178,0.142057][0.913649,0.391758,0.108498][0.722868,0.434081,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][0.941159,0.258178,0.142057][0.913649,0.391758,0.108498][0.722868,0.434081,0][0.908152,0.262314,0.280618][0.871414,0.388507,0.299498][0.751828,0.433217,0][1.072,0,0.165331][1.30668,0.647,0.384929][0.727732,0.488043,0][1.10441,0.179189,-0.0879798][0.222288,0.974981,0.000437925][0.349774,0.597999,0][1.16572,0.139328,0.0870666][0.69293,0.711056,0.119364][0.313188,0.589667,0][1.17604,0.143261,-0.101126][0.728111,0.68497,-0.0258946][0.352522,0.590489,0][1.10441,0.179189,-0.0879798][0.222288,0.974981,0.000437925][0.349774,0.597999,0][1.17604,0.143261,-0.101126][0.728111,0.68497,-0.0258946][0.352522,0.590489,0][1.11332,0.142551,-0.455818][0.575975,0.792788,-0.199347][0.426656,0.590341,0][0.929942,2.45392,-0.0407961][-0.63609,0.759925,-0.133806][0.0220143,0.973524,0][0.887692,2.39303,-0.0730275][-0.80624,0.503502,-0.310585][0.034741,0.982355,0][0.887692,2.39303,0.0687787][-0.824464,0.509546,0.246217][0.034741,0.982355,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][0.887692,2.39303,-0.0730275][-0.80624,0.503502,-0.310585][0.034741,0.982355,0][0.929942,2.45392,-0.0407961][-0.63609,0.759925,-0.133806][0.0220143,0.973524,0][0.871764,0.0443309,0.246563][-0.889391,0.408635,-0.204943][0.388189,0.661307,0][0.905117,0.0095525,-0.0437636][-0.999599,-0.0206828,-0.0193643][0.327507,0.654038,0][0.819023,-0.0440294,0.39133][-0.88339,-0.187882,-0.429327][0.418446,0.642839,0][0.819023,-0.0440294,0.39133][-0.88339,-0.187882,-0.429327][0.418446,0.642839,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.871764,0.0443309,0.246563][-0.889391,0.408635,-0.204943][0.388189,0.661307,0][-0.173182,0.600658,0.792906][-0.254028,0.398154,0.881444][0.0651746,0.3625,0][0.0281239,0,1.05689][0.0154793,0.965037,2.4819][0.01,0.488043,0][0.00495392,0.762982,0.74997][-0.0709285,0.39875,0.914313][0.0741487,0.328573,0][0.00495392,0.762982,0.74997][-0.0709285,0.39875,0.914313][0.0741487,0.328573,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][-0.173182,0.600658,0.792906][-0.254028,0.398154,0.881444][0.0651746,0.3625,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][0.774165,0.874114,-0.188665][0.957379,0.0870037,-0.275419][0.653744,0.305345,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.774165,0.874114,-0.188665][0.957379,0.0870037,-0.275419][0.653744,0.305345,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][0.875424,0.0887662,-0.329668][-0.779865,0.558359,0.282923][0.267751,0.670594,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.89068,0.00974836,-0.184495][-0.978056,-0.0353922,0.205315][0.298093,0.654079,0][0.89068,0.00974836,-0.184495][-0.978056,-0.0353922,0.205315][0.298093,0.654079,0][0.925923,0.0907754,-0.0494777][-0.863204,0.504853,0.00165961][0.326313,0.671014,0][0.875424,0.0887662,-0.329668][-0.779865,0.558359,0.282923][0.267751,0.670594,0][1.072,0,0.165331][1.30668,0.647,0.384929][0.727732,0.488043,0][0.969817,0,0.479815][0.896916,0.432149,0.291424][0.793462,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][0.941159,0.258178,0.142057][0.913649,0.391758,0.108498][0.722868,0.434081,0][1.072,0,0.165331][1.30668,0.647,0.384929][0.727732,0.488043,0][0.0122331,-0.174511,-1.04564][-0.0130506,-0.989549,0.143603][0.549934,0.524072,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.541857,0.527648,0][-0.301273,-0.148268,-0.97666][0.113418,-0.858065,0.500859][0.535517,0.529557,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.126183,0.619143,0][0.0122331,-0.174511,-1.04564][-0.0130506,-0.989549,0.143603][0.118105,0.615567,0][0.493084,-0.176767,-0.949697][0.0707232,-0.996045,-0.0537756][0.138159,0.615095,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.419275,0.597569,0][1.06633,0.104413,-0.628253][0.653398,0.629066,-0.421125][0.462696,0.58237,0][0.972224,0.0919753,-0.769733][0.606789,0.601631,-0.519468][0.492267,0.57977,0][0.989103,0.0138912,-0.784125][0.789439,-0.071561,-0.609643][0.495275,0.56345,0][0.972224,0.0919753,-0.769733][0.606789,0.601631,-0.519468][0.492267,0.57977,0][1.06633,0.104413,-0.628253][0.653398,0.629066,-0.421125][0.462696,0.58237,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.721754,0.0683565,-0.994283][0.458434,0.504602,-0.731584][0.5392,0.574834,0][0.568005,0.058457,-1.08071][0.339249,0.491161,-0.802291][0.557264,0.572765,0][0.73503,-0.0113983,-1.01061][0.545912,-0.0766649,-0.834328][0.542612,0.558164,0][0.568005,0.058457,-1.08071][0.339249,0.491161,-0.802291][0.557264,0.572765,0][0.721754,0.0683565,-0.994283][0.458434,0.504602,-0.731584][0.5392,0.574834,0][-0.234954,0.0985992,1.17372][-0.167458,0.510449,0.843445][0.581973,0.67265,0][-0.245152,0.0188195,1.19288][-0.189165,0.0673815,0.979631][0.585978,0.655975,0][-0.0425376,0.129121,1.17491][-0.0171125,0.634941,0.772371][0.582222,0.679029,0][-0.385166,0.159121,1.06691][-0.207462,0.846007,0.491154][0.559649,0.685299,0][-0.234954,0.0985992,1.17372][-0.167458,0.510449,0.843445][0.581973,0.67265,0][-0.0425376,0.129121,1.17491][-0.0171125,0.634941,0.772371][0.582222,0.679029,0][0.908152,0.262314,0.280618][0.871414,0.388507,0.299498][0.751828,0.433217,0][0.780167,0.278353,0.533768][0.763684,0.388516,0.515599][0.804739,0.429865,0][0.969817,0,0.479815][0.896916,0.432149,0.291424][0.793462,0.488043,0][0.775456,0,0.747331][0,-2.74889,1.20158e-007][0.849376,0.488043,0][0.969817,0,0.479815][0.896916,0.432149,0.291424][0.793462,0.488043,0][0.780167,0.278353,0.533768][0.763684,0.388516,0.515599][0.804739,0.429865,0][0.146554,-0.0185205,-0.906011][-0.184575,0.000473701,0.982818][0.147289,0.64817,0][0.290679,-0.0977864,-0.886699][-0.286799,-0.487428,0.824718][0.151326,0.631603,0][0.414438,-0.056006,-0.814908][-0.464014,-0.146007,0.873712][0.166331,0.640336,0][0.290679,-0.0977864,-0.886699][-0.286799,-0.487428,0.824718][0.151326,0.631603,0][0.146554,-0.0185205,-0.906011][-0.184575,0.000473701,0.982818][0.147289,0.64817,0][0.00456253,-0.0584856,-0.931307][-0.0691712,-0.31798,0.945571][0.142002,0.639817,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][0.676945,1.26582,0.326505][0.741205,0.0978063,0.664115][0.761419,0.223476,0][0.676945,1.26582,0.326505][0.741205,0.0978063,0.664115][0.761419,0.223476,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][0.454128,0.648608,0.676557][0.527235,0.279253,0.802522][0.834583,0.352478,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.229563,0.589776,0][-0.915283,0.0990168,0.291209][0.582319,0.778312,-0.23481][0.27052,0.581242,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-0.875782,0.0316185,0.27557][0.92319,0.259649,-0.283376][0.273788,0.567155,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-0.915283,0.0990168,0.291209][0.582319,0.778312,-0.23481][0.27052,0.581242,0][0.0292531,0.014075,-1.23744][0.0614803,0.359155,-0.931251][0.590021,0.563488,0][0.0277378,-0.0683013,-1.23874][0.0469238,-0.28212,-0.958231][0.590294,0.546271,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.590554,0.556361,0][0.0277378,-0.0683013,-1.23874][0.0469238,-0.28212,-0.958231][0.590294,0.546271,0][0.0292531,0.014075,-1.23744][0.0614803,0.359155,-0.931251][0.590021,0.563488,0][0.220523,-0.0304661,-1.21809][0.236126,-0.0855595,-0.967948][0.585978,0.554179,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][-1.21797,-0.126086,0.104586][-0.874292,-0.482019,-0.0571869][0.358514,0.625688,0][-1.19828,-0.130597,0.288008][-0.855129,-0.489999,0.169279][0.396851,0.624745,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-1.19828,-0.130597,0.288008][-0.855129,-0.489999,0.169279][0.396851,0.624745,0][-1.21797,-0.126086,0.104586][-0.874292,-0.482019,-0.0571869][0.358514,0.625688,0][1.09629,-0.118293,0.280313][0.62762,-0.766513,0.136202][0.272797,0.535822,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][1.09629,-0.118293,0.280313][0.62762,-0.766513,0.136202][0.272797,0.535822,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][0.587278,1.73562,0.312964][0.22365,0.301747,0.926784][0.758589,0.125283,0][0.757144,1.83595,0.226895][0.490874,0.0860341,0.866972][0.7406,0.104313,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.695068,0.01,0][0.587278,1.73562,0.312964][0.22365,0.301747,0.926784][0.758589,0.125283,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][0.757144,1.83595,0.226895][0.490874,0.0860341,0.866972][0.7406,0.104313,0][0.750517,-0.161722,-0.771202][0.0634641,-0.997952,0.00797214][0.175466,0.61824,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][0.451615,-0.153831,-0.879014][-0.400738,0.0728588,0.913291][0.152932,0.619889,0][0.750517,-0.161722,-0.771202][0.0634641,-0.997952,0.00797214][0.175466,0.61824,0][0.451615,-0.153831,-0.879014][-0.400738,0.0728588,0.913291][0.152932,0.619889,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.126183,0.619143,0][-1.17152,-0.0505837,0.462046][-0.932351,0.0103318,0.361406][0.433226,0.641469,0][-1.15071,-0.126895,0.455403][-0.678985,-0.662585,0.316166][0.431838,0.625519,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][-1.17152,-0.0505837,0.462046][-0.932351,0.0103318,0.361406][0.433226,0.641469,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][0.635522,0.928528,-0.431712][0.745757,0.165828,-0.64525][0.602944,0.293972,0][0.409275,1.01732,-0.580652][0.479636,0.261064,-0.837732][0.571815,0.275413,0][0.592303,1.12337,-0.433747][0.626988,0.136686,-0.766944][0.602519,0.253249,0][0.592303,1.12337,-0.433747][0.626988,0.136686,-0.766944][0.602519,0.253249,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.635522,0.928528,-0.431712][0.745757,0.165828,-0.64525][0.602944,0.293972,0][-0.472541,1.11917,0.107147][-0.815635,0.574398,0.0693237][0.208505,0.254125,0][-0.699126,0.700172,0.257631][-0.808754,0.47751,0.343367][0.177052,0.3417,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][-0.472541,1.11917,0.107147][-0.815635,0.574398,0.0693237][0.208505,0.254125,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.0747728,0.890773,0][1.31232,2.1306,-0.0730275][0.845459,-0.49173,-0.208328][0.0895922,0.893604,0][1.25496,2.08678,-0.114703][0.562894,-0.708479,-0.425685][0.0987511,0.905593,0][1.15737,2.01222,-0.0438002][0.282473,-0.950217,-0.13152][0.114333,0.92599,0][1.25496,2.08678,-0.114703][0.562894,-0.708479,-0.425685][0.0987511,0.905593,0][1.31232,2.1306,-0.0730275][0.845459,-0.49173,-0.208328][0.0895922,0.893604,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][-0.701006,0.0781278,-1.0064][-0.55252,0.472428,-0.686682][0.126308,0.668371,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][-0.701006,0.0781278,-1.0064][-0.55252,0.472428,-0.686682][0.126308,0.668371,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.464976,0.593474,0][0.813534,0.136589,-0.844348][0.263913,0.894556,-0.36072][0.507862,0.589095,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.721754,0.0683565,-0.994283][0.458434,0.504602,-0.731584][0.5392,0.574834,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.813534,0.136589,-0.844348][0.263913,0.894556,-0.36072][0.507862,0.589095,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][0.983457,2.2015,0.221708][-0.481138,-0.186663,0.856542][0.562892,0.899769,0][0.969916,2.1306,0.180032][-0.516925,-0.483155,0.706647][0.565723,0.914588,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][0.969916,2.1306,0.180032][-0.516925,-0.483155,0.706647][0.565723,0.914588,0][0.983457,2.2015,0.221708][-0.481138,-0.186663,0.856542][0.562892,0.899769,0][-0.582771,0.678156,-0.490042][-0.698626,0.447202,-0.558509][0.333323,0.346302,0][-0.499288,0.662361,-0.589522][-0.581832,0.429403,-0.690713][0.354115,0.349603,0][-0.593101,0,-0.85504][-1.05758,0.624285,-1.16138][0.409611,0.488043,0][-0.499288,0.662361,-0.589522][-0.581832,0.429403,-0.690713][0.354115,0.349603,0][-0.582771,0.678156,-0.490042][-0.698626,0.447202,-0.558509][0.333323,0.346302,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][0.507941,0,0.941693][0.795412,0.733051,1.65457][0.889999,0.488043,0][0.333097,0.504865,0.792905][0.51228,0.342006,0.787783][0.858901,0.382522,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][0.775456,0,0.747331][0,-2.74889,1.20158e-007][0.849376,0.488043,0][0.507941,0,0.941693][0.795412,0.733051,1.65457][0.889999,0.488043,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][-0.815674,0.139803,-0.834896][-0.338818,0.868249,-0.362416][0.198442,0.899007,0][-0.939754,0.13943,-0.680409][-0.443896,0.852882,-0.274863][0.173794,0.865726,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.227787,0.926794,0][-0.986038,0.0789427,-0.699849][-0.754516,0.42672,-0.498613][0.190379,0.668541,0][-0.939754,0.13943,-0.680409][-0.443896,0.852882,-0.274863][0.194442,0.681184,0][-0.815674,0.139803,-0.834896][-0.338818,0.868249,-0.362416][0.162153,0.681262,0][-1.04123,-0.142485,-0.482088][-0.444563,-0.873017,-0.200509][0.235893,0.622261,0][-0.943136,-0.136206,-0.664218][-0.409153,-0.868458,-0.279953][0.197827,0.623573,0][-1.14981,-0.165675,-0.0990524][-0.55197,-0.824536,-0.124377][0.315951,0.617414,0][-0.988039,-0.0801959,-0.688873][-0.740815,-0.465411,-0.484341][0.192673,0.63528,0][-0.943136,-0.136206,-0.664218][-0.409153,-0.868458,-0.279953][0.197827,0.623573,0][-1.04123,-0.142485,-0.482088][-0.444563,-0.873017,-0.200509][0.235893,0.622261,0][0.00530766,0.0238906,-0.930004][-0.080415,0.245478,0.966061][0.525765,0.56554,0][0.00903557,0.0939686,-0.970002][-0.0288356,0.730125,0.682705][0.534125,0.580187,0][-0.139275,0.0272654,-0.927272][0.116782,0.244828,0.962508][0.525194,0.566245,0][0.00456253,-0.0584856,-0.931307][-0.0691712,-0.31798,0.945571][0.526038,0.548322,0][0.00530766,0.0238906,-0.930004][-0.080415,0.245478,0.966061][0.525765,0.56554,0][-0.139275,0.0272654,-0.927272][0.116782,0.244828,0.962508][0.525194,0.566245,0][0.818027,-0.0741065,-0.451186][-0.729688,-0.549367,0.407125][0.242352,0.636552,0][0.869439,-0.12949,-0.485315][-0.391334,-0.873626,0.289198][0.235219,0.624977,0][0.898882,-0.101626,-0.337433][-0.467095,-0.864758,0.184432][0.266128,0.630801,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.254712,0.622913,0][0.898882,-0.101626,-0.337433][-0.467095,-0.864758,0.184432][0.266128,0.630801,0][0.869439,-0.12949,-0.485315][-0.391334,-0.873626,0.289198][0.235219,0.624977,0][0.780167,0.278353,0.533768][0.763684,0.388516,0.515599][0.804739,0.429865,0][0.580825,0.303334,0.73467][0.646705,0.347404,0.679031][0.84673,0.424643,0][0.775456,0,0.747331][0,-2.74889,1.20158e-007][0.849376,0.488043,0][0.507941,0,0.941693][0.795412,0.733051,1.65457][0.889999,0.488043,0][0.775456,0,0.747331][0,-2.74889,1.20158e-007][0.849376,0.488043,0][0.580825,0.303334,0.73467][0.646705,0.347404,0.679031][0.84673,0.424643,0][0.693441,0.905796,0.358862][0.87134,0.0882126,0.482686][0.768182,0.298723,0][0.552579,0.623539,0.6143][0.628646,0.287661,0.722534][0.821571,0.357717,0][0.64038,0.601182,0.536918][0.752421,0.283643,0.594482][0.805397,0.36239,0][0.64038,0.601182,0.536918][0.752421,0.283643,0.594482][0.805397,0.36239,0][0.552579,0.623539,0.6143][0.628646,0.287661,0.722534][0.821571,0.357717,0][0.580825,0.303334,0.73467][0.646705,0.347404,0.679031][0.84673,0.424643,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][1.0786,0.0961145,0.470652][0.784955,0.487194,0.382737][0.233015,0.580635,0][0.977069,0.0882719,0.653029][0.746135,0.377081,0.548718][0.194896,0.578996,0][1.0786,0.0961145,0.470652][0.784955,0.487194,0.382737][0.233015,0.580635,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][-1.00366,-0.00155977,-0.701869][-0.844522,-0.0268741,-0.534846][0.189957,0.651715,0][-1.09039,0.071416,-0.508853][-0.859529,0.350196,-0.372253][0.230299,0.666968,0][-0.986038,0.0789427,-0.699849][-0.754516,0.42672,-0.498613][0.190379,0.668541,0][-1.00366,-0.00155977,-0.701869][-0.844522,-0.0268741,-0.534846][0.189957,0.651715,0][-0.986038,0.0789427,-0.699849][-0.754516,0.42672,-0.498613][0.190379,0.668541,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.543112,0.939329,0][1.11578,2.06971,0.171565][-0.0490418,-0.751333,0.658098][0.535236,0.927315,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][1.25496,2.08678,0.110454][0.511921,-0.699539,0.49858][0.506146,0.923747,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][1.11578,2.06971,0.171565][-0.0490418,-0.751333,0.658098][0.535236,0.927315,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][0.882463,1.73342,-0.0373209][0.949773,0.295348,-0.103448][0.685376,0.125741,0][0.86461,1.74803,-0.108309][0.888663,-0.202213,-0.411568][0.670539,0.122688,0][0.86461,1.74803,-0.108309][0.888663,-0.202213,-0.411568][0.670539,0.122688,0][0.882463,1.73342,-0.0373209][0.949773,0.295348,-0.103448][0.685376,0.125741,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][0.975929,-0.0708667,0.656592][0.748486,-0.390797,0.535767][0.194151,0.545735,0][1.07886,-0.0630241,0.475145][0.803996,-0.482228,0.347918][0.232075,0.547374,0][0.929811,-0.133043,0.6333][0.490353,-0.806856,0.329449][0.19902,0.532739,0][1.07886,-0.0630241,0.475145][0.803996,-0.482228,0.347918][0.232075,0.547374,0][0.975929,-0.0708667,0.656592][0.748486,-0.390797,0.535767][0.194151,0.545735,0][-0.523346,-0.117653,-1.09007][-0.381388,-0.643711,-0.663461][0.108819,0.627451,0][-0.539935,-0.00449521,-1.13039][-0.461088,0.0209924,-0.887106][0.100391,0.651102,0][-0.351889,-0.0910096,-1.18427][-0.20044,-0.497915,-0.843744][0.0891302,0.63302,0][-0.351889,-0.0910096,-1.18427][-0.20044,-0.497915,-0.843744][0.0891302,0.63302,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.100541,0.620821,0][-0.523346,-0.117653,-1.09007][-0.381388,-0.643711,-0.663461][0.108819,0.627451,0][0.809753,0.133141,0.784861][0.368979,0.846999,0.382684][0.167342,0.588374,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.203806,0.59312,0][0.488895,0.145942,0.990606][0.243992,0.904599,0.349527][0.124339,0.59105,0][0.488895,0.145942,0.990606][0.243992,0.904599,0.349527][0.124339,0.59105,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][0.809753,0.133141,0.784861][0.368979,0.846999,0.382684][0.167342,0.588374,0][0.854043,0.269095,-0.41227][0.824702,0.386224,-0.413155][0.607008,0.4318,0][0.561456,0.461657,-0.674486][0.62333,0.292223,-0.725304][0.552202,0.391552,0][0.640379,0.601183,-0.536919][0.775387,0.236771,-0.585418][0.580955,0.36239,0][0.640379,0.601183,-0.536919][0.775387,0.236771,-0.585418][0.580955,0.36239,0][0.561456,0.461657,-0.674486][0.62333,0.292223,-0.725304][0.552202,0.391552,0][0.635522,0.928528,-0.431712][0.745757,0.165828,-0.64525][0.602944,0.293972,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-0.419758,-0.0450573,-0.852073][0.401458,-0.304306,0.863846][0.509477,0.551129,0][-0.546919,-0.040168,-0.776863][0.577888,-0.326997,0.747742][0.493757,0.552151,0][-0.545884,0.0422081,-0.776463][0.58989,0.223486,0.775941][0.493674,0.569368,0][-0.546919,-0.040168,-0.776863][0.577888,-0.326997,0.747742][0.493757,0.552151,0][-0.419758,-0.0450573,-0.852073][0.401458,-0.304306,0.863846][0.509477,0.551129,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.253738,0.521608,0][-1.02144,-0.177575,0.200632][0.718,-0.694922,-0.0394894][0.289451,0.523432,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-1.02144,-0.177575,0.200632][0.718,-0.694922,-0.0394894][0.289451,0.523432,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.253738,0.521608,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.392273,0.52543,0][-0.173182,0.600658,0.792906][-0.254028,0.398154,0.881444][0.0651746,0.3625,0][-0.411279,0.212997,0.87541][-0.445537,0.340092,0.828151][0.0479305,0.443525,0][-0.298472,0,1.00516][0,-2.51327,0][0.0208115,0.488043,0][-0.719209,0,0.747333][-0.853624,0.535487,1.01981][0.0746998,0.488043,0][-0.298472,0,1.00516][0,-2.51327,0][0.0208115,0.488043,0][-0.411279,0.212997,0.87541][-0.445537,0.340092,0.828151][0.0479305,0.443525,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.077486,0.563409,0][0.135691,-0.10126,1.16822][0.0565671,-0.646236,0.761038][0.087217,0.539382,0][0.323202,-0.10911,1.13153][0.190397,-0.648588,0.736941][0.0948846,0.537741,0][0.13406,-0.145709,1.09706][-0.0120323,-0.952659,0.303803][0.10209,0.530092,0][0.323202,-0.10911,1.13153][0.190397,-0.648588,0.736941][0.0948846,0.537741,0][0.135691,-0.10126,1.16822][0.0565671,-0.646236,0.761038][0.087217,0.539382,0][0.415389,0.0263701,-0.816313][-0.499727,0.264193,0.824909][0.166037,0.657553,0][0.43708,0.097067,-0.854276][-0.400855,0.646044,0.649571][0.158102,0.672329,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][0.414438,-0.056006,-0.814908][-0.464014,-0.146007,0.873712][0.166331,0.640336,0][0.415389,0.0263701,-0.816313][-0.499727,0.264193,0.824909][0.166037,0.657553,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][1.06018,2.32801,0.245574][-0.124189,0.326282,0.937079][0.546856,0.873327,0][1.13728,2.32213,0.247465][0.0907094,0.242698,0.965852][0.530742,0.874556,0][0.966964,2.39303,0.177887][-0.461784,0.48968,0.739574][0.56634,0.859737,0][1.13728,2.32213,0.247465][0.0907094,0.242698,0.965852][0.530742,0.874556,0][1.06018,2.32801,0.245574][-0.124189,0.326282,0.937079][0.546856,0.873327,0][0.983457,2.2015,0.221708][-0.481138,-0.186663,0.856542][0.562892,0.899769,0][-0.80313,0.135706,0.56217][0.245016,0.916799,-0.315352][0.213886,0.58891,0][-0.587999,0.154875,0.770512][0.313957,0.824604,-0.470594][0.170341,0.592917,0][-0.832994,0.073257,0.408494][0.770182,0.442984,-0.458895][0.246006,0.575858,0][-0.80313,0.135706,0.56217][0.245016,0.916799,-0.315352][0.213886,0.58891,0][-0.832994,0.073257,0.408494][0.770182,0.442984,-0.458895][0.246006,0.575858,0][-0.915283,0.0990168,0.291209][0.582319,0.778312,-0.23481][0.27052,0.581242,0][0.592303,1.12337,-0.433747][0.626988,0.136686,-0.766944][0.602519,0.253249,0][0.409275,1.01732,-0.580652][0.479636,0.261064,-0.837732][0.571815,0.275413,0][0.382706,1.2211,-0.52954][0.545522,0.146805,-0.825139][0.582497,0.232821,0][0.382706,1.2211,-0.52954][0.545522,0.146805,-0.825139][0.582497,0.232821,0][0.409275,1.01732,-0.580652][0.479636,0.261064,-0.837732][0.571815,0.275413,0][0.208104,0.528515,-0.823446][0.237864,0.356444,-0.903531][0.521068,0.377578,0][-0.343291,0.101004,-1.15653][-0.178977,0.667023,-0.72322][0.0949277,0.673152,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.10944,0.681769,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.10194,0.679271,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.10944,0.681769,0][-0.343291,0.101004,-1.15653][-0.178977,0.667023,-0.72322][0.0949277,0.673152,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.670857,0.108103,-0.691406][-0.506415,0.654287,0.561651][0.192144,0.674636,0][0.639929,0.0361261,-0.657771][-0.654276,0.313054,0.688418][0.199174,0.659592,0][0.639929,0.0361261,-0.657771][-0.654276,0.313054,0.688418][0.199174,0.659592,0][0.670857,0.108103,-0.691406][-0.506415,0.654287,0.561651][0.192144,0.674636,0][0.43708,0.097067,-0.854276][-0.400855,0.646044,0.649571][0.158102,0.672329,0][0.911842,-0.0682274,-0.189904][-0.817102,-0.537027,0.209632][0.296963,0.637781,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.323486,0.623874,0][0.926938,-0.0683631,-0.0459559][-0.811245,-0.58463,-0.00942857][0.327049,0.637753,0][0.89068,0.00974836,-0.184495][-0.978056,-0.0353922,0.205315][0.298093,0.654079,0][0.911842,-0.0682274,-0.189904][-0.817102,-0.537027,0.209632][0.296963,0.637781,0][0.926938,-0.0683631,-0.0459559][-0.811245,-0.58463,-0.00942857][0.327049,0.637753,0][0.129876,-0.0391991,0.903293][-0.0954299,-0.262111,-0.960308][0.525451,0.643848,0][0.131686,0.043177,0.903801][-0.066218,0.267845,-0.961184][0.525558,0.661066,0][0.272127,-0.00564807,0.870069][-0.279542,0.338212,-0.898593][0.518507,0.650861,0][0.272127,-0.00564807,0.870069][-0.279542,0.338212,-0.898593][0.518507,0.650861,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.129876,-0.0391991,0.903293][-0.0954299,-0.262111,-0.960308][0.525451,0.643848,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.495319,0.594519,0][-0.844325,0.158148,-0.625008][0.238468,0.956082,0.170412][0.462018,0.593601,0][-0.434514,0.108111,-0.88703][0.36384,0.555769,0.74749][0.516783,0.583143,0][-0.844325,0.158148,-0.625008][0.238468,0.956082,0.170412][0.462018,0.593601,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.495319,0.594519,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.39729,0.591953,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][1.23009,2.39303,-0.184281][0.524639,0.522939,-0.671781][0.034741,0.910789,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.034741,0.893368,0][1.10183,2.39303,-0.225957][0.00650135,0.562933,-0.826477][0.034741,0.937598,0][1.23009,2.39303,-0.184281][0.524639,0.522939,-0.671781][0.034741,0.910789,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][0.89091,2.21842,0.0140458][-0.357686,0.918735,0.167292][0.227964,0.0243726,0][0.724459,2.11267,0.0965024][-0.316864,0.80516,0.501313][0.21073,0.0464755,0][0.751085,2.08796,0.132824][-0.118599,0.63005,0.767445][0.203138,0.0516391,0][0.751085,2.08796,0.132824][-0.118599,0.63005,0.767445][0.203138,0.0516391,0][0.724459,2.11267,0.0965024][-0.316864,0.80516,0.501313][0.21073,0.0464755,0][0.407597,1.8648,0.221299][-0.318501,0.664012,0.676495][0.184646,0.0982825,0][-1.00366,-0.00155977,-0.701869][-0.844522,-0.0268741,-0.534846][0.189957,0.651715,0][-0.988039,-0.0801959,-0.688873][-0.740815,-0.465411,-0.484341][0.192673,0.63528,0][-1.09206,-0.0877226,-0.4949][-0.835444,-0.436777,-0.333556][0.233216,0.633707,0][-1.04123,-0.142485,-0.482088][-0.444563,-0.873017,-0.200509][0.235893,0.622261,0][-1.09206,-0.0877226,-0.4949][-0.835444,-0.436777,-0.333556][0.233216,0.633707,0][-0.988039,-0.0801959,-0.688873][-0.740815,-0.465411,-0.484341][0.192673,0.63528,0][-0.699126,0.700172,-0.25763][-0.835889,0.465032,-0.291607][0.284747,0.3417,0][-0.838765,0.481231,-0.142058][-0.899377,0.401956,-0.171907][0.260591,0.387461,0][-0.606715,0.918732,-0.118783][-0.82612,0.553412,-0.106113][0.255726,0.296019,0][-0.838765,0.481231,-0.142058][-0.899377,0.401956,-0.171907][0.260591,0.387461,0][-0.699126,0.700172,-0.25763][-0.835889,0.465032,-0.291607][0.284747,0.3417,0][-0.751649,0.470314,-0.41227][-0.816471,0.379059,-0.435533][0.317068,0.389743,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.275767,0.616925,0][-1.15935,-0.175458,0.0866602][-0.40527,-0.911791,-0.0662822][0.354767,0.615369,0][-1.14981,-0.165675,-0.0990524][-0.55197,-0.824536,-0.124377][0.315951,0.617414,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][-1.14981,-0.165675,-0.0990524][-0.55197,-0.824536,-0.124377][0.315951,0.617414,0][-1.15935,-0.175458,0.0866602][-0.40527,-0.911791,-0.0662822][0.354767,0.615369,0][0.333097,0.504865,0.792905][0.51228,0.342006,0.787783][0.858901,0.382522,0][0.273347,0.878875,0.676493][0.277064,0.324141,0.904527][0.83457,0.30435,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][0.273347,0.878875,0.676493][0.277064,0.324141,0.904527][0.83457,0.30435,0][0.333097,0.504865,0.792905][0.51228,0.342006,0.787783][0.858901,0.382522,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][-1.07787,-0.115688,0.604006][-0.688104,-0.560082,0.461326][0.462897,0.627862,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][-1.15071,-0.126895,0.455403][-0.678985,-0.662585,0.316166][0.431838,0.625519,0][-1.15071,-0.126895,0.455403][-0.678985,-0.662585,0.316166][0.431838,0.625519,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-1.07787,-0.115688,0.604006][-0.688104,-0.560082,0.461326][0.462897,0.627862,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][0.65996,0.0669656,0.65074][-0.622233,0.45152,-0.639497][0.472665,0.666038,0][0.560484,0.0988917,0.77275][-0.440293,0.704935,-0.556066][0.498167,0.672711,0][0.560484,0.0988917,0.77275][-0.440293,0.704935,-0.556066][0.498167,0.672711,0][0.600733,0.140938,0.826926][-0.212792,0.941052,-0.262946][0.50949,0.681499,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.464233,0.684614,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.391689,0.688287,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.276351,0.596792,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.203806,0.59312,0][-0.759414,0.234726,0.577497][-0.748947,0.357668,0.55781][0.110197,0.438983,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-0.826917,0,0.621224][0,-2.43473,0][0.101058,0.488043,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-0.759414,0.234726,0.577497][-0.748947,0.357668,0.55781][0.110197,0.438983,0][-0.58277,0.678156,0.490043][-0.697758,0.458665,0.550237][0.128476,0.346302,0][-0.385166,0.159121,1.06691][-0.207462,0.846007,0.491154][0.559649,0.685299,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.567465,0.687249,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-0.385166,0.159121,1.06691][-0.207462,0.846007,0.491154][0.559649,0.685299,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.536425,0.328573,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.643927,0.0896171,0][0.0799565,0.552761,-0.83371][0.0117295,0.354687,-0.934912][0.518923,0.372511,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.387651,0.328573,0][0.0799565,0.552761,-0.83371][0.0117295,0.354687,-0.934912][0.405153,0.372511,0][0.193456,-1.25309e-007,-1.04388][0,0.483188,-1.25436][0.44908,0.488043,0][-0.357874,0.420968,-0.809125][-0.402638,0.376846,-0.834188][0.400015,0.400057,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][-0.173183,0.600658,-0.792906][-0.242749,0.406287,-0.880911][0.396625,0.3625,0][-0.357874,0.420968,-0.809125][-0.402638,0.376846,-0.834188][0.400015,0.400057,0][-0.173183,0.600658,-0.792906][-0.242749,0.406287,-0.880911][0.396625,0.3625,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.44908,0.488043,0][-0.235054,-0.0933124,1.1447][-0.130327,-0.739664,0.660236][0.575907,0.632538,0][-0.0557947,-0.0234923,1.2136][-0.05711,-0.208462,0.976362][0.590309,0.647131,0][-0.245225,-0.0223106,1.18666][-0.198485,-0.331875,0.922206][0.584678,0.647378,0][-0.245152,0.0188195,1.19288][-0.189165,0.0673815,0.979631][0.585978,0.655975,0][-0.245225,-0.0223106,1.18666][-0.198485,-0.331875,0.922206][0.584678,0.647378,0][-0.0557947,-0.0234923,1.2136][-0.05711,-0.208462,0.976362][0.590309,0.647131,0][0.929942,2.45392,-0.0407961][-0.63609,0.759925,-0.133806][0.574078,0.84701,0][0.887692,2.39303,0.0687787][-0.824464,0.509546,0.246217][0.582908,0.859737,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][0.87415,2.32213,0.110454][-0.898059,0.18909,0.397158][0.585739,0.874556,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][0.887692,2.39303,0.0687787][-0.824464,0.509546,0.246217][0.582908,0.859737,0][1.01089,2.0923,0.0277455][0.866408,-0.302895,0.396979][0.698976,0.0507328,0][0.995795,2.10817,0.063489][0.724392,-0.159798,0.670612][0.706446,0.047416,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.995795,2.10817,0.063489][0.724392,-0.159798,0.670612][0.706446,0.047416,0][1.01089,2.0923,0.0277455][0.866408,-0.302895,0.396979][0.698976,0.0507328,0][1.09902,2.26713,0.00698902][0.902483,0.757265,3.43348e-006][0.694637,0.0141904,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][-1.18277,0.0805455,-0.116692][-0.799773,0.594269,-0.0848969][0.312265,0.668876,0][-1.14065,0.0940102,-0.312672][-0.765956,0.618254,-0.176277][0.271303,0.67169,0][-1.11228,0.13049,-0.13394][-0.193551,0.977902,0.0790338][0.30866,0.679315,0][-1.14065,0.0940102,-0.312672][-0.765956,0.618254,-0.176277][0.271303,0.67169,0][-1.18277,0.0805455,-0.116692][-0.799773,0.594269,-0.0848969][0.312265,0.668876,0][-0.298648,0.100117,0.862038][0.259071,0.661676,-0.70361][0.151211,0.581472,0][-0.319499,0.159871,0.917721][0.162323,0.822015,-0.545841][0.139573,0.593961,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][-0.319499,0.159871,0.917721][0.162323,0.822015,-0.545841][0.139573,0.593961,0][-0.298648,0.100117,0.862038][0.259071,0.661676,-0.70361][0.151211,0.581472,0][-0.543417,0.0573753,0.710089][0.509132,0.358456,-0.782492][0.18297,0.572538,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.743742,-0.0499416,0.524848][-0.833698,-0.136285,-0.535139][0.446353,0.641603,0][0.648459,-0.0540569,0.644055][-0.677967,-0.229081,-0.698485][0.471268,0.640743,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][0.648459,-0.0540569,0.644055][-0.677967,-0.229081,-0.698485][0.471268,0.640743,0][0.743742,-0.0499416,0.524848][-0.833698,-0.136285,-0.535139][0.446353,0.641603,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][-1.03008,-0.167882,-0.122019][0.893366,-0.449286,0.00632539][0.356889,0.525458,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.392273,0.52543,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.392273,0.52543,0][-1.03008,-0.167882,-0.122019][0.893366,-0.449286,0.00632539][0.356889,0.525458,0][-1.02144,-0.177575,0.200632][0.718,-0.694922,-0.0394894][0.289451,0.523432,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.27075,0.683448,0][-1.03856,0.133151,-0.503348][-0.49468,0.842758,-0.212251][0.23145,0.679871,0][-1.11228,0.13049,-0.13394][-0.193551,0.977902,0.0790338][0.30866,0.679315,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.1572,0.788708,0][-1.11228,0.13049,-0.13394][-0.193551,0.977902,0.0790338][0.142239,0.750182,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.133619,0.709419,0][1.15715,0.0344441,-0.474879][0.931562,-0.113787,-0.345319][0.43064,0.567746,0][1.13726,0.111986,-0.467393][0.835515,0.488789,-0.250999][0.429075,0.583953,0][1.20413,0.0361795,-0.294733][0.979506,0.104485,-0.172196][0.392987,0.568108,0][1.13726,0.111986,-0.467393][0.835515,0.488789,-0.250999][0.429075,0.583953,0][1.15715,0.0344441,-0.474879][0.931562,-0.113787,-0.345319][0.43064,0.567746,0][1.08474,0.0268643,-0.639541][0.879868,-0.13081,-0.456859][0.465056,0.566161,0][1.21288,0.0294806,0.0905947][0.990983,-0.0418889,0.12727][0.31245,0.566708,0][1.16572,0.139328,0.0870666][0.69293,0.711056,0.119364][0.313188,0.589667,0][1.12584,0.134041,0.276542][0.672309,0.714337,0.194225][0.273585,0.588562,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][1.12584,0.134041,0.276542][0.672309,0.714337,0.194225][0.273585,0.588562,0][1.16572,0.139328,0.0870666][0.69293,0.711056,0.119364][0.313188,0.589667,0][0.876735,2.19562,0.11229][-0.864634,-0.207643,0.457486][0.585198,0.900998,0][0.886564,2.1306,0.0653084][-0.821546,-0.506627,0.261515][0.583144,0.914588,0][0.969916,2.1306,0.180032][-0.516925,-0.483155,0.706647][0.565723,0.914588,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.590554,0.899769,0][0.886564,2.1306,0.0653084][-0.821546,-0.506627,0.261515][0.583144,0.914588,0][0.876735,2.19562,0.11229][-0.864634,-0.207643,0.457486][0.585198,0.900998,0][0.939691,2.06971,-0.0707987][-0.57291,-0.742893,-0.346243][0.102319,0.971486,0][0.886564,2.1306,-0.0695573][-0.808301,-0.489681,-0.326898][0.0895922,0.98259,0][1.04082,2.08678,-0.184281][-0.326131,-0.670847,-0.666035][0.0987511,0.95035,0][0.908474,2.08678,-0.00212442][-0.718412,-0.694103,0.0458877][0.0987511,0.978011,0][0.886564,2.1306,-0.0695573][-0.808301,-0.489681,-0.326898][0.0895922,0.98259,0][0.939691,2.06971,-0.0707987][-0.57291,-0.742893,-0.346243][0.102319,0.971486,0][1.01067,2.45392,0.147665][-0.225494,0.765507,0.602621][0.557204,0.84701,0][0.966964,2.39303,0.177887][-0.461784,0.48968,0.739574][0.56634,0.859737,0][1.15919,2.43685,0.180032][0.155062,0.702186,0.694903][0.526162,0.850578,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][0.966964,2.39303,0.177887][-0.461784,0.48968,0.739574][0.56634,0.859737,0][1.01067,2.45392,0.147665][-0.225494,0.765507,0.602621][0.557204,0.84701,0] \ No newline at end of file diff --git a/cut/charcustom/hats/fonts/Satellite.mesh b/charcustom/hats/fonts/Satellite.mesh similarity index 100% rename from cut/charcustom/hats/fonts/Satellite.mesh rename to charcustom/hats/fonts/Satellite.mesh diff --git a/charcustom/hats/fonts/Shaggy.mesh b/charcustom/hats/fonts/Shaggy.mesh new file mode 100644 index 0000000..05db758 --- /dev/null +++ b/charcustom/hats/fonts/Shaggy.mesh @@ -0,0 +1,3 @@ +version 1.00 +892 +[-0.120822,0.966665,-0.632182][0.206001,-0.876748,0.4346][0.935307,0.06719,0][0.0432793,0.961349,-0.720691][0.206001,-0.876748,0.4346][0.93244,0.066248,0][0.129944,1.11582,-0.450145][0.206001,-0.876748,0.4346][0.935755,0.061765,0][0.129944,1.11582,-0.450145][0.206001,-0.876748,0.4346][0.935755,0.061765,0][0.0443333,1.11864,-0.406673][0.196979,-0.873797,0.44461][0.937032,0.062665,0][-0.120822,0.966665,-0.632182][0.206001,-0.876748,0.4346][0.935307,0.06719,0][-0.251526,0.975845,-0.502552][0.304285,-0.87821,0.368997][0.937885,0.067471,0][-0.120822,0.966665,-0.632182][0.206001,-0.876748,0.4346][0.935307,0.06719,0][0.0443333,1.11864,-0.406673][0.196979,-0.873797,0.44461][0.937032,0.062665,0][0.0443333,1.11864,-0.406673][0.196979,-0.873797,0.44461][0.937032,0.062665,0][-0.0237377,1.12352,-0.33892][0.304277,-0.878205,0.369014][0.938379,0.063127,0][-0.251526,0.975845,-0.502552][0.304285,-0.87821,0.368997][0.937885,0.067471,0][-0.336069,0.988034,-0.338788][0.383939,-0.884794,0.264065][0.940209,0.067206,0][-0.251526,0.975845,-0.502552][0.304285,-0.87821,0.368997][0.937885,0.067471,0][-0.0237377,1.12352,-0.33892][0.304277,-0.878205,0.369014][0.938379,0.063127,0][-0.0237377,1.12352,-0.33892][0.304277,-0.878205,0.369014][0.938379,0.063127,0][-0.0676127,1.13,-0.253432][0.383937,-0.884789,0.264086][0.939696,0.063209,0][-0.336069,0.988034,-0.338788][0.383939,-0.884794,0.264065][0.940209,0.067206,0][-0.366022,1.00206,-0.156651][0.428,-0.893001,0.139161][0.94226,0.066499,0][-0.336069,0.988034,-0.338788][0.383939,-0.884794,0.264065][0.940209,0.067206,0][-0.0676127,1.13,-0.253432][0.383937,-0.884789,0.264086][0.939696,0.063209,0][-0.0676127,1.13,-0.253432][0.383937,-0.884789,0.264086][0.939696,0.063209,0][-0.0829557,1.13744,-0.158506][0.428006,-0.892993,0.139191][0.940915,0.062967,0][-0.366022,1.00206,-0.156651][0.428,-0.893001,0.139161][0.94226,0.066499,0][-0.338168,1.01657,0.0261576][0.431488,-0.9021,0.00584133][0.944012,0.065429,0][-0.366022,1.00206,-0.156651][0.428,-0.893001,0.139161][0.94226,0.066499,0][-0.0829557,1.13744,-0.158506][0.428006,-0.892993,0.139191][0.940915,0.062967,0][-0.0829557,1.13744,-0.158506][0.428006,-0.892993,0.139191][0.940915,0.062967,0][-0.0681867,1.14512,-0.0633975][0.431483,-0.902102,0.00583293][0.941984,0.062454,0][-0.338168,1.01657,0.0261576][0.431488,-0.9021,0.00584133][0.944012,0.065429,0][-0.254928,1.03013,0.191678][0.393086,-0.911234,-0.123031][0.945437,0.064063,0][-0.338168,1.01657,0.0261576][0.431488,-0.9021,0.00584133][0.944012,0.065429,0][-0.0681867,1.14512,-0.0633975][0.431483,-0.902102,0.00583293][0.941984,0.062454,0][-0.0681867,1.14512,-0.0633975][0.431483,-0.902102,0.00583293][0.941984,0.062454,0][-0.0246687,1.15229,0.0225635][0.39308,-0.911236,-0.123036][0.942867,0.061723,0][-0.254928,1.03013,0.191678][0.393086,-0.911234,-0.123031][0.945437,0.064063,0][-0.124239,1.0414,0.323479][0.315674,-0.919467,-0.234374][0.946509,0.062466,0][-0.254928,1.03013,0.191678][0.393086,-0.911234,-0.123031][0.945437,0.064063,0][-0.0246687,1.15229,0.0225635][0.39308,-0.911236,-0.123036][0.942867,0.061723,0][-0.0246687,1.15229,0.0225635][0.39308,-0.911236,-0.123036][0.942867,0.061723,0][0.0433943,1.15824,0.0908993][0.315652,-0.919472,-0.234383][0.943533,0.060821,0][-0.124239,1.0414,0.323479][0.315674,-0.919467,-0.234374][0.946509,0.062466,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][-0.124239,1.0414,0.323479][0.315674,-0.919467,-0.234374][0.946509,0.062466,0][0.0433943,1.15824,0.0908993][0.315652,-0.919472,-0.234383][0.943533,0.060821,0][0.0433943,1.15824,0.0908993][0.315652,-0.919472,-0.234383][0.943533,0.060821,0][0.12935,1.16237,0.134838][0.206317,-0.925914,-0.316411][0.943959,0.0598,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][0.12935,1.16237,0.134838][0.206317,-0.925914,-0.316411][0.943959,0.0598,0][0.224741,1.16429,0.150006][0.0759661,-0.929828,-0.360069][0.944129,0.058709,0][0.224741,1.16429,0.150006][0.0759661,-0.929828,-0.360069][0.944129,0.058709,0][0.224864,1.0529,0.437691][0.0759559,-0.929826,-0.360076][0.947498,0.058824,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][0.224864,1.0529,0.437691][0.0759559,-0.929826,-0.360076][0.947498,0.058824,0][0.224741,1.16429,0.150006][0.0759661,-0.929828,-0.360069][0.944129,0.058709,0][0.320151,1.1638,0.13488][-0.0619358,-0.930749,-0.360374][0.944032,0.057601,0][0.320151,1.1638,0.13488][-0.0619358,-0.930749,-0.360374][0.944032,0.057601,0][0.408657,1.05196,0.408522][-0.0619324,-0.93075,-0.360373][0.947377,0.056911,0][0.224864,1.0529,0.437691][0.0759559,-0.929826,-0.360076][0.947498,0.058824,0][0.408657,1.05196,0.408522][-0.0619324,-0.93075,-0.360373][0.947377,0.056911,0][0.320151,1.1638,0.13488][-0.0619358,-0.930749,-0.360374][0.944032,0.057601,0][0.406158,1.16095,0.0909634][-0.192748,-0.928574,-0.317173][0.943665,0.056531,0][0.406158,1.16095,0.0909634][-0.192748,-0.928574,-0.317173][0.943665,0.056531,0][0.574219,1.04654,0.323761][-0.192766,-0.928571,-0.317172][0.946827,0.055029,0][0.408657,1.05196,0.408522][-0.0619324,-0.93075,-0.360373][0.947377,0.056911,0][0.574219,1.04654,0.323761][-0.192766,-0.928571,-0.317172][0.946827,0.055029,0][0.406158,1.16095,0.0909634][-0.192748,-0.928574,-0.317173][0.943665,0.056531,0][0.474287,1.15602,0.0226162][-0.302841,-0.923553,-0.23524][0.943032,0.055558,0][0.474287,1.15602,0.0226162][-0.302841,-0.923553,-0.23524][0.943032,0.055558,0][0.705137,1.03719,0.19194][-0.30285,-0.923551,-0.235237][0.945839,0.053254,0][0.574219,1.04654,0.323761][-0.192766,-0.928571,-0.317172][0.946827,0.055029,0][0.705137,1.03719,0.19194][-0.30285,-0.923551,-0.235237][0.945839,0.053254,0][0.474287,1.15602,0.0226162][-0.302841,-0.923553,-0.23524][0.943032,0.055558,0][0.51786,1.1495,-0.0633859][-0.381004,-0.916277,-0.12358][0.942148,0.054746,0][0.51786,1.1495,-0.0633859][-0.381004,-0.916277,-0.12358][0.942148,0.054746,0][0.788566,1.02484,0.0262795][-0.381008,-0.916276,-0.123577][0.944405,0.051677,0][0.705137,1.03719,0.19194][-0.30285,-0.923551,-0.235237][0.945839,0.053254,0][0.788566,1.02484,0.0262795][-0.381008,-0.916276,-0.123577][0.944405,0.051677,0][0.51786,1.1495,-0.0633859][-0.381004,-0.916277,-0.12358][0.942148,0.054746,0][0.532656,1.14204,-0.158551][-0.419878,-0.907561,0.00589208][0.941039,0.054162,0][0.532656,1.14204,-0.158551][-0.419878,-0.907561,0.00589208][0.941039,0.054162,0][0.816501,1.01073,-0.156737][-0.419884,-0.907559,0.00590208][0.94253,0.050402,0][0.788566,1.02484,0.0262795][-0.381008,-0.916276,-0.123577][0.944405,0.051677,0][0.816501,1.01073,-0.156737][-0.419884,-0.907559,0.00590208][0.94253,0.050402,0][0.532656,1.14204,-0.158551][-0.419878,-0.907561,0.00589208][0.941039,0.054162,0][0.517304,1.13436,-0.253531][-0.416467,-0.898322,0.1399][0.939756,0.05388,0][0.517304,1.13436,-0.253531][-0.416467,-0.898322,0.1399][0.939756,0.05388,0][0.786497,0.996242,-0.339074][-0.416464,-0.898326,0.139884][0.940241,0.049567,0][0.816501,1.01073,-0.156737][-0.419884,-0.907559,0.00590208][0.94253,0.050402,0][0.786497,0.996242,-0.339074][-0.416464,-0.898326,0.139884][0.940241,0.049567,0][0.517304,1.13436,-0.253531][-0.416467,-0.898322,0.1399][0.939756,0.05388,0][0.473391,1.12723,-0.339046][-0.372081,-0.889485,0.265278][0.938375,0.053967,0][0.473391,1.12723,-0.339046][-0.372081,-0.889485,0.265278][0.938375,0.053967,0][0.701795,0.982802,-0.502949][-0.372082,-0.889487,0.265271][0.937586,0.049357,0][0.786497,0.996242,-0.339074][-0.416464,-0.898326,0.139884][0.940241,0.049567,0][0.701795,0.982802,-0.502949][-0.372082,-0.889487,0.265271][0.937586,0.049357,0][0.473391,1.12723,-0.339046][-0.372081,-0.889485,0.265278][0.938375,0.053967,0][0.405269,1.12133,-0.406789][-0.291877,-0.881858,0.370317][0.937016,0.054462,0][0.405269,1.12133,-0.406789][-0.291877,-0.881858,0.370317][0.937016,0.054462,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.701795,0.982802,-0.502949][-0.372082,-0.889487,0.265271][0.937586,0.049357,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.405269,1.12133,-0.406789][-0.291877,-0.881858,0.370317][0.937016,0.054462,0][0.319615,1.11723,-0.450214][-0.184019,-0.876105,0.445619][0.935809,0.055422,0][0.319615,1.11723,-0.450214][-0.184019,-0.876105,0.445619][0.935809,0.055422,0][0.406627,0.96401,-0.715867][-0.184622,-0.876316,0.444956][0.932008,0.051632,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.406627,0.96401,-0.715867][-0.184622,-0.876316,0.444956][0.932008,0.051632,0][0.319615,1.11723,-0.450214][-0.184019,-0.876105,0.445619][0.935809,0.055422,0][0.224771,1.11533,-0.465143][-0.0587799,-0.872959,0.484239][0.934936,0.056765,0][0.224771,1.11533,-0.465143][-0.0587799,-0.872959,0.484239][0.934936,0.056765,0][0.225778,0.960404,-0.752763][-0.0789011,-0.877767,0.472546][0.929864,0.054173,0][0.406627,0.96401,-0.715867][-0.184622,-0.876316,0.444956][0.932008,0.051632,0][0.0432793,0.961349,-0.720691][0.206001,-0.876748,0.4346][0.928743,0.057404,0][0.225778,0.960404,-0.752763][-0.0789011,-0.877767,0.472546][0.929864,0.054173,0][0.224771,1.11533,-0.465143][-0.0587799,-0.872959,0.484239][0.934936,0.056765,0][0.224771,1.11533,-0.465143][-0.0587799,-0.872959,0.484239][0.934936,0.056765,0][0.129944,1.11582,-0.450145][0.206001,-0.876748,0.4346][0.934519,0.058364,0][0.0432793,0.961349,-0.720691][0.206001,-0.876748,0.4346][0.928743,0.057404,0][-0.184036,0.743683,-0.896353][0.145379,-0.708849,0.690216][0.933292,0.071946,0][0.12553,0.732233,-0.973316][0.145379,-0.708849,0.690216][0.928265,0.070993,0][0.0432793,0.961349,-0.720691][0.206001,-0.876748,0.4346][0.93244,0.066248,0][0.0432793,0.961349,-0.720691][0.206001,-0.876748,0.4346][0.93244,0.066248,0][-0.120822,0.966665,-0.632182][0.206001,-0.876748,0.4346][0.935307,0.06719,0][-0.184036,0.743683,-0.896353][0.145379,-0.708849,0.690216][0.933292,0.071946,0][-0.430171,0.761194,-0.670492][0.426219,-0.738982,0.521769][0.93775,0.071656,0][-0.184036,0.743683,-0.896353][0.145379,-0.708849,0.690216][0.933292,0.071946,0][-0.120822,0.966665,-0.632182][0.206001,-0.876748,0.4346][0.935307,0.06719,0][-0.120822,0.966665,-0.632182][0.206001,-0.876748,0.4346][0.935307,0.06719,0][-0.251526,0.975845,-0.502552][0.304285,-0.87821,0.368997][0.937885,0.067471,0][-0.430171,0.761194,-0.670492][0.426219,-0.738982,0.521769][0.93775,0.071656,0][-0.562725,0.778941,-0.414243][0.569808,-0.745219,0.346365][0.941092,0.070832,0][-0.430171,0.761194,-0.670492][0.426219,-0.738982,0.521769][0.93775,0.071656,0][-0.251526,0.975845,-0.502552][0.304285,-0.87821,0.368997][0.937885,0.067471,0][-0.251526,0.975845,-0.502552][0.304285,-0.87821,0.368997][0.937885,0.067471,0][-0.336069,0.988034,-0.338788][0.383939,-0.884794,0.264065][0.940209,0.067206,0][-0.562725,0.778941,-0.414243][0.569808,-0.745219,0.346365][0.941092,0.070832,0][-0.605389,0.798011,-0.153848][0.640047,-0.751512,0.159904][0.943766,0.069622,0][-0.562725,0.778941,-0.414243][0.569808,-0.745219,0.346365][0.941092,0.070832,0][-0.336069,0.988034,-0.338788][0.383939,-0.884794,0.264065][0.940209,0.067206,0][-0.336069,0.988034,-0.338788][0.383939,-0.884794,0.264065][0.940209,0.067206,0][-0.366022,1.00206,-0.156651][0.428,-0.893001,0.139161][0.94226,0.066499,0][-0.605389,0.798011,-0.153848][0.640047,-0.751512,0.159904][0.943766,0.069622,0][-0.566834,0.817752,0.103277][0.647984,-0.760667,-0.0387609][0.946011,0.068041,0][-0.605389,0.798011,-0.153848][0.640047,-0.751512,0.159904][0.943766,0.069622,0][-0.366022,1.00206,-0.156651][0.428,-0.893001,0.139161][0.94226,0.066499,0][-0.366022,1.00206,-0.156651][0.428,-0.893001,0.139161][0.94226,0.066499,0][-0.338168,1.01657,0.0261576][0.431488,-0.9021,0.00584133][0.944012,0.065429,0][-0.566834,0.817752,0.103277][0.647984,-0.760667,-0.0387609][0.946011,0.068041,0][-0.450231,0.836242,0.336433][0.591538,-0.771374,-0.234661][0.947843,0.066125,0][-0.566834,0.817752,0.103277][0.647984,-0.760667,-0.0387609][0.946011,0.068041,0][-0.338168,1.01657,0.0261576][0.431488,-0.9021,0.00584133][0.944012,0.065429,0][-0.338168,1.01657,0.0261576][0.431488,-0.9021,0.00584133][0.944012,0.065429,0][-0.254928,1.03013,0.191678][0.393086,-0.911234,-0.123031][0.945437,0.064063,0][-0.450231,0.836242,0.336433][0.591538,-0.771374,-0.234661][0.947843,0.066125,0][-0.266577,0.851635,0.52234][0.475333,-0.7811,-0.404897][0.949231,0.063939,0][-0.450231,0.836242,0.336433][0.591538,-0.771374,-0.234661][0.947843,0.066125,0][-0.254928,1.03013,0.191678][0.393086,-0.911234,-0.123031][0.945437,0.064063,0][-0.254928,1.03013,0.191678][0.393086,-0.911234,-0.123031][0.945437,0.064063,0][-0.124239,1.0414,0.323479][0.315674,-0.919467,-0.234374][0.946509,0.062466,0][-0.266577,0.851635,0.52234][0.475333,-0.7811,-0.404897][0.949231,0.063939,0][-0.0337797,0.862374,0.642183][0.30973,-0.78875,-0.53098][0.950149,0.061543,0][-0.266577,0.851635,0.52234][0.475333,-0.7811,-0.404897][0.949231,0.063939,0][-0.124239,1.0414,0.323479][0.315674,-0.919467,-0.234374][0.946509,0.062466,0][-0.124239,1.0414,0.323479][0.315674,-0.919467,-0.234374][0.946509,0.062466,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][-0.0337797,0.862374,0.642183][0.30973,-0.78875,-0.53098][0.950149,0.061543,0][0.225062,0.867359,0.683694][0.111255,-0.79341,-0.598434][0.95057,0.059008,0][-0.0337797,0.862374,0.642183][0.30973,-0.78875,-0.53098][0.950149,0.061543,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][0.224864,1.0529,0.437691][0.0759559,-0.929826,-0.360076][0.947498,0.058824,0][0.225062,0.867359,0.683694][0.111255,-0.79341,-0.598434][0.95057,0.059008,0][0.225062,0.867359,0.683694][0.111255,-0.79341,-0.598434][0.95057,0.059008,0][0.224864,1.0529,0.437691][0.0759559,-0.929826,-0.360076][0.947498,0.058824,0][0.408657,1.05196,0.408522][-0.0619324,-0.93075,-0.360373][0.947377,0.056911,0][0.408657,1.05196,0.408522][-0.0619324,-0.93075,-0.360373][0.947377,0.056911,0][0.48404,0.866077,0.642555][-0.0991041,-0.794501,-0.599121][0.950469,0.056406,0][0.225062,0.867359,0.683694][0.111255,-0.79341,-0.598434][0.95057,0.059008,0][0.48404,0.866077,0.642555][-0.0991041,-0.794501,-0.599121][0.950469,0.056406,0][0.408657,1.05196,0.408522][-0.0619324,-0.93075,-0.360373][0.947377,0.056911,0][0.574219,1.04654,0.323761][-0.192766,-0.928571,-0.317172][0.946827,0.055029,0][0.574219,1.04654,0.323761][-0.192766,-0.928571,-0.317172][0.946827,0.055029,0][0.717193,0.858661,0.522928][-0.298522,-0.791889,-0.532725][0.949825,0.053814,0][0.48404,0.866077,0.642555][-0.0991041,-0.794501,-0.599121][0.950469,0.056406,0][0.717193,0.858661,0.522928][-0.298522,-0.791889,-0.532725][0.949825,0.053814,0][0.574219,1.04654,0.323761][-0.192766,-0.928571,-0.317172][0.946827,0.055029,0][0.705137,1.03719,0.19194][-0.30285,-0.923551,-0.235237][0.945839,0.053254,0][0.705137,1.03719,0.19194][-0.30285,-0.923551,-0.235237][0.945839,0.053254,0][0.901288,0.84587,0.336993][-0.465603,-0.785888,-0.406932][0.948616,0.051311,0][0.717193,0.858661,0.522928][-0.298522,-0.791889,-0.532725][0.949825,0.053814,0][0.901288,0.84587,0.336993][-0.465603,-0.785888,-0.406932][0.948616,0.051311,0][0.705137,1.03719,0.19194][-0.30285,-0.923551,-0.235237][0.945839,0.053254,0][0.788566,1.02484,0.0262795][-0.381008,-0.916276,-0.123577][0.944405,0.051677,0][0.788566,1.02484,0.0262795][-0.381008,-0.916276,-0.123577][0.944405,0.051677,0][1.01825,0.829011,0.103569][-0.583226,-0.777241,-0.236103][0.94681,0.048991,0][0.901288,0.84587,0.336993][-0.465603,-0.785888,-0.406932][0.948616,0.051311,0][1.01825,0.829011,0.103569][-0.583226,-0.777241,-0.236103][0.94681,0.048991,0][0.788566,1.02484,0.0262795][-0.381008,-0.916276,-0.123577][0.944405,0.051677,0][0.816501,1.01073,-0.156737][-0.419884,-0.907559,0.00590208][0.94253,0.050402,0][0.816501,1.01073,-0.156737][-0.419884,-0.907559,0.00590208][0.94253,0.050402,0][1.0568,0.809777,-0.154782][-0.640842,-0.766705,-0.0385398][0.944369,0.046962,0][1.01825,0.829011,0.103569][-0.583226,-0.777241,-0.236103][0.94681,0.048991,0][1.0568,0.809777,-0.154782][-0.640842,-0.766705,-0.0385398][0.944369,0.046962,0][0.816501,1.01073,-0.156737][-0.419884,-0.907559,0.00590208][0.94253,0.050402,0][0.786497,0.996242,-0.339074][-0.416464,-0.898326,0.139884][0.940241,0.049567,0][0.786497,0.996242,-0.339074][-0.416464,-0.898326,0.139884][0.940241,0.049567,0][1.00981,0.78631,-0.408836][-0.641116,-0.744233,0.187317][0.941258,0.045401,0][1.0568,0.809777,-0.154782][-0.640842,-0.766705,-0.0385398][0.944369,0.046962,0][1.00981,0.78631,-0.408836][-0.641116,-0.744233,0.187317][0.941258,0.045401,0][0.786497,0.996242,-0.339074][-0.416464,-0.898326,0.139884][0.940241,0.049567,0][0.701795,0.982802,-0.502949][-0.372082,-0.889487,0.265271][0.937586,0.049357,0][0.701795,0.982802,-0.502949][-0.372082,-0.889487,0.265271][0.937586,0.049357,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][1.00981,0.78631,-0.408836][-0.641116,-0.744233,0.187317][0.941258,0.045401,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][0.701795,0.982802,-0.502949][-0.372082,-0.889487,0.265271][0.937586,0.049357,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.929627,0.701107,-0.893585][-0.493986,-0.84648,0.198619][0.934254,0.04188,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.932505,0.037769,0][0.929627,0.701107,-0.893585][-0.493986,-0.84648,0.198619][0.934254,0.04188,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.406627,0.96401,-0.715867][-0.184622,-0.876316,0.444956][0.932008,0.051632,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.932505,0.037769,0][0.375034,0.741044,-0.990911][-0.186587,-0.752579,0.631515][0.92601,0.048603,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.932505,0.037769,0][0.406627,0.96401,-0.715867][-0.184622,-0.876316,0.444956][0.932008,0.051632,0][0.406627,0.96401,-0.715867][-0.184622,-0.876316,0.444956][0.932008,0.051632,0][0.225778,0.960404,-0.752763][-0.0789011,-0.877767,0.472546][0.929864,0.054173,0][0.375034,0.741044,-0.990911][-0.186587,-0.752579,0.631515][0.92601,0.048603,0][0.12553,0.732233,-0.973316][0.145379,-0.708849,0.690216][0.923619,0.052938,0][0.375034,0.741044,-0.990911][-0.186587,-0.752579,0.631515][0.92601,0.048603,0][0.225778,0.960404,-0.752763][-0.0789011,-0.877767,0.472546][0.929864,0.054173,0][0.225778,0.960404,-0.752763][-0.0789011,-0.877767,0.472546][0.929864,0.054173,0][0.0432793,0.961349,-0.720691][0.206001,-0.876748,0.4346][0.928743,0.057404,0][0.12553,0.732233,-0.973316][0.145379,-0.708849,0.690216][0.923619,0.052938,0][-0.235768,0.493425,-1.08192][0.162463,-0.601497,0.782181][0.93266,0.076278,0][0.194746,0.509452,-1.15901][0.162463,-0.601497,0.782181][0.92602,0.075712,0][0.12553,0.732233,-0.973316][0.145379,-0.708849,0.690216][0.928265,0.070993,0][0.12553,0.732233,-0.973316][0.145379,-0.708849,0.690216][0.928265,0.070993,0][-0.184036,0.743683,-0.896353][0.145379,-0.708849,0.690216][0.933292,0.071946,0][-0.235768,0.493425,-1.08192][0.162463,-0.601497,0.782181][0.93266,0.076278,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.235768,0.493425,-1.08192][0.162463,-0.601497,0.782181][0.93266,0.076278,0][-0.184036,0.743683,-0.896353][0.145379,-0.708849,0.690216][0.933292,0.071946,0][-0.184036,0.743683,-0.896353][0.145379,-0.708849,0.690216][0.933292,0.071946,0][-0.430171,0.761194,-0.670492][0.426219,-0.738982,0.521769][0.93775,0.071656,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.738015,0.530469,-0.485752][0.687979,-0.63129,0.357993][0.942049,0.074215,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.430171,0.761194,-0.670492][0.426219,-0.738982,0.521769][0.93775,0.071656,0][-0.430171,0.761194,-0.670492][0.426219,-0.738982,0.521769][0.93775,0.071656,0][-0.562725,0.778941,-0.414243][0.569808,-0.745219,0.346365][0.941092,0.070832,0][-0.738015,0.530469,-0.485752][0.687979,-0.63129,0.357993][0.942049,0.074215,0][-0.790686,0.552575,-0.15045][0.783597,-0.599607,0.162622][0.945339,0.072503,0][-0.738015,0.530469,-0.485752][0.687979,-0.63129,0.357993][0.942049,0.074215,0][-0.562725,0.778941,-0.414243][0.569808,-0.745219,0.346365][0.941092,0.070832,0][-0.562725,0.778941,-0.414243][0.569808,-0.745219,0.346365][0.941092,0.070832,0][-0.605389,0.798011,-0.153848][0.640047,-0.751512,0.159904][0.943766,0.069622,0][-0.790686,0.552575,-0.15045][0.783597,-0.599607,0.162622][0.945339,0.072503,0][-0.744017,0.573073,0.164309][0.79509,-0.60136,-0.0787244][0.948006,0.070494,0][-0.790686,0.552575,-0.15045][0.783597,-0.599607,0.162622][0.945339,0.072503,0][-0.605389,0.798011,-0.153848][0.640047,-0.751512,0.159904][0.943766,0.069622,0][-0.605389,0.798011,-0.153848][0.640047,-0.751512,0.159904][0.943766,0.069622,0][-0.566834,0.817752,0.103277][0.647984,-0.760667,-0.0387609][0.946011,0.068041,0][-0.744017,0.573073,0.164309][0.79509,-0.60136,-0.0787244][0.948006,0.070494,0][-0.601691,0.596917,0.450003][0.730372,-0.607016,-0.313192][0.95018,0.068075,0][-0.744017,0.573073,0.164309][0.79509,-0.60136,-0.0787244][0.948006,0.070494,0][-0.566834,0.817752,0.103277][0.647984,-0.760667,-0.0387609][0.946011,0.068041,0][-0.566834,0.817752,0.103277][0.647984,-0.760667,-0.0387609][0.946011,0.068041,0][-0.450231,0.836242,0.336433][0.591538,-0.771374,-0.234661][0.947843,0.066125,0][-0.601691,0.596917,0.450003][0.730372,-0.607016,-0.313192][0.95018,0.068075,0][-0.377025,0.614175,0.678028][0.582498,-0.618769,-0.527087][0.951864,0.065366,0][-0.601691,0.596917,0.450003][0.730372,-0.607016,-0.313192][0.95018,0.068075,0][-0.450231,0.836242,0.336433][0.591538,-0.771374,-0.234661][0.947843,0.066125,0][-0.450231,0.836242,0.336433][0.591538,-0.771374,-0.234661][0.947843,0.066125,0][-0.266577,0.851635,0.52234][0.475333,-0.7811,-0.404897][0.949231,0.063939,0][-0.377025,0.614175,0.678028][0.582498,-0.618769,-0.527087][0.951864,0.065366,0][-0.0919027,0.627327,0.825142][0.380745,-0.624309,-0.682108][0.952994,0.062396,0][-0.377025,0.614175,0.678028][0.582498,-0.618769,-0.527087][0.951864,0.065366,0][-0.266577,0.851635,0.52234][0.475333,-0.7811,-0.404897][0.949231,0.063939,0][-0.266577,0.851635,0.52234][0.475333,-0.7811,-0.404897][0.949231,0.063939,0][-0.0337797,0.862374,0.642183][0.30973,-0.78875,-0.53098][0.950149,0.061543,0][-0.0919027,0.627327,0.825142][0.380745,-0.624309,-0.682108][0.952994,0.062396,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][-0.0919027,0.627327,0.825142][0.380745,-0.624309,-0.682108][0.952994,0.062396,0][-0.0337797,0.862374,0.642183][0.30973,-0.78875,-0.53098][0.950149,0.061543,0][-0.0337797,0.862374,0.642183][0.30973,-0.78875,-0.53098][0.950149,0.061543,0][0.225062,0.867359,0.683694][0.111255,-0.79341,-0.598434][0.95057,0.059008,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][0.225062,0.867359,0.683694][0.111255,-0.79341,-0.598434][0.95057,0.059008,0][0.48404,0.866077,0.642555][-0.0991041,-0.794501,-0.599121][0.950469,0.056406,0][0.48404,0.866077,0.642555][-0.0991041,-0.794501,-0.599121][0.950469,0.056406,0][0.542722,0.631633,0.825701][-0.124617,-0.630001,-0.766531][0.953496,0.056019,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][0.542722,0.631633,0.825701][-0.124617,-0.630001,-0.766531][0.953496,0.056019,0][0.48404,0.866077,0.642555][-0.0991041,-0.794501,-0.599121][0.950469,0.056406,0][0.717193,0.858661,0.522928][-0.298522,-0.791889,-0.532725][0.949825,0.053814,0][0.717193,0.858661,0.522928][-0.298522,-0.791889,-0.532725][0.949825,0.053814,0][0.828364,0.622054,0.678917][-0.372778,-0.626451,-0.68454][0.952813,0.052767,0][0.542722,0.631633,0.825701][-0.124617,-0.630001,-0.766531][0.953496,0.056019,0][0.828364,0.622054,0.678917][-0.372778,-0.626451,-0.68454][0.952813,0.052767,0][0.717193,0.858661,0.522928][-0.298522,-0.791889,-0.532725][0.949825,0.053814,0][0.901288,0.84587,0.336993][-0.465603,-0.785888,-0.406932][0.948616,0.051311,0][0.901288,0.84587,0.336993][-0.465603,-0.785888,-0.406932][0.948616,0.051311,0][1.05367,0.608089,0.450858][-0.575375,-0.622674,-0.530302][0.951454,0.049585,0][0.828364,0.622054,0.678917][-0.372778,-0.626451,-0.68454][0.952813,0.052767,0][1.05367,0.608089,0.450858][-0.575375,-0.622674,-0.530302][0.951454,0.049585,0][0.901288,0.84587,0.336993][-0.465603,-0.785888,-0.406932][0.948616,0.051311,0][1.01825,0.829011,0.103569][-0.583226,-0.777241,-0.236103][0.94681,0.048991,0][1.01825,0.829011,0.103569][-0.583226,-0.777241,-0.236103][0.94681,0.048991,0][1.19535,0.588465,0.158532][-0.729402,-0.608452,-0.312663][0.949328,0.046507,0][1.05367,0.608089,0.450858][-0.575375,-0.622674,-0.530302][0.951454,0.049585,0][1.19535,0.588465,0.158532][-0.729402,-0.608452,-0.312663][0.949328,0.046507,0][1.01825,0.829011,0.103569][-0.583226,-0.777241,-0.236103][0.94681,0.048991,0][1.0568,0.809777,-0.154782][-0.640842,-0.766705,-0.0385398][0.944369,0.046962,0][1.0568,0.809777,-0.154782][-0.640842,-0.766705,-0.0385398][0.944369,0.046962,0][1.23241,0.565542,-0.203382][-0.815415,-0.576968,-0.0469651][0.945973,0.043394,0][1.19535,0.588465,0.158532][-0.729402,-0.608452,-0.312663][0.949328,0.046507,0][1.23241,0.565542,-0.203382][-0.815415,-0.576968,-0.0469651][0.945973,0.043394,0][1.0568,0.809777,-0.154782][-0.640842,-0.766705,-0.0385398][0.944369,0.046962,0][1.00981,0.78631,-0.408836][-0.641116,-0.744233,0.187317][0.941258,0.045401,0][1.00981,0.78631,-0.408836][-0.641116,-0.744233,0.187317][0.941258,0.045401,0][1.15666,0.563938,-0.533302][-0.771463,-0.610249,0.180112][0.941631,0.041078,0][1.23241,0.565542,-0.203382][-0.815415,-0.576968,-0.0469651][0.945973,0.043394,0][1.15666,0.563938,-0.533302][-0.771463,-0.610249,0.180112][0.941631,0.041078,0][1.00981,0.78631,-0.408836][-0.641116,-0.744233,0.187317][0.941258,0.045401,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.936747,0.039034,0][1.15666,0.563938,-0.533302][-0.771463,-0.610249,0.180112][0.941631,0.041078,0][0.693523,0.5242,-1.04505][-0.375566,-0.0664808,0.924408][0.926166,0.04046,0][1.02324,0.553438,-0.908986][-0.375566,-0.0664808,0.924408][0.931846,0.035602,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.932505,0.037769,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.932505,0.037769,0][0.375034,0.741044,-0.990911][-0.186587,-0.752579,0.631515][0.92601,0.048603,0][0.693523,0.5242,-1.04505][-0.375566,-0.0664808,0.924408][0.926166,0.04046,0][0.194746,0.509452,-1.15901][0.162463,-0.601497,0.782181][0.919199,0.048707,0][0.693523,0.5242,-1.04505][-0.375566,-0.0664808,0.924408][0.926166,0.04046,0][0.375034,0.741044,-0.990911][-0.186587,-0.752579,0.631515][0.92601,0.048603,0][0.375034,0.741044,-0.990911][-0.186587,-0.752579,0.631515][0.92601,0.048603,0][0.12553,0.732233,-0.973316][0.145379,-0.708849,0.690216][0.923619,0.052938,0][0.194746,0.509452,-1.15901][0.162463,-0.601497,0.782181][0.919199,0.048707,0][0.175575,0.304972,-1.26812][0.172147,-0.476253,0.862293][0.926142,0.079452,0][0.194746,0.509452,-1.15901][0.162463,-0.601497,0.782181][0.92602,0.075712,0][-0.235768,0.493425,-1.08192][0.162463,-0.601497,0.782181][0.93266,0.076278,0][-0.235768,0.493425,-1.08192][0.162463,-0.601497,0.782181][0.93266,0.076278,0][-0.313038,0.162241,-1.17516][0.26608,-0.31826,0.909897][0.933374,0.080821,0][0.175575,0.304972,-1.26812][0.172147,-0.476253,0.862293][0.926142,0.079452,0][-0.313038,0.162241,-1.17516][0.26608,-0.31826,0.909897][0.933374,0.080821,0][-0.235768,0.493425,-1.08192][0.162463,-0.601497,0.782181][0.93266,0.076278,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.691242,0.11826,-0.87546][0.616497,-0.275639,0.737533][0.939381,0.080293,0][-0.313038,0.162241,-1.17516][0.26608,-0.31826,0.909897][0.933374,0.080821,0][-0.861501,0.178994,-0.516232][0.844654,-0.290729,0.449484][0.943649,0.07815,0][-0.691242,0.11826,-0.87546][0.616497,-0.275639,0.737533][0.939381,0.080293,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.738015,0.530469,-0.485752][0.687979,-0.63129,0.357993][0.942049,0.074215,0][-0.861501,0.178994,-0.516232][0.844654,-0.290729,0.449484][0.943649,0.07815,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.861501,0.178994,-0.516232][0.844654,-0.290729,0.449484][0.943649,0.07815,0][-0.738015,0.530469,-0.485752][0.687979,-0.63129,0.357993][0.942049,0.074215,0][-0.738015,0.530469,-0.485752][0.687979,-0.63129,0.357993][0.942049,0.074215,0][-0.790686,0.552575,-0.15045][0.783597,-0.599607,0.162622][0.945339,0.072503,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.868737,0.189029,0.208928][0.930552,-0.338292,-0.140114][0.950783,0.073834,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.790686,0.552575,-0.15045][0.783597,-0.599607,0.162622][0.945339,0.072503,0][-0.790686,0.552575,-0.15045][0.783597,-0.599607,0.162622][0.945339,0.072503,0][-0.744017,0.573073,0.164309][0.79509,-0.60136,-0.0787244][0.948006,0.070494,0][-0.868737,0.189029,0.208928][0.930552,-0.338292,-0.140114][0.950783,0.073834,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.868737,0.189029,0.208928][0.930552,-0.338292,-0.140114][0.950783,0.073834,0][-0.744017,0.573073,0.164309][0.79509,-0.60136,-0.0787244][0.948006,0.070494,0][-0.744017,0.573073,0.164309][0.79509,-0.60136,-0.0787244][0.948006,0.070494,0][-0.601691,0.596917,0.450003][0.730372,-0.607016,-0.313192][0.95018,0.068075,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.454693,0.252786,0.789231][0.697567,-0.329318,-0.636356][0.955361,0.067313,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.601691,0.596917,0.450003][0.730372,-0.607016,-0.313192][0.95018,0.068075,0][-0.601691,0.596917,0.450003][0.730372,-0.607016,-0.313192][0.95018,0.068075,0][-0.377025,0.614175,0.678028][0.582498,-0.618769,-0.527087][0.951864,0.065366,0][-0.454693,0.252786,0.789231][0.697567,-0.329318,-0.636356][0.955361,0.067313,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][-0.454693,0.252786,0.789231][0.697567,-0.329318,-0.636356][0.955361,0.067313,0][-0.377025,0.614175,0.678028][0.582498,-0.618769,-0.527087][0.951864,0.065366,0][-0.377025,0.614175,0.678028][0.582498,-0.618769,-0.527087][0.951864,0.065366,0][-0.0919027,0.627327,0.825142][0.380745,-0.624309,-0.682108][0.952994,0.062396,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][0.225578,0.253773,1.0133][0.14985,-0.340233,-0.928325][0.957757,0.059725,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][-0.0919027,0.627327,0.825142][0.380745,-0.624309,-0.682108][0.952994,0.062396,0][-0.0919027,0.627327,0.825142][0.380745,-0.624309,-0.682108][0.952994,0.062396,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][0.225578,0.253773,1.0133][0.14985,-0.340233,-0.928325][0.957757,0.059725,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.225578,0.253773,1.0133][0.14985,-0.340233,-0.928325][0.957757,0.059725,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][0.542722,0.631633,0.825701][-0.124617,-0.630001,-0.766531][0.953496,0.056019,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.542722,0.631633,0.825701][-0.124617,-0.630001,-0.766531][0.953496,0.056019,0][0.828364,0.622054,0.678917][-0.372778,-0.626451,-0.68454][0.952813,0.052767,0][0.828364,0.622054,0.678917][-0.372778,-0.626451,-0.68454][0.952813,0.052767,0][0.90672,0.24375,0.790383][-0.467742,-0.337568,-0.816863][0.957089,0.051475,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.90672,0.24375,0.790383][-0.467742,-0.337568,-0.816863][0.957089,0.051475,0][0.828364,0.622054,0.678917][-0.372778,-0.626451,-0.68454][0.952813,0.052767,0][1.05367,0.608089,0.450858][-0.575375,-0.622674,-0.530302][0.951454,0.049585,0][1.05367,0.608089,0.450858][-0.575375,-0.622674,-0.530302][0.951454,0.049585,0][1.16106,0.243226,0.532627][-0.668595,-0.344476,-0.659027][0.955457,0.04746,0][0.90672,0.24375,0.790383][-0.467742,-0.337568,-0.816863][0.957089,0.051475,0][1.16106,0.243226,0.532627][-0.668595,-0.344476,-0.659027][0.955457,0.04746,0][1.05367,0.608089,0.450858][-0.575375,-0.622674,-0.530302][0.951454,0.049585,0][1.19535,0.588465,0.158532][-0.729402,-0.608452,-0.312663][0.949328,0.046507,0][1.19535,0.588465,0.158532][-0.729402,-0.608452,-0.312663][0.949328,0.046507,0][1.32208,0.25133,0.208939][-0.826725,-0.37365,-0.420608][0.952819,0.043751,0][1.16106,0.243226,0.532627][-0.668595,-0.344476,-0.659027][0.955457,0.04746,0][1.32208,0.25133,0.208939][-0.826725,-0.37365,-0.420608][0.952819,0.043751,0][1.19535,0.588465,0.158532][-0.729402,-0.608452,-0.312663][0.949328,0.046507,0][1.23241,0.565542,-0.203382][-0.815415,-0.576968,-0.0469651][0.945973,0.043394,0][1.23241,0.565542,-0.203382][-0.815415,-0.576968,-0.0469651][0.945973,0.043394,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.32208,0.25133,0.208939][-0.826725,-0.37365,-0.420608][0.952819,0.043751,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.23241,0.565542,-0.203382][-0.815415,-0.576968,-0.0469651][0.945973,0.043394,0][1.15666,0.563938,-0.533302][-0.771463,-0.610249,0.180112][0.941631,0.041078,0][1.15666,0.563938,-0.533302][-0.771463,-0.610249,0.180112][0.941631,0.041078,0][1.23838,0.301904,-0.666263][-0.911301,-0.372856,0.17467][0.94238,0.036239,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.23838,0.301904,-0.666263][-0.911301,-0.372856,0.17467][0.94238,0.036239,0][1.15666,0.563938,-0.533302][-0.771463,-0.610249,0.180112][0.941631,0.041078,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.936747,0.039034,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.936747,0.039034,0][1.07048,0.396855,-0.941657][-0.865578,-0.203485,0.457567][0.936307,0.035197,0][1.23838,0.301904,-0.666263][-0.911301,-0.372856,0.17467][0.94238,0.036239,0][1.00274,0.377278,-1.03617][-0.279558,-0.540427,0.793591][0.927654,0.033492,0][1.02324,0.553438,-0.908986][-0.375566,-0.0664808,0.924408][0.931846,0.035602,0][0.693523,0.5242,-1.04505][-0.375566,-0.0664808,0.924408][0.926166,0.04046,0][0.693523,0.5242,-1.04505][-0.375566,-0.0664808,0.924408][0.926166,0.04046,0][0.568221,0.375924,-1.23579][-0.321301,-0.633709,0.703689][0.92063,0.040122,0][1.00274,0.377278,-1.03617][-0.279558,-0.540427,0.793591][0.927654,0.033492,0][0.568221,0.375924,-1.23579][-0.321301,-0.633709,0.703689][0.92063,0.040122,0][0.693523,0.5242,-1.04505][-0.375566,-0.0664808,0.924408][0.926166,0.04046,0][0.194746,0.509452,-1.15901][0.162463,-0.601497,0.782181][0.919199,0.048707,0][0.194746,0.509452,-1.15901][0.162463,-0.601497,0.782181][0.919199,0.048707,0][0.175575,0.304972,-1.26812][0.172147,-0.476253,0.862293][0.9149,0.046486,0][0.568221,0.375924,-1.23579][-0.321301,-0.633709,0.703689][0.92063,0.040122,0][-0.118835,0.0403487,-1.21769][0.195446,-0.030647,0.980236][0.930745,0.082974,0][0.175575,0.304972,-1.26812][0.172147,-0.476253,0.862293][0.926142,0.079452,0][-0.313038,0.162241,-1.17516][0.26608,-0.31826,0.909897][0.933374,0.080821,0][-0.313038,0.162241,-1.17516][0.26608,-0.31826,0.909897][0.933374,0.080821,0][-0.447142,-0.192306,-1.09349][0.280085,0.113627,0.953227][0.936151,0.085221,0][-0.118835,0.0403487,-1.21769][0.195446,-0.030647,0.980236][0.930745,0.082974,0][-0.447142,-0.192306,-1.09349][0.280085,0.113627,0.953227][0.936151,0.085221,0][-0.313038,0.162241,-1.17516][0.26608,-0.31826,0.909897][0.933374,0.080821,0][-0.691242,0.11826,-0.87546][0.616497,-0.275639,0.737533][0.939381,0.080293,0][-0.691242,0.11826,-0.87546][0.616497,-0.275639,0.737533][0.939381,0.080293,0][-0.709955,-0.30179,-0.819338][0.707894,0.0624636,0.703551][0.941653,0.085465,0][-0.447142,-0.192306,-1.09349][0.280085,0.113627,0.953227][0.936151,0.085221,0][-0.709955,-0.30179,-0.819338][0.707894,0.0624636,0.703551][0.941653,0.085465,0][-0.691242,0.11826,-0.87546][0.616497,-0.275639,0.737533][0.939381,0.080293,0][-0.861501,0.178994,-0.516232][0.844654,-0.290729,0.449484][0.943649,0.07815,0][-0.861501,0.178994,-0.516232][0.844654,-0.290729,0.449484][0.943649,0.07815,0][-0.873385,-0.337253,-0.498017][0.891526,-0.00454127,0.452946][0.946597,0.084084,0][-0.709955,-0.30179,-0.819338][0.707894,0.0624636,0.703551][0.941653,0.085465,0][-0.873385,-0.337253,-0.498017][0.891526,-0.00454127,0.452946][0.946597,0.084084,0][-0.861501,0.178994,-0.516232][0.844654,-0.290729,0.449484][0.943649,0.07815,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.933545,-0.367639,-0.141087][0.986171,-0.0202061,0.164497][0.951221,0.082174,0][-0.873385,-0.337253,-0.498017][0.891526,-0.00454127,0.452946][0.946597,0.084084,0][-0.880438,-0.346558,0.217956][0.989166,-0.0232755,-0.144944][0.955246,0.079002,0][-0.933545,-0.367639,-0.141087][0.986171,-0.0202061,0.164497][0.951221,0.082174,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.868737,0.189029,0.208928][0.930552,-0.338292,-0.140114][0.950783,0.073834,0][-0.880438,-0.346558,0.217956][0.989166,-0.0232755,-0.144944][0.955246,0.079002,0][-0.880438,-0.346558,0.217956][0.989166,-0.0232755,-0.144944][0.955246,0.079002,0][-0.868737,0.189029,0.208928][0.930552,-0.338292,-0.140114][0.950783,0.073834,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.718217,-0.384549,0.544132][0.893986,-0.0242435,-0.44744][0.95939,0.075748,0][-0.880438,-0.346558,0.217956][0.989166,-0.0232755,-0.144944][0.955246,0.079002,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][-0.718217,-0.384549,0.544132][0.893986,-0.0242435,-0.44744][0.95939,0.075748,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.454693,0.252786,0.789231][0.697567,-0.329318,-0.636356][0.955361,0.067313,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][-0.454693,0.252786,0.789231][0.697567,-0.329318,-0.636356][0.955361,0.067313,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][-0.13678,-0.343025,0.972286][0.456848,-0.028006,-0.889104][0.964325,0.066073,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][-0.13678,-0.343025,0.972286][0.456848,-0.028006,-0.889104][0.964325,0.066073,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][0.225578,0.253773,1.0133][0.14985,-0.340233,-0.928325][0.957757,0.059725,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][0.225578,0.253773,1.0133][0.14985,-0.340233,-0.928325][0.957757,0.059725,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.58727,-0.384733,0.973118][-0.160509,-0.0255581,-0.986703][0.966411,0.05509,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][0.913126,-0.286572,0.805223][-0.452036,-0.024529,-0.891662][0.964101,0.049689,0][0.58727,-0.384733,0.973118][-0.160509,-0.0255581,-0.986703][0.966411,0.05509,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.90672,0.24375,0.790383][-0.467742,-0.337568,-0.816863][0.957089,0.051475,0][0.913126,-0.286572,0.805223][-0.452036,-0.024529,-0.891662][0.964101,0.049689,0][0.913126,-0.286572,0.805223][-0.452036,-0.024529,-0.891662][0.964101,0.049689,0][0.90672,0.24375,0.790383][-0.467742,-0.337568,-0.816863][0.957089,0.051475,0][1.16106,0.243226,0.532627][-0.668595,-0.344476,-0.659027][0.955457,0.04746,0][1.16106,0.243226,0.532627][-0.668595,-0.344476,-0.659027][0.955457,0.04746,0][1.16521,-0.292815,0.538532][-0.726824,-0.0131901,-0.686697][0.962295,0.044198,0][0.913126,-0.286572,0.805223][-0.452036,-0.024529,-0.891662][0.964101,0.049689,0][1.16521,-0.292815,0.538532][-0.726824,-0.0131901,-0.686697][0.962295,0.044198,0][1.16106,0.243226,0.532627][-0.668595,-0.344476,-0.659027][0.955457,0.04746,0][1.32208,0.25133,0.208939][-0.826725,-0.37365,-0.420608][0.952819,0.043751,0][1.32208,0.25133,0.208939][-0.826725,-0.37365,-0.420608][0.952819,0.043751,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.16521,-0.292815,0.538532][-0.726824,-0.0131901,-0.686697][0.962295,0.044198,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.32208,0.25133,0.208939][-0.826725,-0.37365,-0.420608][0.952819,0.043751,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.34235,-0.309134,-0.278801][-0.989184,0.0399886,-0.141123][0.954543,0.032563,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.25439,-0.077864,-0.656345][-0.972747,0.00832158,0.231718][0.946453,0.030872,0][1.34235,-0.309134,-0.278801][-0.989184,0.0399886,-0.141123][0.954543,0.032563,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.23838,0.301904,-0.666263][-0.911301,-0.372856,0.17467][0.94238,0.036239,0][1.25439,-0.077864,-0.656345][-0.972747,0.00832158,0.231718][0.946453,0.030872,0][1.03154,0.218299,-0.983916][-0.835298,-0.0208695,0.549401][0.936959,0.031485,0][1.25439,-0.077864,-0.656345][-0.972747,0.00832158,0.231718][0.946453,0.030872,0][1.23838,0.301904,-0.666263][-0.911301,-0.372856,0.17467][0.94238,0.036239,0][1.23838,0.301904,-0.666263][-0.911301,-0.372856,0.17467][0.94238,0.036239,0][1.07048,0.396855,-0.941657][-0.865578,-0.203485,0.457567][0.936307,0.035197,0][1.03154,0.218299,-0.983916][-0.835298,-0.0208695,0.549401][0.936959,0.031485,0][0.870682,0.237445,-1.11646][-0.413755,-0.126887,0.901502][0.923664,0.03352,0][1.00274,0.377278,-1.03617][-0.279558,-0.540427,0.793591][0.927654,0.033492,0][0.568221,0.375924,-1.23579][-0.321301,-0.633709,0.703689][0.92063,0.040122,0][0.568221,0.375924,-1.23579][-0.321301,-0.633709,0.703689][0.92063,0.040122,0][0.354978,0.22828,-1.28925][-0.317362,0.117664,0.940976][0.914886,0.04142,0][0.870682,0.237445,-1.11646][-0.413755,-0.126887,0.901502][0.923664,0.03352,0][0.354978,0.22828,-1.28925][-0.317362,0.117664,0.940976][0.914886,0.04142,0][0.568221,0.375924,-1.23579][-0.321301,-0.633709,0.703689][0.92063,0.040122,0][0.175575,0.304972,-1.26812][0.172147,-0.476253,0.862293][0.9149,0.046486,0][0.175575,0.304972,-1.26812][0.172147,-0.476253,0.862293][0.9149,0.046486,0][-0.118835,0.0403487,-1.21769][0.195446,-0.030647,0.980236][0.905835,0.048738,0][0.354978,0.22828,-1.28925][-0.317362,0.117664,0.940976][0.914886,0.04142,0][-0.300894,-0.0711866,-1.30511][0.552125,-0.828595,-0.092675][0.931566,0.085924,0][-0.118835,0.0403487,-1.21769][0.195446,-0.030647,0.980236][0.930745,0.082974,0][-0.447142,-0.192306,-1.09349][0.280085,0.113627,0.953227][0.936151,0.085221,0][-0.447142,-0.192306,-1.09349][0.280085,0.113627,0.953227][0.936151,0.085221,0][-0.561734,-0.41611,-1.02523][0.855698,-0.312268,0.412637][0.938692,0.088028,0][-0.300894,-0.0711866,-1.30511][0.552125,-0.828595,-0.092675][0.931566,0.085924,0][-0.561734,-0.41611,-1.02523][0.855698,-0.312268,0.412637][0.938692,0.088028,0][-0.447142,-0.192306,-1.09349][0.280085,0.113627,0.953227][0.936151,0.085221,0][-0.709955,-0.30179,-0.819338][0.707894,0.0624636,0.703551][0.941653,0.085465,0][-0.709955,-0.30179,-0.819338][0.707894,0.0624636,0.703551][0.941653,0.085465,0][-0.87437,-0.54703,-0.740974][0.707053,-0.264452,0.655852][0.94499,0.088327,0][-0.561734,-0.41611,-1.02523][0.855698,-0.312268,0.412637][0.938692,0.088028,0][-0.87437,-0.54703,-0.740974][0.707053,-0.264452,0.655852][0.94499,0.088327,0][-0.709955,-0.30179,-0.819338][0.707894,0.0624636,0.703551][0.941653,0.085465,0][-0.873385,-0.337253,-0.498017][0.891526,-0.00454127,0.452946][0.946597,0.084084,0][-0.873385,-0.337253,-0.498017][0.891526,-0.00454127,0.452946][0.946597,0.084084,0][-1.0295,-0.671411,-0.523687][0.835375,-0.417723,0.35729][0.948838,0.088447,0][-0.87437,-0.54703,-0.740974][0.707053,-0.264452,0.655852][0.94499,0.088327,0][-1.0295,-0.671411,-0.523687][0.835375,-0.417723,0.35729][0.948838,0.088447,0][-0.873385,-0.337253,-0.498017][0.891526,-0.00454127,0.452946][0.946597,0.084084,0][-0.933545,-0.367639,-0.141087][0.986171,-0.0202061,0.164497][0.951221,0.082174,0][-0.933545,-0.367639,-0.141087][0.986171,-0.0202061,0.164497][0.951221,0.082174,0][-1.09314,-0.771679,-0.141808][0.928445,-0.366847,0.0584158][0.954285,0.087465,0][-1.0295,-0.671411,-0.523687][0.835375,-0.417723,0.35729][0.948838,0.088447,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-1.09314,-0.771679,-0.141808][0.928445,-0.366847,0.0584158][0.954285,0.087465,0][-0.933545,-0.367639,-0.141087][0.986171,-0.0202061,0.164497][0.951221,0.082174,0][-0.933545,-0.367639,-0.141087][0.986171,-0.0202061,0.164497][0.951221,0.082174,0][-0.880438,-0.346558,0.217956][0.989166,-0.0232755,-0.144944][0.955246,0.079002,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-0.880438,-0.346558,0.217956][0.989166,-0.0232755,-0.144944][0.955246,0.079002,0][-0.718217,-0.384549,0.544132][0.893986,-0.0242435,-0.44744][0.95939,0.075748,0][-0.718217,-0.384549,0.544132][0.893986,-0.0242435,-0.44744][0.95939,0.075748,0][-0.840278,-0.765927,0.674912][0.810814,-0.404552,-0.422987][0.964458,0.079528,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-0.532312,-0.708749,0.950832][0.646672,-0.424325,-0.633848][0.967528,0.073724,0][-0.840278,-0.765927,0.674912][0.810814,-0.404552,-0.422987][0.964458,0.079528,0][-0.718217,-0.384549,0.544132][0.893986,-0.0242435,-0.44744][0.95939,0.075748,0][-0.718217,-0.384549,0.544132][0.893986,-0.0242435,-0.44744][0.95939,0.075748,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][-0.532312,-0.708749,0.950832][0.646672,-0.424325,-0.633848][0.967528,0.073724,0][-0.172195,-0.660279,1.09115][0.379812,-0.379268,-0.843741][0.969315,0.067772,0][-0.532312,-0.708749,0.950832][0.646672,-0.424325,-0.633848][0.967528,0.073724,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][-0.13678,-0.343025,0.972286][0.456848,-0.028006,-0.889104][0.964325,0.066073,0][-0.172195,-0.660279,1.09115][0.379812,-0.379268,-0.843741][0.969315,0.067772,0][-0.172195,-0.660279,1.09115][0.379812,-0.379268,-0.843741][0.969315,0.067772,0][-0.13678,-0.343025,0.972286][0.456848,-0.028006,-0.889104][0.964325,0.066073,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][-0.172195,-0.660279,1.09115][0.379812,-0.379268,-0.843741][0.969315,0.067772,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][0.58727,-0.384733,0.973118][-0.160509,-0.0255581,-0.986703][0.966411,0.05509,0][0.58727,-0.384733,0.973118][-0.160509,-0.0255581,-0.986703][0.966411,0.05509,0][0.624493,-0.788555,1.08743][-0.189017,-0.283556,-0.940143][0.973273,0.05481,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][0.624493,-0.788555,1.08743][-0.189017,-0.283556,-0.940143][0.973273,0.05481,0][0.58727,-0.384733,0.973118][-0.160509,-0.0255581,-0.986703][0.966411,0.05509,0][0.58727,-0.384733,0.973118][-0.160509,-0.0255581,-0.986703][0.966411,0.05509,0][0.913126,-0.286572,0.805223][-0.452036,-0.024529,-0.891662][0.964101,0.049689,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][0.913126,-0.286572,0.805223][-0.452036,-0.024529,-0.891662][0.964101,0.049689,0][1.16521,-0.292815,0.538532][-0.726824,-0.0131901,-0.686697][0.962295,0.044198,0][1.16521,-0.292815,0.538532][-0.726824,-0.0131901,-0.686697][0.962295,0.044198,0][1.24003,-0.733354,0.588403][-0.761937,-0.199178,-0.616263][0.969314,0.041279,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][1.24003,-0.733354,0.588403][-0.761937,-0.199178,-0.616263][0.969314,0.041279,0][1.16521,-0.292815,0.538532][-0.726824,-0.0131901,-0.686697][0.962295,0.044198,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.34969,-0.830584,0.0701987][-0.975448,-0.121619,-0.183605][0.965991,0.03207,0][1.24003,-0.733354,0.588403][-0.761937,-0.199178,-0.616263][0.969314,0.041279,0][1.44459,-0.674581,-0.318393][-0.955084,-0.107199,-0.276267][0.959404,0.027261,0][1.34969,-0.830584,0.0701987][-0.975448,-0.121619,-0.183605][0.965991,0.03207,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.34235,-0.309134,-0.278801][-0.989184,0.0399886,-0.141123][0.954543,0.032563,0][1.44459,-0.674581,-0.318393][-0.955084,-0.107199,-0.276267][0.959404,0.027261,0][1.40108,-0.395182,-0.606399][-0.960623,-0.257413,-0.104599][0.951666,0.027013,0][1.44459,-0.674581,-0.318393][-0.955084,-0.107199,-0.276267][0.959404,0.027261,0][1.34235,-0.309134,-0.278801][-0.989184,0.0399886,-0.141123][0.954543,0.032563,0][1.34235,-0.309134,-0.278801][-0.989184,0.0399886,-0.141123][0.954543,0.032563,0][1.25439,-0.077864,-0.656345][-0.972747,0.00832158,0.231718][0.946453,0.030872,0][1.40108,-0.395182,-0.606399][-0.960623,-0.257413,-0.104599][0.951666,0.027013,0][1.0941,0.00328189,-1.0145][-0.87995,-0.357531,0.312827][0.939441,0.027759,0][1.40108,-0.395182,-0.606399][-0.960623,-0.257413,-0.104599][0.951666,0.027013,0][1.25439,-0.077864,-0.656345][-0.972747,0.00832158,0.231718][0.946453,0.030872,0][1.25439,-0.077864,-0.656345][-0.972747,0.00832158,0.231718][0.946453,0.030872,0][1.03154,0.218299,-0.983916][-0.835298,-0.0208695,0.549401][0.936959,0.031485,0][1.0941,0.00328189,-1.0145][-0.87995,-0.357531,0.312827][0.939441,0.027759,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.919,0.03397,0][0.870682,0.237445,-1.11646][-0.413755,-0.126887,0.901502][0.923664,0.03352,0][0.354978,0.22828,-1.28925][-0.317362,0.117664,0.940976][0.914886,0.04142,0][0.354978,0.22828,-1.28925][-0.317362,0.117664,0.940976][0.914886,0.04142,0][0.217294,0.0868329,-1.39792][-0.0191516,-0.597328,0.801769][0.909482,0.041327,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.919,0.03397,0][0.217294,0.0868329,-1.39792][-0.0191516,-0.597328,0.801769][0.909482,0.041327,0][0.354978,0.22828,-1.28925][-0.317362,0.117664,0.940976][0.914886,0.04142,0][-0.118835,0.0403487,-1.21769][0.195446,-0.030647,0.980236][0.905835,0.048738,0][-0.118835,0.0403487,-1.21769][0.195446,-0.030647,0.980236][0.905835,0.048738,0][-0.300894,-0.0711866,-1.30511][0.552125,-0.828595,-0.092675][0.901214,0.049396,0][0.217294,0.0868329,-1.39792][-0.0191516,-0.597328,0.801769][0.909482,0.041327,0][-0.336727,-0.284662,-1.24772][0.675548,0.0835714,0.732564][0.933658,0.088384,0][-0.300894,-0.0711866,-1.30511][0.552125,-0.828595,-0.092675][0.931566,0.085924,0][-0.561734,-0.41611,-1.02523][0.855698,-0.312268,0.412637][0.938692,0.088028,0][-0.561734,-0.41611,-1.02523][0.855698,-0.312268,0.412637][0.938692,0.088028,0][-0.581696,-0.659688,-1.06085][0.739159,-0.156391,0.655123][0.939883,0.091406,0][-0.336727,-0.284662,-1.24772][0.675548,0.0835714,0.732564][0.933658,0.088384,0][-0.581696,-0.659688,-1.06085][0.739159,-0.156391,0.655123][0.939883,0.091406,0][-0.561734,-0.41611,-1.02523][0.855698,-0.312268,0.412637][0.938692,0.088028,0][-0.87437,-0.54703,-0.740974][0.707053,-0.264452,0.655852][0.94499,0.088327,0][-0.87437,-0.54703,-0.740974][0.707053,-0.264452,0.655852][0.94499,0.088327,0][-0.867222,-0.773923,-0.76793][0.726171,-0.0585069,0.68502][0.945574,0.091253,0][-0.581696,-0.659688,-1.06085][0.739159,-0.156391,0.655123][0.939883,0.091406,0][-0.867222,-0.773923,-0.76793][0.726171,-0.0585069,0.68502][0.945574,0.091253,0][-0.87437,-0.54703,-0.740974][0.707053,-0.264452,0.655852][0.94499,0.088327,0][-1.0295,-0.671411,-0.523687][0.835375,-0.417723,0.35729][0.948838,0.088447,0][-1.0295,-0.671411,-0.523687][0.835375,-0.417723,0.35729][0.948838,0.088447,0][-0.993661,-0.913774,-0.343836][0.830517,0.405876,0.381453][0.951743,0.09105,0][-0.867222,-0.773923,-0.76793][0.726171,-0.0585069,0.68502][0.945574,0.091253,0][-0.993661,-0.913774,-0.343836][0.830517,0.405876,0.381453][0.951743,0.09105,0][-1.0295,-0.671411,-0.523687][0.835375,-0.417723,0.35729][0.948838,0.088447,0][-1.09314,-0.771679,-0.141808][0.928445,-0.366847,0.0584158][0.954285,0.087465,0][-1.09314,-0.771679,-0.141808][0.928445,-0.366847,0.0584158][0.954285,0.087465,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.953648,0.091663,0][-0.993661,-0.913774,-0.343836][0.830517,0.405876,0.381453][0.951743,0.09105,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.953648,0.091663,0][-1.09314,-0.771679,-0.141808][0.928445,-0.366847,0.0584158][0.954285,0.087465,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.96529,0.085757,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.953648,0.091663,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.96529,0.085757,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-0.840278,-0.765927,0.674912][0.810814,-0.404552,-0.422987][0.964458,0.079528,0][-0.840278,-0.765927,0.674912][0.810814,-0.404552,-0.422987][0.964458,0.079528,0][-0.947245,-1.03133,0.54275][0.610392,-0.536298,0.582929][0.965724,0.084744,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.96529,0.085757,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.972794,0.076581,0][-0.947245,-1.03133,0.54275][0.610392,-0.536298,0.582929][0.965724,0.084744,0][-0.840278,-0.765927,0.674912][0.810814,-0.404552,-0.422987][0.964458,0.079528,0][-0.840278,-0.765927,0.674912][0.810814,-0.404552,-0.422987][0.964458,0.079528,0][-0.532312,-0.708749,0.950832][0.646672,-0.424325,-0.633848][0.967528,0.073724,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.972794,0.076581,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.975125,0.069807,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.972794,0.076581,0][-0.532312,-0.708749,0.950832][0.646672,-0.424325,-0.633848][0.967528,0.073724,0][-0.532312,-0.708749,0.950832][0.646672,-0.424325,-0.633848][0.967528,0.073724,0][-0.172195,-0.660279,1.09115][0.379812,-0.379268,-0.843741][0.969315,0.067772,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.975125,0.069807,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.975125,0.069807,0][-0.172195,-0.660279,1.09115][0.379812,-0.379268,-0.843741][0.969315,0.067772,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][0.425198,-1.11934,1.17226][0.085634,-0.0117811,-0.996257][0.979652,0.059364,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.975125,0.069807,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][0.624493,-0.788555,1.08743][-0.189017,-0.283556,-0.940143][0.973273,0.05481,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.978899,0.058542,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.978899,0.058542,0][0.425198,-1.11934,1.17226][0.085634,-0.0117811,-0.996257][0.979652,0.059364,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][0.994866,-1.08605,0.921945][-0.438158,-0.0461283,-0.897713][0.977831,0.046841,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.978899,0.058542,0][0.624493,-0.788555,1.08743][-0.189017,-0.283556,-0.940143][0.973273,0.05481,0][0.624493,-0.788555,1.08743][-0.189017,-0.283556,-0.940143][0.973273,0.05481,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][0.994866,-1.08605,0.921945][-0.438158,-0.0461283,-0.897713][0.977831,0.046841,0][1.27013,-1.06632,0.614035][-0.742338,-0.0590064,-0.667422][0.975272,0.039119,0][0.994866,-1.08605,0.921945][-0.438158,-0.0461283,-0.897713][0.977831,0.046841,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][1.24003,-0.733354,0.588403][-0.761937,-0.199178,-0.616263][0.969314,0.041279,0][1.27013,-1.06632,0.614035][-0.742338,-0.0590064,-0.667422][0.975272,0.039119,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.970595,0.031686,0][1.27013,-1.06632,0.614035][-0.742338,-0.0590064,-0.667422][0.975272,0.039119,0][1.24003,-0.733354,0.588403][-0.761937,-0.199178,-0.616263][0.969314,0.041279,0][1.24003,-0.733354,0.588403][-0.761937,-0.199178,-0.616263][0.969314,0.041279,0][1.34969,-0.830584,0.0701987][-0.975448,-0.121619,-0.183605][0.965991,0.03207,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.970595,0.031686,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.961468,0.025418,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.970595,0.031686,0][1.34969,-0.830584,0.0701987][-0.975448,-0.121619,-0.183605][0.965991,0.03207,0][1.34969,-0.830584,0.0701987][-0.975448,-0.121619,-0.183605][0.965991,0.03207,0][1.44459,-0.674581,-0.318393][-0.955084,-0.107199,-0.276267][0.959404,0.027261,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.961468,0.025418,0][1.43667,-0.509533,-0.567972][-0.650688,-0.642714,-0.404381][0.953746,0.025894,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.961468,0.025418,0][1.44459,-0.674581,-0.318393][-0.955084,-0.107199,-0.276267][0.959404,0.027261,0][1.44459,-0.674581,-0.318393][-0.955084,-0.107199,-0.276267][0.959404,0.027261,0][1.40108,-0.395182,-0.606399][-0.960623,-0.257413,-0.104599][0.951666,0.027013,0][1.43667,-0.509533,-0.567972][-0.650688,-0.642714,-0.404381][0.953746,0.025894,0][1.21188,-0.244735,-0.912397][-0.868409,-0.107607,0.484032][0.94462,0.025371,0][1.43667,-0.509533,-0.567972][-0.650688,-0.642714,-0.404381][0.953746,0.025894,0][1.40108,-0.395182,-0.606399][-0.960623,-0.257413,-0.104599][0.951666,0.027013,0][1.40108,-0.395182,-0.606399][-0.960623,-0.257413,-0.104599][0.951666,0.027013,0][1.0941,0.00328189,-1.0145][-0.87995,-0.357531,0.312827][0.939441,0.027759,0][1.21188,-0.244735,-0.912397][-0.868409,-0.107607,0.484032][0.94462,0.025371,0][0.217294,0.0868329,-1.39792][-0.0191516,-0.597328,0.801769][0.909482,0.041327,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.907334,0.040672,0][0.464685,0.184061,-1.34322][0.296015,-0.912329,0.282896][0.912816,0.036485,0][0.464685,0.184061,-1.34322][0.296015,-0.912329,0.282896][0.912816,0.036485,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.919,0.03397,0][0.217294,0.0868329,-1.39792][-0.0191516,-0.597328,0.801769][0.909482,0.041327,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.907334,0.040672,0][0.217294,0.0868329,-1.39792][-0.0191516,-0.597328,0.801769][0.909482,0.041327,0][-0.300894,-0.0711866,-1.30511][0.552125,-0.828595,-0.092675][0.901214,0.049396,0][-0.300894,-0.0711866,-1.30511][0.552125,-0.828595,-0.092675][0.901214,0.049396,0][-0.336727,-0.284662,-1.24772][0.675548,0.0835714,0.732564][0.897362,0.048339,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.907334,0.040672,0][-0.801863,-0.504459,-1.30565][0.173784,-0.497291,-0.850001][0.59635,0.787614,0][-0.401544,-0.115181,-1.45155][0.173784,-0.497291,-0.850001][0.663521,0.745416,0][-0.361265,-0.171066,-1.41062][0.173784,-0.497291,-0.850001][0.670579,0.75588,0][-0.361265,-0.171066,-1.41062][0.173784,-0.497291,-0.850001][0.670579,0.75588,0][-0.707131,-0.592002,-1.28025][-0.00985976,-0.288427,-0.957451][0.602946,0.800809,0][-0.801863,-0.504459,-1.30565][0.173784,-0.497291,-0.850001][0.59635,0.787614,0][-0.801863,-0.504459,-1.30565][0.173784,-0.497291,-0.850001][0.59635,0.787614,0][-0.707131,-0.592002,-1.28025][-0.00985976,-0.288427,-0.957451][0.602946,0.800809,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-1.08733,-0.620447,-0.95034][-0.680834,-0.328988,-0.654394][0.537274,0.804835,0][-0.801863,-0.504459,-1.30565][0.173784,-0.497291,-0.850001][0.59635,0.787614,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.08733,-0.620447,-0.95034][-0.680834,-0.328988,-0.654394][0.537274,0.804835,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.27337,-0.907536,-0.142327][-0.736116,-0.569188,-0.366277][0.379891,0.818827,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.27337,-0.907536,-0.142327][-0.736116,-0.569188,-0.366277][0.379891,0.818827,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-1.27935,-0.874486,0.320288][-0.79986,-0.599307,0.0324717][0.318771,0.770493,0][-1.27337,-0.907536,-0.142327][-0.736116,-0.569188,-0.366277][0.379891,0.818827,0][-1.27935,-0.874486,0.320288][-0.79986,-0.599307,0.0324717][0.318771,0.770493,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-0.986364,-0.897419,0.800639][-0.853865,-0.0417199,0.51882][0.227721,0.643077,0][-1.27935,-0.874486,0.320288][-0.79986,-0.599307,0.0324717][0.318771,0.770493,0][-0.986364,-0.897419,0.800639][-0.853865,-0.0417199,0.51882][0.227721,0.643077,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-0.616285,-0.920907,1.14072][-0.675136,0.0328463,0.736962][0.187844,0.551947,0][-0.986364,-0.897419,0.800639][-0.853865,-0.0417199,0.51882][0.227721,0.643077,0][-0.616285,-0.920907,1.14072][-0.675136,0.0328463,0.736962][0.187844,0.551947,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][-0.212705,-0.745597,1.23314][-0.233826,0.0259128,0.971933][0.197802,0.472361,0][-0.616285,-0.920907,1.14072][-0.675136,0.0328463,0.736962][0.187844,0.551947,0][0.226428,-0.856126,1.2848][-0.106335,0.0418889,0.993448][0.178611,0.372169,0][-0.212705,-0.745597,1.23314][-0.233826,0.0259128,0.971933][0.197802,0.472361,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0][0.226428,-0.856126,1.2848][-0.106335,0.0418889,0.993448][0.178611,0.372169,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.665439,-0.894266,1.21527][0.177298,0.409207,0.89505][0.209971,0.247964,0][0.226428,-0.856126,1.2848][-0.106335,0.0418889,0.993448][0.178611,0.372169,0][0.226428,-0.856126,1.2848][-0.106335,0.0418889,0.993448][0.178611,0.372169,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.665439,-0.894266,1.21527][0.177298,0.409207,0.89505][0.209971,0.247964,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][1.04041,-0.986105,1.00565][0.434586,-0.219412,0.873495][0.269223,0.172331,0][1.04041,-0.986105,1.00565][0.434586,-0.219412,0.873495][0.269223,0.172331,0][1.06105,-0.876747,1.01285][0.455822,-0.143839,0.878372][0.284236,0.187769,0][0.665439,-0.894266,1.21527][0.177298,0.409207,0.89505][0.209971,0.247964,0][1.06105,-0.876747,1.01285][0.455822,-0.143839,0.878372][0.284236,0.187769,0][1.04041,-0.986105,1.00565][0.434586,-0.219412,0.873495][0.269223,0.172331,0][1.33557,-1.00905,0.666334][0.735799,-0.181784,0.652345][0.33953,0.120592,0][1.33557,-1.00905,0.666334][0.735799,-0.181784,0.652345][0.33953,0.120592,0][1.35888,-0.909171,0.676499][0.71657,-0.234063,0.657071][0.350034,0.135018,0][1.06105,-0.876747,1.01285][0.455822,-0.143839,0.878372][0.284236,0.187769,0][1.35888,-0.909171,0.676499][0.71657,-0.234063,0.657071][0.350034,0.135018,0][1.33557,-1.00905,0.666334][0.735799,-0.181784,0.652345][0.33953,0.120592,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.4899,-0.938028,0.11047][0.861032,-0.457231,0.222627][0.434039,0.075388,0][1.35888,-0.909171,0.676499][0.71657,-0.234063,0.657071][0.350034,0.135018,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.4899,-0.938028,0.11047][0.861032,-0.457231,0.222627][0.434039,0.075388,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.43667,-0.509533,-0.567972][-0.650688,-0.642714,-0.404381][0.588961,0.081391,0][1.4421,-0.492312,-0.573828][0.628571,-0.420818,-0.654073][0.595878,0.095312,0][1.4421,-0.492312,-0.573828][0.628571,-0.420818,-0.654073][0.595878,0.095312,0][1.43667,-0.509533,-0.567972][-0.650688,-0.642714,-0.404381][0.588961,0.081391,0][1.21188,-0.244735,-0.912397][-0.868409,-0.107607,0.484032][0.683835,0.098156,0][1.21188,-0.244735,-0.912397][-0.868409,-0.107607,0.484032][0.683835,0.098156,0][1.21713,-0.22346,-0.917591][0.65245,-0.327725,-0.683304][0.687309,0.112793,0][1.4421,-0.492312,-0.573828][0.628571,-0.420818,-0.654073][0.595878,0.095312,0][0.471787,0.207621,-1.35032][0.496667,-0.384201,-0.778275][0.813171,0.64073,0][0.464685,0.184061,-1.34322][0.296015,-0.912329,0.282896][0.814269,0.65035,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][0.471787,0.207621,-1.35032][0.496667,-0.384201,-0.778275][0.813171,0.64073,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][-0.361265,-0.171066,-1.41062][0.173784,-0.497291,-0.850001][0.670579,0.75588,0][-0.361265,-0.171066,-1.41062][0.173784,-0.497291,-0.850001][0.670579,0.75588,0][-0.401544,-0.115181,-1.45155][0.173784,-0.497291,-0.850001][0.663521,0.745416,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][-0.569637,-0.317079,-1.18955][-0.688523,0.327098,-0.647258][0.600337,0.720303,0][-0.276602,0.00824666,-1.33686][-0.688523,0.327098,-0.647258][0.661433,0.692395,0][-0.336446,-0.105335,-1.3306][-0.688523,0.327098,-0.647258][0.647834,0.707001,0][-0.336446,-0.105335,-1.3306][-0.688523,0.327098,-0.647258][0.647834,0.707001,0][-0.61077,-0.46667,-1.1845][-0.60184,0.138919,-0.786441][0.590501,0.734296,0][-0.569637,-0.317079,-1.18955][-0.688523,0.327098,-0.647258][0.600337,0.720303,0][-0.910001,-0.459064,-0.897089][-0.681264,0.163219,-0.71361][0.544387,0.722649,0][-0.569637,-0.317079,-1.18955][-0.688523,0.327098,-0.647258][0.600337,0.720303,0][-0.61077,-0.46667,-1.1845][-0.60184,0.138919,-0.786441][0.590501,0.734296,0][-0.61077,-0.46667,-1.1845][-0.60184,0.138919,-0.786441][0.590501,0.734296,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-0.910001,-0.459064,-0.897089][-0.681264,0.163219,-0.71361][0.544387,0.722649,0][-1.04748,-0.581152,-0.530053][-0.941353,0.0640955,-0.331281][0.488978,0.721802,0][-0.910001,-0.459064,-0.897089][-0.681264,0.163219,-0.71361][0.544387,0.722649,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-1.07555,-0.749044,-0.526814][-0.930926,0.149205,-0.33334][0.478534,0.74362,0][-1.04748,-0.581152,-0.530053][-0.941353,0.0640955,-0.331281][0.488978,0.721802,0][-1.11376,-0.701102,-0.138432][-0.979974,0.161592,-0.116357][0.430088,0.712431,0][-1.04748,-0.581152,-0.530053][-0.941353,0.0640955,-0.331281][0.488978,0.721802,0][-1.07555,-0.749044,-0.526814][-0.930926,0.149205,-0.33334][0.478534,0.74362,0][-1.07555,-0.749044,-0.526814][-0.930926,0.149205,-0.33334][0.478534,0.74362,0][-1.13631,-0.868187,-0.139776][-0.984501,0.133804,-0.113372][0.420074,0.734838,0][-1.11376,-0.701102,-0.138432][-0.979974,0.161592,-0.116357][0.430088,0.712431,0][-1.11376,-0.701102,-0.138432][-0.979974,0.161592,-0.116357][0.430088,0.712431,0][-1.13631,-0.868187,-0.139776][-0.984501,0.133804,-0.113372][0.420074,0.734838,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-1.05966,-0.687817,0.262747][-0.972,0.199306,0.12447][0.371134,0.679488,0][-1.11376,-0.701102,-0.138432][-0.979974,0.161592,-0.116357][0.430088,0.712431,0][-0.855336,-0.750997,0.691404][-0.877309,0.180325,0.444761][0.298658,0.610543,0][-1.05966,-0.687817,0.262747][-0.972,0.199306,0.12447][0.371134,0.679488,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-0.869554,-0.868392,0.714121][-0.87624,0.191679,0.442111][0.275878,0.620385,0][-0.855336,-0.750997,0.691404][-0.877309,0.180325,0.444761][0.298658,0.610543,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.855336,-0.750997,0.691404][-0.877309,0.180325,0.444761][0.298658,0.610543,0][-0.869554,-0.868392,0.714121][-0.87624,0.191679,0.442111][0.275878,0.620385,0][-0.869554,-0.868392,0.714121][-0.87624,0.191679,0.442111][0.275878,0.620385,0][-0.549138,-0.867551,1.01269][-0.665265,0.220416,0.713329][0.25582,0.539908,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.549138,-0.867551,1.01269][-0.665265,0.220416,0.713329][0.25582,0.539908,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.176054,-0.6641,1.10886][-0.366662,0.198861,0.908853][0.272992,0.462981,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][0.226431,-0.74677,1.1672][-0.100225,0.199931,0.97467][0.259517,0.377386,0][-0.176054,-0.6641,1.10886][-0.366662,0.198861,0.908853][0.272992,0.462981,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][0.226367,-0.846696,1.17605][-0.10738,0.0877973,0.990334][0.238478,0.372332,0][0.226431,-0.74677,1.1672][-0.100225,0.199931,0.97467][0.259517,0.377386,0][0.628885,-0.798193,1.10359][0.166369,0.0869038,0.982227][0.284187,0.295208,0][0.226431,-0.74677,1.1672][-0.100225,0.199931,0.97467][0.259517,0.377386,0][0.226367,-0.846696,1.17605][-0.10738,0.0877973,0.990334][0.238478,0.372332,0][0.226367,-0.846696,1.17605][-0.10738,0.0877973,0.990334][0.238478,0.372332,0][0.631638,-0.882568,1.11187][0.164382,0.101758,0.981134][0.268951,0.286798,0][0.628885,-0.798193,1.10359][0.166369,0.0869038,0.982227][0.284187,0.295208,0][0.628885,-0.798193,1.10359][0.166369,0.0869038,0.982227][0.284187,0.295208,0][0.631638,-0.882568,1.11187][0.164382,0.101758,0.981134][0.268951,0.286798,0][0.99684,-0.857817,0.924978][0.44772,0.101887,0.88835][0.316618,0.221924,0][0.99684,-0.857817,0.924978][0.44772,0.101887,0.88835][0.316618,0.221924,0][0.991784,-0.732307,0.918165][0.444402,0.0663939,0.893364][0.336082,0.237254,0][0.628885,-0.798193,1.10359][0.166369,0.0869038,0.982227][0.284187,0.295208,0][0.991784,-0.732307,0.918165][0.444402,0.0663939,0.893364][0.336082,0.237254,0][0.99684,-0.857817,0.924978][0.44772,0.101887,0.88835][0.316618,0.221924,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.25482,-0.72599,0.602832][0.742844,0.24126,0.62448][0.391425,0.184605,0][0.991784,-0.732307,0.918165][0.444402,0.0663939,0.893364][0.336082,0.237254,0][1.36655,-0.807188,0.0795681][0.960917,0.217354,0.171452][0.462254,0.122327,0][1.25482,-0.72599,0.602832][0.742844,0.24126,0.62448][0.391425,0.184605,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.42111,-0.888009,0.046367][0.847997,0.498113,0.181064][0.458989,0.106456,0][1.36655,-0.807188,0.0795681][0.960917,0.217354,0.171452][0.462254,0.122327,0][1.36655,-0.807188,0.0795681][0.960917,0.217354,0.171452][0.462254,0.122327,0][1.42111,-0.888009,0.046367][0.847997,0.498113,0.181064][0.458989,0.106456,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.46643,-0.631295,-0.319945][0.809009,0.436009,0.394209][0.536428,0.093772,0][1.36655,-0.807188,0.0795681][0.960917,0.217354,0.171452][0.462254,0.122327,0][1.46643,-0.631295,-0.319945][0.809009,0.436009,0.394209][0.536428,0.093772,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.4421,-0.492312,-0.573828][0.628571,-0.420818,-0.654073][0.595878,0.095312,0][1.4421,-0.492312,-0.573828][0.628571,-0.420818,-0.654073][0.595878,0.095312,0][1.41547,-0.316545,-0.638246][0.989433,0.144116,-0.0159058][0.620953,0.121518,0][1.46643,-0.631295,-0.319945][0.809009,0.436009,0.394209][0.536428,0.093772,0][1.41547,-0.316545,-0.638246][0.989433,0.144116,-0.0159058][0.620953,0.121518,0][1.4421,-0.492312,-0.573828][0.628571,-0.420818,-0.654073][0.595878,0.095312,0][1.21713,-0.22346,-0.917591][0.65245,-0.327725,-0.683304][0.687309,0.112793,0][1.21713,-0.22346,-0.917591][0.65245,-0.327725,-0.683304][0.687309,0.112793,0][1.12481,0.0277651,-1.02024][0.824602,0.0738313,-0.560874][0.728972,0.14796,0][1.41547,-0.316545,-0.638246][0.989433,0.144116,-0.0159058][0.620953,0.121518,0][0.286314,0.167673,-1.43036][0.149166,-0.978462,0.142691][0.767422,0.657935,0][0.738339,0.252535,-1.32098][0.149166,-0.978462,0.142691][0.863645,0.597369,0][0.471787,0.207621,-1.35032][0.496667,-0.384201,-0.778275][0.813171,0.64073,0][0.471787,0.207621,-1.35032][0.496667,-0.384201,-0.778275][0.813171,0.64073,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][0.286314,0.167673,-1.43036][0.149166,-0.978462,0.142691][0.767422,0.657935,0][-0.276602,0.00824666,-1.33686][-0.688523,0.327098,-0.647258][0.661433,0.692395,0][0.286314,0.167673,-1.43036][0.149166,-0.978462,0.142691][0.767422,0.657935,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][-0.336446,-0.105335,-1.3306][-0.688523,0.327098,-0.647258][0.647834,0.707001,0][-0.276602,0.00824666,-1.33686][-0.688523,0.327098,-0.647258][0.661433,0.692395,0][-0.45134,0.018576,-1.22489][-0.342945,0.721306,-0.601752][0.63077,0.682925,0][0.0382612,0.188703,-1.3][-0.342945,0.721306,-0.601752][0.713037,0.653047,0][-0.276602,0.00824666,-1.33686][-0.688523,0.327098,-0.647258][0.661433,0.692395,0][-0.276602,0.00824666,-1.33686][-0.688523,0.327098,-0.647258][0.661433,0.692395,0][-0.569637,-0.317079,-1.18955][-0.688523,0.327098,-0.647258][0.600337,0.720303,0][-0.45134,0.018576,-1.22489][-0.342945,0.721306,-0.601752][0.63077,0.682925,0][-0.764259,-0.110866,-0.874714][-0.766276,0.205979,-0.6086][0.565298,0.681427,0][-0.45134,0.018576,-1.22489][-0.342945,0.721306,-0.601752][0.63077,0.682925,0][-0.569637,-0.317079,-1.18955][-0.688523,0.327098,-0.647258][0.600337,0.720303,0][-0.569637,-0.317079,-1.18955][-0.688523,0.327098,-0.647258][0.600337,0.720303,0][-0.910001,-0.459064,-0.897089][-0.681264,0.163219,-0.71361][0.544387,0.722649,0][-0.764259,-0.110866,-0.874714][-0.766276,0.205979,-0.6086][0.565298,0.681427,0][-0.972844,-0.121403,-0.524719][-0.804019,0.366614,-0.468131][0.516479,0.665293,0][-0.764259,-0.110866,-0.874714][-0.766276,0.205979,-0.6086][0.565298,0.681427,0][-0.910001,-0.459064,-0.897089][-0.681264,0.163219,-0.71361][0.544387,0.722649,0][-0.910001,-0.459064,-0.897089][-0.681264,0.163219,-0.71361][0.544387,0.722649,0][-1.04748,-0.581152,-0.530053][-0.941353,0.0640955,-0.331281][0.488978,0.721802,0][-0.972844,-0.121403,-0.524719][-0.804019,0.366614,-0.468131][0.516479,0.665293,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-0.972844,-0.121403,-0.524719][-0.804019,0.366614,-0.468131][0.516479,0.665293,0][-1.04748,-0.581152,-0.530053][-0.941353,0.0640955,-0.331281][0.488978,0.721802,0][-1.04748,-0.581152,-0.530053][-0.941353,0.0640955,-0.331281][0.488978,0.721802,0][-1.11376,-0.701102,-0.138432][-0.979974,0.161592,-0.116357][0.430088,0.712431,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-1.11376,-0.701102,-0.138432][-0.979974,0.161592,-0.116357][0.430088,0.712431,0][-1.05966,-0.687817,0.262747][-0.972,0.199306,0.12447][0.371134,0.679488,0][-1.05966,-0.687817,0.262747][-0.972,0.199306,0.12447][0.371134,0.679488,0][-0.970828,-0.215186,0.252865][-0.969316,0.18556,0.161228][0.421331,0.616658,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-0.776992,-0.311457,0.59272][-0.835091,0.167913,0.523859][0.372769,0.577537,0][-0.970828,-0.215186,0.252865][-0.969316,0.18556,0.161228][0.421331,0.616658,0][-1.05966,-0.687817,0.262747][-0.972,0.199306,0.12447][0.371134,0.679488,0][-1.05966,-0.687817,0.262747][-0.972,0.199306,0.12447][0.371134,0.679488,0][-0.855336,-0.750997,0.691404][-0.877309,0.180325,0.444761][0.298658,0.610543,0][-0.776992,-0.311457,0.59272][-0.835091,0.167913,0.523859][0.372769,0.577537,0][-0.776992,-0.311457,0.59272][-0.835091,0.167913,0.523859][0.372769,0.577537,0][-0.855336,-0.750997,0.691404][-0.877309,0.180325,0.444761][0.298658,0.610543,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.514127,-0.27636,0.882218][-0.739029,0.17975,0.64925][0.354714,0.519055,0][-0.776992,-0.311457,0.59272][-0.835091,0.167913,0.523859][0.372769,0.577537,0][-0.148836,-0.333384,1.01718][-0.309733,0.210413,0.927249][0.335526,0.457768,0][-0.514127,-0.27636,0.882218][-0.739029,0.17975,0.64925][0.354714,0.519055,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.176054,-0.6641,1.10886][-0.366662,0.198861,0.908853][0.272992,0.462981,0][-0.148836,-0.333384,1.01718][-0.309733,0.210413,0.927249][0.335526,0.457768,0][0.225698,-0.342576,1.07099][-0.130139,0.274802,0.952653][0.338823,0.394029,0][-0.148836,-0.333384,1.01718][-0.309733,0.210413,0.927249][0.335526,0.457768,0][-0.176054,-0.6641,1.10886][-0.366662,0.198861,0.908853][0.272992,0.462981,0][-0.176054,-0.6641,1.10886][-0.366662,0.198861,0.908853][0.272992,0.462981,0][0.226431,-0.74677,1.1672][-0.100225,0.199931,0.97467][0.259517,0.377386,0][0.225698,-0.342576,1.07099][-0.130139,0.274802,0.952653][0.338823,0.394029,0][0.5986,-0.389276,1.01208][0.179732,0.228098,0.956905][0.352812,0.330604,0][0.225698,-0.342576,1.07099][-0.130139,0.274802,0.952653][0.338823,0.394029,0][0.226431,-0.74677,1.1672][-0.100225,0.199931,0.97467][0.259517,0.377386,0][0.226431,-0.74677,1.1672][-0.100225,0.199931,0.97467][0.259517,0.377386,0][0.628885,-0.798193,1.10359][0.166369,0.0869038,0.982227][0.284187,0.295208,0][0.5986,-0.389276,1.01208][0.179732,0.228098,0.956905][0.352812,0.330604,0][0.5986,-0.389276,1.01208][0.179732,0.228098,0.956905][0.352812,0.330604,0][0.628885,-0.798193,1.10359][0.166369,0.0869038,0.982227][0.284187,0.295208,0][0.991784,-0.732307,0.918165][0.444402,0.0663939,0.893364][0.336082,0.237254,0][0.991784,-0.732307,0.918165][0.444402,0.0663939,0.893364][0.336082,0.237254,0][0.935,-0.277595,0.840312][0.391162,0.202555,0.897755][0.401694,0.287064,0][0.5986,-0.389276,1.01208][0.179732,0.228098,0.956905][0.352812,0.330604,0][0.935,-0.277595,0.840312][0.391162,0.202555,0.897755][0.401694,0.287064,0][0.991784,-0.732307,0.918165][0.444402,0.0663939,0.893364][0.336082,0.237254,0][1.25482,-0.72599,0.602832][0.742844,0.24126,0.62448][0.391425,0.184605,0][1.25482,-0.72599,0.602832][0.742844,0.24126,0.62448][0.391425,0.184605,0][1.19954,-0.249811,0.569475][0.702528,0.130572,0.699575][0.447209,0.244976,0][0.935,-0.277595,0.840312][0.391162,0.202555,0.897755][0.401694,0.287064,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.19954,-0.249811,0.569475][0.702528,0.130572,0.699575][0.447209,0.244976,0][1.25482,-0.72599,0.602832][0.742844,0.24126,0.62448][0.391425,0.184605,0][1.25482,-0.72599,0.602832][0.742844,0.24126,0.62448][0.391425,0.184605,0][1.36655,-0.807188,0.0795681][0.960917,0.217354,0.171452][0.462254,0.122327,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.36655,-0.807188,0.0795681][0.960917,0.217354,0.171452][0.462254,0.122327,0][1.46643,-0.631295,-0.319945][0.809009,0.436009,0.394209][0.536428,0.093772,0][1.46643,-0.631295,-0.319945][0.809009,0.436009,0.394209][0.536428,0.093772,0][1.39864,-0.182444,-0.266773][0.980022,0.130187,0.150361][0.572894,0.172441,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.39864,-0.182444,-0.266773][0.980022,0.130187,0.150361][0.572894,0.172441,0][1.46643,-0.631295,-0.319945][0.809009,0.436009,0.394209][0.536428,0.093772,0][1.41547,-0.316545,-0.638246][0.989433,0.144116,-0.0159058][0.620953,0.121518,0][1.41547,-0.316545,-0.638246][0.989433,0.144116,-0.0159058][0.620953,0.121518,0][1.28833,0.0648337,-0.696318][0.949552,0.306248,-0.0675548][0.665587,0.182823,0][1.39864,-0.182444,-0.266773][0.980022,0.130187,0.150361][0.572894,0.172441,0][1.28833,0.0648337,-0.696318][0.949552,0.306248,-0.0675548][0.665587,0.182823,0][1.41547,-0.316545,-0.638246][0.989433,0.144116,-0.0159058][0.620953,0.121518,0][1.12481,0.0277651,-1.02024][0.824602,0.0738313,-0.560874][0.728972,0.14796,0][1.12481,0.0277651,-1.02024][0.824602,0.0738313,-0.560874][0.728972,0.14796,0][1.07738,0.245709,-0.992728][0.854236,0.243879,-0.459135][0.748787,0.193055,0][1.28833,0.0648337,-0.696318][0.949552,0.306248,-0.0675548][0.665587,0.182823,0][0.474715,0.326208,-1.32356][0.247829,0.872009,-0.422114][0.794148,0.601475,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][0.738339,0.252535,-1.32098][0.149166,-0.978462,0.142691][0.863645,0.597369,0][0.738339,0.252535,-1.32098][0.149166,-0.978462,0.142691][0.863645,0.597369,0][0.286314,0.167673,-1.43036][0.149166,-0.978462,0.142691][0.767422,0.657935,0][0.474715,0.326208,-1.32356][0.247829,0.872009,-0.422114][0.794148,0.601475,0][0.0382612,0.188703,-1.3][-0.342945,0.721306,-0.601752][0.713037,0.653047,0][0.474715,0.326208,-1.32356][0.247829,0.872009,-0.422114][0.794148,0.601475,0][0.286314,0.167673,-1.43036][0.149166,-0.978462,0.142691][0.767422,0.657935,0][0.286314,0.167673,-1.43036][0.149166,-0.978462,0.142691][0.767422,0.657935,0][-0.276602,0.00824666,-1.33686][-0.688523,0.327098,-0.647258][0.661433,0.692395,0][0.0382612,0.188703,-1.3][-0.342945,0.721306,-0.601752][0.713037,0.653047,0][-0.31653,0.31087,-1.27244][-0.125776,-0.143838,-0.981576][0.654061,0.641034,0][0.214301,0.415399,-1.35577][-0.125776,-0.143838,-0.981576][0.733678,0.607611,0][0.0382612,0.188703,-1.3][-0.342945,0.721306,-0.601752][0.713037,0.653047,0][0.0382612,0.188703,-1.3][-0.342945,0.721306,-0.601752][0.713037,0.653047,0][-0.45134,0.018576,-1.22489][-0.342945,0.721306,-0.601752][0.63077,0.682925,0][-0.31653,0.31087,-1.27244][-0.125776,-0.143838,-0.981576][0.654061,0.641034,0][-0.765508,0.260552,-0.940421][-0.598699,0.148093,-0.787164][0.583929,0.640114,0][-0.31653,0.31087,-1.27244][-0.125776,-0.143838,-0.981576][0.654061,0.641034,0][-0.45134,0.018576,-1.22489][-0.342945,0.721306,-0.601752][0.63077,0.682925,0][-0.45134,0.018576,-1.22489][-0.342945,0.721306,-0.601752][0.63077,0.682925,0][-0.764259,-0.110866,-0.874714][-0.766276,0.205979,-0.6086][0.565298,0.681427,0][-0.765508,0.260552,-0.940421][-0.598699,0.148093,-0.787164][0.583929,0.640114,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-0.765508,0.260552,-0.940421][-0.598699,0.148093,-0.787164][0.583929,0.640114,0][-0.764259,-0.110866,-0.874714][-0.766276,0.205979,-0.6086][0.565298,0.681427,0][-0.764259,-0.110866,-0.874714][-0.766276,0.205979,-0.6086][0.565298,0.681427,0][-0.972844,-0.121403,-0.524719][-0.804019,0.366614,-0.468131][0.516479,0.665293,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-1.00689,0.282908,-0.13845][-0.989653,0.0463841,-0.135777][0.50021,0.600963,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-0.972844,-0.121403,-0.524719][-0.804019,0.366614,-0.468131][0.516479,0.665293,0][-0.972844,-0.121403,-0.524719][-0.804019,0.366614,-0.468131][0.516479,0.665293,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-1.00689,0.282908,-0.13845][-0.989653,0.0463841,-0.135777][0.50021,0.600963,0][-0.946526,0.233994,0.242832][-0.985449,0.0500572,0.162434][0.464173,0.577014,0][-1.00689,0.282908,-0.13845][-0.989653,0.0463841,-0.135777][0.50021,0.600963,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-0.970828,-0.215186,0.252865][-0.969316,0.18556,0.161228][0.421331,0.616658,0][-0.946526,0.233994,0.242832][-0.985449,0.0500572,0.162434][0.464173,0.577014,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.946526,0.233994,0.242832][-0.985449,0.0500572,0.162434][0.464173,0.577014,0][-0.970828,-0.215186,0.252865][-0.969316,0.18556,0.161228][0.421331,0.616658,0][-0.970828,-0.215186,0.252865][-0.969316,0.18556,0.161228][0.421331,0.616658,0][-0.776992,-0.311457,0.59272][-0.835091,0.167913,0.523859][0.372769,0.577537,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.776992,-0.311457,0.59272][-0.835091,0.167913,0.523859][0.372769,0.577537,0][-0.514127,-0.27636,0.882218][-0.739029,0.17975,0.64925][0.354714,0.519055,0][-0.514127,-0.27636,0.882218][-0.739029,0.17975,0.64925][0.354714,0.519055,0][-0.504212,0.22576,0.86735][-0.720821,0.0347312,0.69225][0.420987,0.50094,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.154676,0.200258,1.0348][-0.429682,0.0352017,0.902294][0.411922,0.456621,0][-0.504212,0.22576,0.86735][-0.720821,0.0347312,0.69225][0.420987,0.50094,0][-0.514127,-0.27636,0.882218][-0.739029,0.17975,0.64925][0.354714,0.519055,0][-0.514127,-0.27636,0.882218][-0.739029,0.17975,0.64925][0.354714,0.519055,0][-0.148836,-0.333384,1.01718][-0.309733,0.210413,0.927249][0.335526,0.457768,0][-0.154676,0.200258,1.0348][-0.429682,0.0352017,0.902294][0.411922,0.456621,0][0.226445,0.185729,1.09521][-0.15774,-0.0343115,0.986884][0.414955,0.410847,0][-0.154676,0.200258,1.0348][-0.429682,0.0352017,0.902294][0.411922,0.456621,0][-0.148836,-0.333384,1.01718][-0.309733,0.210413,0.927249][0.335526,0.457768,0][-0.148836,-0.333384,1.01718][-0.309733,0.210413,0.927249][0.335526,0.457768,0][0.225698,-0.342576,1.07099][-0.130139,0.274802,0.952653][0.338823,0.394029,0][0.226445,0.185729,1.09521][-0.15774,-0.0343115,0.986884][0.414955,0.410847,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.226445,0.185729,1.09521][-0.15774,-0.0343115,0.986884][0.414955,0.410847,0][0.225698,-0.342576,1.07099][-0.130139,0.274802,0.952653][0.338823,0.394029,0][0.225698,-0.342576,1.07099][-0.130139,0.274802,0.952653][0.338823,0.394029,0][0.5986,-0.389276,1.01208][0.179732,0.228098,0.956905][0.352812,0.330604,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.5986,-0.389276,1.01208][0.179732,0.228098,0.956905][0.352812,0.330604,0][0.935,-0.277595,0.840312][0.391162,0.202555,0.897755][0.401694,0.287064,0][0.935,-0.277595,0.840312][0.391162,0.202555,0.897755][0.401694,0.287064,0][0.958163,0.198977,0.868986][0.422062,-0.0748714,0.90347][0.457112,0.327723,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.958163,0.198977,0.868986][0.422062,-0.0748714,0.90347][0.457112,0.327723,0][0.935,-0.277595,0.840312][0.391162,0.202555,0.897755][0.401694,0.287064,0][1.19954,-0.249811,0.569475][0.702528,0.130572,0.699575][0.447209,0.244976,0][1.19954,-0.249811,0.569475][0.702528,0.130572,0.699575][0.447209,0.244976,0][1.22423,0.224906,0.58668][0.729158,-0.0626359,0.681473][0.492858,0.295728,0][0.958163,0.198977,0.868986][0.422062,-0.0748714,0.90347][0.457112,0.327723,0][1.22423,0.224906,0.58668][0.729158,-0.0626359,0.681473][0.492858,0.295728,0][1.19954,-0.249811,0.569475][0.702528,0.130572,0.699575][0.447209,0.244976,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.40185,0.279541,0.24334][0.886835,-0.160855,0.433185][0.537864,0.273068,0][1.22423,0.224906,0.58668][0.729158,-0.0626359,0.681473][0.492858,0.295728,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.40185,0.279541,0.24334][0.886835,-0.160855,0.433185][0.537864,0.273068,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.39864,-0.182444,-0.266773][0.980022,0.130187,0.150361][0.572894,0.172441,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.39864,-0.182444,-0.266773][0.980022,0.130187,0.150361][0.572894,0.172441,0][1.28833,0.0648337,-0.696318][0.949552,0.306248,-0.0675548][0.665587,0.182823,0][1.28833,0.0648337,-0.696318][0.949552,0.306248,-0.0675548][0.665587,0.182823,0][1.31914,0.383329,-0.692569][0.954502,-0.0889762,-0.284621][0.682329,0.241414,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.31914,0.383329,-0.692569][0.954502,-0.0889762,-0.284621][0.682329,0.241414,0][1.28833,0.0648337,-0.696318][0.949552,0.306248,-0.0675548][0.665587,0.182823,0][1.07738,0.245709,-0.992728][0.854236,0.243879,-0.459135][0.748787,0.193055,0][1.07738,0.245709,-0.992728][0.854236,0.243879,-0.459135][0.748787,0.193055,0][1.12291,0.438309,-0.949779][0.788878,-0.0498868,-0.612522][0.745107,0.234224,0][1.31914,0.383329,-0.692569][0.954502,-0.0889762,-0.284621][0.682329,0.241414,0][0.698093,0.443966,-1.26315][0.460144,0.0092081,-0.887796][0.826098,0.551127,0][1.02395,0.430593,-1.0944][0.460144,0.0092081,-0.887796][0.897591,0.4849,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][0.474715,0.326208,-1.32356][0.247829,0.872009,-0.422114][0.794148,0.601475,0][0.698093,0.443966,-1.26315][0.460144,0.0092081,-0.887796][0.826098,0.551127,0][0.214301,0.415399,-1.35577][-0.125776,-0.143838,-0.981576][0.733678,0.607611,0][0.698093,0.443966,-1.26315][0.460144,0.0092081,-0.887796][0.826098,0.551127,0][0.474715,0.326208,-1.32356][0.247829,0.872009,-0.422114][0.794148,0.601475,0][0.474715,0.326208,-1.32356][0.247829,0.872009,-0.422114][0.794148,0.601475,0][0.0382612,0.188703,-1.3][-0.342945,0.721306,-0.601752][0.713037,0.653047,0][0.214301,0.415399,-1.35577][-0.125776,-0.143838,-0.981576][0.733678,0.607611,0][-0.295548,0.554249,-1.24217][-0.117446,0.333938,-0.935249][0.652031,0.608048,0][0.221028,0.571547,-1.30086][-0.117446,0.333938,-0.935249][0.72327,0.581136,0][0.214301,0.415399,-1.35577][-0.125776,-0.143838,-0.981576][0.733678,0.607611,0][0.214301,0.415399,-1.35577][-0.125776,-0.143838,-0.981576][0.733678,0.607611,0][-0.31653,0.31087,-1.27244][-0.125776,-0.143838,-0.981576][0.654061,0.641034,0][-0.295548,0.554249,-1.24217][-0.117446,0.333938,-0.935249][0.652031,0.608048,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.295548,0.554249,-1.24217][-0.117446,0.333938,-0.935249][0.652031,0.608048,0][-0.31653,0.31087,-1.27244][-0.125776,-0.143838,-0.981576][0.654061,0.641034,0][-0.31653,0.31087,-1.27244][-0.125776,-0.143838,-0.981576][0.654061,0.641034,0][-0.765508,0.260552,-0.940421][-0.598699,0.148093,-0.787164][0.583929,0.640114,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.765508,0.260552,-0.940421][-0.598699,0.148093,-0.787164][0.583929,0.640114,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-0.947389,0.58011,-0.55569][-0.844657,-0.0169197,-0.53504][0.551819,0.594994,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-0.947389,0.58011,-0.55569][-0.844657,-0.0169197,-0.53504][0.551819,0.594994,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-1.00689,0.282908,-0.13845][-0.989653,0.0463841,-0.135777][0.50021,0.600963,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-0.954145,0.560514,0.245388][-0.993422,0.0888294,0.0722634][0.489269,0.554483,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-1.00689,0.282908,-0.13845][-0.989653,0.0463841,-0.135777][0.50021,0.600963,0][-1.00689,0.282908,-0.13845][-0.989653,0.0463841,-0.135777][0.50021,0.600963,0][-0.946526,0.233994,0.242832][-0.985449,0.0500572,0.162434][0.464173,0.577014,0][-0.954145,0.560514,0.245388][-0.993422,0.0888294,0.0722634][0.489269,0.554483,0][-0.954145,0.560514,0.245388][-0.993422,0.0888294,0.0722634][0.489269,0.554483,0][-0.946526,0.233994,0.242832][-0.985449,0.0500572,0.162434][0.464173,0.577014,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.78007,0.575596,0.591235][-0.892599,-0.0228931,0.45027][0.46956,0.52517,0][-0.954145,0.560514,0.245388][-0.993422,0.0888294,0.0722634][0.489269,0.554483,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.78007,0.575596,0.591235][-0.892599,-0.0228931,0.45027][0.46956,0.52517,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.504212,0.22576,0.86735][-0.720821,0.0347312,0.69225][0.420987,0.50094,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.156951,0.576244,1.04658][-0.469495,0.0137148,0.882828][0.451308,0.45652,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.504212,0.22576,0.86735][-0.720821,0.0347312,0.69225][0.420987,0.50094,0][-0.504212,0.22576,0.86735][-0.720821,0.0347312,0.69225][0.420987,0.50094,0][-0.154676,0.200258,1.0348][-0.429682,0.0352017,0.902294][0.411922,0.456621,0][-0.156951,0.576244,1.04658][-0.469495,0.0137148,0.882828][0.451308,0.45652,0][0.227941,0.542896,1.06749][-0.05695,-0.0316194,0.997876][0.453077,0.419866,0][-0.156951,0.576244,1.04658][-0.469495,0.0137148,0.882828][0.451308,0.45652,0][-0.154676,0.200258,1.0348][-0.429682,0.0352017,0.902294][0.411922,0.456621,0][-0.154676,0.200258,1.0348][-0.429682,0.0352017,0.902294][0.411922,0.456621,0][0.226445,0.185729,1.09521][-0.15774,-0.0343115,0.986884][0.414955,0.410847,0][0.227941,0.542896,1.06749][-0.05695,-0.0316194,0.997876][0.453077,0.419866,0][0.227941,0.542896,1.06749][-0.05695,-0.0316194,0.997876][0.453077,0.419866,0][0.226445,0.185729,1.09521][-0.15774,-0.0343115,0.986884][0.414955,0.410847,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.599412,0.566692,1.00782][0.153048,0.0806321,0.984924][0.468115,0.385686,0][0.227941,0.542896,1.06749][-0.05695,-0.0316194,0.997876][0.453077,0.419866,0][0.946431,0.54686,0.851179][0.413902,0.080701,0.906738][0.487256,0.352699,0][0.599412,0.566692,1.00782][0.153048,0.0806321,0.984924][0.468115,0.385686,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.958163,0.198977,0.868986][0.422062,-0.0748714,0.90347][0.457112,0.327723,0][0.946431,0.54686,0.851179][0.413902,0.080701,0.906738][0.487256,0.352699,0][0.946431,0.54686,0.851179][0.413902,0.080701,0.906738][0.487256,0.352699,0][0.958163,0.198977,0.868986][0.422062,-0.0748714,0.90347][0.457112,0.327723,0][1.22423,0.224906,0.58668][0.729158,-0.0626359,0.681473][0.492858,0.295728,0][1.22423,0.224906,0.58668][0.729158,-0.0626359,0.681473][0.492858,0.295728,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][0.946431,0.54686,0.851179][0.413902,0.080701,0.906738][0.487256,0.352699,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][1.22423,0.224906,0.58668][0.729158,-0.0626359,0.681473][0.492858,0.295728,0][1.40185,0.279541,0.24334][0.886835,-0.160855,0.433185][0.537864,0.273068,0][1.40185,0.279541,0.24334][0.886835,-0.160855,0.433185][0.537864,0.273068,0][1.36077,0.563155,0.22258][0.883666,0.160186,0.439858][0.555261,0.304582,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][1.39085,0.550251,-0.206591][0.986915,0.14768,0.0647197][0.608498,0.285525,0][1.36077,0.563155,0.22258][0.883666,0.160186,0.439858][0.555261,0.304582,0][1.40185,0.279541,0.24334][0.886835,-0.160855,0.433185][0.537864,0.273068,0][1.40185,0.279541,0.24334][0.886835,-0.160855,0.433185][0.537864,0.273068,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.39085,0.550251,-0.206591][0.986915,0.14768,0.0647197][0.608498,0.285525,0][1.28428,0.580163,-0.592918][0.947213,0.206417,-0.245314][0.675526,0.281972,0][1.39085,0.550251,-0.206591][0.986915,0.14768,0.0647197][0.608498,0.285525,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.31914,0.383329,-0.692569][0.954502,-0.0889762,-0.284621][0.682329,0.241414,0][1.28428,0.580163,-0.592918][0.947213,0.206417,-0.245314][0.675526,0.281972,0][1.1249,0.586335,-0.846928][0.786211,0.384261,-0.483959][0.747074,0.278155,0][1.28428,0.580163,-0.592918][0.947213,0.206417,-0.245314][0.675526,0.281972,0][1.31914,0.383329,-0.692569][0.954502,-0.0889762,-0.284621][0.682329,0.241414,0][1.31914,0.383329,-0.692569][0.954502,-0.0889762,-0.284621][0.682329,0.241414,0][1.12291,0.438309,-0.949779][0.788878,-0.0498868,-0.612522][0.745107,0.234224,0][1.1249,0.586335,-0.846928][0.786211,0.384261,-0.483959][0.747074,0.278155,0][0.77283,0.583857,-1.16307][0.507739,0.526304,-0.68206][0.819749,0.5053,0][1.04647,0.601524,-0.945738][0.507739,0.526304,-0.68206][0.874474,0.416136,0][1.02395,0.430593,-1.0944][0.460144,0.0092081,-0.887796][0.897591,0.4849,0][1.02395,0.430593,-1.0944][0.460144,0.0092081,-0.887796][0.897591,0.4849,0][0.698093,0.443966,-1.26315][0.460144,0.0092081,-0.887796][0.826098,0.551127,0][0.77283,0.583857,-1.16307][0.507739,0.526304,-0.68206][0.819749,0.5053,0][0.221028,0.571547,-1.30086][-0.117446,0.333938,-0.935249][0.72327,0.581136,0][0.77283,0.583857,-1.16307][0.507739,0.526304,-0.68206][0.819749,0.5053,0][0.698093,0.443966,-1.26315][0.460144,0.0092081,-0.887796][0.826098,0.551127,0][0.698093,0.443966,-1.26315][0.460144,0.0092081,-0.887796][0.826098,0.551127,0][0.214301,0.415399,-1.35577][-0.125776,-0.143838,-0.981576][0.733678,0.607611,0][0.221028,0.571547,-1.30086][-0.117446,0.333938,-0.935249][0.72327,0.581136,0][0.157113,0.742725,-1.24617][-0.117609,0.262141,-0.957836][0.699053,0.560528,0][0.221028,0.571547,-1.30086][-0.117446,0.333938,-0.935249][0.72327,0.581136,0][-0.295548,0.554249,-1.24217][-0.117446,0.333938,-0.935249][0.652031,0.608048,0][-0.295548,0.554249,-1.24217][-0.117446,0.333938,-0.935249][0.652031,0.608048,0][-0.271132,0.754518,-1.18128][-0.134594,0.303243,-0.94336][0.647175,0.582928,0][0.157113,0.742725,-1.24617][-0.117609,0.262141,-0.957836][0.699053,0.560528,0][-0.271132,0.754518,-1.18128][-0.134594,0.303243,-0.94336][0.647175,0.582928,0][-0.295548,0.554249,-1.24217][-0.117446,0.333938,-0.935249][0.652031,0.608048,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.629917,0.784991,-0.866097][-0.578105,0.421254,-0.698813][0.597039,0.582177,0][-0.271132,0.754518,-1.18128][-0.134594,0.303243,-0.94336][0.647175,0.582928,0][-0.629917,0.784991,-0.866097][-0.578105,0.421254,-0.698813][0.597039,0.582177,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.947389,0.58011,-0.55569][-0.844657,-0.0169197,-0.53504][0.551819,0.594994,0][-0.947389,0.58011,-0.55569][-0.844657,-0.0169197,-0.53504][0.551819,0.594994,0][-0.851938,0.808362,-0.510812][-0.758679,0.415861,-0.501463][0.559329,0.573182,0][-0.629917,0.784991,-0.866097][-0.578105,0.421254,-0.698813][0.597039,0.582177,0][-0.851938,0.808362,-0.510812][-0.758679,0.415861,-0.501463][0.559329,0.573182,0][-0.947389,0.58011,-0.55569][-0.844657,-0.0169197,-0.53504][0.551819,0.594994,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-0.891263,0.79835,-0.141957][-0.929196,0.358628,-0.08933][0.530418,0.558367,0][-0.851938,0.808362,-0.510812][-0.758679,0.415861,-0.501463][0.559329,0.573182,0][-0.851611,0.79024,0.212409][-0.926214,0.360016,0.111878][0.506096,0.539501,0][-0.891263,0.79835,-0.141957][-0.929196,0.358628,-0.08933][0.530418,0.558367,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-0.954145,0.560514,0.245388][-0.993422,0.0888294,0.0722634][0.489269,0.554483,0][-0.851611,0.79024,0.212409][-0.926214,0.360016,0.111878][0.506096,0.539501,0][-0.851611,0.79024,0.212409][-0.926214,0.360016,0.111878][0.506096,0.539501,0][-0.954145,0.560514,0.245388][-0.993422,0.0888294,0.0722634][0.489269,0.554483,0][-0.78007,0.575596,0.591235][-0.892599,-0.0228931,0.45027][0.46956,0.52517,0][-0.78007,0.575596,0.591235][-0.892599,-0.0228931,0.45027][0.46956,0.52517,0][-0.683108,0.786988,0.524631][-0.767801,0.484325,0.419419][0.488427,0.514867,0][-0.851611,0.79024,0.212409][-0.926214,0.360016,0.111878][0.506096,0.539501,0][-0.683108,0.786988,0.524631][-0.767801,0.484325,0.419419][0.488427,0.514867,0][-0.78007,0.575596,0.591235][-0.892599,-0.0228931,0.45027][0.46956,0.52517,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.420788,0.800087,0.754295][-0.585678,0.496559,0.640633][0.479138,0.48625,0][-0.683108,0.786988,0.524631][-0.767801,0.484325,0.419419][0.488427,0.514867,0][-0.116412,0.78566,0.914627][-0.38714,0.492771,0.779295][0.473996,0.456715,0][-0.420788,0.800087,0.754295][-0.585678,0.496559,0.640633][0.479138,0.48625,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.156951,0.576244,1.04658][-0.469495,0.0137148,0.882828][0.451308,0.45652,0][-0.116412,0.78566,0.914627][-0.38714,0.492771,0.779295][0.473996,0.456715,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][-0.116412,0.78566,0.914627][-0.38714,0.492771,0.779295][0.473996,0.456715,0][-0.156951,0.576244,1.04658][-0.469495,0.0137148,0.882828][0.451308,0.45652,0][-0.156951,0.576244,1.04658][-0.469495,0.0137148,0.882828][0.451308,0.45652,0][0.227941,0.542896,1.06749][-0.05695,-0.0316194,0.997876][0.453077,0.419866,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][0.227941,0.542896,1.06749][-0.05695,-0.0316194,0.997876][0.453077,0.419866,0][0.599412,0.566692,1.00782][0.153048,0.0806321,0.984924][0.468115,0.385686,0][0.599412,0.566692,1.00782][0.153048,0.0806321,0.984924][0.468115,0.385686,0][0.579522,0.790238,0.944215][0.100749,0.280554,0.954536][0.487578,0.396129,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][0.579522,0.790238,0.944215][0.100749,0.280554,0.954536][0.487578,0.396129,0][0.599412,0.566692,1.00782][0.153048,0.0806321,0.984924][0.468115,0.385686,0][0.599412,0.566692,1.00782][0.153048,0.0806321,0.984924][0.468115,0.385686,0][0.946431,0.54686,0.851179][0.413902,0.080701,0.906738][0.487256,0.352699,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][0.946431,0.54686,0.851179][0.413902,0.080701,0.906738][0.487256,0.352699,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][1.11068,0.79354,0.499586][0.703373,0.39688,0.589706][0.533794,0.348645,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][1.2769,0.766739,0.198327][0.819936,0.391572,0.417583][0.565124,0.328502,0][1.11068,0.79354,0.499586][0.703373,0.39688,0.589706][0.533794,0.348645,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][1.36077,0.563155,0.22258][0.883666,0.160186,0.439858][0.555261,0.304582,0][1.2769,0.766739,0.198327][0.819936,0.391572,0.417583][0.565124,0.328502,0][1.31437,0.759179,-0.175366][0.917755,0.388125,0.0841725][0.610321,0.316692,0][1.2769,0.766739,0.198327][0.819936,0.391572,0.417583][0.565124,0.328502,0][1.36077,0.563155,0.22258][0.883666,0.160186,0.439858][0.555261,0.304582,0][1.36077,0.563155,0.22258][0.883666,0.160186,0.439858][0.555261,0.304582,0][1.39085,0.550251,-0.206591][0.986915,0.14768,0.0647197][0.608498,0.285525,0][1.31437,0.759179,-0.175366][0.917755,0.388125,0.0841725][0.610321,0.316692,0][1.2414,0.762931,-0.505368][0.910731,0.362849,-0.197253][0.663648,0.316685,0][1.31437,0.759179,-0.175366][0.917755,0.388125,0.0841725][0.610321,0.316692,0][1.39085,0.550251,-0.206591][0.986915,0.14768,0.0647197][0.608498,0.285525,0][1.39085,0.550251,-0.206591][0.986915,0.14768,0.0647197][0.608498,0.285525,0][1.28428,0.580163,-0.592918][0.947213,0.206417,-0.245314][0.675526,0.281972,0][1.2414,0.762931,-0.505368][0.910731,0.362849,-0.197253][0.663648,0.316685,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.2414,0.762931,-0.505368][0.910731,0.362849,-0.197253][0.663648,0.316685,0][1.28428,0.580163,-0.592918][0.947213,0.206417,-0.245314][0.675526,0.281972,0][1.28428,0.580163,-0.592918][0.947213,0.206417,-0.245314][0.675526,0.281972,0][1.1249,0.586335,-0.846928][0.786211,0.384261,-0.483959][0.747074,0.278155,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][1.04647,0.601524,-0.945738][0.507739,0.526304,-0.68206][0.874474,0.416136,0][0.77283,0.583857,-1.16307][0.507739,0.526304,-0.68206][0.819749,0.5053,0][0.77283,0.583857,-1.16307][0.507739,0.526304,-0.68206][0.819749,0.5053,0][0.553306,0.751882,-1.14643][0.353484,0.537673,-0.765478][0.751343,0.509597,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][0.553306,0.751882,-1.14643][0.353484,0.537673,-0.765478][0.751343,0.509597,0][0.77283,0.583857,-1.16307][0.507739,0.526304,-0.68206][0.819749,0.5053,0][0.221028,0.571547,-1.30086][-0.117446,0.333938,-0.935249][0.72327,0.581136,0][0.221028,0.571547,-1.30086][-0.117446,0.333938,-0.935249][0.72327,0.581136,0][0.157113,0.742725,-1.24617][-0.117609,0.262141,-0.957836][0.699053,0.560528,0][0.553306,0.751882,-1.14643][0.353484,0.537673,-0.765478][0.751343,0.509597,0][0.0400103,0.920181,-1.09008][-0.101023,0.618666,-0.779132][0.666678,0.543227,0][0.157113,0.742725,-1.24617][-0.117609,0.262141,-0.957836][0.699053,0.560528,0][-0.271132,0.754518,-1.18128][-0.134594,0.303243,-0.94336][0.647175,0.582928,0][-0.271132,0.754518,-1.18128][-0.134594,0.303243,-0.94336][0.647175,0.582928,0][-0.266962,0.929612,-0.982765][-0.202965,0.73646,-0.645316][0.631836,0.558238,0][0.0400103,0.920181,-1.09008][-0.101023,0.618666,-0.779132][0.666678,0.543227,0][-0.266962,0.929612,-0.982765][-0.202965,0.73646,-0.645316][0.631836,0.558238,0][-0.271132,0.754518,-1.18128][-0.134594,0.303243,-0.94336][0.647175,0.582928,0][-0.629917,0.784991,-0.866097][-0.578105,0.421254,-0.698813][0.597039,0.582177,0][-0.629917,0.784991,-0.866097][-0.578105,0.421254,-0.698813][0.597039,0.582177,0][-0.514345,0.939968,-0.721305][-0.452189,0.765258,-0.458154][0.595054,0.558431,0][-0.266962,0.929612,-0.982765][-0.202965,0.73646,-0.645316][0.631836,0.558238,0][-0.514345,0.939968,-0.721305][-0.452189,0.765258,-0.458154][0.595054,0.558431,0][-0.629917,0.784991,-0.866097][-0.578105,0.421254,-0.698813][0.597039,0.582177,0][-0.851938,0.808362,-0.510812][-0.758679,0.415861,-0.501463][0.559329,0.573182,0][-0.851938,0.808362,-0.510812][-0.758679,0.415861,-0.501463][0.559329,0.573182,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.514345,0.939968,-0.721305][-0.452189,0.765258,-0.458154][0.595054,0.558431,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.851938,0.808362,-0.510812][-0.758679,0.415861,-0.501463][0.559329,0.573182,0][-0.891263,0.79835,-0.141957][-0.929196,0.358628,-0.08933][0.530418,0.558367,0][-0.891263,0.79835,-0.141957][-0.929196,0.358628,-0.08933][0.530418,0.558367,0][-0.73888,0.946312,-0.139588][-0.688451,0.711288,-0.141792][0.540515,0.542654,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.73888,0.946312,-0.139588][-0.688451,0.711288,-0.141792][0.540515,0.542654,0][-0.891263,0.79835,-0.141957][-0.929196,0.358628,-0.08933][0.530418,0.558367,0][-0.891263,0.79835,-0.141957][-0.929196,0.358628,-0.08933][0.530418,0.558367,0][-0.851611,0.79024,0.212409][-0.926214,0.360016,0.111878][0.506096,0.539501,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.851611,0.79024,0.212409][-0.926214,0.360016,0.111878][0.506096,0.539501,0][-0.683108,0.786988,0.524631][-0.767801,0.484325,0.419419][0.488427,0.514867,0][-0.683108,0.786988,0.524631][-0.767801,0.484325,0.419419][0.488427,0.514867,0][-0.542669,0.932767,0.419673][-0.562612,0.765966,0.311069][0.5056,0.505584,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.542669,0.932767,0.419673][-0.562612,0.765966,0.311069][0.5056,0.505584,0][-0.683108,0.786988,0.524631][-0.767801,0.484325,0.419419][0.488427,0.514867,0][-0.420788,0.800087,0.754295][-0.585678,0.496559,0.640633][0.479138,0.48625,0][-0.420788,0.800087,0.754295][-0.585678,0.496559,0.640633][0.479138,0.48625,0][-0.322489,0.940983,0.612384][-0.435207,0.77134,0.464359][0.497845,0.481755,0][-0.542669,0.932767,0.419673][-0.562612,0.765966,0.311069][0.5056,0.505584,0][-0.0588237,0.932847,0.731649][-0.244409,0.767466,0.592673][0.495167,0.456825,0][-0.322489,0.940983,0.612384][-0.435207,0.77134,0.464359][0.497845,0.481755,0][-0.420788,0.800087,0.754295][-0.585678,0.496559,0.640633][0.479138,0.48625,0][-0.420788,0.800087,0.754295][-0.585678,0.496559,0.640633][0.479138,0.48625,0][-0.116412,0.78566,0.914627][-0.38714,0.492771,0.779295][0.473996,0.456715,0][-0.0588237,0.932847,0.731649][-0.244409,0.767466,0.592673][0.495167,0.456825,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][-0.0588237,0.932847,0.731649][-0.244409,0.767466,0.592673][0.495167,0.456825,0][-0.116412,0.78566,0.914627][-0.38714,0.492771,0.779295][0.473996,0.456715,0][-0.116412,0.78566,0.914627][-0.38714,0.492771,0.779295][0.473996,0.456715,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][0.51758,0.9304,0.755673][0.0601492,0.800934,0.595724][0.506557,0.40679,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][0.579522,0.790238,0.944215][0.100749,0.280554,0.954536][0.487578,0.396129,0][0.51758,0.9304,0.755673][0.0601492,0.800934,0.595724][0.506557,0.40679,0][0.51758,0.9304,0.755673][0.0601492,0.800934,0.595724][0.506557,0.40679,0][0.579522,0.790238,0.944215][0.100749,0.280554,0.954536][0.487578,0.396129,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][0.782506,0.959753,0.625939][0.239418,0.719667,0.651735][0.523577,0.385656,0][0.51758,0.9304,0.755673][0.0601492,0.800934,0.595724][0.506557,0.40679,0][0.782506,0.959753,0.625939][0.239418,0.719667,0.651735][0.523577,0.385656,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][1.11068,0.79354,0.499586][0.703373,0.39688,0.589706][0.533794,0.348645,0][1.11068,0.79354,0.499586][0.703373,0.39688,0.589706][0.533794,0.348645,0][0.969255,0.971786,0.3981][0.536305,0.696733,0.476381][0.547471,0.369942,0][0.782506,0.959753,0.625939][0.239418,0.719667,0.651735][0.523577,0.385656,0][1.10937,0.932771,0.143977][0.67527,0.68764,0.266761][0.574237,0.354086,0][0.969255,0.971786,0.3981][0.536305,0.696733,0.476381][0.547471,0.369942,0][1.11068,0.79354,0.499586][0.703373,0.39688,0.589706][0.533794,0.348645,0][1.11068,0.79354,0.499586][0.703373,0.39688,0.589706][0.533794,0.348645,0][1.2769,0.766739,0.198327][0.819936,0.391572,0.417583][0.565124,0.328502,0][1.10937,0.932771,0.143977][0.67527,0.68764,0.266761][0.574237,0.354086,0][1.16716,0.921619,-0.141217][0.681482,0.723555,0.109778][0.608457,0.345989,0][1.10937,0.932771,0.143977][0.67527,0.68764,0.266761][0.574237,0.354086,0][1.2769,0.766739,0.198327][0.819936,0.391572,0.417583][0.565124,0.328502,0][1.2769,0.766739,0.198327][0.819936,0.391572,0.417583][0.565124,0.328502,0][1.31437,0.759179,-0.175366][0.917755,0.388125,0.0841725][0.610321,0.316692,0][1.16716,0.921619,-0.141217][0.681482,0.723555,0.109778][0.608457,0.345989,0][1.11572,0.928727,-0.434436][0.72474,0.68008,-0.110653][0.651293,0.351832,0][1.16716,0.921619,-0.141217][0.681482,0.723555,0.109778][0.608457,0.345989,0][1.31437,0.759179,-0.175366][0.917755,0.388125,0.0841725][0.610321,0.316692,0][1.31437,0.759179,-0.175366][0.917755,0.388125,0.0841725][0.610321,0.316692,0][1.2414,0.762931,-0.505368][0.910731,0.362849,-0.197253][0.663648,0.316685,0][1.11572,0.928727,-0.434436][0.72474,0.68008,-0.110653][0.651293,0.351832,0][0.958629,0.937099,-0.682777][0.647336,0.656446,-0.387343][0.698872,0.381226,0][1.11572,0.928727,-0.434436][0.72474,0.68008,-0.110653][0.651293,0.351832,0][1.2414,0.762931,-0.505368][0.910731,0.362849,-0.197253][0.663648,0.316685,0][1.2414,0.762931,-0.505368][0.910731,0.362849,-0.197253][0.663648,0.316685,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][0.958629,0.937099,-0.682777][0.647336,0.656446,-0.387343][0.698872,0.381226,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.958629,0.937099,-0.682777][0.647336,0.656446,-0.387343][0.698872,0.381226,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][0.982824,0.750496,-0.951341][0.656068,0.73851,-0.155493][0.824727,0.392516,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.982824,0.750496,-0.951341][0.656068,0.73851,-0.155493][0.824727,0.392516,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][0.646215,0.915806,-0.961125][0.396327,0.684391,-0.611992][0.720244,0.464175,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.646215,0.915806,-0.961125][0.396327,0.684391,-0.611992][0.720244,0.464175,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][0.553306,0.751882,-1.14643][0.353484,0.537673,-0.765478][0.751343,0.509597,0][0.553306,0.751882,-1.14643][0.353484,0.537673,-0.765478][0.751343,0.509597,0][0.363688,0.930556,-1.06518][0.295432,0.637204,-0.711822][0.696407,0.509629,0][0.646215,0.915806,-0.961125][0.396327,0.684391,-0.611992][0.720244,0.464175,0][0.363688,0.930556,-1.06518][0.295432,0.637204,-0.711822][0.696407,0.509629,0][0.553306,0.751882,-1.14643][0.353484,0.537673,-0.765478][0.751343,0.509597,0][0.157113,0.742725,-1.24617][-0.117609,0.262141,-0.957836][0.699053,0.560528,0][0.157113,0.742725,-1.24617][-0.117609,0.262141,-0.957836][0.699053,0.560528,0][0.0400103,0.920181,-1.09008][-0.101023,0.618666,-0.779132][0.666678,0.543227,0][0.363688,0.930556,-1.06518][0.295432,0.637204,-0.711822][0.696407,0.509629,0][-0.00325771,1.04564,-0.877414][-0.157979,0.836071,-0.525384][0.642845,0.525739,0][0.0400103,0.920181,-1.09008][-0.101023,0.618666,-0.779132][0.666678,0.543227,0][-0.266962,0.929612,-0.982765][-0.202965,0.73646,-0.645316][0.631836,0.558238,0][-0.266962,0.929612,-0.982765][-0.202965,0.73646,-0.645316][0.631836,0.558238,0][-0.219057,1.04255,-0.762264][-0.228301,0.885768,-0.404096][0.617415,0.535958,0][-0.00325771,1.04564,-0.877414][-0.157979,0.836071,-0.525384][0.642845,0.525739,0][-0.219057,1.04255,-0.762264][-0.228301,0.885768,-0.404096][0.617415,0.535958,0][-0.266962,0.929612,-0.982765][-0.202965,0.73646,-0.645316][0.631836,0.558238,0][-0.514345,0.939968,-0.721305][-0.452189,0.765258,-0.458154][0.595054,0.558431,0][-0.514345,0.939968,-0.721305][-0.452189,0.765258,-0.458154][0.595054,0.558431,0][-0.352419,1.07734,-0.581764][-0.349272,0.83785,-0.419544][0.594562,0.533706,0][-0.219057,1.04255,-0.762264][-0.228301,0.885768,-0.404096][0.617415,0.535958,0][-0.352419,1.07734,-0.581764][-0.349272,0.83785,-0.419544][0.594562,0.533706,0][-0.514345,0.939968,-0.721305][-0.452189,0.765258,-0.458154][0.595054,0.558431,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.456088,1.09103,-0.368586][-0.460645,0.842878,-0.278141][0.572719,0.529556,0][-0.352419,1.07734,-0.581764][-0.349272,0.83785,-0.419544][0.594562,0.533706,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.456088,1.09103,-0.368586][-0.460645,0.842878,-0.278141][0.572719,0.529556,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.73888,0.946312,-0.139588][-0.688451,0.711288,-0.141792][0.540515,0.542654,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.73888,0.946312,-0.139588][-0.688451,0.711288,-0.141792][0.540515,0.542654,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.470635,1.08677,0.0879597][-0.557453,0.826227,0.0812038][0.537214,0.510187,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.470635,1.08677,0.0879597][-0.557453,0.826227,0.0812038][0.537214,0.510187,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.542669,0.932767,0.419673][-0.562612,0.765966,0.311069][0.5056,0.505584,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.542669,0.932767,0.419673][-0.562612,0.765966,0.311069][0.5056,0.505584,0][-0.322489,0.940983,0.612384][-0.435207,0.77134,0.464359][0.497845,0.481755,0][-0.322489,0.940983,0.612384][-0.435207,0.77134,0.464359][0.497845,0.481755,0][-0.229566,1.05559,0.487344][-0.403498,0.803889,0.436981][0.513863,0.477531,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.229566,1.05559,0.487344][-0.403498,0.803889,0.436981][0.513863,0.477531,0][-0.322489,0.940983,0.612384][-0.435207,0.77134,0.464359][0.497845,0.481755,0][-0.0588237,0.932847,0.731649][-0.244409,0.767466,0.592673][0.495167,0.456825,0][-0.0588237,0.932847,0.731649][-0.244409,0.767466,0.592673][0.495167,0.456825,0][-0.00967871,1.04691,0.584091][-0.211376,0.806103,0.552737][0.511957,0.456879,0][-0.229566,1.05559,0.487344][-0.403498,0.803889,0.436981][0.513863,0.477531,0][-0.00967871,1.04691,0.584091][-0.211376,0.806103,0.552737][0.511957,0.456879,0][-0.0588237,0.932847,0.731649][-0.244409,0.767466,0.592673][0.495167,0.456825,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][0.221317,1.07113,0.573192][-0.0615162,0.833715,0.548758][0.519377,0.437825,0][-0.00967871,1.04691,0.584091][-0.211376,0.806103,0.552737][0.511957,0.456879,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.221317,1.07113,0.573192][-0.0615162,0.833715,0.548758][0.519377,0.437825,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][0.51758,0.9304,0.755673][0.0601492,0.800934,0.595724][0.506557,0.40679,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.51758,0.9304,0.755673][0.0601492,0.800934,0.595724][0.506557,0.40679,0][0.782506,0.959753,0.625939][0.239418,0.719667,0.651735][0.523577,0.385656,0][0.782506,0.959753,0.625939][0.239418,0.719667,0.651735][0.523577,0.385656,0][0.645774,1.08942,0.437068][0.171524,0.865742,0.470182][0.541194,0.403341,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.645774,1.08942,0.437068][0.171524,0.865742,0.470182][0.541194,0.403341,0][0.782506,0.959753,0.625939][0.239418,0.719667,0.651735][0.523577,0.385656,0][0.969255,0.971786,0.3981][0.536305,0.696733,0.476381][0.547471,0.369942,0][0.969255,0.971786,0.3981][0.536305,0.696733,0.476381][0.547471,0.369942,0][0.816626,1.10807,0.286014][0.349149,0.796735,0.493263][0.558981,0.390146,0][0.645774,1.08942,0.437068][0.171524,0.865742,0.470182][0.541194,0.403341,0][0.932623,1.09584,0.0846249][0.531639,0.806971,0.257212][0.581013,0.380412,0][0.816626,1.10807,0.286014][0.349149,0.796735,0.493263][0.558981,0.390146,0][0.969255,0.971786,0.3981][0.536305,0.696733,0.476381][0.547471,0.369942,0][0.969255,0.971786,0.3981][0.536305,0.696733,0.476381][0.547471,0.369942,0][1.10937,0.932771,0.143977][0.67527,0.68764,0.266761][0.574237,0.354086,0][0.932623,1.09584,0.0846249][0.531639,0.806971,0.257212][0.581013,0.380412,0][0.977926,1.06594,-0.144962][0.671081,0.74051,0.0359965][0.607925,0.375979,0][0.932623,1.09584,0.0846249][0.531639,0.806971,0.257212][0.581013,0.380412,0][1.10937,0.932771,0.143977][0.67527,0.68764,0.266761][0.574237,0.354086,0][1.10937,0.932771,0.143977][0.67527,0.68764,0.266761][0.574237,0.354086,0][1.16716,0.921619,-0.141217][0.681482,0.723555,0.109778][0.608457,0.345989,0][0.977926,1.06594,-0.144962][0.671081,0.74051,0.0359965][0.607925,0.375979,0][0.962576,1.05055,-0.380056][0.605042,0.790944,-0.0912731][0.639121,0.380165,0][0.977926,1.06594,-0.144962][0.671081,0.74051,0.0359965][0.607925,0.375979,0][1.16716,0.921619,-0.141217][0.681482,0.723555,0.109778][0.608457,0.345989,0][1.16716,0.921619,-0.141217][0.681482,0.723555,0.109778][0.608457,0.345989,0][1.11572,0.928727,-0.434436][0.72474,0.68008,-0.110653][0.651293,0.351832,0][0.962576,1.05055,-0.380056][0.605042,0.790944,-0.0912731][0.639121,0.380165,0][0.962576,1.05055,-0.380056][0.605042,0.790944,-0.0912731][0.639121,0.380165,0][1.11572,0.928727,-0.434436][0.72474,0.68008,-0.110653][0.651293,0.351832,0][0.958629,0.937099,-0.682777][0.647336,0.656446,-0.387343][0.698872,0.381226,0][0.958629,0.937099,-0.682777][0.647336,0.656446,-0.387343][0.698872,0.381226,0][0.834829,1.07025,-0.576907][0.571768,0.765756,-0.294447][0.665223,0.404791,0][0.962576,1.05055,-0.380056][0.605042,0.790944,-0.0912731][0.639121,0.380165,0][0.834829,1.07025,-0.576907][0.571768,0.765756,-0.294447][0.665223,0.404791,0][0.958629,0.937099,-0.682777][0.647336,0.656446,-0.387343][0.698872,0.381226,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.6792,1.07552,-0.714919][0.43394,0.774815,-0.459737][0.676965,0.436114,0][0.834829,1.07025,-0.576907][0.571768,0.765756,-0.294447][0.665223,0.404791,0][0.6792,1.07552,-0.714919][0.43394,0.774815,-0.459737][0.676965,0.436114,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.646215,0.915806,-0.961125][0.396327,0.684391,-0.611992][0.720244,0.464175,0][0.646215,0.915806,-0.961125][0.396327,0.684391,-0.611992][0.720244,0.464175,0][0.502624,1.07402,-0.818587][0.313951,0.776774,-0.545946][0.676737,0.467281,0][0.6792,1.07552,-0.714919][0.43394,0.774815,-0.459737][0.676965,0.436114,0][0.502624,1.07402,-0.818587][0.313951,0.776774,-0.545946][0.676737,0.467281,0][0.646215,0.915806,-0.961125][0.396327,0.684391,-0.611992][0.720244,0.464175,0][0.363688,0.930556,-1.06518][0.295432,0.637204,-0.711822][0.696407,0.509629,0][0.363688,0.930556,-1.06518][0.295432,0.637204,-0.711822][0.696407,0.509629,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][0.502624,1.07402,-0.818587][0.313951,0.776774,-0.545946][0.676737,0.467281,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][0.363688,0.930556,-1.06518][0.295432,0.637204,-0.711822][0.696407,0.509629,0][0.0400103,0.920181,-1.09008][-0.101023,0.618666,-0.779132][0.666678,0.543227,0][0.0400103,0.920181,-1.09008][-0.101023,0.618666,-0.779132][0.666678,0.543227,0][-0.00325771,1.04564,-0.877414][-0.157979,0.836071,-0.525384][0.642845,0.525739,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][-0.00325771,1.04564,-0.877414][-0.157979,0.836071,-0.525384][0.642845,0.525739,0][-0.219057,1.04255,-0.762264][-0.228301,0.885768,-0.404096][0.617415,0.535958,0][-0.219057,1.04255,-0.762264][-0.228301,0.885768,-0.404096][0.617415,0.535958,0][-0.0737597,1.1822,-0.559671][-0.24993,0.87166,-0.421596][0.60877,0.507533,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][-0.0737597,1.1822,-0.559671][-0.24993,0.87166,-0.421596][0.60877,0.507533,0][-0.219057,1.04255,-0.762264][-0.228301,0.885768,-0.404096][0.617415,0.535958,0][-0.352419,1.07734,-0.581764][-0.349272,0.83785,-0.419544][0.594562,0.533706,0][-0.352419,1.07734,-0.581764][-0.349272,0.83785,-0.419544][0.594562,0.533706,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][-0.0737597,1.1822,-0.559671][-0.24993,0.87166,-0.421596][0.60877,0.507533,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][-0.352419,1.07734,-0.581764][-0.349272,0.83785,-0.419544][0.594562,0.533706,0][-0.456088,1.09103,-0.368586][-0.460645,0.842878,-0.278141][0.572719,0.529556,0][-0.456088,1.09103,-0.368586][-0.460645,0.842878,-0.278141][0.572719,0.529556,0][-0.263784,1.18398,-0.299314][-0.368231,0.908625,-0.196993][0.577314,0.50945,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][-0.263784,1.18398,-0.299314][-0.368231,0.908625,-0.196993][0.577314,0.50945,0][-0.456088,1.09103,-0.368586][-0.460645,0.842878,-0.278141][0.572719,0.529556,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.287426,1.18577,-0.137853][-0.412059,0.908434,-0.0703933][0.563458,0.503933,0][-0.263784,1.18398,-0.299314][-0.368231,0.908625,-0.196993][0.577314,0.50945,0][-0.262103,1.18578,0.0217196][-0.413741,0.908029,0.0655876][0.551919,0.495355,0][-0.287426,1.18577,-0.137853][-0.412059,0.908434,-0.0703933][0.563458,0.503933,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.470635,1.08677,0.0879597][-0.557453,0.826227,0.0812038][0.537214,0.510187,0][-0.262103,1.18578,0.0217196][-0.413741,0.908029,0.0655876][0.551919,0.495355,0][-0.189569,1.18527,0.164849][-0.370802,0.908819,0.191192][0.543282,0.484252,0][-0.262103,1.18578,0.0217196][-0.413741,0.908029,0.0655876][0.551919,0.495355,0][-0.470635,1.08677,0.0879597][-0.557453,0.826227,0.0812038][0.537214,0.510187,0][-0.470635,1.08677,0.0879597][-0.557453,0.826227,0.0812038][0.537214,0.510187,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.189569,1.18527,0.164849][-0.370802,0.908819,0.191192][0.543282,0.484252,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][-0.189569,1.18527,0.164849][-0.370802,0.908819,0.191192][0.543282,0.484252,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.229566,1.05559,0.487344][-0.403498,0.803889,0.436981][0.513863,0.477531,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][-0.229566,1.05559,0.487344][-0.403498,0.803889,0.436981][0.513863,0.477531,0][-0.00967871,1.04691,0.584091][-0.211376,0.806103,0.552737][0.511957,0.456879,0][-0.00967871,1.04691,0.584091][-0.211376,0.806103,0.552737][0.511957,0.456879,0][0.0692243,1.18753,0.340242][-0.212971,0.874659,0.435447][0.537468,0.457417,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][0.0692243,1.18753,0.340242][-0.212971,0.874659,0.435447][0.537468,0.457417,0][-0.00967871,1.04691,0.584091][-0.211376,0.806103,0.552737][0.511957,0.456879,0][0.221317,1.07113,0.573192][-0.0615162,0.833715,0.548758][0.519377,0.437825,0][0.221317,1.07113,0.573192][-0.0615162,0.833715,0.548758][0.519377,0.437825,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.0692243,1.18753,0.340242][-0.212971,0.874659,0.435447][0.537468,0.457417,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.221317,1.07113,0.573192][-0.0615162,0.833715,0.548758][0.519377,0.437825,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.382664,1.18994,0.335564][0.0727824,0.876075,0.47665][0.546421,0.430687,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.522348,1.19093,0.266249][0.209344,0.876082,0.434345][0.55599,0.419723,0][0.382664,1.18994,0.335564][0.0727824,0.876075,0.47665][0.546421,0.430687,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.645774,1.08942,0.437068][0.171524,0.865742,0.470182][0.541194,0.403341,0][0.522348,1.19093,0.266249][0.209344,0.876082,0.434345][0.55599,0.419723,0][0.63968,1.20062,0.159035][0.249863,0.900919,0.354844][0.568892,0.411282,0][0.522348,1.19093,0.266249][0.209344,0.876082,0.434345][0.55599,0.419723,0][0.645774,1.08942,0.437068][0.171524,0.865742,0.470182][0.541194,0.403341,0][0.645774,1.08942,0.437068][0.171524,0.865742,0.470182][0.541194,0.403341,0][0.816626,1.10807,0.286014][0.349149,0.796735,0.493263][0.558981,0.390146,0][0.63968,1.20062,0.159035][0.249863,0.900919,0.354844][0.568892,0.411282,0][0.733311,1.20411,0.0204345][0.313009,0.920315,0.234616][0.584692,0.405109,0][0.63968,1.20062,0.159035][0.249863,0.900919,0.354844][0.568892,0.411282,0][0.816626,1.10807,0.286014][0.349149,0.796735,0.493263][0.558981,0.390146,0][0.816626,1.10807,0.286014][0.349149,0.796735,0.493263][0.558981,0.390146,0][0.932623,1.09584,0.0846249][0.531639,0.806971,0.257212][0.581013,0.380412,0][0.733311,1.20411,0.0204345][0.313009,0.920315,0.234616][0.584692,0.405109,0][0.757203,1.19222,-0.145382][0.475951,0.879454,0.00554324][0.602915,0.405599,0][0.733311,1.20411,0.0204345][0.313009,0.920315,0.234616][0.584692,0.405109,0][0.932623,1.09584,0.0846249][0.531639,0.806971,0.257212][0.581013,0.380412,0][0.932623,1.09584,0.0846249][0.531639,0.806971,0.257212][0.581013,0.380412,0][0.977926,1.06594,-0.144962][0.671081,0.74051,0.0359965][0.607925,0.375979,0][0.757203,1.19222,-0.145382][0.475951,0.879454,0.00554324][0.602915,0.405599,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.757203,1.19222,-0.145382][0.475951,0.879454,0.00554324][0.602915,0.405599,0][0.977926,1.06594,-0.144962][0.671081,0.74051,0.0359965][0.607925,0.375979,0][0.977926,1.06594,-0.144962][0.671081,0.74051,0.0359965][0.607925,0.375979,0][0.962576,1.05055,-0.380056][0.605042,0.790944,-0.0912731][0.639121,0.380165,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.962576,1.05055,-0.380056][0.605042,0.790944,-0.0912731][0.639121,0.380165,0][0.834829,1.07025,-0.576907][0.571768,0.765756,-0.294447][0.665223,0.404791,0][0.834829,1.07025,-0.576907][0.571768,0.765756,-0.294447][0.665223,0.404791,0][0.657516,1.19428,-0.461114][0.462891,0.860472,-0.212885][0.636885,0.426891,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.657516,1.19428,-0.461114][0.462891,0.860472,-0.212885][0.636885,0.426891,0][0.834829,1.07025,-0.576907][0.571768,0.765756,-0.294447][0.665223,0.404791,0][0.6792,1.07552,-0.714919][0.43394,0.774815,-0.459737][0.676965,0.436114,0][0.6792,1.07552,-0.714919][0.43394,0.774815,-0.459737][0.676965,0.436114,0][0.539472,1.18697,-0.579871][0.32625,0.866581,-0.377622][0.645962,0.446609,0][0.657516,1.19428,-0.461114][0.462891,0.860472,-0.212885][0.636885,0.426891,0][0.539472,1.18697,-0.579871][0.32625,0.866581,-0.377622][0.645962,0.446609,0][0.6792,1.07552,-0.714919][0.43394,0.774815,-0.459737][0.676965,0.436114,0][0.502624,1.07402,-0.818587][0.313951,0.776774,-0.545946][0.676737,0.467281,0][0.502624,1.07402,-0.818587][0.313951,0.776774,-0.545946][0.676737,0.467281,0][0.389452,1.18434,-0.653531][0.202812,0.872667,-0.444207][0.645738,0.467948,0][0.539472,1.18697,-0.579871][0.32625,0.866581,-0.377622][0.645962,0.446609,0][0.389452,1.18434,-0.653531][0.202812,0.872667,-0.444207][0.645738,0.467948,0][0.502624,1.07402,-0.818587][0.313951,0.776774,-0.545946][0.676737,0.467281,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][0.228653,1.18935,-0.670112][0.0745708,0.887439,-0.454853][0.637205,0.485906,0][0.389452,1.18434,-0.653531][0.202812,0.872667,-0.444207][0.645738,0.467948,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][0.228653,1.18935,-0.670112][0.0745708,0.887439,-0.454853][0.637205,0.485906,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][-0.00325771,1.04564,-0.877414][-0.157979,0.836071,-0.525384][0.642845,0.525739,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][0.13936,1.26071,-0.411926][-0.168191,0.950214,-0.262307][0.606592,0.479609,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][-0.0737597,1.1822,-0.559671][-0.24993,0.87166,-0.421596][0.60877,0.507533,0][-0.0737597,1.1822,-0.559671][-0.24993,0.87166,-0.421596][0.60877,0.507533,0][0.0697163,1.26588,-0.361951][-0.142472,0.944403,-0.296319][0.598556,0.483416,0][0.13936,1.26071,-0.411926][-0.168191,0.950214,-0.262307][0.606592,0.479609,0][0.0697163,1.26588,-0.361951][-0.142472,0.944403,-0.296319][0.598556,0.483416,0][-0.0737597,1.1822,-0.559671][-0.24993,0.87166,-0.421596][0.60877,0.507533,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][0.0117903,1.26777,-0.298753][-0.2275,0.944557,-0.23676][0.590287,0.485473,0][0.0697163,1.26588,-0.361951][-0.142472,0.944403,-0.296319][0.598556,0.483416,0][-0.0324927,1.26607,-0.226102][-0.288243,0.945165,-0.153553][0.582125,0.486003,0][0.0117903,1.26777,-0.298753][-0.2275,0.944557,-0.23676][0.590287,0.485473,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][-0.263784,1.18398,-0.299314][-0.368231,0.908625,-0.196993][0.577314,0.50945,0][-0.0324927,1.26607,-0.226102][-0.288243,0.945165,-0.153553][0.582125,0.486003,0][-0.0324927,1.26607,-0.226102][-0.288243,0.945165,-0.153553][0.582125,0.486003,0][-0.263784,1.18398,-0.299314][-0.368231,0.908625,-0.196993][0.577314,0.50945,0][-0.287426,1.18577,-0.137853][-0.412059,0.908434,-0.0703933][0.563458,0.503933,0][-0.287426,1.18577,-0.137853][-0.412059,0.908434,-0.0703933][0.563458,0.503933,0][-0.0465317,1.26673,-0.141295][-0.318743,0.945937,-0.0600511][0.574446,0.483564,0][-0.0324927,1.26607,-0.226102][-0.288243,0.945165,-0.153553][0.582125,0.486003,0][-0.0343067,1.26622,-0.0561816][-0.317471,0.946883,0.0512275][0.567875,0.479157,0][-0.0465317,1.26673,-0.141295][-0.318743,0.945937,-0.0600511][0.574446,0.483564,0][-0.287426,1.18577,-0.137853][-0.412059,0.908434,-0.0703933][0.563458,0.503933,0][-0.287426,1.18577,-0.137853][-0.412059,0.908434,-0.0703933][0.563458,0.503933,0][-0.262103,1.18578,0.0217196][-0.413741,0.908029,0.0655876][0.551919,0.495355,0][-0.0343067,1.26622,-0.0561816][-0.317471,0.946883,0.0512275][0.567875,0.479157,0][0.00299729,1.26538,0.0206886][-0.28386,0.947357,0.148116][0.562898,0.473186,0][-0.0343067,1.26622,-0.0561816][-0.317471,0.946883,0.0512275][0.567875,0.479157,0][-0.262103,1.18578,0.0217196][-0.413741,0.908029,0.0655876][0.551919,0.495355,0][-0.262103,1.18578,0.0217196][-0.413741,0.908029,0.0655876][0.551919,0.495355,0][-0.189569,1.18527,0.164849][-0.370802,0.908819,0.191192][0.543282,0.484252,0][0.00299729,1.26538,0.0206886][-0.28386,0.947357,0.148116][0.562898,0.473186,0][0.00299729,1.26538,0.0206886][-0.28386,0.947357,0.148116][0.562898,0.473186,0][-0.189569,1.18527,0.164849][-0.370802,0.908819,0.191192][0.543282,0.484252,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][0.0703733,1.26924,0.0700072][-0.2228,0.947285,0.23024][0.561198,0.465811,0][0.00299729,1.26538,0.0206886][-0.28386,0.947357,0.148116][0.562898,0.473186,0][0.0703733,1.26924,0.0700072][-0.2228,0.947285,0.23024][0.561198,0.465811,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][0.0692243,1.18753,0.340242][-0.212971,0.874659,0.435447][0.537468,0.457417,0][0.0692243,1.18753,0.340242][-0.212971,0.874659,0.435447][0.537468,0.457417,0][0.146399,1.27173,0.0996151][-0.142443,0.947604,0.28593][0.561254,0.458412,0][0.0703733,1.26924,0.0700072][-0.2228,0.947285,0.23024][0.561198,0.465811,0][0.146399,1.27173,0.0996151][-0.142443,0.947604,0.28593][0.561254,0.458412,0][0.0692243,1.18753,0.340242][-0.212971,0.874659,0.435447][0.537468,0.457417,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.226632,1.27226,0.10956][-0.0450842,0.94855,0.313402][0.562935,0.451217,0][0.146399,1.27173,0.0996151][-0.142443,0.947604,0.28593][0.561254,0.458412,0][0.308189,1.26958,0.104408][0.0509196,0.948279,0.313327][0.565827,0.444205,0][0.226632,1.27226,0.10956][-0.0450842,0.94855,0.313402][0.562935,0.451217,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.382664,1.18994,0.335564][0.0727824,0.876075,0.47665][0.546421,0.430687,0][0.308189,1.26958,0.104408][0.0509196,0.948279,0.313327][0.565827,0.444205,0][0.391602,1.26323,0.084759][0.138806,0.949226,0.282317][0.569997,0.437201,0][0.308189,1.26958,0.104408][0.0509196,0.948279,0.313327][0.565827,0.444205,0][0.382664,1.18994,0.335564][0.0727824,0.876075,0.47665][0.546421,0.430687,0][0.382664,1.18994,0.335564][0.0727824,0.876075,0.47665][0.546421,0.430687,0][0.522348,1.19093,0.266249][0.209344,0.876082,0.434345][0.55599,0.419723,0][0.391602,1.26323,0.084759][0.138806,0.949226,0.282317][0.569997,0.437201,0][0.456308,1.26257,0.0261398][0.213496,0.950699,0.224925][0.577258,0.432839,0][0.391602,1.26323,0.084759][0.138806,0.949226,0.282317][0.569997,0.437201,0][0.522348,1.19093,0.266249][0.209344,0.876082,0.434345][0.55599,0.419723,0][0.522348,1.19093,0.266249][0.209344,0.876082,0.434345][0.55599,0.419723,0][0.63968,1.20062,0.159035][0.249863,0.900919,0.354844][0.568892,0.411282,0][0.456308,1.26257,0.0261398][0.213496,0.950699,0.224925][0.577258,0.432839,0][0.489856,1.26741,-0.0549275][0.218568,0.964527,0.148039][0.585963,0.431984,0][0.456308,1.26257,0.0261398][0.213496,0.950699,0.224925][0.577258,0.432839,0][0.63968,1.20062,0.159035][0.249863,0.900919,0.354844][0.568892,0.411282,0][0.63968,1.20062,0.159035][0.249863,0.900919,0.354844][0.568892,0.411282,0][0.733311,1.20411,0.0204345][0.313009,0.920315,0.234616][0.584692,0.405109,0][0.489856,1.26741,-0.0549275][0.218568,0.964527,0.148039][0.585963,0.431984,0][0.489856,1.26741,-0.0549275][0.218568,0.964527,0.148039][0.585963,0.431984,0][0.733311,1.20411,0.0204345][0.313009,0.920315,0.234616][0.584692,0.405109,0][0.757203,1.19222,-0.145382][0.475951,0.879454,0.00554324][0.602915,0.405599,0][0.757203,1.19222,-0.145382][0.475951,0.879454,0.00554324][0.602915,0.405599,0][0.499844,1.27034,-0.14371][0.290244,0.954796,0.0642031][0.595027,0.433654,0][0.489856,1.26741,-0.0549275][0.218568,0.964527,0.148039][0.585963,0.431984,0][0.499844,1.27034,-0.14371][0.290244,0.954796,0.0642031][0.595027,0.433654,0][0.757203,1.19222,-0.145382][0.475951,0.879454,0.00554324][0.602915,0.405599,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.488172,1.26806,-0.231045][0.275841,0.959206,-0.0619341][0.603565,0.437613,0][0.499844,1.27034,-0.14371][0.290244,0.954796,0.0642031][0.595027,0.433654,0][0.45488,1.26075,-0.311977][0.234818,0.954695,-0.182806][0.610908,0.443922,0][0.488172,1.26806,-0.231045][0.275841,0.959206,-0.0619341][0.603565,0.437613,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.657516,1.19428,-0.461114][0.462891,0.860472,-0.212885][0.636885,0.426891,0][0.45488,1.26075,-0.311977][0.234818,0.954695,-0.182806][0.610908,0.443922,0][0.393992,1.25933,-0.376044][0.177115,0.96572,-0.189778][0.615139,0.452896,0][0.45488,1.26075,-0.311977][0.234818,0.954695,-0.182806][0.610908,0.443922,0][0.657516,1.19428,-0.461114][0.462891,0.860472,-0.212885][0.636885,0.426891,0][0.657516,1.19428,-0.461114][0.462891,0.860472,-0.212885][0.636885,0.426891,0][0.539472,1.18697,-0.579871][0.32625,0.866581,-0.377622][0.645962,0.446609,0][0.393992,1.25933,-0.376044][0.177115,0.96572,-0.189778][0.615139,0.452896,0][0.393992,1.25933,-0.376044][0.177115,0.96572,-0.189778][0.615139,0.452896,0][0.539472,1.18697,-0.579871][0.32625,0.866581,-0.377622][0.645962,0.446609,0][0.389452,1.18434,-0.653531][0.202812,0.872667,-0.444207][0.645738,0.467948,0][0.389452,1.18434,-0.653531][0.202812,0.872667,-0.444207][0.645738,0.467948,0][0.314492,1.25905,-0.416664][0.129864,0.95666,-0.260646][0.615678,0.462892,0][0.393992,1.25933,-0.376044][0.177115,0.96572,-0.189778][0.615139,0.452896,0][0.314492,1.25905,-0.416664][0.129864,0.95666,-0.260646][0.615678,0.462892,0][0.389452,1.18434,-0.653531][0.202812,0.872667,-0.444207][0.645738,0.467948,0][0.228653,1.18935,-0.670112][0.0745708,0.887439,-0.454853][0.637205,0.485906,0][0.228653,1.18935,-0.670112][0.0745708,0.887439,-0.454853][0.637205,0.485906,0][0.225449,1.25919,-0.430201][0.0438598,0.959381,-0.278682][0.612661,0.472368,0][0.314492,1.25905,-0.416664][0.129864,0.95666,-0.260646][0.615678,0.462892,0][0.225449,1.25919,-0.430201][0.0438598,0.959381,-0.278682][0.612661,0.472368,0][0.228653,1.18935,-0.670112][0.0745708,0.887439,-0.454853][0.637205,0.485906,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][0.13936,1.26071,-0.411926][-0.168191,0.950214,-0.262307][0.606592,0.479609,0][0.225449,1.25919,-0.430201][0.0438598,0.959381,-0.278682][0.612661,0.472368,0][0.0443333,1.11864,-0.406673][0.196979,-0.873797,0.44461][0.937032,0.062665,0][0.129944,1.11582,-0.450145][0.206001,-0.876748,0.4346][0.935755,0.061765,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][-0.0237377,1.12352,-0.33892][0.304277,-0.878205,0.369014][0.938379,0.063127,0][0.0443333,1.11864,-0.406673][0.196979,-0.873797,0.44461][0.937032,0.062665,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][-0.0676127,1.13,-0.253432][0.383937,-0.884789,0.264086][0.939696,0.063209,0][-0.0237377,1.12352,-0.33892][0.304277,-0.878205,0.369014][0.938379,0.063127,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][-0.0829557,1.13744,-0.158506][0.428006,-0.892993,0.139191][0.940915,0.062967,0][-0.0676127,1.13,-0.253432][0.383937,-0.884789,0.264086][0.939696,0.063209,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][-0.0681867,1.14512,-0.0633975][0.431483,-0.902102,0.00583293][0.941984,0.062454,0][-0.0829557,1.13744,-0.158506][0.428006,-0.892993,0.139191][0.940915,0.062967,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][-0.0246687,1.15229,0.0225635][0.39308,-0.911236,-0.123036][0.942867,0.061723,0][-0.0681867,1.14512,-0.0633975][0.431483,-0.902102,0.00583293][0.941984,0.062454,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.0433943,1.15824,0.0908993][0.315652,-0.919472,-0.234383][0.943533,0.060821,0][-0.0246687,1.15229,0.0225635][0.39308,-0.911236,-0.123036][0.942867,0.061723,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.12935,1.16237,0.134838][0.206317,-0.925914,-0.316411][0.943959,0.0598,0][0.0433943,1.15824,0.0908993][0.315652,-0.919472,-0.234383][0.943533,0.060821,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.224741,1.16429,0.150006][0.0759661,-0.929828,-0.360069][0.944129,0.058709,0][0.12935,1.16237,0.134838][0.206317,-0.925914,-0.316411][0.943959,0.0598,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.320151,1.1638,0.13488][-0.0619358,-0.930749,-0.360374][0.944032,0.057601,0][0.224741,1.16429,0.150006][0.0759661,-0.929828,-0.360069][0.944129,0.058709,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.406158,1.16095,0.0909634][-0.192748,-0.928574,-0.317173][0.943665,0.056531,0][0.320151,1.1638,0.13488][-0.0619358,-0.930749,-0.360374][0.944032,0.057601,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.474287,1.15602,0.0226162][-0.302841,-0.923553,-0.23524][0.943032,0.055558,0][0.406158,1.16095,0.0909634][-0.192748,-0.928574,-0.317173][0.943665,0.056531,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.51786,1.1495,-0.0633859][-0.381004,-0.916277,-0.12358][0.942148,0.054746,0][0.474287,1.15602,0.0226162][-0.302841,-0.923553,-0.23524][0.943032,0.055558,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.532656,1.14204,-0.158551][-0.419878,-0.907561,0.00589208][0.941039,0.054162,0][0.51786,1.1495,-0.0633859][-0.381004,-0.916277,-0.12358][0.942148,0.054746,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.517304,1.13436,-0.253531][-0.416467,-0.898322,0.1399][0.939756,0.05388,0][0.532656,1.14204,-0.158551][-0.419878,-0.907561,0.00589208][0.941039,0.054162,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.473391,1.12723,-0.339046][-0.372081,-0.889485,0.265278][0.938375,0.053967,0][0.517304,1.13436,-0.253531][-0.416467,-0.898322,0.1399][0.939756,0.05388,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.405269,1.12133,-0.406789][-0.291877,-0.881858,0.370317][0.937016,0.054462,0][0.473391,1.12723,-0.339046][-0.372081,-0.889485,0.265278][0.938375,0.053967,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.319615,1.11723,-0.450214][-0.184019,-0.876105,0.445619][0.935809,0.055422,0][0.405269,1.12133,-0.406789][-0.291877,-0.881858,0.370317][0.937016,0.054462,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.224771,1.11533,-0.465143][-0.0587799,-0.872959,0.484239][0.934936,0.056765,0][0.319615,1.11723,-0.450214][-0.184019,-0.876105,0.445619][0.935809,0.055422,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.129944,1.11582,-0.450145][0.206001,-0.876748,0.4346][0.934519,0.058364,0][0.224771,1.11533,-0.465143][-0.0587799,-0.872959,0.484239][0.934936,0.056765,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.0697163,1.26588,-0.361951][-0.142472,0.944403,-0.296319][0.598556,0.483416,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.13936,1.26071,-0.411926][-0.168191,0.950214,-0.262307][0.606592,0.479609,0][0.0117903,1.26777,-0.298753][-0.2275,0.944557,-0.23676][0.590287,0.485473,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.0697163,1.26588,-0.361951][-0.142472,0.944403,-0.296319][0.598556,0.483416,0][-0.0324927,1.26607,-0.226102][-0.288243,0.945165,-0.153553][0.582125,0.486003,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.0117903,1.26777,-0.298753][-0.2275,0.944557,-0.23676][0.590287,0.485473,0][-0.0465317,1.26673,-0.141295][-0.318743,0.945937,-0.0600511][0.574446,0.483564,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][-0.0324927,1.26607,-0.226102][-0.288243,0.945165,-0.153553][0.582125,0.486003,0][-0.0343067,1.26622,-0.0561816][-0.317471,0.946883,0.0512275][0.567875,0.479157,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][-0.0465317,1.26673,-0.141295][-0.318743,0.945937,-0.0600511][0.574446,0.483564,0][0.00299729,1.26538,0.0206886][-0.28386,0.947357,0.148116][0.562898,0.473186,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][-0.0343067,1.26622,-0.0561816][-0.317471,0.946883,0.0512275][0.567875,0.479157,0][0.0703733,1.26924,0.0700072][-0.2228,0.947285,0.23024][0.561198,0.465811,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.00299729,1.26538,0.0206886][-0.28386,0.947357,0.148116][0.562898,0.473186,0][0.146399,1.27173,0.0996151][-0.142443,0.947604,0.28593][0.561254,0.458412,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.0703733,1.26924,0.0700072][-0.2228,0.947285,0.23024][0.561198,0.465811,0][0.226632,1.27226,0.10956][-0.0450842,0.94855,0.313402][0.562935,0.451217,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.146399,1.27173,0.0996151][-0.142443,0.947604,0.28593][0.561254,0.458412,0][0.308189,1.26958,0.104408][0.0509196,0.948279,0.313327][0.565827,0.444205,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.226632,1.27226,0.10956][-0.0450842,0.94855,0.313402][0.562935,0.451217,0][0.391602,1.26323,0.084759][0.138806,0.949226,0.282317][0.569997,0.437201,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.308189,1.26958,0.104408][0.0509196,0.948279,0.313327][0.565827,0.444205,0][0.456308,1.26257,0.0261398][0.213496,0.950699,0.224925][0.577258,0.432839,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.391602,1.26323,0.084759][0.138806,0.949226,0.282317][0.569997,0.437201,0][0.489856,1.26741,-0.0549275][0.218568,0.964527,0.148039][0.585963,0.431984,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.456308,1.26257,0.0261398][0.213496,0.950699,0.224925][0.577258,0.432839,0][0.499844,1.27034,-0.14371][0.290244,0.954796,0.0642031][0.595027,0.433654,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.489856,1.26741,-0.0549275][0.218568,0.964527,0.148039][0.585963,0.431984,0][0.488172,1.26806,-0.231045][0.275841,0.959206,-0.0619341][0.603565,0.437613,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.499844,1.27034,-0.14371][0.290244,0.954796,0.0642031][0.595027,0.433654,0][0.45488,1.26075,-0.311977][0.234818,0.954695,-0.182806][0.610908,0.443922,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.488172,1.26806,-0.231045][0.275841,0.959206,-0.0619341][0.603565,0.437613,0][0.393992,1.25933,-0.376044][0.177115,0.96572,-0.189778][0.615139,0.452896,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.45488,1.26075,-0.311977][0.234818,0.954695,-0.182806][0.610908,0.443922,0][0.314492,1.25905,-0.416664][0.129864,0.95666,-0.260646][0.615678,0.462892,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.393992,1.25933,-0.376044][0.177115,0.96572,-0.189778][0.615139,0.452896,0][0.225449,1.25919,-0.430201][0.0438598,0.959381,-0.278682][0.612661,0.472368,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.314492,1.25905,-0.416664][0.129864,0.95666,-0.260646][0.615678,0.462892,0][0.13936,1.26071,-0.411926][-0.168191,0.950214,-0.262307][0.606592,0.479609,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.225449,1.25919,-0.430201][0.0438598,0.959381,-0.278682][0.612661,0.472368,0][0.982824,0.750496,-0.951341][0.656068,0.73851,-0.155493][0.824727,0.392516,0][0.929627,0.701107,-0.893585][-0.493986,-0.84648,0.198619][0.856844,0.374071,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.865686,0.391864,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.865686,0.391864,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][0.982824,0.750496,-0.951341][0.656068,0.73851,-0.155493][0.824727,0.392516,0][1.04647,0.601524,-0.945738][0.507739,0.526304,-0.68206][0.874474,0.416136,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.865686,0.391864,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.865686,0.391864,0][1.02324,0.553438,-0.908986][-0.375566,-0.0664808,0.924408][0.896043,0.411315,0][1.04647,0.601524,-0.945738][0.507739,0.526304,-0.68206][0.874474,0.416136,0][1.02395,0.430593,-1.0944][0.460144,0.0092081,-0.887796][0.897591,0.4849,0][1.04647,0.601524,-0.945738][0.507739,0.526304,-0.68206][0.874474,0.416136,0][1.02324,0.553438,-0.908986][-0.375566,-0.0664808,0.924408][0.896043,0.411315,0][1.02324,0.553438,-0.908986][-0.375566,-0.0664808,0.924408][0.896043,0.411315,0][1.00274,0.377278,-1.03617][-0.279558,-0.540427,0.793591][0.924137,0.485832,0][1.02395,0.430593,-1.0944][0.460144,0.0092081,-0.887796][0.897591,0.4849,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][1.02395,0.430593,-1.0944][0.460144,0.0092081,-0.887796][0.897591,0.4849,0][1.00274,0.377278,-1.03617][-0.279558,-0.540427,0.793591][0.924137,0.485832,0][1.00274,0.377278,-1.03617][-0.279558,-0.540427,0.793591][0.924137,0.485832,0][0.870682,0.237445,-1.11646][-0.413755,-0.126887,0.901502][0.924084,0.560993,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][0.870682,0.237445,-1.11646][-0.413755,-0.126887,0.901502][0.924084,0.560993,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.870574,0.610278,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.870574,0.610278,0][0.738339,0.252535,-1.32098][0.149166,-0.978462,0.142691][0.863645,0.597369,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][0.471787,0.207621,-1.35032][0.496667,-0.384201,-0.778275][0.813171,0.64073,0][0.738339,0.252535,-1.32098][0.149166,-0.978462,0.142691][0.863645,0.597369,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.870574,0.610278,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.870574,0.610278,0][0.464685,0.184061,-1.34322][0.296015,-0.912329,0.282896][0.814269,0.65035,0][0.471787,0.207621,-1.35032][0.496667,-0.384201,-0.778275][0.813171,0.64073,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.757566,0.274653,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.801148,0.31114,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.1249,0.586335,-0.846928][0.786211,0.384261,-0.483959][0.747074,0.278155,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.757566,0.274653,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.757566,0.274653,0][1.1249,0.586335,-0.846928][0.786211,0.384261,-0.483959][0.747074,0.278155,0][1.12291,0.438309,-0.949779][0.788878,-0.0498868,-0.612522][0.745107,0.234224,0][1.12291,0.438309,-0.949779][0.788878,-0.0498868,-0.612522][0.745107,0.234224,0][1.07048,0.396855,-0.941657][-0.865578,-0.203485,0.457567][0.756091,0.226011,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.757566,0.274653,0][1.07048,0.396855,-0.941657][-0.865578,-0.203485,0.457567][0.756091,0.226011,0][1.12291,0.438309,-0.949779][0.788878,-0.0498868,-0.612522][0.745107,0.234224,0][1.07738,0.245709,-0.992728][0.854236,0.243879,-0.459135][0.748787,0.193055,0][1.07738,0.245709,-0.992728][0.854236,0.243879,-0.459135][0.748787,0.193055,0][1.03154,0.218299,-0.983916][-0.835298,-0.0208695,0.549401][0.758783,0.185782,0][1.07048,0.396855,-0.941657][-0.865578,-0.203485,0.457567][0.756091,0.226011,0][1.03154,0.218299,-0.983916][-0.835298,-0.0208695,0.549401][0.758783,0.185782,0][1.07738,0.245709,-0.992728][0.854236,0.243879,-0.459135][0.748787,0.193055,0][1.12481,0.0277651,-1.02024][0.824602,0.0738313,-0.560874][0.728972,0.14796,0][1.12481,0.0277651,-1.02024][0.824602,0.0738313,-0.560874][0.728972,0.14796,0][1.0941,0.00328189,-1.0145][-0.87995,-0.357531,0.312827][0.734146,0.140565,0][1.03154,0.218299,-0.983916][-0.835298,-0.0208695,0.549401][0.758783,0.185782,0][1.0941,0.00328189,-1.0145][-0.87995,-0.357531,0.312827][0.734146,0.140565,0][1.12481,0.0277651,-1.02024][0.824602,0.0738313,-0.560874][0.728972,0.14796,0][1.21713,-0.22346,-0.917591][0.65245,-0.327725,-0.683304][0.687309,0.112793,0][1.21713,-0.22346,-0.917591][0.65245,-0.327725,-0.683304][0.687309,0.112793,0][1.21188,-0.244735,-0.912397][-0.868409,-0.107607,0.484032][0.683835,0.098156,0][1.0941,0.00328189,-1.0145][-0.87995,-0.357531,0.312827][0.734146,0.140565,0][1.03066,0.58157,-0.897943][-0.486863,-0.685739,0.541042][0.935042,0.039539,0][1.06125,0.58398,-0.867361][-0.486863,-0.685739,0.541042][0.93572,0.039461,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][0.929627,0.701107,-0.893585][-0.493986,-0.84648,0.198619][0.934254,0.04188,0][1.03066,0.58157,-0.897943][-0.486863,-0.685739,0.541042][0.935042,0.039539,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.03066,0.58157,-0.897943][-0.486863,-0.685739,0.541042][0.865601,0.33168,0][0.929627,0.701107,-0.893585][-0.493986,-0.84648,0.198619][0.856844,0.374071,0][0.929627,0.701107,-0.893585][-0.493986,-0.84648,0.198619][0.856844,0.374071,0][0.982824,0.750496,-0.951341][0.656068,0.73851,-0.155493][0.824727,0.392516,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][0.982824,0.750496,-0.951341][0.656068,0.73851,-0.155493][0.824727,0.392516,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.09019,0.578522,-0.88752][0.629117,0.455225,-0.630065][0.847395,0.312183,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.06125,0.58398,-0.867361][-0.486863,-0.685739,0.541042][0.839147,0.308625,0][1.09019,0.578522,-0.88752][0.629117,0.455225,-0.630065][0.847395,0.312183,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.801148,0.31114,0][1.06125,0.58398,-0.867361][-0.486863,-0.685739,0.541042][0.839147,0.308625,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.934436,0.036624,0][1.06125,0.58398,-0.867361][-0.486863,-0.685739,0.541042][0.93572,0.039461,0][1.03066,0.58157,-0.897943][-0.486863,-0.685739,0.541042][0.935042,0.039539,0][1.03066,0.58157,-0.897943][-0.486863,-0.685739,0.541042][0.935042,0.039539,0][1.06799,0.415489,-0.985383][-0.60342,-0.473444,0.641666][0.934008,0.036704,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.934436,0.036624,0][1.06799,0.415489,-0.985383][-0.60342,-0.473444,0.641666][0.896244,0.287666,0][1.03066,0.58157,-0.897943][-0.486863,-0.685739,0.541042][0.865601,0.33168,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.07157,0.414316,-1.0033][-0.980625,-0.0174911,-0.195113][0.892315,0.280609,0][1.06799,0.415489,-0.985383][-0.60342,-0.473444,0.641666][0.896244,0.287666,0][1.09777,0.411064,-0.978751][0.656091,0.385055,-0.649058][0.884013,0.276714,0][1.07157,0.414316,-1.0033][-0.980625,-0.0174911,-0.195113][0.892315,0.280609,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.09019,0.578522,-0.88752][0.629117,0.455225,-0.630065][0.847395,0.312183,0][1.09777,0.411064,-0.978751][0.656091,0.385055,-0.649058][0.884013,0.276714,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.878431,0.272685,0][1.09777,0.411064,-0.978751][0.656091,0.385055,-0.649058][0.884013,0.276714,0][1.09019,0.578522,-0.88752][0.629117,0.455225,-0.630065][0.847395,0.312183,0][1.09019,0.578522,-0.88752][0.629117,0.455225,-0.630065][0.847395,0.312183,0][1.06125,0.58398,-0.867361][-0.486863,-0.685739,0.541042][0.839147,0.308625,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.878431,0.272685,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.02368,0.279938,-1.0421][0.621578,0.00462993,-0.783339][0.925877,0.243121,0][1.07157,0.414316,-1.0033][-0.980625,-0.0174911,-0.195113][0.892315,0.280609,0][1.07157,0.414316,-1.0033][-0.980625,-0.0174911,-0.195113][0.892315,0.280609,0][1.09777,0.411064,-0.978751][0.656091,0.385055,-0.649058][0.884013,0.276714,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.0201,0.280392,-1.03152][-0.898315,0.388482,-0.205211][0.930272,0.248383,0][1.06799,0.415489,-0.985383][-0.60342,-0.473444,0.641666][0.896244,0.287666,0][1.07157,0.414316,-1.0033][-0.980625,-0.0174911,-0.195113][0.892315,0.280609,0][1.07157,0.414316,-1.0033][-0.980625,-0.0174911,-0.195113][0.892315,0.280609,0][1.02368,0.279938,-1.0421][0.621578,0.00462993,-0.783339][0.925877,0.243121,0][1.0201,0.280392,-1.03152][-0.898315,0.388482,-0.205211][0.930272,0.248383,0][1.02784,0.278638,-1.02543][-0.676715,-0.016857,0.736052][0.932804,0.034179,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.934436,0.036624,0][1.06799,0.415489,-0.985383][-0.60342,-0.473444,0.641666][0.934008,0.036704,0][1.06799,0.415489,-0.985383][-0.60342,-0.473444,0.641666][0.934008,0.036704,0][1.0201,0.280392,-1.03152][-0.898315,0.388482,-0.205211][0.932413,0.034313,0][1.02784,0.278638,-1.02543][-0.676715,-0.016857,0.736052][0.932804,0.034179,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.09777,0.411064,-0.978751][0.656091,0.385055,-0.649058][0.884013,0.276714,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.878431,0.272685,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.878431,0.272685,0][1.02784,0.278638,-1.02543][-0.676715,-0.016857,0.736052][0.913697,0.234261,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.03503,0.173062,-1.05213][0.64158,0.138938,-0.754369][0.958058,0.206053,0][1.02368,0.279938,-1.0421][0.621578,0.00462993,-0.783339][0.925877,0.243121,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.04591,0.16522,-1.04122][0.743124,0.114217,-0.659333][0.955102,0.199142,0][1.03503,0.173062,-1.05213][0.64158,0.138938,-0.754369][0.958058,0.206053,0][1.02882,0.174838,-1.0443][-0.947178,-0.0396698,-0.318244][0.962017,0.211782,0][1.0201,0.280392,-1.03152][-0.898315,0.388482,-0.205211][0.930272,0.248383,0][1.02368,0.279938,-1.0421][0.621578,0.00462993,-0.783339][0.925877,0.243121,0][1.02368,0.279938,-1.0421][0.621578,0.00462993,-0.783339][0.925877,0.243121,0][1.03503,0.173062,-1.05213][0.64158,0.138938,-0.754369][0.958058,0.206053,0][1.02882,0.174838,-1.0443][-0.947178,-0.0396698,-0.318244][0.962017,0.211782,0][1.02882,0.174838,-1.0443][-0.947178,-0.0396698,-0.318244][0.931939,0.031178,0][1.03745,0.169281,-1.03577][-0.737704,-0.127502,0.662975][0.932315,0.030935,0][1.02784,0.278638,-1.02543][-0.676715,-0.016857,0.736052][0.932804,0.034179,0][1.02784,0.278638,-1.02543][-0.676715,-0.016857,0.736052][0.932804,0.034179,0][1.0201,0.280392,-1.03152][-0.898315,0.388482,-0.205211][0.932413,0.034313,0][1.02882,0.174838,-1.0443][-0.947178,-0.0396698,-0.318244][0.931939,0.031178,0][1.03745,0.169281,-1.03577][-0.737704,-0.127502,0.662975][0.948575,0.197469,0][1.04591,0.16522,-1.04122][0.743124,0.114217,-0.659333][0.955102,0.199142,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.02784,0.278638,-1.02543][-0.676715,-0.016857,0.736052][0.913697,0.234261,0][1.03745,0.169281,-1.03577][-0.737704,-0.127502,0.662975][0.948575,0.197469,0][1.03503,0.173062,-1.05213][0.64158,0.138938,-0.754369][0.958058,0.206053,0][1.04591,0.16522,-1.04122][0.743124,0.114217,-0.659333][0.955102,0.199142,0][1.06423,0.00626397,-1.07117][0.762369,0.203589,-0.614284][0.98635,0.166123,0][1.02882,0.174838,-1.0443][-0.947178,-0.0396698,-0.318244][0.962017,0.211782,0][1.03503,0.173062,-1.05213][0.64158,0.138938,-0.754369][0.958058,0.206053,0][1.06423,0.00626397,-1.07117][0.762369,0.203589,-0.614284][0.98635,0.166123,0][1.03745,0.169281,-1.03577][-0.737704,-0.127502,0.662975][0.932315,0.030935,0][1.02882,0.174838,-1.0443][-0.947178,-0.0396698,-0.318244][0.931939,0.031178,0][1.06423,0.00626397,-1.07117][0.762369,0.203589,-0.614284][0.931582,0.027955,0][1.04591,0.16522,-1.04122][0.743124,0.114217,-0.659333][0.955102,0.199142,0][1.03745,0.169281,-1.03577][-0.737704,-0.127502,0.662975][0.948575,0.197469,0][1.06423,0.00626397,-1.07117][0.762369,0.203589,-0.614284][0.98635,0.166123,0][-0.448198,-0.00331283,-1.45348][-0.157306,0.536493,0.829114][0.656054,0.731811,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-0.61077,-0.46667,-1.1845][-0.60184,0.138919,-0.786441][0.590501,0.734296,0][-0.61077,-0.46667,-1.1845][-0.60184,0.138919,-0.786441][0.590501,0.734296,0][-0.336446,-0.105335,-1.3306][-0.688523,0.327098,-0.647258][0.647834,0.707001,0][-0.448198,-0.00331283,-1.45348][-0.157306,0.536493,0.829114][0.656054,0.731811,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-0.448198,-0.00331283,-1.45348][-0.157306,0.536493,0.829114][0.656054,0.731811,0][-0.401544,-0.115181,-1.45155][0.173784,-0.497291,-0.850001][0.663521,0.745416,0][-0.401544,-0.115181,-1.45155][0.173784,-0.497291,-0.850001][0.663521,0.745416,0][-0.801863,-0.504459,-1.30565][0.173784,-0.497291,-0.850001][0.59635,0.787614,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-1.22222,-0.495127,-0.97498][0.160857,0.831283,0.532065][0.534306,0.781625,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-0.61077,-0.46667,-1.1845][-0.60184,0.138919,-0.786441][0.590501,0.734296,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-0.801863,-0.504459,-1.30565][0.173784,-0.497291,-0.850001][0.59635,0.787614,0][-1.08733,-0.620447,-0.95034][-0.680834,-0.328988,-0.654394][0.537274,0.804835,0][-1.08733,-0.620447,-0.95034][-0.680834,-0.328988,-0.654394][0.537274,0.804835,0][-1.22222,-0.495127,-0.97498][0.160857,0.831283,0.532065][0.534306,0.781625,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-1.23702,-0.509746,-0.535233][0.712236,0.498003,0.494685][0.479907,0.788492,0][-1.07555,-0.749044,-0.526814][-0.930926,0.149205,-0.33334][0.478534,0.74362,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-1.22222,-0.495127,-0.97498][0.160857,0.831283,0.532065][0.534306,0.781625,0][-1.23702,-0.509746,-0.535233][0.712236,0.498003,0.494685][0.479907,0.788492,0][-1.23702,-0.509746,-0.535233][0.712236,0.498003,0.494685][0.479907,0.788492,0][-1.22222,-0.495127,-0.97498][0.160857,0.831283,0.532065][0.534306,0.781625,0][-1.08733,-0.620447,-0.95034][-0.680834,-0.328988,-0.654394][0.537274,0.804835,0][-1.08733,-0.620447,-0.95034][-0.680834,-0.328988,-0.654394][0.537274,0.804835,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.23702,-0.509746,-0.535233][0.712236,0.498003,0.494685][0.479907,0.788492,0][-1.36681,-0.6466,-0.134526][0.661801,0.680971,0.313525][0.408584,0.780156,0][-1.13631,-0.868187,-0.139776][-0.984501,0.133804,-0.113372][0.420074,0.734838,0][-1.07555,-0.749044,-0.526814][-0.930926,0.149205,-0.33334][0.478534,0.74362,0][-1.07555,-0.749044,-0.526814][-0.930926,0.149205,-0.33334][0.478534,0.74362,0][-1.23702,-0.509746,-0.535233][0.712236,0.498003,0.494685][0.479907,0.788492,0][-1.36681,-0.6466,-0.134526][0.661801,0.680971,0.313525][0.408584,0.780156,0][-1.36681,-0.6466,-0.134526][0.661801,0.680971,0.313525][0.408584,0.780156,0][-1.23702,-0.509746,-0.535233][0.712236,0.498003,0.494685][0.479907,0.788492,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.27337,-0.907536,-0.142327][-0.736116,-0.569188,-0.366277][0.379891,0.818827,0][-1.36681,-0.6466,-0.134526][0.661801,0.680971,0.313525][0.408584,0.780156,0][-1.22305,-0.718815,0.280999][0.614941,0.774525,-0.148185][0.343823,0.742679,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-1.13631,-0.868187,-0.139776][-0.984501,0.133804,-0.113372][0.420074,0.734838,0][-1.13631,-0.868187,-0.139776][-0.984501,0.133804,-0.113372][0.420074,0.734838,0][-1.36681,-0.6466,-0.134526][0.661801,0.680971,0.313525][0.408584,0.780156,0][-1.22305,-0.718815,0.280999][0.614941,0.774525,-0.148185][0.343823,0.742679,0][-1.22305,-0.718815,0.280999][0.614941,0.774525,-0.148185][0.343823,0.742679,0][-1.36681,-0.6466,-0.134526][0.661801,0.680971,0.313525][0.408584,0.780156,0][-1.27337,-0.907536,-0.142327][-0.736116,-0.569188,-0.366277][0.379891,0.818827,0][-1.27337,-0.907536,-0.142327][-0.736116,-0.569188,-0.366277][0.379891,0.818827,0][-1.27935,-0.874486,0.320288][-0.79986,-0.599307,0.0324717][0.318771,0.770493,0][-1.22305,-0.718815,0.280999][0.614941,0.774525,-0.148185][0.343823,0.742679,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.869554,-0.868392,0.714121][-0.87624,0.191679,0.442111][0.275878,0.620385,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-1.22305,-0.718815,0.280999][0.614941,0.774525,-0.148185][0.343823,0.742679,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-1.22305,-0.718815,0.280999][0.614941,0.774525,-0.148185][0.343823,0.742679,0][-1.27935,-0.874486,0.320288][-0.79986,-0.599307,0.0324717][0.318771,0.770493,0][-1.27935,-0.874486,0.320288][-0.79986,-0.599307,0.0324717][0.318771,0.770493,0][-0.986364,-0.897419,0.800639][-0.853865,-0.0417199,0.51882][0.227721,0.643077,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.605471,-0.732077,1.22286][0.417329,0.810665,-0.410681][0.221434,0.532107,0][-0.549138,-0.867551,1.01269][-0.665265,0.220416,0.713329][0.25582,0.539908,0][-0.549138,-0.867551,1.01269][-0.665265,0.220416,0.713329][0.25582,0.539908,0][-0.869554,-0.868392,0.714121][-0.87624,0.191679,0.442111][0.275878,0.620385,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.986364,-0.897419,0.800639][-0.853865,-0.0417199,0.51882][0.227721,0.643077,0][-0.616285,-0.920907,1.14072][-0.675136,0.0328463,0.736962][0.187844,0.551947,0][-0.616285,-0.920907,1.14072][-0.675136,0.0328463,0.736962][0.187844,0.551947,0][-0.605471,-0.732077,1.22286][0.417329,0.810665,-0.410681][0.221434,0.532107,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.605471,-0.732077,1.22286][0.417329,0.810665,-0.410681][0.221434,0.532107,0][-0.215717,-0.604814,1.29057][-0.151684,0.784461,-0.601342][0.220276,0.470824,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.549138,-0.867551,1.01269][-0.665265,0.220416,0.713329][0.25582,0.539908,0][-0.605471,-0.732077,1.22286][0.417329,0.810665,-0.410681][0.221434,0.532107,0][-0.605471,-0.732077,1.22286][0.417329,0.810665,-0.410681][0.221434,0.532107,0][-0.616285,-0.920907,1.14072][-0.675136,0.0328463,0.736962][0.187844,0.551947,0][-0.212705,-0.745597,1.23314][-0.233826,0.0259128,0.971933][0.197802,0.472361,0][-0.212705,-0.745597,1.23314][-0.233826,0.0259128,0.971933][0.197802,0.472361,0][-0.215717,-0.604814,1.29057][-0.151684,0.784461,-0.601342][0.220276,0.470824,0][-0.605471,-0.732077,1.22286][0.417329,0.810665,-0.410681][0.221434,0.532107,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][0.226367,-0.846696,1.17605][-0.10738,0.0877973,0.990334][0.238478,0.372332,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.215717,-0.604814,1.29057][-0.151684,0.784461,-0.601342][0.220276,0.470824,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][-0.215717,-0.604814,1.29057][-0.151684,0.784461,-0.601342][0.220276,0.470824,0][-0.212705,-0.745597,1.23314][-0.233826,0.0259128,0.971933][0.197802,0.472361,0][-0.212705,-0.745597,1.23314][-0.233826,0.0259128,0.971933][0.197802,0.472361,0][0.226428,-0.856126,1.2848][-0.106335,0.0418889,0.993448][0.178611,0.372169,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][0.680774,-0.741956,1.20422][-0.171392,0.581952,-0.794957][0.241962,0.266048,0][0.631638,-0.882568,1.11187][0.164382,0.101758,0.981134][0.268951,0.286798,0][0.631638,-0.882568,1.11187][0.164382,0.101758,0.981134][0.268951,0.286798,0][0.226367,-0.846696,1.17605][-0.10738,0.0877973,0.990334][0.238478,0.372332,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][0.226428,-0.856126,1.2848][-0.106335,0.0418889,0.993448][0.178611,0.372169,0][0.665439,-0.894266,1.21527][0.177298,0.409207,0.89505][0.209971,0.247964,0][0.665439,-0.894266,1.21527][0.177298,0.409207,0.89505][0.209971,0.247964,0][0.680774,-0.741956,1.20422][-0.171392,0.581952,-0.794957][0.241962,0.266048,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][0.99684,-0.857817,0.924978][0.44772,0.101887,0.88835][0.316618,0.221924,0][0.631638,-0.882568,1.11187][0.164382,0.101758,0.981134][0.268951,0.286798,0][0.631638,-0.882568,1.11187][0.164382,0.101758,0.981134][0.268951,0.286798,0][0.680774,-0.741956,1.20422][-0.171392,0.581952,-0.794957][0.241962,0.266048,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][0.680774,-0.741956,1.20422][-0.171392,0.581952,-0.794957][0.241962,0.266048,0][0.665439,-0.894266,1.21527][0.177298,0.409207,0.89505][0.209971,0.247964,0][1.06105,-0.876747,1.01285][0.455822,-0.143839,0.878372][0.284236,0.187769,0][1.06105,-0.876747,1.01285][0.455822,-0.143839,0.878372][0.284236,0.187769,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][0.680774,-0.741956,1.20422][-0.171392,0.581952,-0.794957][0.241962,0.266048,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][1.40247,-0.823514,0.662283][-0.15797,0.918056,-0.363619][0.363978,0.145331,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][0.99684,-0.857817,0.924978][0.44772,0.101887,0.88835][0.316618,0.221924,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][1.06105,-0.876747,1.01285][0.455822,-0.143839,0.878372][0.284236,0.187769,0][1.35888,-0.909171,0.676499][0.71657,-0.234063,0.657071][0.350034,0.135018,0][1.35888,-0.909171,0.676499][0.71657,-0.234063,0.657071][0.350034,0.135018,0][1.40247,-0.823514,0.662283][-0.15797,0.918056,-0.363619][0.363978,0.145331,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][1.54664,-0.850459,0.087085][-0.252625,0.961525,-0.107938][0.44628,0.087917,0][1.42111,-0.888009,0.046367][0.847997,0.498113,0.181064][0.458989,0.106456,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.40247,-0.823514,0.662283][-0.15797,0.918056,-0.363619][0.363978,0.145331,0][1.54664,-0.850459,0.087085][-0.252625,0.961525,-0.107938][0.44628,0.087917,0][1.40247,-0.823514,0.662283][-0.15797,0.918056,-0.363619][0.363978,0.145331,0][1.35888,-0.909171,0.676499][0.71657,-0.234063,0.657071][0.350034,0.135018,0][1.4899,-0.938028,0.11047][0.861032,-0.457231,0.222627][0.434039,0.075388,0][1.4899,-0.938028,0.11047][0.861032,-0.457231,0.222627][0.434039,0.075388,0][1.54664,-0.850459,0.087085][-0.252625,0.961525,-0.107938][0.44628,0.087917,0][1.40247,-0.823514,0.662283][-0.15797,0.918056,-0.363619][0.363978,0.145331,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.42111,-0.888009,0.046367][0.847997,0.498113,0.181064][0.458989,0.106456,0][1.54664,-0.850459,0.087085][-0.252625,0.961525,-0.107938][0.44628,0.087917,0][1.4899,-0.938028,0.11047][0.861032,-0.457231,0.222627][0.434039,0.075388,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.54664,-0.850459,0.087085][-0.252625,0.961525,-0.107938][0.44628,0.087917,0][-0.336446,-0.105335,-1.3306][-0.688523,0.327098,-0.647258][0.647834,0.707001,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][-0.448198,-0.00331283,-1.45348][-0.157306,0.536493,0.829114][0.656054,0.731811,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][-0.401544,-0.115181,-1.45155][0.173784,-0.497291,-0.850001][0.663521,0.745416,0][-0.448198,-0.00331283,-1.45348][-0.157306,0.536493,0.829114][0.656054,0.731811,0][-0.653522,-0.733076,-1.30084][0.818622,-0.569927,-0.0710048][0.645254,0.879409,0][-0.368457,-0.303829,-1.45969][0.818622,-0.569927,-0.0710048][0.703227,0.806051,0][-0.336727,-0.284662,-1.24772][0.675548,0.0835714,0.732564][0.742326,0.831555,0][-0.336727,-0.284662,-1.24772][0.675548,0.0835714,0.732564][0.742326,0.831555,0][-0.581696,-0.659688,-1.06085][0.739159,-0.156391,0.655123][0.669853,0.922307,0][-0.653522,-0.733076,-1.30084][0.818622,-0.569927,-0.0710048][0.645254,0.879409,0][-0.458555,-0.163045,-1.53387][-0.394612,0.588874,0.705343][0.680444,0.784504,0][-1.0294,-0.623737,-1.46861][-0.394612,0.588874,0.705343][0.60465,0.842483,0][-0.759229,-0.58423,-1.35044][-0.394612,0.588874,0.705343][0.607588,0.809841,0][-0.759229,-0.58423,-1.35044][-0.394612,0.588874,0.705343][0.607588,0.809841,0][-0.37615,-0.166274,-1.44939][-0.543864,0.629778,0.55461][0.677255,0.766028,0][-0.458555,-0.163045,-1.53387][-0.394612,0.588874,0.705343][0.680444,0.784504,0][-0.952696,-0.867773,-1.00611][0.498713,-0.859301,0.113516][0.594124,0.908121,0][-0.653522,-0.733076,-1.30084][0.818622,-0.569927,-0.0710048][0.645254,0.879409,0][-0.581696,-0.659688,-1.06085][0.739159,-0.156391,0.655123][0.669853,0.922307,0][-0.581696,-0.659688,-1.06085][0.739159,-0.156391,0.655123][0.669853,0.922307,0][-0.867222,-0.773923,-0.76793][0.726171,-0.0585069,0.68502][0.582746,0.947111,0][-0.952696,-0.867773,-1.00611][0.498713,-0.859301,0.113516][0.594124,0.908121,0][-1.0294,-0.623737,-1.46861][-0.394612,0.588874,0.705343][0.60465,0.842483,0][-1.30332,-0.716396,-1.03799][0.123672,0.951023,0.283304][0.540357,0.863141,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-0.759229,-0.58423,-1.35044][-0.394612,0.588874,0.705343][0.607588,0.809841,0][-1.0294,-0.623737,-1.46861][-0.394612,0.588874,0.705343][0.60465,0.842483,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-0.952696,-0.867773,-1.00611][0.498713,-0.859301,0.113516][0.594124,0.908121,0][-0.867222,-0.773923,-0.76793][0.726171,-0.0585069,0.68502][0.582746,0.947111,0][-0.867222,-0.773923,-0.76793][0.726171,-0.0585069,0.68502][0.582746,0.947111,0][-0.993661,-0.913774,-0.343836][0.830517,0.405876,0.381453][0.498227,0.949287,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-1.37472,-0.804293,-0.371278][0.541564,0.770553,0.336091][0.533123,0.863535,0][-1.21775,-0.915438,-0.369399][0.541564,0.770553,0.336091][0.472165,0.86553,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-1.30332,-0.716396,-1.03799][0.123672,0.951023,0.283304][0.540357,0.863141,0][-1.37472,-0.804293,-0.371278][0.541564,0.770553,0.336091][0.533123,0.863535,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-1.25784,-1.04384,-0.258947][0.305603,-0.949343,-0.0731803][0.341171,0.855971,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.389866,0.973699,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.389866,0.973699,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.19981,0.791252,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-1.4486,-0.831625,-0.219675][0.299387,0.939539,0.166232][0.329768,0.827082,0][-1.37397,-0.95588,0.348204][0.299387,0.939539,0.166232][0.312567,0.821926,0][-1.22099,-1.00994,0.378261][0.299387,0.939539,0.166232][0.296854,0.800616,0][-1.22099,-1.00994,0.378261][0.299387,0.939539,0.166232][0.296854,0.800616,0][-1.18997,-0.920568,-0.329708][0.37221,0.918672,0.132289][0.36375,0.835459,0][-1.4486,-0.831625,-0.219675][0.299387,0.939539,0.166232][0.329768,0.827082,0][-1.06624,-1.09439,0.637135][0.266321,-0.922191,-0.280423][0.176079,0.7362,0][-0.947245,-1.03133,0.54275][0.610392,-0.536298,0.582929][0.133247,0.756686,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.059611,0.606329,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.059611,0.606329,0][-0.628771,-1.12032,1.15144][0.255647,-0.929931,-0.264336][0.099739,0.585844,0][-1.06624,-1.09439,0.637135][0.266321,-0.922191,-0.280423][0.176079,0.7362,0][-1.18915,-0.968836,0.706351][0.501698,0.745109,-0.439444][0.180266,0.63904,0][-0.701594,-0.970272,1.26055][0.501698,0.745109,-0.439444][0.139919,0.566817,0][-0.656884,-1.04906,1.178][0.501698,0.745109,-0.439444][0.16339,0.563211,0][-0.656884,-1.04906,1.178][0.501698,0.745109,-0.439444][0.16339,0.563211,0][-1.12267,-1.01675,0.639841][0.371857,0.88861,-0.268505][0.208918,0.679265,0][-1.18915,-0.968836,0.706351][0.501698,0.745109,-0.439444][0.180266,0.63904,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][-0.628771,-1.12032,1.15144][0.255647,-0.929931,-0.264336][0.099739,0.585844,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.059611,0.606329,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.059611,0.606329,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.021377,0.499349,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][-0.701594,-0.970272,1.26055][0.501698,0.745109,-0.439444][0.139919,0.566817,0][-0.25193,-0.817211,1.46632][-0.0894018,0.882755,-0.46125][0.123829,0.481084,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][-0.656884,-1.04906,1.178][0.501698,0.745109,-0.439444][0.16339,0.563211,0][-0.701594,-0.970272,1.26055][0.501698,0.745109,-0.439444][0.139919,0.566817,0][0.359871,-1.12057,1.30097][-0.127486,-0.973276,-0.191002][0.069165,0.363928,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.021377,0.499349,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.021377,0.499349,0][0.425198,-1.11934,1.17226][0.085634,-0.0117811,-0.996257][0.044747,0.335498,0][0.359871,-1.12057,1.30097][-0.127486,-0.973276,-0.191002][0.069165,0.363928,0][0.412355,-0.936251,1.52886][0.143303,0.948391,-0.282875][0.104613,0.415998,0][0.428474,-1.00055,1.32144][0.143303,0.948391,-0.282875][0.124901,0.360851,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][-0.25193,-0.817211,1.46632][-0.0894018,0.882755,-0.46125][0.123829,0.481084,0][0.412355,-0.936251,1.52886][0.143303,0.948391,-0.282875][0.104613,0.415998,0][0.558234,-1.05805,1.36081][0.0807059,-0.986395,0.143215][0.115887,0.20575,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.072388,0.16486,0][0.994866,-1.08605,0.921945][-0.438158,-0.0461283,-0.897713][0.206759,0.063113,0][0.994866,-1.08605,0.921945][-0.438158,-0.0461283,-0.897713][0.206759,0.063113,0][1.08618,-1.12555,1.02817][-0.225603,-0.960454,-0.163189][0.226705,0.095044,0][0.558234,-1.05805,1.36081][0.0807059,-0.986395,0.143215][0.115887,0.20575,0][0.569213,-0.917303,1.39232][-0.185442,0.876581,-0.444091][0.16479,0.211811,0][1.18015,-0.935338,1.10161][-0.185442,0.876581,-0.444091][0.256596,0.13495,0][1.06924,-0.981556,1.05669][-0.185442,0.876581,-0.444091][0.259664,0.163032,0][1.06924,-0.981556,1.05669][-0.185442,0.876581,-0.444091][0.259664,0.163032,0][0.481615,-0.984519,1.33944][-0.270314,0.787741,-0.553528][0.150792,0.247216,0][0.569213,-0.917303,1.39232][-0.185442,0.876581,-0.444091][0.16479,0.211811,0][1.08618,-1.12555,1.02817][-0.225603,-0.960454,-0.163189][0.226705,0.095044,0][0.994866,-1.08605,0.921945][-0.438158,-0.0461283,-0.897713][0.206759,0.063113,0][1.27013,-1.06632,0.614035][-0.742338,-0.0590064,-0.667422][0.309719,0.025588,0][1.27013,-1.06632,0.614035][-0.742338,-0.0590064,-0.667422][0.309719,0.025588,0][1.43666,-1.10949,0.687225][-0.15856,-0.965095,-0.208449][0.31452,0.063367,0][1.08618,-1.12555,1.02817][-0.225603,-0.960454,-0.163189][0.226705,0.095044,0][1.18015,-0.935338,1.10161][-0.185442,0.876581,-0.444091][0.256596,0.13495,0][1.5179,-0.893525,0.73416][-0.361306,0.903827,-0.229248][0.320697,0.092416,0][1.3893,-0.951335,0.708911][-0.361306,0.903827,-0.229248][0.328075,0.110477,0][1.3893,-0.951335,0.708911][-0.361306,0.903827,-0.229248][0.328075,0.110477,0][1.06924,-0.981556,1.05669][-0.185442,0.876581,-0.444091][0.259664,0.163032,0][1.18015,-0.935338,1.10161][-0.185442,0.876581,-0.444091][0.256596,0.13495,0][1.27013,-1.06632,0.614035][-0.742338,-0.0590064,-0.667422][0.309719,0.025588,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.43666,-1.10949,0.687225][-0.15856,-0.965095,-0.208449][0.31452,0.063367,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.3893,-0.951335,0.708911][-0.361306,0.903827,-0.229248][0.328075,0.110477,0][1.5179,-0.893525,0.73416][-0.361306,0.903827,-0.229248][0.320697,0.092416,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][-0.336727,-0.284662,-1.24772][0.675548,0.0835714,0.732564][0.742326,0.831555,0][-0.368457,-0.303829,-1.45969][0.818622,-0.569927,-0.0710048][0.703227,0.806051,0][-0.37615,-0.166274,-1.44939][-0.543864,0.629778,0.55461][0.677255,0.766028,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][-0.458555,-0.163045,-1.53387][-0.394612,0.588874,0.705343][0.680444,0.784504,0][-0.37615,-0.166274,-1.44939][-0.543864,0.629778,0.55461][0.677255,0.766028,0][-0.759229,-0.58423,-1.35044][-0.394612,0.588874,0.705343][0.607588,0.809841,0][-0.707131,-0.592002,-1.28025][-0.00985976,-0.288427,-0.957451][0.602946,0.800809,0][-0.707131,-0.592002,-1.28025][-0.00985976,-0.288427,-0.957451][0.602946,0.800809,0][-0.361265,-0.171066,-1.41062][0.173784,-0.497291,-0.850001][0.670579,0.75588,0][-0.37615,-0.166274,-1.44939][-0.543864,0.629778,0.55461][0.677255,0.766028,0][-0.458555,-0.163045,-1.53387][-0.394612,0.588874,0.705343][0.680444,0.784504,0][-0.368457,-0.303829,-1.45969][0.818622,-0.569927,-0.0710048][0.703227,0.806051,0][-0.653522,-0.733076,-1.30084][0.818622,-0.569927,-0.0710048][0.645254,0.879409,0][-0.653522,-0.733076,-1.30084][0.818622,-0.569927,-0.0710048][0.645254,0.879409,0][-1.0294,-0.623737,-1.46861][-0.394612,0.588874,0.705343][0.60465,0.842483,0][-0.458555,-0.163045,-1.53387][-0.394612,0.588874,0.705343][0.680444,0.784504,0][-0.759229,-0.58423,-1.35044][-0.394612,0.588874,0.705343][0.607588,0.809841,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-0.707131,-0.592002,-1.28025][-0.00985976,-0.288427,-0.957451][0.602946,0.800809,0][-0.759229,-0.58423,-1.35044][-0.394612,0.588874,0.705343][0.607588,0.809841,0][-1.0294,-0.623737,-1.46861][-0.394612,0.588874,0.705343][0.60465,0.842483,0][-0.653522,-0.733076,-1.30084][0.818622,-0.569927,-0.0710048][0.645254,0.879409,0][-0.952696,-0.867773,-1.00611][0.498713,-0.859301,0.113516][0.594124,0.908121,0][-0.952696,-0.867773,-1.00611][0.498713,-0.859301,0.113516][0.594124,0.908121,0][-1.30332,-0.716396,-1.03799][0.123672,0.951023,0.283304][0.540357,0.863141,0][-1.0294,-0.623737,-1.46861][-0.394612,0.588874,0.705343][0.60465,0.842483,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-1.21775,-0.915438,-0.369399][0.541564,0.770553,0.336091][0.472165,0.86553,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-1.30332,-0.716396,-1.03799][0.123672,0.951023,0.283304][0.540357,0.863141,0][-0.952696,-0.867773,-1.00611][0.498713,-0.859301,0.113516][0.594124,0.908121,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-1.37472,-0.804293,-0.371278][0.541564,0.770553,0.336091][0.533123,0.863535,0][-1.30332,-0.716396,-1.03799][0.123672,0.951023,0.283304][0.540357,0.863141,0][-1.22099,-1.00994,0.378261][0.299387,0.939539,0.166232][0.296854,0.800616,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.18997,-0.920568,-0.329708][0.37221,0.918672,0.132289][0.36375,0.835459,0][-1.22099,-1.00994,0.378261][0.299387,0.939539,0.166232][0.296854,0.800616,0][-1.4486,-0.831625,-0.219675][0.299387,0.939539,0.166232][0.329768,0.827082,0][-1.25784,-1.04384,-0.258947][0.305603,-0.949343,-0.0731803][0.341171,0.855971,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-1.37397,-0.95588,0.348204][0.299387,0.939539,0.166232][0.312567,0.821926,0][-1.4486,-0.831625,-0.219675][0.299387,0.939539,0.166232][0.329768,0.827082,0][-1.12267,-1.01675,0.639841][0.371857,0.88861,-0.268505][0.208918,0.679265,0][-0.656884,-1.04906,1.178][0.501698,0.745109,-0.439444][0.16339,0.563211,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-1.12267,-1.01675,0.639841][0.371857,0.88861,-0.268505][0.208918,0.679265,0][-1.18915,-0.968836,0.706351][0.501698,0.745109,-0.439444][0.180266,0.63904,0][-1.06624,-1.09439,0.637135][0.266321,-0.922191,-0.280423][0.176079,0.7362,0][-0.628771,-1.12032,1.15144][0.255647,-0.929931,-0.264336][0.099739,0.585844,0][-0.628771,-1.12032,1.15144][0.255647,-0.929931,-0.264336][0.099739,0.585844,0][-0.701594,-0.970272,1.26055][0.501698,0.745109,-0.439444][0.139919,0.566817,0][-1.18915,-0.968836,0.706351][0.501698,0.745109,-0.439444][0.180266,0.63904,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-0.656884,-1.04906,1.178][0.501698,0.745109,-0.439444][0.16339,0.563211,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][-0.701594,-0.970272,1.26055][0.501698,0.745109,-0.439444][0.139919,0.566817,0][-0.628771,-1.12032,1.15144][0.255647,-0.929931,-0.264336][0.099739,0.585844,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][-0.25193,-0.817211,1.46632][-0.0894018,0.882755,-0.46125][0.123829,0.481084,0][-0.701594,-0.970272,1.26055][0.501698,0.745109,-0.439444][0.139919,0.566817,0][0.428474,-1.00055,1.32144][0.143303,0.948391,-0.282875][0.124901,0.360851,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][0.428474,-1.00055,1.32144][0.143303,0.948391,-0.282875][0.124901,0.360851,0][0.412355,-0.936251,1.52886][0.143303,0.948391,-0.282875][0.104613,0.415998,0][-0.25193,-0.817211,1.46632][-0.0894018,0.882755,-0.46125][0.123829,0.481084,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][0.359871,-1.12057,1.30097][-0.127486,-0.973276,-0.191002][0.069165,0.363928,0][0.412355,-0.936251,1.52886][0.143303,0.948391,-0.282875][0.104613,0.415998,0][1.06924,-0.981556,1.05669][-0.185442,0.876581,-0.444091][0.259664,0.163032,0][1.04041,-0.986105,1.00565][0.434586,-0.219412,0.873495][0.269223,0.172331,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.481615,-0.984519,1.33944][-0.270314,0.787741,-0.553528][0.150792,0.247216,0][1.06924,-0.981556,1.05669][-0.185442,0.876581,-0.444091][0.259664,0.163032,0][0.569213,-0.917303,1.39232][-0.185442,0.876581,-0.444091][0.16479,0.211811,0][0.558234,-1.05805,1.36081][0.0807059,-0.986395,0.143215][0.115887,0.20575,0][1.08618,-1.12555,1.02817][-0.225603,-0.960454,-0.163189][0.226705,0.095044,0][1.08618,-1.12555,1.02817][-0.225603,-0.960454,-0.163189][0.226705,0.095044,0][1.18015,-0.935338,1.10161][-0.185442,0.876581,-0.444091][0.256596,0.13495,0][0.569213,-0.917303,1.39232][-0.185442,0.876581,-0.444091][0.16479,0.211811,0][1.3893,-0.951335,0.708911][-0.361306,0.903827,-0.229248][0.328075,0.110477,0][1.33557,-1.00905,0.666334][0.735799,-0.181784,0.652345][0.33953,0.120592,0][1.04041,-0.986105,1.00565][0.434586,-0.219412,0.873495][0.269223,0.172331,0][1.04041,-0.986105,1.00565][0.434586,-0.219412,0.873495][0.269223,0.172331,0][1.06924,-0.981556,1.05669][-0.185442,0.876581,-0.444091][0.259664,0.163032,0][1.3893,-0.951335,0.708911][-0.361306,0.903827,-0.229248][0.328075,0.110477,0][1.18015,-0.935338,1.10161][-0.185442,0.876581,-0.444091][0.256596,0.13495,0][1.08618,-1.12555,1.02817][-0.225603,-0.960454,-0.163189][0.226705,0.095044,0][1.43666,-1.10949,0.687225][-0.15856,-0.965095,-0.208449][0.31452,0.063367,0][1.43666,-1.10949,0.687225][-0.15856,-0.965095,-0.208449][0.31452,0.063367,0][1.5179,-0.893525,0.73416][-0.361306,0.903827,-0.229248][0.320697,0.092416,0][1.18015,-0.935338,1.10161][-0.185442,0.876581,-0.444091][0.256596,0.13495,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.33557,-1.00905,0.666334][0.735799,-0.181784,0.652345][0.33953,0.120592,0][1.3893,-0.951335,0.708911][-0.361306,0.903827,-0.229248][0.328075,0.110477,0][1.43666,-1.10949,0.687225][-0.15856,-0.965095,-0.208449][0.31452,0.063367,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.5179,-0.893525,0.73416][-0.361306,0.903827,-0.229248][0.320697,0.092416,0][-0.361265,-0.171066,-1.41062][0.173784,-0.497291,-0.850001][0.670579,0.75588,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][-0.37615,-0.166274,-1.44939][-0.543864,0.629778,0.55461][0.677255,0.766028,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][-0.368457,-0.303829,-1.45969][0.818622,-0.569927,-0.0710048][0.703227,0.806051,0][-0.458555,-0.163045,-1.53387][-0.394612,0.588874,0.705343][0.680444,0.784504,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-0.993661,-0.913774,-0.343836][0.830517,0.405876,0.381453][0.432812,0.961177,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.389866,0.973699,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.389866,0.973699,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-0.993661,-0.913774,-0.343836][0.830517,0.405876,0.381453][0.432812,0.961177,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.21775,-0.915438,-0.369399][0.541564,0.770553,0.336091][0.472165,0.86553,0][-1.21775,-0.915438,-0.369399][0.541564,0.770553,0.336091][0.472165,0.86553,0][-1.37472,-0.804293,-0.371278][0.541564,0.770553,0.336091][0.533123,0.863535,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-1.4486,-0.831625,-0.219675][0.299387,0.939539,0.166232][0.329768,0.827082,0][-1.18997,-0.920568,-0.329708][0.37221,0.918672,0.132289][0.36375,0.835459,0][-1.25784,-1.04384,-0.258947][0.305603,-0.949343,-0.0731803][0.341171,0.855971,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.389866,0.973699,0][-1.25784,-1.04384,-0.258947][0.305603,-0.949343,-0.0731803][0.341171,0.855971,0][-1.18997,-0.920568,-0.329708][0.37221,0.918672,0.132289][0.36375,0.835459,0][-1.18997,-0.920568,-0.329708][0.37221,0.918672,0.132289][0.36375,0.835459,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.389866,0.973699,0][-1.22099,-1.00994,0.378261][0.299387,0.939539,0.166232][0.296854,0.800616,0][-1.37397,-0.95588,0.348204][0.299387,0.939539,0.166232][0.312567,0.821926,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-1.22099,-1.00994,0.378261][0.299387,0.939539,0.166232][0.296854,0.800616,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.19981,0.791252,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.19981,0.791252,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.19981,0.791252,0][-0.947245,-1.03133,0.54275][0.610392,-0.536298,0.582929][0.197623,0.778289,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-1.18915,-0.968836,0.706351][0.501698,0.745109,-0.439444][0.180266,0.63904,0][-1.12267,-1.01675,0.639841][0.371857,0.88861,-0.268505][0.208918,0.679265,0][-1.06624,-1.09439,0.637135][0.266321,-0.922191,-0.280423][0.176079,0.7362,0][-1.06624,-1.09439,0.637135][0.266321,-0.922191,-0.280423][0.176079,0.7362,0][-1.12267,-1.01675,0.639841][0.371857,0.88861,-0.268505][0.208918,0.679265,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-0.947245,-1.03133,0.54275][0.610392,-0.536298,0.582929][0.197623,0.778289,0][-1.06624,-1.09439,0.637135][0.266321,-0.922191,-0.280423][0.176079,0.7362,0][0.569213,-0.917303,1.39232][-0.185442,0.876581,-0.444091][0.16479,0.211811,0][0.481615,-0.984519,1.33944][-0.270314,0.787741,-0.553528][0.150792,0.247216,0][0.558234,-1.05805,1.36081][0.0807059,-0.986395,0.143215][0.115887,0.20575,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.080111,0.303334,0][0.558234,-1.05805,1.36081][0.0807059,-0.986395,0.143215][0.115887,0.20575,0][0.558234,-1.05805,1.36081][0.0807059,-0.986395,0.143215][0.115887,0.20575,0][0.481615,-0.984519,1.33944][-0.270314,0.787741,-0.553528][0.150792,0.247216,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0][0.425198,-1.11934,1.17226][0.085634,-0.0117811,-0.996257][0.044747,0.335498,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.080111,0.303334,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.080111,0.303334,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0][0.428474,-1.00055,1.32144][0.143303,0.948391,-0.282875][0.124901,0.360851,0][0.412355,-0.936251,1.52886][0.143303,0.948391,-0.282875][0.104613,0.415998,0][0.359871,-1.12057,1.30097][-0.127486,-0.973276,-0.191002][0.069165,0.363928,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0][0.428474,-1.00055,1.32144][0.143303,0.948391,-0.282875][0.124901,0.360851,0][0.359871,-1.12057,1.30097][-0.127486,-0.973276,-0.191002][0.069165,0.363928,0][0.359871,-1.12057,1.30097][-0.127486,-0.973276,-0.191002][0.069165,0.363928,0][0.425198,-1.11934,1.17226][0.085634,-0.0117811,-0.996257][0.044747,0.335498,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0] \ No newline at end of file diff --git a/charcustom/hats/fonts/SpaceHat.mesh b/charcustom/hats/fonts/SpaceHat.mesh new file mode 100644 index 0000000..4adecb1 --- /dev/null +++ b/charcustom/hats/fonts/SpaceHat.mesh @@ -0,0 +1,3 @@ +version 1.00 +840 +[2.07117,-0.149335,0.0986989][0.992476,0.120177,0.0234218][0.407106,0.338614,0][1.97032,0.678258,0.126086][0.964834,0.258503,0.0476516][0.459865,0.319366,0][1.97062,0.633799,0.34137][0.96798,0.235642,0.0865333][0.462523,0.334037,0][2.07117,-0.149335,0.0986989][0.991948,0.105796,0.0696116][0.407106,0.338614,0][1.97062,0.633799,0.34137][0.96798,0.235642,0.0865333][0.462523,0.334037,0][1.96965,0.514702,0.536184][0.968524,0.181222,0.170648][0.459967,0.349311,0][2.07117,-0.149335,0.0986989][0.990952,0.0809956,0.107024][0.407106,0.338614,0][1.96965,0.514702,0.536184][0.968524,0.181222,0.170648][0.459967,0.349311,0][1.96881,0.327679,0.685541][0.962143,0.124161,0.242621][0.451986,0.363446,0][2.07117,-0.149335,0.0986989][0.989993,0.0502016,0.131887][0.407106,0.338614,0][1.96881,0.327679,0.685541][0.962143,0.124161,0.242621][0.451986,0.363446,0][1.96973,0.090795,0.768793][0.955865,0.0557035,0.288478][0.439192,0.374686,0][2.07117,-0.149335,0.0986989][0.989207,0.00996973,0.146185][0.407106,0.338614,0][1.96973,0.090795,0.768793][0.955865,0.0557035,0.288478][0.439192,0.374686,0][1.96981,-0.153135,0.784907][0.951814,-0.0236989,0.305759][0.424255,0.381881,0][2.07117,-0.149335,0.0986989][0.988812,-0.0310644,0.1459][0.407106,0.338614,0][1.96981,-0.153135,0.784907][0.951814,-0.0236989,0.305759][0.424255,0.381881,0][1.9698,-0.379571,0.736703][0.950073,-0.109896,0.292036][0.408788,0.384586,0][2.07117,-0.149335,0.0986989][0.988739,-0.0723929,0.130974][0.407106,0.338614,0][1.9698,-0.379571,0.736703][0.950073,-0.109896,0.292036][0.408788,0.384586,0][1.9698,-0.576186,0.628032][0.950197,-0.187832,0.248686][0.393665,0.382731,0][2.07117,-0.149335,0.0986989][0.988919,-0.106162,0.103778][0.407106,0.338614,0][1.9698,-0.576186,0.628032][0.950197,-0.187832,0.248686][0.393665,0.382731,0][1.9698,-0.7324,0.468222][0.952229,-0.245678,0.181387][0.379788,0.376635,0][2.07117,-0.149335,0.0986989][0.989317,-0.12917,0.0675819][0.407106,0.338614,0][1.9698,-0.7324,0.468222][0.952229,-0.245678,0.181387][0.379788,0.376635,0][1.9698,-0.834228,0.273625][0.954877,-0.280716,0.0969949][0.368451,0.366973,0][2.07117,-0.149335,0.0986989][0.989804,-0.140451,0.0236946][0.407106,0.338614,0][1.9698,-0.834228,0.273625][0.954877,-0.280716,0.0969949][0.368451,0.366973,0][1.9698,-0.869649,0.0636228][0.956865,-0.290531,0.000561972][0.360901,0.354659,0][2.07117,-0.149335,0.0986989][0.990122,-0.138186,-0.0237399][0.407106,0.338614,0][1.9698,-0.869649,0.0636228][0.956865,-0.290531,0.000561972][0.360901,0.354659,0][1.9698,-0.834249,-0.142429][0.957154,-0.272819,-0.0970896][0.357907,0.340799,0][2.07117,-0.149335,0.0986989][0.990122,-0.12259,-0.0680416][0.407106,0.338614,0][1.9698,-0.834249,-0.142429][0.957154,-0.272819,-0.0970896][0.357907,0.340799,0][1.9698,-0.732372,-0.325978][0.955754,-0.229679,-0.183802][0.359665,0.32667,0][2.07117,-0.149335,0.0986989][0.989878,-0.0959163,-0.104603][0.407106,0.338614,0][1.9698,-0.732372,-0.325978][0.955754,-0.229679,-0.183802][0.359665,0.32667,0][1.96981,-0.575096,-0.470178][0.955284,-0.199833,-0.217943][0.365906,0.313613,0][2.07166,-0.225679,0.315051][0.98953,-0.0595785,-0.131454][0.322851,0.568498,0][1.97029,-0.649099,-0.256112][0.969206,-0.14967,-0.195546][0.30207,0.524985,0][1.97029,-0.450779,-0.345995][0.979529,-0.0568158,-0.193118][0.316438,0.521573,0][2.07166,-0.225679,0.315051][0.989172,-0.0175601,-0.145708][0.322851,0.568498,0][1.97029,-0.450779,-0.345995][0.979529,-0.0568158,-0.193118][0.316438,0.521573,0][1.97029,-0.226262,-0.373039][0.980618,0.00246922,-0.195915][0.331735,0.522683,0][2.07166,-0.225679,0.315051][0.98902,0.0246082,-0.145721][0.322851,0.568498,0][1.97029,-0.226262,-0.373039][0.980618,0.00246922,-0.195915][0.331735,0.522683,0][1.97029,0.00918827,-0.333285][0.981853,0.0535886,-0.181914][0.346894,0.528383,0][2.07166,-0.225679,0.315051][0.989299,0.0605798,-0.132733][0.322851,0.568498,0][1.97029,0.00918827,-0.333285][0.981853,0.0535886,-0.181914][0.346894,0.528383,0][1.97029,0.237373,-0.229138][0.983439,0.0956139,-0.153964][0.360734,0.538275,0][2.07166,-0.225679,0.315051][0.990086,0.09014,-0.107727][0.322851,0.568498,0][1.97029,0.237373,-0.229138][0.983439,0.0956139,-0.153964][0.360734,0.538275,0][1.97029,0.427791,-0.0698173][0.983687,0.15252,-0.0953775][0.371344,0.551351,0][2.07117,-0.204026,0.25289][0.991176,0.112028,-0.0708532][0.42722,0.897723,0][1.9698,0.449444,-0.131978][0.972117,0.198701,-0.124524][0.476883,0.884335,0][1.97009,0.572163,0.0660988][0.957991,0.243173,-0.152056][0.481337,0.899498,0][2.07117,-0.149335,0.0986989][0.992254,0.121743,-0.0247248][0.927781,0.432538,0][1.96981,0.638371,-0.0907167][0.992254,0.121743,-0.0247248][0.982676,0.430142,0][1.97032,0.678258,0.126086][0.992254,0.121743,-0.0247248][0.98252,0.445092,0][1.67607,1.34451,0.565224][0.866835,0.487995,0.102263][0.512907,0.330111,0][1.97062,0.633799,0.34137][0.96798,0.235642,0.0865333][0.462523,0.334037,0][1.97032,0.678258,0.126086][0.964834,0.258503,0.0476516][0.459865,0.319366,0][1.97032,0.678258,0.126086][0.964834,0.258503,0.0476516][0.459865,0.319366,0][1.67393,1.40625,0.142544][0.849782,0.524326,0.0543474][0.506081,0.301955,0][1.67607,1.34451,0.565224][0.866835,0.487995,0.102263][0.512907,0.330111,0][1.67542,1.20949,0.983242][0.882194,0.375906,0.283597][0.515005,0.35983,0][1.96965,0.514702,0.536184][0.968524,0.181222,0.170648][0.459967,0.349311,0][1.97062,0.633799,0.34137][0.96798,0.235642,0.0865333][0.462523,0.334037,0][1.97062,0.633799,0.34137][0.96798,0.235642,0.0865333][0.462523,0.334037,0][1.67607,1.34451,0.565224][0.866835,0.487995,0.102263][0.512907,0.330111,0][1.67542,1.20949,0.983242][0.882194,0.375906,0.283597][0.515005,0.35983,0][1.66277,0.868282,1.26887][0.852601,0.219848,0.474066][0.500777,0.386445,0][1.96881,0.327679,0.685541][0.962143,0.124161,0.242621][0.451986,0.363446,0][1.96965,0.514702,0.536184][0.968524,0.181222,0.170648][0.459967,0.349311,0][1.96965,0.514702,0.536184][0.968524,0.181222,0.170648][0.459967,0.349311,0][1.67542,1.20949,0.983242][0.882194,0.375906,0.283597][0.515005,0.35983,0][1.66277,0.868282,1.26887][0.852601,0.219848,0.474066][0.500777,0.386445,0][1.67106,0.348397,1.38969][0.830425,0.0743549,0.552147][0.471132,0.40722,0][1.96973,0.090795,0.768793][0.955865,0.0557035,0.288478][0.439192,0.374686,0][1.96881,0.327679,0.685541][0.962143,0.124161,0.242621][0.451986,0.363446,0][1.96881,0.327679,0.685541][0.962143,0.124161,0.242621][0.451986,0.363446,0][1.66277,0.868282,1.26887][0.852601,0.219848,0.474066][0.500777,0.386445,0][1.67106,0.348397,1.38969][0.830425,0.0743549,0.552147][0.471132,0.40722,0][1.67562,-0.157175,1.39593][0.814972,-0.058944,0.576495][0.439483,0.420423,0][1.96981,-0.153135,0.784907][0.951814,-0.0236989,0.305759][0.424255,0.381881,0][1.96973,0.090795,0.768793][0.955865,0.0557035,0.288478][0.439192,0.374686,0][1.96973,0.090795,0.768793][0.955865,0.0557035,0.288478][0.439192,0.374686,0][1.67106,0.348397,1.38969][0.830425,0.0743549,0.552147][0.471132,0.40722,0][1.67562,-0.157175,1.39593][0.814972,-0.058944,0.576495][0.439483,0.420423,0][1.67561,-0.580063,1.29917][0.807591,-0.213828,0.549613][0.410427,0.425052,0][1.9698,-0.379571,0.736703][0.950073,-0.109896,0.292036][0.408788,0.384586,0][1.96981,-0.153135,0.784907][0.951814,-0.0236989,0.305759][0.424255,0.381881,0][1.96981,-0.153135,0.784907][0.951814,-0.0236989,0.305759][0.424255,0.381881,0][1.67562,-0.157175,1.39593][0.814972,-0.058944,0.576495][0.439483,0.420423,0][1.67561,-0.580063,1.29917][0.807591,-0.213828,0.549613][0.410427,0.425052,0][1.67561,-0.955647,1.0867][0.80715,-0.356992,0.470176][0.381415,0.421202,0][1.9698,-0.576186,0.628032][0.950197,-0.187832,0.248686][0.393665,0.382731,0][1.9698,-0.379571,0.736703][0.950073,-0.109896,0.292036][0.408788,0.384586,0][1.9698,-0.379571,0.736703][0.950073,-0.109896,0.292036][0.408788,0.384586,0][1.67561,-0.580063,1.29917][0.807591,-0.213828,0.549613][0.410427,0.425052,0][1.67561,-0.955647,1.0867][0.80715,-0.356992,0.470176][0.381415,0.421202,0][1.67562,-1.26261,0.778365][0.797826,-0.500929,0.335475][0.35429,0.409582,0][1.9698,-0.7324,0.468222][0.952229,-0.245678,0.181387][0.379788,0.376635,0][1.9698,-0.576186,0.628032][0.950197,-0.187832,0.248686][0.393665,0.382731,0][1.9698,-0.576186,0.628032][0.950197,-0.187832,0.248686][0.393665,0.382731,0][1.67561,-0.955647,1.0867][0.80715,-0.356992,0.470176][0.381415,0.421202,0][1.67562,-1.26261,0.778365][0.797826,-0.500929,0.335475][0.35429,0.409582,0][1.67562,-1.45969,0.41219][0.810228,-0.53668,0.235594][0.332613,0.391539,0][1.9698,-0.834228,0.273625][0.954877,-0.280716,0.0969949][0.368451,0.366973,0][1.9698,-0.7324,0.468222][0.952229,-0.245678,0.181387][0.379788,0.376635,0][1.9698,-0.7324,0.468222][0.952229,-0.245678,0.181387][0.379788,0.376635,0][1.67562,-1.26261,0.778365][0.797826,-0.500929,0.335475][0.35429,0.409582,0][1.67562,-1.45969,0.41219][0.810228,-0.53668,0.235594][0.332613,0.391539,0][1.67562,-1.5276,0.0231771][0.85614,-0.515414,-0.0370393][0.318484,0.368787,0][1.9698,-0.869649,0.0636228][0.956865,-0.290531,0.000561972][0.360901,0.354659,0][1.9698,-0.834228,0.273625][0.954877,-0.280716,0.0969949][0.368451,0.366973,0][1.9698,-0.834228,0.273625][0.954877,-0.280716,0.0969949][0.368451,0.366973,0][1.67562,-1.45969,0.41219][0.810228,-0.53668,0.235594][0.332613,0.391539,0][1.67562,-1.5276,0.0231771][0.85614,-0.515414,-0.0370393][0.318484,0.368787,0][1.67562,-1.45969,-0.356562][0.780834,-0.599164,-0.176919][0.313134,0.343176,0][1.9698,-0.834249,-0.142429][0.957154,-0.272819,-0.0970896][0.357907,0.340799,0][1.9698,-0.869649,0.0636228][0.956865,-0.290531,0.000561972][0.360901,0.354659,0][1.9698,-0.869649,0.0636228][0.956865,-0.290531,0.000561972][0.360901,0.354659,0][1.67562,-1.5276,0.0231771][0.85614,-0.515414,-0.0370393][0.318484,0.368787,0][1.67562,-1.45969,-0.356562][0.780834,-0.599164,-0.176919][0.313134,0.343176,0][1.67562,-1.26261,-0.696755][0.828537,-0.431882,-0.356377][0.316912,0.31678,0][1.9698,-0.732372,-0.325978][0.955754,-0.229679,-0.183802][0.359665,0.32667,0][1.9698,-0.834249,-0.142429][0.957154,-0.272819,-0.0970896][0.357907,0.340799,0][1.9698,-0.834249,-0.142429][0.957154,-0.272819,-0.0970896][0.357907,0.340799,0][1.67562,-1.45969,-0.356562][0.780834,-0.599164,-0.176919][0.313134,0.343176,0][1.67562,-1.26261,-0.696755][0.828537,-0.431882,-0.356377][0.316912,0.31678,0][1.67562,-0.955647,-0.967457][0.82551,-0.373884,-0.422782][0.329364,0.291972,0][1.96981,-0.575096,-0.470178][0.955284,-0.199833,-0.217943][0.365906,0.313613,0][1.9698,-0.732372,-0.325978][0.955754,-0.229679,-0.183802][0.359665,0.32667,0][1.9698,-0.732372,-0.325978][0.955754,-0.229679,-0.183802][0.359665,0.32667,0][1.67562,-1.26261,-0.696755][0.828537,-0.431882,-0.356377][0.316912,0.31678,0][1.67562,-0.955647,-0.967457][0.82551,-0.373884,-0.422782][0.329364,0.291972,0][1.78931,-0.546741,-1.05231][0.8531,-0.235022,-0.465817][0.319208,0.473308,0][1.97029,-0.450779,-0.345995][0.979529,-0.0568158,-0.193118][0.316438,0.521573,0][1.97029,-0.649099,-0.256112][0.969206,-0.14967,-0.195546][0.30207,0.524985,0][1.97029,-0.649099,-0.256112][0.969206,-0.14967,-0.195546][0.30207,0.524985,0][1.6761,-1.0311,-0.756072][0.806192,-0.422938,-0.413737][0.283122,0.486748,0][1.78931,-0.546741,-1.05231][0.8531,-0.235022,-0.465817][0.319208,0.473308,0][1.78931,-0.123905,-1.10947][0.866847,0.00268804,-0.498567][0.348098,0.474985,0][1.97029,-0.226262,-0.373039][0.980618,0.00246922,-0.195915][0.331735,0.522683,0][1.97029,-0.450779,-0.345995][0.979529,-0.0568158,-0.193118][0.316438,0.521573,0][1.97029,-0.450779,-0.345995][0.979529,-0.0568158,-0.193118][0.316438,0.521573,0][1.78931,-0.546741,-1.05231][0.8531,-0.235022,-0.465817][0.319208,0.473308,0][1.78931,-0.123905,-1.10947][0.866847,0.00268804,-0.498567][0.348098,0.474985,0][1.78931,0.339731,-1.04164][0.873991,0.126701,-0.469134][0.378083,0.485513,0][1.97029,0.00918827,-0.333285][0.981853,0.0535886,-0.181914][0.346894,0.528383,0][1.97029,-0.226262,-0.373039][0.980618,0.00246922,-0.195915][0.331735,0.522683,0][1.97029,-0.226262,-0.373039][0.980618,0.00246922,-0.195915][0.331735,0.522683,0][1.78931,-0.123905,-1.10947][0.866847,0.00268804,-0.498567][0.348098,0.474985,0][1.78931,0.339731,-1.04164][0.873991,0.126701,-0.469134][0.378083,0.485513,0][1.78931,0.800638,-0.851246][0.880953,0.245042,-0.404816][0.406298,0.504164,0][1.97029,0.237373,-0.229138][0.983439,0.0956139,-0.153964][0.360734,0.538275,0][1.97029,0.00918827,-0.333285][0.981853,0.0535886,-0.181914][0.346894,0.528383,0][1.97029,0.00918827,-0.333285][0.981853,0.0535886,-0.181914][0.346894,0.528383,0][1.78931,0.339731,-1.04164][0.873991,0.126701,-0.469134][0.378083,0.485513,0][1.78931,0.800638,-0.851246][0.880953,0.245042,-0.404816][0.406298,0.504164,0][1.78931,1.15693,-0.553168][0.878043,0.446212,-0.173018][0.426152,0.528628,0][1.97029,0.427791,-0.0698173][0.983687,0.15252,-0.0953775][0.371344,0.551351,0][1.97029,0.237373,-0.229138][0.983439,0.0956139,-0.153964][0.360734,0.538275,0][1.97029,0.237373,-0.229138][0.983439,0.0956139,-0.153964][0.360734,0.538275,0][1.78931,0.800638,-0.851246][0.880953,0.245042,-0.404816][0.406298,0.504164,0][1.78931,1.15693,-0.553168][0.878043,0.446212,-0.173018][0.426152,0.528628,0][1.97029,0.427791,-0.0698173][0.983687,0.15252,-0.0953775][0.371344,0.551351,0][1.78931,1.15693,-0.553168][0.878043,0.446212,-0.173018][0.426152,0.528628,0][1.6761,1.26529,-0.0512892][0.839054,0.539148,0.0728585][0.426858,0.563444,0][1.9698,0.449444,-0.131978][0.972117,0.198701,-0.124524][0.476883,0.884335,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.531308,0.90064,0][1.97009,0.572163,0.0660988][0.957991,0.243173,-0.152056][0.481337,0.899498,0][1.96981,0.638371,-0.0907167][0.926239,0.373131,-0.0534337][0.351706,0.89172,0][1.67562,1.34243,-0.273835][0.876172,0.477309,-0.0670709][0.400951,0.888659,0][1.67393,1.40625,0.142544][0.926239,0.373131,-0.0534336][0.399801,0.917206,0][1.96981,0.638371,-0.0907167][0.923237,0.377498,-0.071617][0.845041,0.854331,0][1.67393,1.40625,0.142544][0.923237,0.377498,-0.071617][0.790727,0.850786,0][1.97032,0.678258,0.126086][0.923237,0.377498,-0.071617][0.839058,0.840629,0][1.24783,1.85974,0.75216][0.66032,0.742749,0.110915][0.550058,0.328816,0][1.67607,1.34451,0.565224][0.866835,0.487995,0.102263][0.512907,0.330111,0][1.67393,1.40625,0.142544][0.849782,0.524326,0.0543474][0.506081,0.301955,0][1.67393,1.40625,0.142544][0.849782,0.524326,0.0543474][0.506081,0.301955,0][1.21104,1.91971,0.151672][0.630445,0.775807,0.0257598][0.538615,0.289519,0][1.24783,1.85974,0.75216][0.66032,0.742749,0.110915][0.550058,0.328816,0][1.29185,1.69233,1.32764][0.690743,0.595169,0.410668][0.554108,0.369262,0][1.67542,1.20949,0.983242][0.882194,0.375906,0.283597][0.515005,0.35983,0][1.67607,1.34451,0.565224][0.866835,0.487995,0.102263][0.512907,0.330111,0][1.67607,1.34451,0.565224][0.866835,0.487995,0.102263][0.512907,0.330111,0][1.24783,1.85974,0.75216][0.66032,0.742749,0.110915][0.550058,0.328816,0][1.29185,1.69233,1.32764][0.690743,0.595169,0.410668][0.554108,0.369262,0][1.21711,1.25127,1.7041][0.645198,0.312886,0.697009][0.535899,0.404122,0][1.66277,0.868282,1.26887][0.852601,0.219848,0.474066][0.500777,0.386445,0][1.67542,1.20949,0.983242][0.882194,0.375906,0.283597][0.515005,0.35983,0][1.67542,1.20949,0.983242][0.882194,0.375906,0.283597][0.515005,0.35983,0][1.29185,1.69233,1.32764][0.690743,0.595169,0.410668][0.554108,0.369262,0][1.21711,1.25127,1.7041][0.645198,0.312886,0.697009][0.535899,0.404122,0][1.20853,0.561533,1.87513][0.613043,0.0937827,0.784463][0.436325,0.0416791,0][1.67106,0.348397,1.38969][0.830425,0.0743549,0.552147][0.42187,0.0103087,0][1.66277,0.868282,1.26887][0.852601,0.219848,0.474066][0.45713,0.0108711,0][1.66277,0.868282,1.26887][0.852601,0.219848,0.474066][0.45713,0.0108711,0][1.21711,1.25127,1.7041][0.645198,0.312886,0.697009][0.483105,0.0410972,0][1.20853,0.561533,1.87513][0.613043,0.0937827,0.784463][0.436325,0.0416791,0][1.21741,-0.156735,1.87313][0.591948,-0.0903879,0.800892][0.38761,0.041077,0][1.67562,-0.157175,1.39593][0.814972,-0.058944,0.576495][0.387581,0.01,0][1.67106,0.348397,1.38969][0.830425,0.0743549,0.552147][0.42187,0.0103087,0][1.67106,0.348397,1.38969][0.830425,0.0743549,0.552147][0.42187,0.0103087,0][1.20853,0.561533,1.87513][0.613043,0.0937827,0.784463][0.436325,0.0416791,0][1.21741,-0.156735,1.87313][0.591948,-0.0903879,0.800892][0.38761,0.041077,0][1.21741,-0.73396,1.73659][0.581966,-0.298495,0.75645][0.348461,0.041077,0][1.67561,-0.580063,1.29917][0.807591,-0.213828,0.549613][0.358899,0.0100001,0][1.67562,-0.157175,1.39593][0.814972,-0.058944,0.576495][0.387581,0.01,0][1.67562,-0.157175,1.39593][0.814972,-0.058944,0.576495][0.387581,0.01,0][1.21741,-0.156735,1.87313][0.591948,-0.0903879,0.800892][0.38761,0.041077,0][1.21741,-0.73396,1.73659][0.581966,-0.298495,0.75645][0.348461,0.041077,0][1.21741,-1.26261,1.43398][0.561585,-0.525331,0.639257][0.312607,0.0410771,0][1.67561,-0.955647,1.0867][0.80715,-0.356992,0.470176][0.333426,0.01,0][1.67561,-0.580063,1.29917][0.807591,-0.213828,0.549613][0.358899,0.0100001,0][1.67561,-0.580063,1.29917][0.807591,-0.213828,0.549613][0.358899,0.0100001,0][1.21741,-0.73396,1.73659][0.581966,-0.298495,0.75645][0.348461,0.041077,0][1.21741,-1.26261,1.43398][0.561585,-0.525331,0.639257][0.312607,0.0410771,0][1.2174,-1.6851,1.00597][0.586343,-0.667708,0.45866][0.333478,0.434606,0][1.67562,-1.26261,0.778365][0.797826,-0.500929,0.335475][0.35429,0.409582,0][1.67561,-0.955647,1.0867][0.80715,-0.356992,0.470176][0.381415,0.421202,0][1.67561,-0.955647,1.0867][0.80715,-0.356992,0.470176][0.381415,0.421202,0][1.21741,-1.26261,1.43398][0.561585,-0.525331,0.639257][0.370903,0.450828,0][1.2174,-1.6851,1.00597][0.586343,-0.667708,0.45866][0.333478,0.434606,0][1.21741,-1.75336,0.527959][0.660203,-0.722017,0.206938][0.317071,0.406264,0][1.67562,-1.45969,0.41219][0.810228,-0.53668,0.235594][0.332613,0.391539,0][1.67562,-1.26261,0.778365][0.797826,-0.500929,0.335475][0.35429,0.409582,0][1.67562,-1.26261,0.778365][0.797826,-0.500929,0.335475][0.35429,0.409582,0][1.2174,-1.6851,1.00597][0.586343,-0.667708,0.45866][0.333478,0.434606,0][1.21741,-1.75336,0.527959][0.660203,-0.722017,0.206938][0.317071,0.406264,0][1.67562,-1.5276,0.0231771][0.85614,-0.515414,-0.0370393][0.318484,0.368787,0][1.21741,-1.75336,-0.513432][0.474791,-0.870184,-0.131732][0.290683,0.340748,0][1.67562,-1.45969,-0.356562][0.780834,-0.599164,-0.176919][0.313134,0.343176,0][1.21741,-1.6851,-0.981293][0.48426,-0.784665,-0.387031][0.283122,0.309585,0][1.67562,-1.26261,-0.696755][0.828537,-0.431882,-0.356377][0.316912,0.31678,0][1.67562,-1.45969,-0.356562][0.780834,-0.599164,-0.176919][0.313134,0.343176,0][1.67562,-1.45969,-0.356562][0.780834,-0.599164,-0.176919][0.313134,0.343176,0][1.21741,-1.75336,-0.513432][0.474791,-0.870184,-0.131732][0.290683,0.340748,0][1.21741,-1.6851,-0.981293][0.48426,-0.784665,-0.387031][0.283122,0.309585,0][1.21741,-1.26261,-1.35086][0.609348,-0.522402,-0.596482][0.300337,0.275629,0][1.67562,-0.955647,-0.967457][0.82551,-0.373884,-0.422782][0.329364,0.291972,0][1.67562,-1.26261,-0.696755][0.828537,-0.431882,-0.356377][0.316912,0.31678,0][1.67562,-1.26261,-0.696755][0.828537,-0.431882,-0.356377][0.316912,0.31678,0][1.21741,-1.6851,-0.981293][0.48426,-0.784665,-0.387031][0.283122,0.309585,0][1.21741,-1.26261,-1.35086][0.609348,-0.522402,-0.596482][0.300337,0.275629,0][1.3311,-0.704424,-1.50386][0.60099,-0.305482,-0.738574][0.190223,0.578496,0][1.78931,-0.546741,-1.05231][0.8531,-0.235022,-0.465817][0.179529,0.547419,0][1.6761,-1.0311,-0.756072][0.806192,-0.422938,-0.413737][0.212379,0.555098,0][1.6761,-1.0311,-0.756072][0.806192,-0.422938,-0.413737][0.212379,0.555098,0][1.21789,-1.33806,-1.14152][0.589077,-0.472369,-0.655633][0.233198,0.586175,0][1.3311,-0.704424,-1.50386][0.60099,-0.305482,-0.738574][0.190223,0.578496,0][1.3311,-0.123905,-1.58598][0.592176,-0.00419099,-0.805798][0.150851,0.578496,0][1.78931,-0.123905,-1.10947][0.866847,0.00268804,-0.498567][0.150851,0.547419,0][1.78931,-0.546741,-1.05231][0.8531,-0.235022,-0.465817][0.179529,0.547419,0][1.78931,-0.546741,-1.05231][0.8531,-0.235022,-0.465817][0.179529,0.547419,0][1.3311,-0.704424,-1.50386][0.60099,-0.305482,-0.738574][0.190223,0.578496,0][1.3311,-0.123905,-1.58598][0.592176,-0.00419099,-0.805798][0.150851,0.578496,0][1.3311,0.530148,-1.49947][0.603312,0.203737,-0.771042][0.106491,0.578496,0][1.78931,0.339731,-1.04164][0.873991,0.126701,-0.469134][0.119406,0.547419,0][1.78931,-0.123905,-1.10947][0.866847,0.00268804,-0.498567][0.150851,0.547419,0][1.78931,-0.123905,-1.10947][0.866847,0.00268804,-0.498567][0.150851,0.547419,0][1.3311,-0.123905,-1.58598][0.592176,-0.00419099,-0.805798][0.150851,0.578496,0][1.3311,0.530148,-1.49947][0.603312,0.203737,-0.771042][0.106491,0.578496,0][1.3311,1.15692,-1.2467][0.620084,0.420639,-0.662238][0.0639814,0.578496,0][1.78931,0.800638,-0.851246][0.880953,0.245042,-0.404816][0.0881458,0.547419,0][1.78931,0.339731,-1.04164][0.873991,0.126701,-0.469134][0.119406,0.547419,0][1.78931,0.339731,-1.04164][0.873991,0.126701,-0.469134][0.119406,0.547419,0][1.3311,0.530148,-1.49947][0.603312,0.203737,-0.771042][0.106491,0.578496,0][1.3311,1.15692,-1.2467][0.620084,0.420639,-0.662238][0.0639814,0.578496,0][1.3311,1.59598,-0.843978][0.62609,0.690235,-0.362749][0.459151,0.514961,0][1.78931,1.15693,-0.553168][0.878043,0.446212,-0.173018][0.426152,0.528628,0][1.78931,0.800638,-0.851246][0.880953,0.245042,-0.404816][0.406298,0.504164,0][1.78931,0.800638,-0.851246][0.880953,0.245042,-0.404816][0.406298,0.504164,0][1.3311,1.15692,-1.2467][0.620084,0.420639,-0.662238][0.435145,0.482458,0][1.3311,1.59598,-0.843978][0.62609,0.690235,-0.362749][0.459151,0.514961,0][1.21789,1.75925,-0.201828][0.603988,0.79268,-0.0828076][0.461693,0.559827,0][1.6761,1.26529,-0.0512892][0.839054,0.539148,0.0728585][0.426858,0.563444,0][1.78931,1.15693,-0.553168][0.878043,0.446212,-0.173018][0.426152,0.528628,0][1.78931,1.15693,-0.553168][0.878043,0.446212,-0.173018][0.426152,0.528628,0][1.3311,1.59598,-0.843978][0.62609,0.690235,-0.362749][0.459151,0.514961,0][1.21789,1.75925,-0.201828][0.603988,0.79268,-0.0828076][0.461693,0.559827,0][1.67562,1.34243,-0.273835][0.876172,0.477309,-0.0670709][0.792123,0.883828,0][1.21741,1.83326,-0.425187][0.658841,0.744826,-0.105652][0.801162,0.915284,0][1.21104,1.91971,0.151672][0.741821,0.664344,-0.0913701][0.762051,0.914181,0][1.67562,1.34243,-0.273835][0.738189,0.667249,-0.0992765][0.314631,0.979333,0][1.21104,1.91971,0.151672][0.738189,0.667249,-0.0992765][0.283122,0.950474,0][1.67393,1.40625,0.142544][0.738189,0.667249,-0.0992765][0.314516,0.951093,0][0.718989,2.19393,0.873815][0.354986,0.917929,0.177177][0.574165,0.328001,0][1.24783,1.85974,0.75216][0.66032,0.742749,0.110915][0.550058,0.328816,0][1.21104,1.91971,0.151672][0.630445,0.775807,0.0257598][0.538615,0.289519,0][1.21104,1.91971,0.151672][0.630445,0.775807,0.0257598][0.538615,0.289519,0][0.631655,2.25325,0.1561][0.327396,0.943986,0.0412623][0.559711,0.281346,0][0.718989,2.19393,0.873815][0.354986,0.917929,0.177177][0.574165,0.328001,0][0.790533,1.95392,1.52224][0.366163,0.766587,0.527512][0.575496,0.374876,0][1.29185,1.69233,1.32764][0.690743,0.595169,0.410668][0.554108,0.369262,0][1.24783,1.85974,0.75216][0.66032,0.742749,0.110915][0.550058,0.328816,0][1.24783,1.85974,0.75216][0.66032,0.742749,0.110915][0.550058,0.328816,0][0.718989,2.19393,0.873815][0.354986,0.917929,0.177177][0.574165,0.328001,0][0.790533,1.95392,1.52224][0.366163,0.766587,0.527512][0.575496,0.374876,0][0.668421,1.46255,1.96636][0.332304,0.428369,0.840282][0.497435,0.0783108,0][1.21711,1.25127,1.7041][0.645198,0.312886,0.697009][0.483105,0.0410972,0][1.29185,1.69233,1.32764][0.690743,0.595169,0.410668][0.513019,0.0360277,0][1.29185,1.69233,1.32764][0.690743,0.595169,0.410668][0.513019,0.0360277,0][0.790533,1.95392,1.52224][0.366163,0.766587,0.527512][0.530761,0.0700288,0][0.668421,1.46255,1.96636][0.332304,0.428369,0.840282][0.497435,0.0783108,0][0.627831,0.701631,2.1808][0.322488,0.119788,0.938963][0.445827,0.0810637,0][1.20853,0.561533,1.87513][0.613043,0.0937827,0.784463][0.436325,0.0416791,0][1.21711,1.25127,1.7041][0.645198,0.312886,0.697009][0.483105,0.0410972,0][1.21711,1.25127,1.7041][0.645198,0.312886,0.697009][0.483105,0.0410972,0][0.668421,1.46255,1.96636][0.332304,0.428369,0.840282][0.497435,0.0783108,0][0.627831,0.701631,2.1808][0.322488,0.119788,0.938963][0.445827,0.0810637,0][0.640029,-0.156736,2.17262][0.308922,-0.111966,0.944474][0.38761,0.0802364,0][1.21741,-0.156735,1.87313][0.591948,-0.0903879,0.800892][0.38761,0.041077,0][1.20853,0.561533,1.87513][0.613043,0.0937827,0.784463][0.436325,0.0416791,0][1.20853,0.561533,1.87513][0.613043,0.0937827,0.784463][0.436325,0.0416791,0][0.627831,0.701631,2.1808][0.322488,0.119788,0.938963][0.445827,0.0810637,0][0.640029,-0.156736,2.17262][0.308922,-0.111966,0.944474][0.38761,0.0802364,0][0.640028,-0.83455,2.01068][0.302195,-0.352284,0.885762][0.341639,0.0802365,0][1.21741,-0.73396,1.73659][0.581966,-0.298495,0.75645][0.348461,0.041077,0][1.21741,-0.156735,1.87313][0.591948,-0.0903879,0.800892][0.38761,0.041077,0][1.21741,-0.156735,1.87313][0.591948,-0.0903879,0.800892][0.38761,0.041077,0][0.640029,-0.156736,2.17262][0.308922,-0.111966,0.944474][0.38761,0.0802364,0][0.640028,-0.83455,2.01068][0.302195,-0.352284,0.885762][0.341639,0.0802365,0][0.640029,-1.45969,1.64995][0.349722,-0.585271,0.731541][0.29924,0.0802364,0][1.21741,-1.26261,1.43398][0.561585,-0.525331,0.639257][0.312607,0.0410771,0][1.21741,-0.73396,1.73659][0.581966,-0.298495,0.75645][0.348461,0.041077,0][1.21741,-0.73396,1.73659][0.581966,-0.298495,0.75645][0.348461,0.041077,0][0.640028,-0.83455,2.01068][0.302195,-0.352284,0.885762][0.341639,0.0802365,0][0.640029,-1.45969,1.64995][0.349722,-0.585271,0.731541][0.29924,0.0802364,0][0.640028,-1.75336,1.17109][0.363311,-0.734491,0.573173][0.279323,0.0802365,0][1.2174,-1.6851,1.00597][0.586343,-0.667708,0.45866][0.283952,0.0410772,0][1.21741,-1.26261,1.43398][0.561585,-0.525331,0.639257][0.312607,0.0410771,0][1.21741,-1.26261,1.43398][0.561585,-0.525331,0.639257][0.312607,0.0410771,0][0.640029,-1.45969,1.64995][0.349722,-0.585271,0.731541][0.29924,0.0802364,0][0.640028,-1.75336,1.17109][0.363311,-0.734491,0.573173][0.279323,0.0802365,0][1.21741,-1.75336,-0.513432][0.474791,-0.870184,-0.131732][0.283122,0.744306,0][0.640028,-1.75336,-1.15634][0.216838,-0.84979,-0.480455][0.341572,0.748595,0][1.21741,-1.6851,-0.981293][0.48426,-0.784665,-0.387031][0.305116,0.767179,0][0.640029,-1.45969,-1.59245][0.258586,-0.770944,-0.582047][0.362073,0.769917,0][1.21741,-1.26261,-1.35086][0.609348,-0.522402,-0.596482][0.322489,0.785247,0][1.21741,-1.6851,-0.981293][0.48426,-0.784665,-0.387031][0.305116,0.767179,0][1.21741,-1.6851,-0.981293][0.48426,-0.784665,-0.387031][0.305116,0.767179,0][0.640028,-1.75336,-1.15634][0.216838,-0.84979,-0.480455][0.341572,0.748595,0][0.640029,-1.45969,-1.59245][0.258586,-0.770944,-0.582047][0.362073,0.769917,0][0.753726,-0.806963,-1.7884][0.307922,-0.324774,-0.894263][0.197178,0.617656,0][1.3311,-0.704424,-1.50386][0.60099,-0.305482,-0.738574][0.190223,0.578496,0][1.21789,-1.33806,-1.14152][0.589077,-0.472369,-0.655633][0.233198,0.586175,0][1.21789,-1.33806,-1.14152][0.589077,-0.472369,-0.655633][0.233198,0.586175,0][0.640511,-1.53514,-1.38416][0.297234,-0.491477,-0.818598][0.246565,0.625334,0][0.753726,-0.806963,-1.7884][0.307922,-0.324774,-0.894263][0.197178,0.617656,0][0.753725,-0.123905,-1.88537][0.297625,-0.00770214,-0.954652][0.150851,0.617656,0][1.3311,-0.123905,-1.58598][0.592176,-0.00419099,-0.805798][0.150851,0.578496,0][1.3311,-0.704424,-1.50386][0.60099,-0.305482,-0.738574][0.190223,0.578496,0][1.3311,-0.704424,-1.50386][0.60099,-0.305482,-0.738574][0.190223,0.578496,0][0.753726,-0.806963,-1.7884][0.307922,-0.324774,-0.894263][0.197178,0.617656,0][0.753725,-0.123905,-1.88537][0.297625,-0.00770214,-0.954652][0.150851,0.617656,0][0.753725,0.65443,-1.78747][0.305935,0.242938,-0.920535][0.098062,0.617656,0][1.3311,0.530148,-1.49947][0.603312,0.203737,-0.771042][0.106491,0.578496,0][1.3311,-0.123905,-1.58598][0.592176,-0.00419099,-0.805798][0.150851,0.578496,0][1.3311,-0.123905,-1.58598][0.592176,-0.00419099,-0.805798][0.150851,0.578496,0][0.753725,-0.123905,-1.88537][0.297625,-0.00770214,-0.954652][0.150851,0.617656,0][0.753725,0.65443,-1.78747][0.305935,0.242938,-0.920535][0.098062,0.617656,0][0.753724,1.36765,-1.49758][0.316734,0.514588,-0.796793][0.0496894,0.617656,0][1.3311,1.15692,-1.2467][0.620084,0.420639,-0.662238][0.0639814,0.578496,0][1.3311,0.530148,-1.49947][0.603312,0.203737,-0.771042][0.106491,0.578496,0][1.3311,0.530148,-1.49947][0.603312,0.203737,-0.771042][0.106491,0.578496,0][0.753725,0.65443,-1.78747][0.305935,0.242938,-0.920535][0.098062,0.617656,0][0.753724,1.36765,-1.49758][0.316734,0.514588,-0.796793][0.0496894,0.617656,0][0.753724,1.8616,-1.03083][0.326331,0.81483,-0.479125][0.0161881,0.617656,0][1.3311,1.59598,-0.843978][0.62609,0.690235,-0.362749][0.0342037,0.578496,0][1.3311,1.15692,-1.2467][0.620084,0.420639,-0.662238][0.0639814,0.578496,0][1.3311,1.15692,-1.2467][0.620084,0.420639,-0.662238][0.0639814,0.578496,0][0.753724,1.36765,-1.49758][0.316734,0.514588,-0.796793][0.0496894,0.617656,0][0.753724,1.8616,-1.03083][0.326331,0.81483,-0.479125][0.0161881,0.617656,0][0.640511,2.07263,-0.300157][0.317679,0.924987,-0.208517][0.614773,0.479977,0][1.21789,1.75925,-0.201828][0.603988,0.79268,-0.0828076][0.653932,0.473308,0][1.3311,1.59598,-0.843978][0.62609,0.690235,-0.362749][0.661611,0.51686,0][1.3311,1.59598,-0.843978][0.62609,0.690235,-0.362749][0.661611,0.51686,0][0.753724,1.8616,-1.03083][0.326331,0.81483,-0.479125][0.622452,0.529533,0][0.640511,2.07263,-0.300157][0.317679,0.924987,-0.208517][0.614773,0.479977,0][1.21741,1.83326,-0.425187][0.658841,0.744826,-0.105652][0.641004,0.883828,0][0.640028,2.14808,-0.523674][0.382229,0.913795,-0.137405][0.646143,0.923219,0][0.631655,2.25325,0.1561][0.491465,0.861552,-0.12724][0.600052,0.921979,0][1.21741,1.83326,-0.425187][0.494386,0.860427,-0.123484][0.676116,0.883828,0][0.631655,2.25325,0.1561][0.494386,0.860427,-0.123484][0.732078,0.884711,0][1.21104,1.91971,0.151672][0.494386,0.860427,-0.123484][0.703544,0.911731,0][0.017882,2.31113,0.915895][0.012595,0.975016,0.221778][0.712867,0.321149,0][0.718989,2.19393,0.873815][0.354986,0.917929,0.177177][0.760418,0.324003,0][0.631655,2.25325,0.1561][0.327396,0.943986,0.0412623][0.754495,0.372681,0][0.631655,2.25325,0.1561][0.327396,0.943986,0.0412623][0.754495,0.372681,0][-0.00160153,2.36879,0.157388][0.00220256,0.997547,0.0699677][0.711546,0.372593,0][0.017882,2.31113,0.915895][0.012595,0.975016,0.221778][0.712867,0.321149,0][0.0318426,2.04174,1.58706][0.00939381,0.822338,0.568922][0.713814,0.275629,0][0.790533,1.95392,1.52224][0.366163,0.766587,0.527512][0.765271,0.280025,0][0.718989,2.19393,0.873815][0.354986,0.917929,0.177177][0.760418,0.324003,0][0.718989,2.19393,0.873815][0.354986,0.917929,0.177177][0.760418,0.324003,0][0.017882,2.31113,0.915895][0.012595,0.975016,0.221778][0.712867,0.321149,0][0.0318426,2.04174,1.58706][0.00939381,0.822338,0.568922][0.713814,0.275629,0][0.00794623,1.53209,2.05482][-0.00550312,0.489162,0.872176][0.502152,0.123106,0][0.668421,1.46255,1.96636][0.332304,0.428369,0.840282][0.497435,0.0783108,0][0.790533,1.95392,1.52224][0.366163,0.766587,0.527512][0.530761,0.0700288,0][0.790533,1.95392,1.52224][0.366163,0.766587,0.527512][0.530761,0.0700288,0][0.0318426,2.04174,1.58706][0.00939381,0.822338,0.568922][0.536717,0.121485,0][0.00794623,1.53209,2.05482][-0.00550312,0.489162,0.872176][0.502152,0.123106,0][-0.00242135,0.749814,2.28431][-0.00364797,0.139829,0.990169][0.449095,0.123809,0][0.627831,0.701631,2.1808][0.322488,0.119788,0.938963][0.445827,0.0810637,0][0.668421,1.46255,1.96636][0.332304,0.428369,0.840282][0.497435,0.0783108,0][0.668421,1.46255,1.96636][0.332304,0.428369,0.840282][0.497435,0.0783108,0][0.00794623,1.53209,2.05482][-0.00550312,0.489162,0.872176][0.502152,0.123106,0][-0.00242135,0.749814,2.28431][-0.00364797,0.139829,0.990169][0.449095,0.123809,0][3.88549e-007,-0.156736,2.27439][0.000613018,-0.120694,0.99269][0.38761,0.123645,0][0.640029,-0.156736,2.17262][0.308922,-0.111966,0.944474][0.38761,0.0802364,0][0.627831,0.701631,2.1808][0.322488,0.119788,0.938963][0.445827,0.0810637,0][0.627831,0.701631,2.1808][0.322488,0.119788,0.938963][0.445827,0.0810637,0][-0.00242135,0.749814,2.28431][-0.00364797,0.139829,0.990169][0.449095,0.123809,0][3.88549e-007,-0.156736,2.27439][0.000613018,-0.120694,0.99269][0.38761,0.123645,0][8.92163e-007,-0.869731,2.10387][0.000174059,-0.370173,0.928963][0.339253,0.123645,0][0.640028,-0.83455,2.01068][0.302195,-0.352284,0.885762][0.341639,0.0802365,0][0.640029,-0.156736,2.17262][0.308922,-0.111966,0.944474][0.38761,0.0802364,0][0.640029,-0.156736,2.17262][0.308922,-0.111966,0.944474][0.38761,0.0802364,0][3.88549e-007,-0.156736,2.27439][0.000613018,-0.120694,0.99269][0.38761,0.123645,0][8.92163e-007,-0.869731,2.10387][0.000174059,-0.370173,0.928963][0.339253,0.123645,0][-8.82073e-007,-1.5276,1.72324][-0.0280478,-0.575914,0.817029][0.294635,0.123645,0][0.640029,-1.45969,1.64995][0.349722,-0.585271,0.731541][0.29924,0.0802364,0][0.640028,-0.83455,2.01068][0.302195,-0.352284,0.885762][0.341639,0.0802365,0][0.640028,-0.83455,2.01068][0.302195,-0.352284,0.885762][0.341639,0.0802365,0][8.92163e-007,-0.869731,2.10387][0.000174059,-0.370173,0.928963][0.339253,0.123645,0][-8.82073e-007,-1.5276,1.72324][-0.0280478,-0.575914,0.817029][0.294635,0.123645,0][0.640028,-1.75336,-1.15634][0.216838,-0.84979,-0.480455][0.341572,0.748595,0][6.80607e-007,-1.5276,-1.67506][0.158088,-0.819041,-0.551525][0.397246,0.743868,0][0.640029,-1.45969,-1.59245][0.258586,-0.770944,-0.582047][0.362073,0.769917,0][0.000482366,-0.842436,-1.88551][-0.0014896,-0.319764,-0.947496][0.199584,0.668743,0][0.753726,-0.806963,-1.7884][0.307922,-0.324774,-0.894263][0.197178,0.617656,0][0.640511,-1.53514,-1.38416][0.297234,-0.491477,-0.818598][0.246565,0.625334,0][0.640511,-1.53514,-1.38416][0.297234,-0.491477,-0.818598][0.246565,0.625334,0][0.000482308,-1.60305,-1.46705][0.00414317,-0.48596,-0.873971][0.251171,0.668743,0][0.000482366,-0.842436,-1.88551][-0.0014896,-0.319764,-0.947496][0.199584,0.668743,0][0.000482396,-0.123702,-1.98712][-0.00432438,-0.00832287,-0.999956][0.150837,0.668743,0][0.753725,-0.123905,-1.88537][0.297625,-0.00770214,-0.954652][0.150851,0.617656,0][0.753726,-0.806963,-1.7884][0.307922,-0.324774,-0.894263][0.197178,0.617656,0][0.753726,-0.806963,-1.7884][0.307922,-0.324774,-0.894263][0.197178,0.617656,0][0.000482366,-0.842436,-1.88551][-0.0014896,-0.319764,-0.947496][0.199584,0.668743,0][0.000482396,-0.123702,-1.98712][-0.00432438,-0.00832287,-0.999956][0.150837,0.668743,0][0.000482667,0.697555,-1.88525][-0.00407544,0.254465,-0.967073][0.0951372,0.668743,0][0.753725,0.65443,-1.78747][0.305935,0.242938,-0.920535][0.098062,0.617656,0][0.753725,-0.123905,-1.88537][0.297625,-0.00770214,-0.954652][0.150851,0.617656,0][0.753725,-0.123905,-1.88537][0.297625,-0.00770214,-0.954652][0.150851,0.617656,0][0.000482396,-0.123702,-1.98712][-0.00432438,-0.00832287,-0.999956][0.150837,0.668743,0][0.000482667,0.697555,-1.88525][-0.00407544,0.254465,-0.967073][0.0951372,0.668743,0][0.000481898,1.43778,-1.58314][-0.00357299,0.54342,-0.839454][0.0449331,0.668743,0][0.753724,1.36765,-1.49758][0.316734,0.514588,-0.796793][0.0496894,0.617656,0][0.753725,0.65443,-1.78747][0.305935,0.242938,-0.920535][0.098062,0.617656,0][0.753725,0.65443,-1.78747][0.305935,0.242938,-0.920535][0.098062,0.617656,0][0.000482667,0.697555,-1.88525][-0.00407544,0.254465,-0.967073][0.0951372,0.668743,0][0.000481898,1.43778,-1.58314][-0.00357299,0.54342,-0.839454][0.0449331,0.668743,0][0.000482383,1.95284,-1.09504][-0.00692125,0.852051,-0.523412][0.01,0.668743,0][0.753724,1.8616,-1.03083][0.326331,0.81483,-0.479125][0.0161881,0.617656,0][0.753724,1.36765,-1.49758][0.316734,0.514588,-0.796793][0.0496894,0.617656,0][0.753724,1.36765,-1.49758][0.316734,0.514588,-0.796793][0.0496894,0.617656,0][0.000481898,1.43778,-1.58314][-0.00357299,0.54342,-0.839454][0.0449331,0.668743,0][0.000482383,1.95284,-1.09504][-0.00692125,0.852051,-0.523412][0.01,0.668743,0][0.00048207,2.18251,-0.33424][-0.00956008,0.960039,-0.279703][0.571365,0.482288,0][0.640511,2.07263,-0.300157][0.317679,0.924987,-0.208517][0.614773,0.479977,0][0.753724,1.8616,-1.03083][0.326331,0.81483,-0.479125][0.622452,0.529533,0][0.753724,1.8616,-1.03083][0.326331,0.81483,-0.479125][0.622452,0.529533,0][0.000482383,1.95284,-1.09504][-0.00692125,0.852051,-0.523412][0.571365,0.533888,0][0.00048207,2.18251,-0.33424][-0.00956008,0.960039,-0.279703][0.571365,0.482288,0][0.640028,2.14808,-0.523674][0.382229,0.913795,-0.137405][0.330984,0.81522,0][9.5449e-007,2.25796,-0.557765][0.0558251,0.986845,-0.151725][0.331593,0.858686,0][-0.00160153,2.36879,0.157388][0.175057,0.973004,-0.150394][0.283122,0.856893,0][0.640028,2.14808,-0.523674][0.17721,0.972929,-0.148342][0.473411,0.930613,0][-0.00160153,2.36879,0.157388][0.17721,0.972929,-0.148342][0.42722,0.97413,0][0.631655,2.25325,0.1561][0.17721,0.972929,-0.148342][0.427307,0.931181,0][-0.730375,2.19393,0.873814][-0.360096,0.919359,0.15846][0.662118,0.324003,0][0.017882,2.31113,0.915895][0.012595,0.975016,0.221778][0.712867,0.321149,0][-0.00160153,2.36879,0.157388][0.00220256,0.997547,0.0699677][0.711546,0.372593,0][-0.00160153,2.36879,0.157388][0.00220256,0.997547,0.0699677][0.711546,0.372593,0][-0.630448,2.25325,0.1561][-0.339401,0.939715,0.0417459][0.668896,0.37268,0][-0.730375,2.19393,0.873814][-0.360096,0.919359,0.15846][0.662118,0.324003,0][-0.812232,1.95392,1.52224][-0.363764,0.759477,0.539325][0.656567,0.280025,0][0.0318426,2.04174,1.58706][0.00939381,0.822338,0.568922][0.713814,0.275629,0][0.017882,2.31113,0.915895][0.012595,0.975016,0.221778][0.712867,0.321149,0][0.017882,2.31113,0.915895][0.012595,0.975016,0.221778][0.712867,0.321149,0][-0.730375,2.19393,0.873814][-0.360096,0.919359,0.15846][0.662118,0.324003,0][-0.812232,1.95392,1.52224][-0.363764,0.759477,0.539325][0.656567,0.280025,0][-0.672514,1.46255,1.96636][-0.322,0.429444,0.843738][0.497435,0.169257,0][0.00794623,1.53209,2.05482][-0.00550312,0.489162,0.872176][0.502152,0.123106,0][0.0318426,2.04174,1.58706][0.00939381,0.822338,0.568922][0.536717,0.121485,0][0.0318426,2.04174,1.58706][0.00939381,0.822338,0.568922][0.536717,0.121485,0][-0.812232,1.95392,1.52224][-0.363764,0.759477,0.539325][0.530761,0.178733,0][-0.672514,1.46255,1.96636][-0.322,0.429444,0.843738][0.497435,0.169257,0][-0.626072,0.701631,2.1808][-0.320961,0.124506,0.938873][0.445827,0.166107,0][-0.00242135,0.749814,2.28431][-0.00364797,0.139829,0.990169][0.449095,0.123809,0][0.00794623,1.53209,2.05482][-0.00550312,0.489162,0.872176][0.502152,0.123106,0][0.00794623,1.53209,2.05482][-0.00550312,0.489162,0.872176][0.502152,0.123106,0][-0.672514,1.46255,1.96636][-0.322,0.429444,0.843738][0.497435,0.169257,0][-0.626072,0.701631,2.1808][-0.320961,0.124506,0.938873][0.445827,0.166107,0][-0.640029,-0.156736,2.17262][-0.308743,-0.112758,0.944438][0.38761,0.167054,0][3.88549e-007,-0.156736,2.27439][0.000613018,-0.120694,0.99269][0.38761,0.123645,0][-0.00242135,0.749814,2.28431][-0.00364797,0.139829,0.990169][0.449095,0.123809,0][-0.00242135,0.749814,2.28431][-0.00364797,0.139829,0.990169][0.449095,0.123809,0][-0.626072,0.701631,2.1808][-0.320961,0.124506,0.938873][0.445827,0.166107,0][-0.640029,-0.156736,2.17262][-0.308743,-0.112758,0.944438][0.38761,0.167054,0][-0.640028,-0.83455,2.01068][-0.301801,-0.352089,0.885974][0.341639,0.167054,0][8.92163e-007,-0.869731,2.10387][0.000174059,-0.370173,0.928963][0.339253,0.123645,0][3.88549e-007,-0.156736,2.27439][0.000613018,-0.120694,0.99269][0.38761,0.123645,0][3.88549e-007,-0.156736,2.27439][0.000613018,-0.120694,0.99269][0.38761,0.123645,0][-0.640029,-0.156736,2.17262][-0.308743,-0.112758,0.944438][0.38761,0.167054,0][-0.640028,-0.83455,2.01068][-0.301801,-0.352089,0.885974][0.341639,0.167054,0][-0.640028,-1.45969,1.64995][-0.276943,-0.65382,0.704147][0.29924,0.167054,0][-8.82073e-007,-1.5276,1.72324][-0.0280478,-0.575914,0.817029][0.294635,0.123645,0][8.92163e-007,-0.869731,2.10387][0.000174059,-0.370173,0.928963][0.339253,0.123645,0][8.92163e-007,-0.869731,2.10387][0.000174059,-0.370173,0.928963][0.339253,0.123645,0][-0.640028,-0.83455,2.01068][-0.301801,-0.352089,0.885974][0.341639,0.167054,0][-0.640028,-1.45969,1.64995][-0.276943,-0.65382,0.704147][0.29924,0.167054,0][-8.82073e-007,-1.5276,1.72324][-0.0280478,-0.575914,0.817029][0.294635,0.123645,0][-0.640028,-1.45969,1.64995][-0.276943,-0.65382,0.704147][0.29924,0.167054,0][-0.640028,-1.75336,1.17109][-0.204728,-0.869798,0.44893][0.279323,0.167054,0][-0.707717,-0.805501,-1.7884][-0.309118,-0.311898,-0.898424][0.197079,0.716775,0][0.000482366,-0.842436,-1.88551][-0.0014896,-0.319764,-0.947496][0.199584,0.668743,0][0.000482308,-1.60305,-1.46705][0.00414317,-0.48596,-0.873971][0.251171,0.668743,0][0.000482308,-1.60305,-1.46705][0.00414317,-0.48596,-0.873971][0.251171,0.668743,0][-0.639547,-1.53514,-1.38416][-0.305277,-0.486651,-0.818521][0.246565,0.712151,0][-0.707717,-0.805501,-1.7884][-0.309118,-0.311898,-0.898424][0.197079,0.716775,0][-0.707717,-0.122443,-1.88536][-0.302261,-0.00667598,-0.953202][0.150752,0.716775,0][0.000482396,-0.123702,-1.98712][-0.00432438,-0.00832287,-0.999956][0.150837,0.668743,0][0.000482366,-0.842436,-1.88551][-0.0014896,-0.319764,-0.947496][0.199584,0.668743,0][0.000482366,-0.842436,-1.88551][-0.0014896,-0.319764,-0.947496][0.199584,0.668743,0][-0.707717,-0.805501,-1.7884][-0.309118,-0.311898,-0.898424][0.197079,0.716775,0][-0.707717,-0.122443,-1.88536][-0.302261,-0.00667598,-0.953202][0.150752,0.716775,0][-0.707717,0.655892,-1.78747][-0.310105,0.241297,-0.919571][0.0979629,0.716775,0][0.000482667,0.697555,-1.88525][-0.00407544,0.254465,-0.967073][0.0951372,0.668743,0][0.000482396,-0.123702,-1.98712][-0.00432438,-0.00832287,-0.999956][0.150837,0.668743,0][0.000482396,-0.123702,-1.98712][-0.00432438,-0.00832287,-0.999956][0.150837,0.668743,0][-0.707717,-0.122443,-1.88536][-0.302261,-0.00667598,-0.953202][0.150752,0.716775,0][-0.707717,0.655892,-1.78747][-0.310105,0.241297,-0.919571][0.0979629,0.716775,0][-0.707717,1.36911,-1.49758][-0.31915,0.513252,-0.79669][0.0495903,0.716775,0][0.000481898,1.43778,-1.58314][-0.00357299,0.54342,-0.839454][0.0449331,0.668743,0][0.000482667,0.697555,-1.88525][-0.00407544,0.254465,-0.967073][0.0951372,0.668743,0][0.000482667,0.697555,-1.88525][-0.00407544,0.254465,-0.967073][0.0951372,0.668743,0][-0.707717,0.655892,-1.78747][-0.310105,0.241297,-0.919571][0.0979629,0.716775,0][-0.707717,1.36911,-1.49758][-0.31915,0.513252,-0.79669][0.0495903,0.716775,0][-0.707716,1.86307,-1.03083][-0.325798,0.816065,-0.477383][0.016089,0.716775,0][0.000482383,1.95284,-1.09504][-0.00692125,0.852051,-0.523412][0.01,0.668743,0][0.000481898,1.43778,-1.58314][-0.00357299,0.54342,-0.839454][0.0449331,0.668743,0][0.000481898,1.43778,-1.58314][-0.00357299,0.54342,-0.839454][0.0449331,0.668743,0][-0.707717,1.36911,-1.49758][-0.31915,0.513252,-0.79669][0.0495903,0.716775,0][-0.707716,1.86307,-1.03083][-0.325798,0.816065,-0.477383][0.016089,0.716775,0][-0.639547,2.07263,-0.300156][-0.324928,0.914589,-0.240725][0.527956,0.479977,0][0.00048207,2.18251,-0.33424][-0.00956008,0.960039,-0.279703][0.571365,0.482288,0][0.000482383,1.95284,-1.09504][-0.00692125,0.852051,-0.523412][0.571365,0.533888,0][0.000482383,1.95284,-1.09504][-0.00692125,0.852051,-0.523412][0.571365,0.533888,0][-0.707716,1.86307,-1.03083][-0.325798,0.816065,-0.477383][0.523333,0.529533,0][-0.639547,2.07263,-0.300156][-0.324928,0.914589,-0.240725][0.527956,0.479977,0][9.5449e-007,2.25796,-0.557765][0.0558251,0.986845,-0.151725][0.886742,0.563792,0][-0.640028,2.14808,-0.523673][-0.274403,0.951031,-0.142278][0.917364,0.532939,0][-0.630448,2.25325,0.1561][-0.174999,0.973362,-0.148125][0.951336,0.564115,0][9.5449e-007,2.25796,-0.557765][-0.178333,0.972303,-0.151077][0.971609,0.590978,0][-0.630448,2.25325,0.1561][-0.178333,0.972303,-0.151077][0.923193,0.633737,0][-0.00160153,2.36879,0.157388][-0.178333,0.972303,-0.151077][0.923105,0.591087,0][-1.25084,1.85974,0.75216][-0.672706,0.734307,0.0908819][0.626819,0.332254,0][-0.730375,2.19393,0.873814][-0.360096,0.919359,0.15846][0.662118,0.324003,0][-0.630448,2.25325,0.1561][-0.339401,0.939715,0.0417459][0.668896,0.37268,0][-0.630448,2.25325,0.1561][-0.339401,0.939715,0.0417459][0.668896,0.37268,0][-1.21041,1.91971,0.151673][-0.630761,0.774499,0.0478828][0.629561,0.372981,0][-1.25084,1.85974,0.75216][-0.672706,0.734307,0.0908819][0.626819,0.332254,0][-1.29921,1.69233,1.32764][-0.702876,0.587182,0.401475][0.623538,0.293223,0][-0.812232,1.95392,1.52224][-0.363764,0.759477,0.539325][0.656567,0.280025,0][-0.730375,2.19393,0.873814][-0.360096,0.919359,0.15846][0.662118,0.324003,0][-0.730375,2.19393,0.873814][-0.360096,0.919359,0.15846][0.662118,0.324003,0][-1.25084,1.85974,0.75216][-0.672706,0.734307,0.0908819][0.626819,0.332254,0][-1.29921,1.69233,1.32764][-0.702876,0.587182,0.401475][0.623538,0.293223,0][-1.21708,1.25126,1.7041][-0.638833,0.304336,0.706592][0.483105,0.206191,0][-0.672514,1.46255,1.96636][-0.322,0.429444,0.843738][0.497435,0.169257,0][-0.812232,1.95392,1.52224][-0.363764,0.759477,0.539325][0.530761,0.178733,0][-0.812232,1.95392,1.52224][-0.363764,0.759477,0.539325][0.530761,0.178733,0][-1.29921,1.69233,1.32764][-0.702876,0.587182,0.401475][0.513019,0.211761,0][-1.21708,1.25126,1.7041][-0.638833,0.304336,0.706592][0.483105,0.206191,0][-1.20765,0.561532,1.87513][-0.611126,0.0951092,0.785799][0.436325,0.205551,0][-0.626072,0.701631,2.1808][-0.320961,0.124506,0.938873][0.445827,0.166107,0][-0.672514,1.46255,1.96636][-0.322,0.429444,0.843738][0.497435,0.169257,0][-0.672514,1.46255,1.96636][-0.322,0.429444,0.843738][0.497435,0.169257,0][-1.21708,1.25126,1.7041][-0.638833,0.304336,0.706592][0.483105,0.206191,0][-1.20765,0.561532,1.87513][-0.611126,0.0951092,0.785799][0.436325,0.205551,0][-1.21741,-0.156736,1.87313][-0.591591,-0.0908566,0.801103][0.38761,0.206213,0][-0.640029,-0.156736,2.17262][-0.308743,-0.112758,0.944438][0.38761,0.167054,0][-0.626072,0.701631,2.1808][-0.320961,0.124506,0.938873][0.445827,0.166107,0][-0.626072,0.701631,2.1808][-0.320961,0.124506,0.938873][0.445827,0.166107,0][-1.20765,0.561532,1.87513][-0.611126,0.0951092,0.785799][0.436325,0.205551,0][-1.21741,-0.156736,1.87313][-0.591591,-0.0908566,0.801103][0.38761,0.206213,0][-1.21741,-0.73396,1.73658][-0.581829,-0.29849,0.756557][0.348461,0.206213,0][-0.640028,-0.83455,2.01068][-0.301801,-0.352089,0.885974][0.341639,0.167054,0][-0.640029,-0.156736,2.17262][-0.308743,-0.112758,0.944438][0.38761,0.167054,0][-0.640029,-0.156736,2.17262][-0.308743,-0.112758,0.944438][0.38761,0.167054,0][-1.21741,-0.156736,1.87313][-0.591591,-0.0908566,0.801103][0.38761,0.206213,0][-1.21741,-0.73396,1.73658][-0.581829,-0.29849,0.756557][0.348461,0.206213,0][-1.21741,-1.26261,1.43398][-0.581651,-0.495994,0.644726][0.312607,0.206213,0][-0.640028,-1.45969,1.64995][-0.276943,-0.65382,0.704147][0.29924,0.167054,0][-0.640028,-0.83455,2.01068][-0.301801,-0.352089,0.885974][0.341639,0.167054,0][-0.640028,-0.83455,2.01068][-0.301801,-0.352089,0.885974][0.341639,0.167054,0][-1.21741,-0.73396,1.73658][-0.581829,-0.29849,0.756557][0.348461,0.206213,0][-1.21741,-1.26261,1.43398][-0.581651,-0.495994,0.644726][0.312607,0.206213,0][-1.21741,-1.6851,1.00597][-0.466592,-0.805373,0.365604][0.283952,0.206213,0][-0.640028,-1.75336,1.17109][-0.204728,-0.869798,0.44893][0.279323,0.167054,0][-0.640028,-1.45969,1.64995][-0.276943,-0.65382,0.704147][0.29924,0.167054,0][-0.640028,-1.45969,1.64995][-0.276943,-0.65382,0.704147][0.29924,0.167054,0][-1.21741,-1.26261,1.43398][-0.581651,-0.495994,0.644726][0.312607,0.206213,0][-1.21741,-1.6851,1.00597][-0.466592,-0.805373,0.365604][0.283952,0.206213,0][-0.640028,-1.75336,1.17109][-0.204728,-0.869798,0.44893][0.946382,0.276667,0][-1.21741,-1.6851,1.00597][-0.466592,-0.805373,0.365604][0.92518,0.311443,0][-1.21741,-1.75336,0.52796][-0.488836,-0.862115,0.133407][0.893926,0.302829,0][-1.21741,-1.26261,-1.35086][-0.562466,-0.584124,-0.585177][0.361566,0.81522,0][-0.640028,-1.45969,-1.59245][-0.459144,-0.736871,-0.496194][0.401991,0.824048,0][-0.640028,-1.75336,-1.15634][-0.388924,-0.696567,-0.602937][0.404256,0.843836,0][-0.640028,-1.75336,-1.15634][-0.388924,-0.696567,-0.602937][0.404256,0.843836,0][-1.21741,-1.6851,-0.981291][-0.603335,-0.627895,-0.491665][0.364824,0.843689,0][-1.21741,-1.26261,-1.35086][-0.562466,-0.584124,-0.585177][0.361566,0.81522,0][-1.28509,-0.702961,-1.50386][-0.596845,-0.281729,-0.751269][0.190124,0.755934,0][-0.707717,-0.805501,-1.7884][-0.309118,-0.311898,-0.898424][0.197079,0.716775,0][-0.639547,-1.53514,-1.38416][-0.305277,-0.486651,-0.818521][0.246565,0.712151,0][-0.639547,-1.53514,-1.38416][-0.305277,-0.486651,-0.818521][0.246565,0.712151,0][-1.21692,-1.33806,-1.14152][-0.590699,-0.453416,-0.667449][0.233198,0.751311,0][-1.28509,-0.702961,-1.50386][-0.596845,-0.281729,-0.751269][0.190124,0.755934,0][-1.28509,-0.122443,-1.58598][-0.59261,-0.00288131,-0.805484][0.150752,0.755934,0][-0.707717,-0.122443,-1.88536][-0.302261,-0.00667598,-0.953202][0.150752,0.716775,0][-0.707717,-0.805501,-1.7884][-0.309118,-0.311898,-0.898424][0.197079,0.716775,0][-0.707717,-0.805501,-1.7884][-0.309118,-0.311898,-0.898424][0.197079,0.716775,0][-1.28509,-0.702961,-1.50386][-0.596845,-0.281729,-0.751269][0.190124,0.755934,0][-1.28509,-0.122443,-1.58598][-0.59261,-0.00288131,-0.805484][0.150752,0.755934,0][-1.28509,0.53161,-1.49947][-0.604042,0.20212,-0.770896][0.106392,0.755934,0][-0.707717,0.655892,-1.78747][-0.310105,0.241297,-0.919571][0.0979629,0.716775,0][-0.707717,-0.122443,-1.88536][-0.302261,-0.00667598,-0.953202][0.150752,0.716775,0][-0.707717,-0.122443,-1.88536][-0.302261,-0.00667598,-0.953202][0.150752,0.716775,0][-1.28509,-0.122443,-1.58598][-0.59261,-0.00288131,-0.805484][0.150752,0.755934,0][-1.28509,0.53161,-1.49947][-0.604042,0.20212,-0.770896][0.106392,0.755934,0][-1.28509,1.15839,-1.2467][-0.619218,0.417346,-0.665125][0.0638823,0.755934,0][-0.707717,1.36911,-1.49758][-0.31915,0.513252,-0.79669][0.0495903,0.716775,0][-0.707717,0.655892,-1.78747][-0.310105,0.241297,-0.919571][0.0979629,0.716775,0][-0.707717,0.655892,-1.78747][-0.310105,0.241297,-0.919571][0.0979629,0.716775,0][-1.28509,0.53161,-1.49947][-0.604042,0.20212,-0.770896][0.106392,0.755934,0][-1.28509,1.15839,-1.2467][-0.619218,0.417346,-0.665125][0.0638823,0.755934,0][-1.28509,1.59744,-0.843978][-0.622862,0.6903,-0.368142][0.0341046,0.755934,0][-0.707716,1.86307,-1.03083][-0.325798,0.816065,-0.477383][0.016089,0.716775,0][-0.707717,1.36911,-1.49758][-0.31915,0.513252,-0.79669][0.0495903,0.716775,0][-0.707717,1.36911,-1.49758][-0.31915,0.513252,-0.79669][0.0495903,0.716775,0][-1.28509,1.15839,-1.2467][-0.619218,0.417346,-0.665125][0.0638823,0.755934,0][-1.28509,1.59744,-0.843978][-0.622862,0.6903,-0.368142][0.0341046,0.755934,0][-1.21692,1.75925,-0.201828][-0.615612,0.775462,-0.140287][0.488797,0.473308,0][-0.639547,2.07263,-0.300156][-0.324928,0.914589,-0.240725][0.527956,0.479977,0][-0.707716,1.86307,-1.03083][-0.325798,0.816065,-0.477383][0.523333,0.529533,0][-0.707716,1.86307,-1.03083][-0.325798,0.816065,-0.477383][0.523333,0.529533,0][-1.28509,1.59744,-0.843978][-0.622862,0.6903,-0.368142][0.484173,0.51686,0][-1.21692,1.75925,-0.201828][-0.615612,0.775462,-0.140287][0.488797,0.473308,0][-0.640028,2.14808,-0.523673][-0.274403,0.951031,-0.142278][0.495891,0.955388,0][-1.21741,1.83326,-0.425188][-0.556965,0.822057,-0.118371][0.526944,0.930613,0][-1.21041,1.91971,0.151673][-0.491189,0.862288,-0.123261][0.555823,0.957012,0][-0.640028,2.14808,-0.523673][-0.493834,0.860357,-0.126149][0.329226,0.889309,0][-1.21041,1.91971,0.151673][-0.493834,0.860357,-0.126149][0.283422,0.927994,0][-0.630448,2.25325,0.1561][-0.493834,0.860357,-0.126149][0.283122,0.888659,0][-1.67611,1.34451,0.565225][-0.861357,0.496897,0.10563][0.597976,0.344932,0][-1.25084,1.85974,0.75216][-0.672706,0.734307,0.0908819][0.626819,0.332254,0][-1.21041,1.91971,0.151673][-0.630761,0.774499,0.0478828][0.629561,0.372981,0][-1.21041,1.91971,0.151673][-0.630761,0.774499,0.0478828][0.629561,0.372981,0][-1.67376,1.40625,0.142544][-0.840367,0.536673,0.0759298][0.598135,0.3736,0][-1.67611,1.34451,0.565225][-0.861357,0.496897,0.10563][0.597976,0.344932,0][-1.67541,1.20949,0.983242][-0.885296,0.386772,0.258185][0.598024,0.316581,0][-1.29921,1.69233,1.32764][-0.702876,0.587182,0.401475][0.623538,0.293223,0][-1.25084,1.85974,0.75216][-0.672706,0.734307,0.0908819][0.626819,0.332254,0][-1.25084,1.85974,0.75216][-0.672706,0.734307,0.0908819][0.626819,0.332254,0][-1.67611,1.34451,0.565225][-0.861357,0.496897,0.10563][0.597976,0.344932,0][-1.67541,1.20949,0.983242][-0.885296,0.386772,0.258185][0.598024,0.316581,0][-1.6615,0.868282,1.26886][-0.856348,0.209039,0.472199][0.610186,0.0969165,0][-1.21708,1.25126,1.7041][-0.638833,0.304336,0.706592][0.573256,0.110417,0][-1.29921,1.69233,1.32764][-0.702876,0.587182,0.401475][0.559197,0.0736872,0][-1.29921,1.69233,1.32764][-0.702876,0.587182,0.401475][0.559197,0.0736872,0][-1.67541,1.20949,0.983242][-0.885296,0.386772,0.258185][0.599128,0.0688361,0][-1.6615,0.868282,1.26886][-0.856348,0.209039,0.472199][0.610186,0.0969165,0][-1.67061,0.348396,1.38969][-0.829803,0.0742575,0.553093][0.42187,0.236951,0][-1.20765,0.561532,1.87513][-0.611126,0.0951092,0.785799][0.436325,0.205551,0][-1.21708,1.25126,1.7041][-0.638833,0.304336,0.706592][0.483105,0.206191,0][-1.21708,1.25126,1.7041][-0.638833,0.304336,0.706592][0.483105,0.206191,0][-1.6615,0.868282,1.26886][-0.856348,0.209039,0.472199][0.45713,0.236333,0][-1.67061,0.348396,1.38969][-0.829803,0.0742575,0.553093][0.42187,0.236951,0][-1.67562,-0.157175,1.39593][-0.815098,-0.0593777,0.576273][0.387581,0.23729,0][-1.21741,-0.156736,1.87313][-0.591591,-0.0908566,0.801103][0.38761,0.206213,0][-1.20765,0.561532,1.87513][-0.611126,0.0951092,0.785799][0.436325,0.205551,0][-1.20765,0.561532,1.87513][-0.611126,0.0951092,0.785799][0.436325,0.205551,0][-1.67061,0.348396,1.38969][-0.829803,0.0742575,0.553093][0.42187,0.236951,0][-1.67562,-0.157175,1.39593][-0.815098,-0.0593777,0.576273][0.387581,0.23729,0][-1.67562,-0.580063,1.29917][-0.807844,-0.213985,0.54918][0.358899,0.23729,0][-1.21741,-0.73396,1.73658][-0.581829,-0.29849,0.756557][0.348461,0.206213,0][-1.21741,-0.156736,1.87313][-0.591591,-0.0908566,0.801103][0.38761,0.206213,0][-1.21741,-0.156736,1.87313][-0.591591,-0.0908566,0.801103][0.38761,0.206213,0][-1.67562,-0.157175,1.39593][-0.815098,-0.0593777,0.576273][0.387581,0.23729,0][-1.67562,-0.580063,1.29917][-0.807844,-0.213985,0.54918][0.358899,0.23729,0][-1.67562,-0.955647,1.0867][-0.80766,-0.356959,0.469325][0.333426,0.23729,0][-1.21741,-1.26261,1.43398][-0.581651,-0.495994,0.644726][0.312607,0.206213,0][-1.21741,-0.73396,1.73658][-0.581829,-0.29849,0.756557][0.348461,0.206213,0][-1.21741,-0.73396,1.73658][-0.581829,-0.29849,0.756557][0.348461,0.206213,0][-1.67562,-0.580063,1.29917][-0.807844,-0.213985,0.54918][0.358899,0.23729,0][-1.67562,-0.955647,1.0867][-0.80766,-0.356959,0.469325][0.333426,0.23729,0][-1.67562,-1.26261,0.778364][-0.814153,-0.465256,0.347407][0.90204,0.337301,0][-1.21741,-1.6851,1.00597][-0.466592,-0.805373,0.365604][0.92518,0.311443,0][-1.21741,-1.26261,1.43398][-0.581651,-0.495994,0.644726][0.953166,0.319157,0][-1.21741,-1.26261,1.43398][-0.581651,-0.495994,0.644726][0.953166,0.319157,0][-1.67562,-0.955647,1.0867][-0.80766,-0.356959,0.469325][0.922201,0.342858,0][-1.67562,-1.26261,0.778364][-0.814153,-0.465256,0.347407][0.90204,0.337301,0][-1.67562,-1.45969,0.41219][-0.77225,-0.611712,0.171577][0.878098,0.330702,0][-1.21741,-1.75336,0.52796][-0.488836,-0.862115,0.133407][0.893926,0.302829,0][-1.21741,-1.6851,1.00597][-0.466592,-0.805373,0.365604][0.92518,0.311443,0][-1.21741,-1.6851,1.00597][-0.466592,-0.805373,0.365604][0.92518,0.311443,0][-1.67562,-1.26261,0.778364][-0.814153,-0.465256,0.347407][0.90204,0.337301,0][-1.67562,-1.45969,0.41219][-0.77225,-0.611712,0.171577][0.878098,0.330702,0][-1.67562,-1.5276,0.0231769][-0.755696,-0.654923,0.000283869][0.852663,0.323691,0][-1.21741,-1.84683,0.000312842][-0.571346,-0.820696,-0.00480829][0.859426,0.293319,0][-1.21741,-1.75336,0.52796][-0.488836,-0.862115,0.133407][0.893926,0.302829,0][-1.21741,-1.75336,0.52796][-0.488836,-0.862115,0.133407][0.893926,0.302829,0][-1.67562,-1.45969,0.41219][-0.77225,-0.611712,0.171577][0.878098,0.330702,0][-1.67562,-1.5276,0.0231769][-0.755696,-0.654923,0.000283869][0.852663,0.323691,0][-1.67562,-1.45969,-0.356561][-0.761535,-0.610233,-0.218359][0.827834,0.316848,0][-1.21741,-1.75336,-0.513433][-0.630875,-0.75458,-0.180574][0.825835,0.284061,0][-1.21741,-1.84683,0.000312842][-0.571346,-0.820696,-0.00480829][0.859426,0.293319,0][-1.21741,-1.84683,0.000312842][-0.571346,-0.820696,-0.00480829][0.859426,0.293319,0][-1.67562,-1.5276,0.0231769][-0.755696,-0.654923,0.000283869][0.852663,0.323691,0][-1.67562,-1.45969,-0.356561][-0.761535,-0.610233,-0.218359][0.827834,0.316848,0][-1.67562,-1.26261,-0.696755][-0.811245,-0.471864,-0.345291][0.80559,0.310717,0][-1.21741,-1.6851,-0.981291][-0.603335,-0.627895,-0.491665][0.795244,0.275629,0][-1.21741,-1.75336,-0.513433][-0.630875,-0.75458,-0.180574][0.825835,0.284061,0][-1.21741,-1.75336,-0.513433][-0.630875,-0.75458,-0.180574][0.825835,0.284061,0][-1.67562,-1.45969,-0.356561][-0.761535,-0.610233,-0.218359][0.827834,0.316848,0][-1.67562,-1.26261,-0.696755][-0.811245,-0.471864,-0.345291][0.80559,0.310717,0][-1.67562,-0.955647,-0.967456][-0.825364,-0.372962,-0.423879][0.791366,0.0228796,0][-1.21741,-1.26261,-1.35086][-0.562466,-0.584124,-0.585177][0.822086,0.01,0][-1.21741,-1.6851,-0.981291][-0.603335,-0.627895,-0.491665][0.835263,0.0457176,0][-1.21741,-1.6851,-0.981291][-0.603335,-0.627895,-0.491665][0.835263,0.0457176,0][-1.67562,-1.26261,-0.696755][-0.811245,-0.471864,-0.345291][0.800868,0.0489605,0][-1.67562,-0.955647,-0.967456][-0.825364,-0.372962,-0.423879][0.791366,0.0228796,0][-1.7433,-0.545279,-1.05231][-0.848061,-0.21119,-0.485995][0.17943,0.787011,0][-1.28509,-0.702961,-1.50386][-0.596845,-0.281729,-0.751269][0.190124,0.755934,0][-1.21692,-1.33806,-1.14152][-0.590699,-0.453416,-0.667449][0.233198,0.751311,0][-1.21692,-1.33806,-1.14152][-0.590699,-0.453416,-0.667449][0.233198,0.751311,0][-1.67513,-1.0311,-0.756071][-0.829868,-0.359638,-0.426591][0.212379,0.782388,0][-1.7433,-0.545279,-1.05231][-0.848061,-0.21119,-0.485995][0.17943,0.787011,0][-1.7433,-0.122443,-1.10947][-0.852969,0.004064,-0.521946][0.150752,0.787011,0][-1.28509,-0.122443,-1.58598][-0.59261,-0.00288131,-0.805484][0.150752,0.755934,0][-1.28509,-0.702961,-1.50386][-0.596845,-0.281729,-0.751269][0.190124,0.755934,0][-1.28509,-0.702961,-1.50386][-0.596845,-0.281729,-0.751269][0.190124,0.755934,0][-1.7433,-0.545279,-1.05231][-0.848061,-0.21119,-0.485995][0.17943,0.787011,0][-1.7433,-0.122443,-1.10947][-0.852969,0.004064,-0.521946][0.150752,0.787011,0][-1.7433,0.341192,-1.04164][-0.860899,0.132583,-0.491197][0.119307,0.787011,0][-1.28509,0.53161,-1.49947][-0.604042,0.20212,-0.770896][0.106392,0.755934,0][-1.28509,-0.122443,-1.58598][-0.59261,-0.00288131,-0.805484][0.150752,0.755934,0][-1.28509,-0.122443,-1.58598][-0.59261,-0.00288131,-0.805484][0.150752,0.755934,0][-1.7433,-0.122443,-1.10947][-0.852969,0.004064,-0.521946][0.150752,0.787011,0][-1.7433,0.341192,-1.04164][-0.860899,0.132583,-0.491197][0.119307,0.787011,0][-1.7433,0.8021,-0.851246][-0.870864,0.250485,-0.422911][0.0880466,0.787011,0][-1.28509,1.15839,-1.2467][-0.619218,0.417346,-0.665125][0.0638823,0.755934,0][-1.28509,0.53161,-1.49947][-0.604042,0.20212,-0.770896][0.106392,0.755934,0][-1.28509,0.53161,-1.49947][-0.604042,0.20212,-0.770896][0.106392,0.755934,0][-1.7433,0.341192,-1.04164][-0.860899,0.132583,-0.491197][0.119307,0.787011,0][-1.7433,0.8021,-0.851246][-0.870864,0.250485,-0.422911][0.0880466,0.787011,0][-1.7433,1.15839,-0.553169][-0.862016,0.460359,-0.212128][0.050752,0.859862,0][-1.28509,1.59744,-0.843978][-0.622862,0.6903,-0.368142][0.0209743,0.840138,0][-1.28509,1.15839,-1.2467][-0.619218,0.417346,-0.665125][0.050752,0.812825,0][-1.28509,1.15839,-1.2467][-0.619218,0.417346,-0.665125][0.050752,0.812825,0][-1.7433,0.8021,-0.851246][-0.870864,0.250485,-0.422911][0.0749164,0.839645,0][-1.7433,1.15839,-0.553169][-0.862016,0.460359,-0.212128][0.050752,0.859862,0][-1.67513,1.26529,-0.0512884][-0.836239,0.548152,-0.0152811][0.0435013,0.893901,0][-1.21692,1.75925,-0.201828][-0.615612,0.775462,-0.140287][0.01,0.883691,0][-1.28509,1.59744,-0.843978][-0.622862,0.6903,-0.368142][0.0209743,0.840138,0][-1.28509,1.59744,-0.843978][-0.622862,0.6903,-0.368142][0.0209743,0.840138,0][-1.7433,1.15839,-0.553169][-0.862016,0.460359,-0.212128][0.050752,0.859862,0][-1.67513,1.26529,-0.0512884][-0.836239,0.548152,-0.0152811][0.0435013,0.893901,0][-1.21741,1.83326,-0.425188][-0.556965,0.822057,-0.118371][0.503528,0.43235,0][-1.67562,1.34243,-0.273835][-0.773399,0.626746,-0.0951005][0.476514,0.450828,0][-1.67376,1.40625,0.142544][-0.742377,0.662735,-0.098274][0.454141,0.433596,0][-1.21741,1.83326,-0.425188][-0.738504,0.668058,-0.0911569][0.988053,0.473782,0][-1.67376,1.40625,0.142544][-0.738504,0.668058,-0.0911569][0.949548,0.504734,0][-1.21041,1.91971,0.151673][-0.738504,0.668058,-0.0911569][0.948928,0.473308,0][-1.9707,0.633799,0.34137][-0.964888,0.244164,0.0968263][0.654239,0.0492786,0][-1.67611,1.34451,0.565225][-0.861357,0.496897,0.10563][0.604645,0.039558,0][-1.67376,1.40625,0.142544][-0.840367,0.536673,0.0759298][0.614679,0.0123792,0][-1.67376,1.40625,0.142544][-0.840367,0.536673,0.0759298][0.614679,0.0123792,0][-1.97037,0.678259,0.126085][-0.963209,0.263489,0.0529307][0.658574,0.0350134,0][-1.9707,0.633799,0.34137][-0.964888,0.244164,0.0968263][0.654239,0.0492786,0][-1.96964,0.514704,0.536183][-0.967285,0.191004,0.166968][0.655013,0.0647454,0][-1.67541,1.20949,0.983242][-0.885296,0.386772,0.258185][0.599128,0.0688361,0][-1.67611,1.34451,0.565225][-0.861357,0.496897,0.10563][0.604645,0.039558,0][-1.67611,1.34451,0.565225][-0.861357,0.496897,0.10563][0.604645,0.039558,0][-1.9707,0.633799,0.34137][-0.964888,0.244164,0.0968263][0.654239,0.0492786,0][-1.96964,0.514704,0.536183][-0.967285,0.191004,0.166968][0.655013,0.0647454,0][-1.96871,0.327678,0.685541][-0.963734,0.123987,0.236312][0.661308,0.0797082,0][-1.6615,0.868282,1.26886][-0.856348,0.209039,0.472199][0.610186,0.0969165,0][-1.67541,1.20949,0.983242][-0.885296,0.386772,0.258185][0.599128,0.0688361,0][-1.67541,1.20949,0.983242][-0.885296,0.386772,0.258185][0.599128,0.0688361,0][-1.96964,0.514704,0.536183][-0.967285,0.191004,0.166968][0.655013,0.0647454,0][-1.96871,0.327678,0.685541][-0.963734,0.123987,0.236312][0.661308,0.0797082,0][-1.96972,0.0907946,0.768792][-0.957274,0.0536013,0.284171][0.672717,0.0923509,0][-1.67061,0.348396,1.38969][-0.829803,0.0742575,0.553093][0.637233,0.120977,0][-1.6615,0.868282,1.26886][-0.856348,0.209039,0.472199][0.610186,0.0969165,0][-1.6615,0.868282,1.26886][-0.856348,0.209039,0.472199][0.610186,0.0969165,0][-1.96871,0.327678,0.685541][-0.963734,0.123987,0.236312][0.661308,0.0797082,0][-1.96972,0.0907946,0.768792][-0.957274,0.0536013,0.284171][0.672717,0.0923509,0][-1.9698,-0.153134,0.784907][-0.952542,-0.0244717,0.303422][0.686723,0.101223,0][-1.67562,-0.157175,1.39593][-0.815098,-0.0593777,0.576273][0.667144,0.137748,0][-1.67061,0.348396,1.38969][-0.829803,0.0742575,0.553093][0.637233,0.120977,0][-1.67061,0.348396,1.38969][-0.829803,0.0742575,0.553093][0.637233,0.120977,0][-1.96972,0.0907946,0.768792][-0.957274,0.0536013,0.284171][0.672717,0.0923509,0][-1.9698,-0.153134,0.784907][-0.952542,-0.0244717,0.303422][0.686723,0.101223,0][-1.9698,-0.379571,0.736703][-0.950462,-0.109715,0.290835][0.701774,0.105697,0][-1.67562,-0.580063,1.29917][-0.807844,-0.213985,0.54918][0.695471,0.145703,0][-1.67562,-0.157175,1.39593][-0.815098,-0.0593777,0.576273][0.667144,0.137748,0][-1.67562,-0.157175,1.39593][-0.815098,-0.0593777,0.576273][0.667144,0.137748,0][-1.9698,-0.153134,0.784907][-0.952542,-0.0244717,0.303422][0.686723,0.101223,0][-1.9698,-0.379571,0.736703][-0.950462,-0.109715,0.290835][0.701774,0.105697,0][-1.9698,-0.576186,0.628031][-0.950228,-0.188555,0.248018][0.71701,0.105602,0][-1.67562,-0.955647,1.0867][-0.80766,-0.356959,0.469325][0.724733,0.145231,0][-1.67562,-0.580063,1.29917][-0.807844,-0.213985,0.54918][0.695471,0.145703,0][-1.67562,-0.580063,1.29917][-0.807844,-0.213985,0.54918][0.695471,0.145703,0][-1.9698,-0.379571,0.736703][-0.950462,-0.109715,0.290835][0.701774,0.105697,0][-1.9698,-0.576186,0.628031][-0.950228,-0.188555,0.248018][0.71701,0.105602,0][-1.9698,-0.732399,0.468222][-0.951925,-0.246464,0.181918][0.731498,0.101151,0][-1.67562,-1.26261,0.778364][-0.814153,-0.465256,0.347407][0.753019,0.136823,0][-1.67562,-0.955647,1.0867][-0.80766,-0.356959,0.469325][0.724733,0.145231,0][-1.67562,-0.955647,1.0867][-0.80766,-0.356959,0.469325][0.724733,0.145231,0][-1.9698,-0.576186,0.628031][-0.950228,-0.188555,0.248018][0.71701,0.105602,0][-1.9698,-0.732399,0.468222][-0.951925,-0.246464,0.181918][0.731498,0.101151,0][-1.9698,-0.834227,0.273624][-0.954625,-0.281371,0.0975787][0.743876,0.0928631,0][-1.67562,-1.45969,0.41219][-0.77225,-0.611712,0.171577][0.776635,0.121405,0][-1.67562,-1.26261,0.778364][-0.814153,-0.465256,0.347407][0.753019,0.136823,0][-1.67562,-1.26261,0.778364][-0.814153,-0.465256,0.347407][0.753019,0.136823,0][-1.9698,-0.732399,0.468222][-0.951925,-0.246464,0.181918][0.731498,0.101151,0][-1.9698,-0.834227,0.273624][-0.954625,-0.281371,0.0975787][0.743876,0.0928631,0][-1.9698,-0.869648,0.063622][-0.956862,-0.290541,0.00108946][0.752798,0.0815038,0][-1.67562,-1.5276,0.0231769][-0.755696,-0.654923,0.000283869][0.793299,0.100437,0][-1.67562,-1.45969,0.41219][-0.77225,-0.611712,0.171577][0.776635,0.121405,0][-1.67562,-1.45969,0.41219][-0.77225,-0.611712,0.171577][0.776635,0.121405,0][-1.9698,-0.834227,0.273624][-0.954625,-0.281371,0.0975787][0.743876,0.0928631,0][-1.9698,-0.869648,0.063622][-0.956862,-0.290541,0.00108946][0.752798,0.0815038,0][-1.9698,-0.834249,-0.14243][-0.957465,-0.272014,-0.0962711][0.757373,0.0680825,0][-1.67562,-1.45969,-0.356561][-0.761535,-0.610233,-0.218359][0.801572,0.0756163,0][-1.67562,-1.5276,0.0231769][-0.755696,-0.654923,0.000283869][0.793299,0.100437,0][-1.67562,-1.5276,0.0231769][-0.755696,-0.654923,0.000283869][0.793299,0.100437,0][-1.9698,-0.869648,0.063622][-0.956862,-0.290541,0.00108946][0.752798,0.0815038,0][-1.9698,-0.834249,-0.14243][-0.957465,-0.272014,-0.0962711][0.757373,0.0680825,0][-1.9698,-0.732372,-0.325979][-0.956245,-0.22851,-0.182698][0.757259,0.0538451,0][-1.67562,-1.26261,-0.696755][-0.811245,-0.471864,-0.345291][0.800868,0.0489605,0][-1.67562,-1.45969,-0.356561][-0.761535,-0.610233,-0.218359][0.801572,0.0756163,0][-1.67562,-1.45969,-0.356561][-0.761535,-0.610233,-0.218359][0.801572,0.0756163,0][-1.9698,-0.834249,-0.14243][-0.957465,-0.272014,-0.0962711][0.757373,0.0680825,0][-1.9698,-0.732372,-0.325979][-0.956245,-0.22851,-0.182698][0.757259,0.0538451,0][-1.9698,-0.575096,-0.470178][-0.955822,-0.197565,-0.217652][0.752569,0.0401546,0][-1.67562,-0.955647,-0.967456][-0.825364,-0.372962,-0.423879][0.791366,0.0228796,0][-1.67562,-1.26261,-0.696755][-0.811245,-0.471864,-0.345291][0.800868,0.0489605,0][-1.67562,-1.26261,-0.696755][-0.811245,-0.471864,-0.345291][0.800868,0.0489605,0][-1.9698,-0.732372,-0.325979][-0.956245,-0.22851,-0.182698][0.757259,0.0538451,0][-1.9698,-0.575096,-0.470178][-0.955822,-0.197565,-0.217652][0.752569,0.0401546,0][-1.96932,-0.450779,-0.345996][-0.965602,-0.0946532,-0.242187][0.15989,0.873913,0][-1.7433,-0.545279,-1.05231][-0.848061,-0.21119,-0.485995][0.166299,0.826009,0][-1.67513,-1.0311,-0.756071][-0.829868,-0.359638,-0.426591][0.199249,0.846101,0][-1.67513,-1.0311,-0.756071][-0.829868,-0.359638,-0.426591][0.199249,0.846101,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.173341,0.880009,0][-1.96932,-0.450779,-0.345996][-0.965602,-0.0946532,-0.242187][0.15989,0.873913,0][-1.96932,-0.226262,-0.373039][-0.973276,0.00290319,-0.229618][0.144663,0.872079,0][-1.7433,-0.122443,-1.10947][-0.852969,0.004064,-0.521946][0.137622,0.822132,0][-1.7433,-0.545279,-1.05231][-0.848061,-0.21119,-0.485995][0.166299,0.826009,0][-1.7433,-0.545279,-1.05231][-0.848061,-0.21119,-0.485995][0.166299,0.826009,0][-1.96932,-0.450779,-0.345996][-0.965602,-0.0946532,-0.242187][0.15989,0.873913,0][-1.96932,-0.226262,-0.373039][-0.973276,0.00290319,-0.229618][0.144663,0.872079,0][-1.96932,0.00918819,-0.333286][-0.974907,0.0630338,-0.213504][0.128694,0.874775,0][-1.7433,0.341192,-1.04164][-0.860899,0.132583,-0.491197][0.106176,0.826733,0][-1.7433,-0.122443,-1.10947][-0.852969,0.004064,-0.521946][0.137622,0.822132,0][-1.7433,-0.122443,-1.10947][-0.852969,0.004064,-0.521946][0.137622,0.822132,0][-1.96932,-0.226262,-0.373039][-0.973276,0.00290319,-0.229618][0.144663,0.872079,0][-1.96932,0.00918819,-0.333286][-0.974907,0.0630338,-0.213504][0.128694,0.874775,0][-1.96932,0.237374,-0.22914][-0.977197,0.110956,-0.181037][0.113218,0.881838,0][-1.7433,0.8021,-0.851246][-0.870864,0.250485,-0.422911][0.0749164,0.839645,0][-1.7433,0.341192,-1.04164][-0.860899,0.132583,-0.491197][0.106176,0.826733,0][-1.7433,0.341192,-1.04164][-0.860899,0.132583,-0.491197][0.106176,0.826733,0][-1.96932,0.00918819,-0.333286][-0.974907,0.0630338,-0.213504][0.128694,0.874775,0][-1.96932,0.237374,-0.22914][-0.977197,0.110956,-0.181037][0.113218,0.881838,0][-1.96932,0.42779,-0.0698175][-0.979476,0.15122,-0.133261][0.100303,0.892644,0][-1.7433,1.15839,-0.553169][-0.862016,0.460359,-0.212128][0.050752,0.859862,0][-1.7433,0.8021,-0.851246][-0.870864,0.250485,-0.422911][0.0749164,0.839645,0][-1.7433,0.8021,-0.851246][-0.870864,0.250485,-0.422911][0.0749164,0.839645,0][-1.96932,0.237374,-0.22914][-0.977197,0.110956,-0.181037][0.113218,0.881838,0][-1.96932,0.42779,-0.0698175][-0.979476,0.15122,-0.133261][0.100303,0.892644,0][-1.96964,0.55051,0.128258][-0.974995,0.208523,-0.0768278][0.0919799,0.906078,0][-1.67513,1.26529,-0.0512884][-0.836239,0.548152,-0.0152811][0.0435013,0.893901,0][-1.7433,1.15839,-0.553169][-0.862016,0.460359,-0.212128][0.050752,0.859862,0][-1.7433,1.15839,-0.553169][-0.862016,0.460359,-0.212128][0.050752,0.859862,0][-1.96932,0.42779,-0.0698175][-0.979476,0.15122,-0.133261][0.100303,0.892644,0][-1.96964,0.55051,0.128258][-0.974995,0.208523,-0.0768278][0.0919799,0.906078,0][-1.67562,1.34243,-0.273835][-0.773399,0.626746,-0.0951005][0.883716,0.927339,0][-1.96981,0.63837,-0.0907164][-0.926778,0.368974,-0.0702842][0.83632,0.941051,0][-1.97037,0.678259,0.126085][-0.926778,0.368974,-0.0702842][0.831136,0.927027,0][-1.67562,1.34243,-0.273835][-0.924318,0.377812,-0.0537934][0.724773,0.970274,0][-1.97037,0.678259,0.126085][-0.924318,0.377812,-0.0537934][0.676116,0.95034,0][-1.67376,1.40625,0.142544][-0.924318,0.377812,-0.0537934][0.724742,0.941704,0][-2.07117,-0.149335,0.0986969][-0.992486,0.12012,0.0232775][0.708756,0.0602275,0][-1.9707,0.633799,0.34137][-0.964888,0.244164,0.0968263][0.654239,0.0492786,0][-1.97037,0.678259,0.126085][-0.963209,0.263489,0.0529307][0.658574,0.0350134,0][-2.07117,-0.149335,0.0986969][-0.991946,0.105582,0.0699693][0.708756,0.0602275,0][-1.96964,0.514704,0.536183][-0.967285,0.191004,0.166968][0.655013,0.0647454,0][-1.9707,0.633799,0.34137][-0.964888,0.244164,0.0968263][0.654239,0.0492786,0][-2.07117,-0.149335,0.0986969][-0.990933,0.0808037,0.107344][0.708756,0.0602275,0][-1.96871,0.327678,0.685541][-0.963734,0.123987,0.236312][0.661308,0.0797082,0][-1.96964,0.514704,0.536183][-0.967285,0.191004,0.166968][0.655013,0.0647454,0][-2.07117,-0.149335,0.0986969][-0.98999,0.050545,0.131775][0.708756,0.0602275,0][-1.96972,0.0907946,0.768792][-0.957274,0.0536013,0.284171][0.672717,0.0923509,0][-1.96871,0.327678,0.685541][-0.963734,0.123987,0.236312][0.661308,0.0797082,0][-2.07117,-0.149335,0.0986969][-0.989207,0.00999996,0.146186][0.708756,0.0602275,0][-1.9698,-0.153134,0.784907][-0.952542,-0.0244717,0.303422][0.686723,0.101223,0][-1.96972,0.0907946,0.768792][-0.957274,0.0536013,0.284171][0.672717,0.0923509,0][-2.07117,-0.149335,0.0986969][-0.988812,-0.0310584,0.145901][0.708756,0.0602275,0][-1.9698,-0.379571,0.736703][-0.950462,-0.109715,0.290835][0.701774,0.105697,0][-1.9698,-0.153134,0.784907][-0.952542,-0.0244717,0.303422][0.686723,0.101223,0][-2.07117,-0.149335,0.0986969][-0.988739,-0.0723922,0.130973][0.708756,0.0602275,0][-1.9698,-0.576186,0.628031][-0.950228,-0.188555,0.248018][0.71701,0.105602,0][-1.9698,-0.379571,0.736703][-0.950462,-0.109715,0.290835][0.701774,0.105697,0][-2.07117,-0.149335,0.0986969][-0.988919,-0.106163,0.103775][0.708756,0.0602275,0][-1.9698,-0.732399,0.468222][-0.951925,-0.246464,0.181918][0.731498,0.101151,0][-1.9698,-0.576186,0.628031][-0.950228,-0.188555,0.248018][0.71701,0.105602,0][-2.07117,-0.149335,0.0986969][-0.989317,-0.129166,0.067589][0.708756,0.0602275,0][-1.9698,-0.834227,0.273624][-0.954625,-0.281371,0.0975787][0.743876,0.0928631,0][-1.9698,-0.732399,0.468222][-0.951925,-0.246464,0.181918][0.731498,0.101151,0][-2.07117,-0.149335,0.0986969][-0.989804,-0.14045,0.0236909][0.708756,0.0602275,0][-1.9698,-0.869648,0.063622][-0.956862,-0.290541,0.00108946][0.752798,0.0815038,0][-1.9698,-0.834227,0.273624][-0.954625,-0.281371,0.0975787][0.743876,0.0928631,0][-2.07117,-0.149335,0.0986969][-0.990122,-0.138185,-0.0237405][0.708756,0.0602275,0][-1.9698,-0.834249,-0.14243][-0.957465,-0.272014,-0.0962711][0.757373,0.0680825,0][-1.9698,-0.869648,0.063622][-0.956862,-0.290541,0.00108946][0.752798,0.0815038,0][-2.07117,-0.149335,0.0986969][-0.990122,-0.122588,-0.068042][0.708756,0.0602275,0][-1.9698,-0.732372,-0.325979][-0.956245,-0.22851,-0.182698][0.757259,0.0538451,0][-1.9698,-0.834249,-0.14243][-0.957465,-0.272014,-0.0962711][0.757373,0.0680825,0][-2.07117,-0.149335,0.0986969][-0.989878,-0.095911,-0.104609][0.708756,0.0602275,0][-1.9698,-0.575096,-0.470178][-0.955822,-0.197565,-0.217652][0.752569,0.0401546,0][-1.9698,-0.732372,-0.325979][-0.956245,-0.22851,-0.182698][0.757259,0.0538451,0][-2.07069,-0.216206,0.288643][0.921895,0.372102,-0.107935][0.143981,0.916956,0][-1.96932,-0.226262,-0.373039][-0.973276,0.00290319,-0.229618][0.144663,0.872079,0][-1.96932,-0.450779,-0.345996][-0.965602,-0.0946532,-0.242187][0.15989,0.873913,0][-2.07069,-0.216206,0.288643][-0.988084,0.0256253,-0.151765][0.143981,0.916956,0][-1.96932,0.00918819,-0.333286][-0.974907,0.0630338,-0.213504][0.128694,0.874775,0][-1.96932,-0.226262,-0.373039][-0.973276,0.00290319,-0.229618][0.144663,0.872079,0][-2.07069,-0.216206,0.288643][-0.988388,0.0630922,-0.138236][0.143981,0.916956,0][-1.96932,0.237374,-0.22914][-0.977197,0.110956,-0.181037][0.113218,0.881838,0][-1.96932,0.00918819,-0.333286][-0.974907,0.0630338,-0.213504][0.128694,0.874775,0][-2.07069,-0.216206,0.288643][-0.989324,0.0935163,-0.111768][0.143981,0.916956,0][-1.96932,0.42779,-0.0698175][-0.979476,0.15122,-0.133261][0.100303,0.892644,0][-1.96932,0.237374,-0.22914][-0.977197,0.110956,-0.181037][0.113218,0.881838,0][-2.07069,-0.216206,0.288643][-0.990644,0.115296,-0.0730119][0.143981,0.916956,0][-1.96964,0.55051,0.128258][-0.974995,0.208523,-0.0768278][0.0919799,0.906078,0][-1.96932,0.42779,-0.0698175][-0.979476,0.15122,-0.133261][0.100303,0.892644,0][-2.07117,-0.149335,0.0986969][-0.992255,0.121688,-0.0249557][0.573319,0.14536,0][-1.97037,0.678259,0.126085][-0.992255,0.121688,-0.0249557][0.627551,0.130769,0][-1.96981,0.63837,-0.0907164][-0.992255,0.121688,-0.0249557][0.628265,0.145703,0][2.07117,-0.149335,0.0986989][-0.985456,0.160664,0.0553562][0.643749,0.176812,0][1.96981,-0.575096,-0.470178][0.955284,-0.199833,-0.217943][0.691888,0.174561,0][1.9698,-0.627446,-0.318272][-0.985456,0.160664,0.0553562][0.686195,0.183853,0][1.9698,-0.627446,-0.318272][-0.985558,0.159602,0.0565992][0.691907,0.200574,0][2.07117,-0.204026,0.25289][-0.985558,0.159602,0.0565992][0.643749,0.203045,0][2.07117,-0.149335,0.0986989][-0.985558,0.159602,0.0565992][0.64946,0.193533,0][2.07117,-0.204026,0.25289][0.991176,0.112028,-0.0708532][0.857743,0.12786,0][1.97009,0.572163,0.0660988][0.957991,0.243173,-0.152056][0.911888,0.128207,0][1.96981,0.638371,-0.0907167][0.926239,0.373131,-0.0534337][0.918683,0.137541,0][1.96981,0.638371,-0.0907167][0.926239,0.373131,-0.0534337][0.918683,0.137541,0][2.07117,-0.149335,0.0986989][-0.989041,-0.139145,-0.0493647][0.863736,0.137198,0][2.07117,-0.204026,0.25289][0.991176,0.112028,-0.0708532][0.857743,0.12786,0][1.67562,-1.00944,-0.818233][-0.871992,0.462812,0.159483][0.72884,0.182284,0][1.9698,-0.627446,-0.318272][-0.985456,0.160664,0.0553562][0.686195,0.183853,0][1.96981,-0.575096,-0.470178][0.955284,-0.199833,-0.217943][0.691888,0.174561,0][1.96981,-0.575096,-0.470178][0.955284,-0.199833,-0.217943][0.691888,0.174561,0][1.67562,-0.955647,-0.967457][0.82551,-0.373884,-0.422782][0.73433,0.173032,0][1.67562,-1.00944,-0.818233][-0.871992,0.462812,0.159483][0.72884,0.182284,0][1.97009,0.572163,0.0660988][0.957991,0.243173,-0.152056][0.911888,0.128207,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.961866,0.129025,0][1.67562,1.34243,-0.273835][0.876172,0.477309,-0.0670709][0.968008,0.13876,0][1.67562,1.34243,-0.273835][0.876172,0.477309,-0.0670709][0.968008,0.13876,0][1.96981,0.638371,-0.0907167][0.926239,0.373131,-0.0534337][0.918683,0.137541,0][1.97009,0.572163,0.0660988][0.957991,0.243173,-0.152056][0.911888,0.128207,0][1.21741,-1.3164,-1.20368][-0.675257,0.693868,0.250151][0.479335,0.617121,0][1.67562,-1.00944,-0.818233][-0.871992,0.462812,0.159483][0.510412,0.590978,0][1.67562,-0.955647,-0.967457][0.82551,-0.373884,-0.422782][0.510412,0.601099,0][1.67562,-0.955647,-0.967457][0.82551,-0.373884,-0.422782][0.510412,0.601099,0][1.21741,-1.26261,-1.35086][0.609348,-0.522402,-0.596482][0.479335,0.627103,0][1.21741,-1.3164,-1.20368][-0.675257,0.693868,0.250151][0.479335,0.617121,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.767675,0.621113,0][1.21741,1.7809,-0.263989][-0.678552,-0.698615,-0.226945][0.736598,0.610903,0][1.21741,1.83326,-0.425187][0.658841,0.744826,-0.105652][0.736598,0.59997,0][1.21741,1.83326,-0.425187][0.658841,0.744826,-0.105652][0.736598,0.59997,0][1.67562,1.34243,-0.273835][0.876172,0.477309,-0.0670709][0.767675,0.610235,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.767675,0.621113,0][0.64003,-1.51348,-1.44632][-0.421542,0.851701,0.3113][0.440176,0.633577,0][1.21741,-1.3164,-1.20368][-0.675257,0.693868,0.250151][0.479335,0.617121,0][1.21741,-1.26261,-1.35086][0.609348,-0.522402,-0.596482][0.479335,0.627103,0][1.21741,-1.26261,-1.35086][0.609348,-0.522402,-0.596482][0.479335,0.627103,0][0.640029,-1.45969,-1.59245][0.258586,-0.770944,-0.582047][0.440176,0.643488,0][0.64003,-1.51348,-1.44632][-0.421542,0.851701,0.3113][0.440176,0.633577,0][1.21741,1.7809,-0.263989][-0.678552,-0.698615,-0.226945][0.736598,0.610903,0][0.640029,2.09429,-0.362318][-0.418692,-0.861511,-0.28722][0.697439,0.604234,0][0.640028,2.14808,-0.523674][0.382229,0.913795,-0.137405][0.697439,0.59329,0][0.640028,2.14808,-0.523674][0.382229,0.913795,-0.137405][0.697439,0.59329,0][1.21741,1.83326,-0.425187][0.658841,0.744826,-0.105652][0.736598,0.59997,0][1.21741,1.7809,-0.263989][-0.678552,-0.698615,-0.226945][0.736598,0.610903,0][6.6671e-007,-1.58139,-1.52921][-0.142833,0.928807,0.341929][0.396767,0.639199,0][0.64003,-1.51348,-1.44632][-0.421542,0.851701,0.3113][0.440176,0.633577,0][0.640029,-1.45969,-1.59245][0.258586,-0.770944,-0.582047][0.440176,0.643488,0][0.640029,-1.45969,-1.59245][0.258586,-0.770944,-0.582047][0.440176,0.643488,0][6.80607e-007,-1.5276,-1.67506][0.158088,-0.819041,-0.551525][0.396767,0.649091,0][6.6671e-007,-1.58139,-1.52921][-0.142833,0.928807,0.341929][0.396767,0.639199,0][0.640029,2.09429,-0.362318][-0.418692,-0.861511,-0.28722][0.697439,0.604234,0][6.84039e-007,2.20416,-0.396401][-0.144489,-0.938711,-0.312959][0.65403,0.601923,0][9.5449e-007,2.25796,-0.557765][0.0558251,0.986845,-0.151725][0.65403,0.590978,0][9.5449e-007,2.25796,-0.557765][0.0558251,0.986845,-0.151725][0.65403,0.590978,0][0.640028,2.14808,-0.523674][0.382229,0.913795,-0.137405][0.697439,0.59329,0][0.640029,2.09429,-0.362318][-0.418692,-0.861511,-0.28722][0.697439,0.604234,0][-0.640028,-1.51348,-1.44632][0.142886,0.928585,0.34251][0.353359,0.633577,0][6.6671e-007,-1.58139,-1.52921][-0.142833,0.928807,0.341929][0.396767,0.639199,0][6.80607e-007,-1.5276,-1.67506][0.158088,-0.819041,-0.551525][0.396767,0.649091,0][6.80607e-007,-1.5276,-1.67506][0.158088,-0.819041,-0.551525][0.396767,0.649091,0][-0.640028,-1.45969,-1.59245][-0.459144,-0.736871,-0.496194][0.353359,0.643488,0][-0.640028,-1.51348,-1.44632][0.142886,0.928585,0.34251][0.353359,0.633577,0][6.84039e-007,2.20416,-0.396401][-0.144489,-0.938711,-0.312959][0.65403,0.601923,0][-0.640028,2.09428,-0.362317][0.144489,-0.938711,-0.31296][0.610622,0.604234,0][-0.640028,2.14808,-0.523673][-0.274403,0.951031,-0.142278][0.610622,0.59329,0][-0.640028,2.14808,-0.523673][-0.274403,0.951031,-0.142278][0.610622,0.59329,0][9.5449e-007,2.25796,-0.557765][0.0558251,0.986845,-0.151725][0.65403,0.590978,0][6.84039e-007,2.20416,-0.396401][-0.144489,-0.938711,-0.312959][0.65403,0.601923,0][-1.21741,-1.3164,-1.20368][0.422019,0.850769,0.313196][0.314199,0.617121,0][-0.640028,-1.51348,-1.44632][0.142886,0.928585,0.34251][0.353359,0.633577,0][-0.640028,-1.45969,-1.59245][-0.459144,-0.736871,-0.496194][0.353359,0.643488,0][-0.640028,-1.45969,-1.59245][-0.459144,-0.736871,-0.496194][0.353359,0.643488,0][-1.21741,-1.26261,-1.35086][-0.562466,-0.584124,-0.585177][0.314199,0.627103,0][-1.21741,-1.3164,-1.20368][0.422019,0.850769,0.313196][0.314199,0.617121,0][-0.640028,2.09428,-0.362317][0.144489,-0.938711,-0.31296][0.610622,0.604234,0][-1.21741,1.7809,-0.263989][0.420603,-0.862861,-0.280294][0.571462,0.610903,0][-1.21741,1.83326,-0.425188][-0.556965,0.822057,-0.118371][0.571463,0.59997,0][-1.21741,1.83326,-0.425188][-0.556965,0.822057,-0.118371][0.571463,0.59997,0][-0.640028,2.14808,-0.523673][-0.274403,0.951031,-0.142278][0.610622,0.59329,0][-0.640028,2.09428,-0.362317][0.144489,-0.938711,-0.31296][0.610622,0.604234,0][-1.67562,-1.00944,-0.818232][0.676252,0.691901,0.252897][0.283122,0.590978,0][-1.21741,-1.3164,-1.20368][0.422019,0.850769,0.313196][0.314199,0.617121,0][-1.21741,-1.26261,-1.35086][-0.562466,-0.584124,-0.585177][0.314199,0.627103,0][-1.21741,-1.26261,-1.35086][-0.562466,-0.584124,-0.585177][0.314199,0.627103,0][-1.67562,-0.955647,-0.967456][-0.825364,-0.372962,-0.423879][0.283122,0.601099,0][-1.67562,-1.00944,-0.818232][0.676252,0.691901,0.252897][0.283122,0.590978,0][-1.21741,1.7809,-0.263989][0.420603,-0.862861,-0.280294][0.571462,0.610903,0][-1.67562,1.28695,-0.113449][0.673585,-0.698489,-0.241652][0.540385,0.621113,0][-1.67562,1.34243,-0.273835][-0.773399,0.626746,-0.0951005][0.540385,0.610235,0][-1.67562,1.34243,-0.273835][-0.773399,0.626746,-0.0951005][0.540385,0.610235,0][-1.21741,1.83326,-0.425188][-0.556965,0.822057,-0.118371][0.571463,0.59997,0][-1.21741,1.7809,-0.263989][0.420603,-0.862861,-0.280294][0.571462,0.610903,0][-1.9698,-0.627445,-0.318273][0.15475,0.0809724,0.0291911][0.11716,0.984042,0][-1.67562,-1.00944,-0.818232][0.676252,0.691901,0.252897][0.0744868,0.984067,0][-1.67562,-0.955647,-0.967456][-0.825364,-0.372962,-0.423879][0.0686545,0.975027,0][-1.67562,-0.955647,-0.967456][-0.825364,-0.372962,-0.423879][0.0686545,0.975027,0][-1.9698,-0.575096,-0.470178][-0.955822,-0.197565,-0.217652][0.111124,0.974969,0][-1.9698,-0.627445,-0.318273][0.15475,0.0809724,0.0291911][0.11716,0.984042,0][-1.67562,1.28695,-0.113449][0.673585,-0.698489,-0.241652][0.850496,0.809443,0][-1.97012,0.572163,0.066097][0.894813,-0.41192,-0.172138][0.800524,0.808301,0][-1.96981,0.63837,-0.0907164][-0.926778,0.368974,-0.0702842][0.807679,0.799241,0][-1.96981,0.63837,-0.0907164][-0.926778,0.368974,-0.0702842][0.807679,0.799241,0][-1.67562,1.34243,-0.273835][-0.773399,0.626746,-0.0951005][0.857015,0.799956,0][-1.67562,1.28695,-0.113449][0.673585,-0.698489,-0.241652][0.850496,0.809443,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.165377,0.984713,0][-1.9698,-0.627445,-0.318273][0.15475,0.0809724,0.0291911][0.11716,0.984042,0][-1.9698,-0.575096,-0.470178][-0.955822,-0.197565,-0.217652][0.111124,0.974969,0][-1.9698,-0.575096,-0.470178][-0.955822,-0.197565,-0.217652][0.111124,0.974969,0][-2.07117,-0.149335,0.0986969][0.985627,0.159215,0.0564727][0.159314,0.97542,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.165377,0.984713,0][-2.07117,-0.149335,0.0986969][0.988329,-0.14103,-0.0575806][0.752762,0.79743,0][-1.96981,0.63837,-0.0907164][-0.926778,0.368974,-0.0702842][0.807679,0.799241,0][-1.97012,0.572163,0.066097][0.894813,-0.41192,-0.172138][0.800524,0.808301,0][-1.97012,0.572163,0.066097][0.988786,-0.140748,-0.0499225][0.367644,0.618287,0][-2.07117,-0.204026,0.252889][0.988786,-0.140748,-0.0499225][0.421739,0.615917,0][-2.07117,-0.149335,0.0986969][0.988786,-0.140748,-0.0499225][0.416098,0.625473,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-1.71452,-1.85099,-0.549737][0,-1.36136,0][0.0153134,0.360098,0][-1.33977,-1.85099,-1.19881][0,-2.72271,0][0.0407294,0.316076,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-1.33977,-1.85099,-1.19881][0,-2.72271,0][0.0407294,0.316076,0][-0.733431,-1.85099,-1.63934][0,-2.72271,0][0.0818533,0.286198,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-0.733431,-1.85099,-1.63934][0,-2.72271,0][0.0818533,0.286198,0][-0.000326543,-1.85099,-1.79517][0,-2.72271,0][0.131575,0.275629,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-0.000326543,-1.85099,-1.79517][0,-2.72271,0][0.131575,0.275629,0][0.732778,-1.85099,-1.63934][0,-2.72272,0][0.181296,0.286198,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][0.732778,-1.85099,-1.63934][0,-2.72272,0][0.181296,0.286198,0][1.33912,-1.85099,-1.19881][-1.48124e-007,-2.72271,-1.64509e-007][0.22242,0.316076,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][1.33912,-1.85099,-1.19881][-1.48124e-007,-2.72271,-1.64509e-007][0.22242,0.316076,0][1.71386,-1.85099,-0.549736][-2.39671e-007,-2.72271,-1.54887e-007][0.247836,0.360098,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][1.71386,-1.85099,-0.549736][-2.39671e-007,-2.72271,-1.54887e-007][0.247836,0.360098,0][1.7922,-1.85099,0.19564][-1.79091e-007,-2.72271,0][0.253149,0.410651,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][1.7922,-1.85099,0.19564][-1.79091e-007,-2.72271,0][0.253149,0.410651,0][1.5606,-1.85099,0.90844][-1.55952e-007,-2.72271,0][0.237441,0.458995,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][1.5606,-1.85099,0.90844][-1.55952e-007,-2.72271,0][0.237441,0.458995,0][1.0591,-1.85099,1.46541][0,-2.72271,-1.45686e-007][0.203428,0.496771,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][1.0591,-1.85099,1.46541][0,-2.72271,-1.45686e-007][0.203428,0.496771,0][0.374415,-1.85099,1.77026][0,-2.72271,-1.76142e-007][0.156991,0.517446,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][0.374415,-1.85099,1.77026][0,-2.72271,-1.76142e-007][0.156991,0.517446,0][-0.375067,-1.85099,1.77026][-1.79091e-007,-2.72271,-2.22168e-007][0.106159,0.517446,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-0.375067,-1.85099,1.77026][-1.79091e-007,-2.72271,-2.22168e-007][0.106159,0.517446,0][-1.05975,-1.85099,1.46541][-1.79091e-007,-2.72271,-1.30117e-007][0.0597213,0.496771,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-1.05975,-1.85099,1.46541][-1.79091e-007,-2.72271,-1.30117e-007][0.0597213,0.496771,0][-1.56126,-1.85099,0.90844][0,-2.72271,0][0.025708,0.458995,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-1.56126,-1.85099,0.90844][0,-2.72271,0][0.025708,0.458995,0][-1.79286,-1.85099,0.19564][0,-2.72271,0][0.01,0.410651,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-1.79286,-1.85099,0.19564][0,-2.72271,0][0.01,0.410651,0][-1.71452,-1.85099,-0.549737][0,-1,0][0.0153134,0.360098,0][-0.000326543,-1.85099,-1.79517][0,-2.72271,0][0.886089,0.400169,0][-0.733431,-1.85099,-1.63934][0,-2.72271,0][0.836368,0.400169,0][-0.733431,-1.33743,-1.63823][-1.25869,0.00506456,-2.80224][0.836368,0.365338,0][-0.733431,-1.33743,-1.63823][-1.25869,0.00506456,-2.80224][0.836368,0.365338,0][-0.000326272,-1.33743,-1.79493][-0.00107902,0.00242506,-3.07261][0.886089,0.365338,0][-0.000326543,-1.85099,-1.79517][0,-2.72271,0][0.886089,0.400169,0][-0.733431,-1.85099,-1.63934][0,-2.72271,0][0.836368,0.400169,0][-1.33977,-1.85099,-1.19881][0,-2.72271,0][0.795244,0.400169,0][-1.33977,-1.33743,-1.19221][-2.29894,0.0210791,-2.04077][0.795244,0.365338,0][-1.33977,-1.33743,-1.19221][-2.29894,0.0210791,-2.04077][0.795244,0.365338,0][-0.733431,-1.33743,-1.63823][-1.25869,0.00506456,-2.80224][0.836368,0.365338,0][-0.733431,-1.85099,-1.63934][0,-2.72271,0][0.836368,0.400169,0][-1.33977,-1.85099,-1.19881][0,-2.72271,0][0.600052,0.953192,0][-1.71452,-1.85099,-0.549737][0,-1.36136,0][0.644074,0.953192,0][-1.71452,-1.33743,-0.529005][-1.33252,0.0228196,-0.763016][0.64548,0.988024,0][-1.71452,-1.33743,-0.529005][-1.33252,0.0228196,-0.763016][0.64548,0.988024,0][-1.33977,-1.33743,-1.19221][-2.29894,0.0210791,-2.04077][0.6005,0.988024,0][-1.33977,-1.85099,-1.19881][0,-2.72271,0][0.600052,0.953192,0][-1.71452,-1.85099,-0.549737][-0.994802,0.00410743,-0.101749][0.522141,0.415997,0][-1.79286,-1.33743,0.236952][-0.994802,0.00410743,-0.101749][0.575496,0.450828,0][-1.71452,-1.33743,-0.529005][-0.994802,0.00410743,-0.101749][0.523547,0.450828,0][-1.71452,-1.85099,-0.549737][-0.994487,0.00840725,-0.104525][0.797649,0.590978,0][-1.79286,-1.85099,0.19564][0,-2.72271,0][0.848202,0.590978,0][-1.79286,-1.33743,0.236952][-2.47985,-0.0322903,0.401382][0.851004,0.625809,0][-1.79286,-1.85099,0.19564][0,-2.72271,0][0.848202,0.590978,0][-1.56126,-1.85099,0.90844][0,-2.72271,0][0.896546,0.590978,0][-1.56126,-1.33743,0.968585][-2.62784,-0.174224,1.54118][0.900626,0.625809,0][-1.56126,-1.33743,0.968585][-2.62784,-0.174224,1.54118][0.900626,0.625809,0][-1.79286,-1.33743,0.236952][-2.47985,-0.0322903,0.401382][0.851004,0.625809,0][-1.79286,-1.85099,0.19564][0,-2.72271,0][0.848202,0.590978,0][-1.56126,-1.85099,0.90844][0,-2.72271,0][0.283122,0.679064,0][-1.05975,-1.85099,1.46541][-1.79091e-007,-2.72271,-1.30117e-007][0.317136,0.679064,0][-1.05975,-1.33743,1.53632][-1.7533,-0.329904,2.4466][0.317135,0.713895,0][-1.05975,-1.33743,1.53632][-1.7533,-0.329904,2.4466][0.317135,0.713895,0][-1.56126,-1.33743,0.968585][-2.62784,-0.174224,1.54118][0.283122,0.713895,0][-1.56126,-1.85099,0.90844][0,-2.72271,0][0.283122,0.679064,0][-1.05975,-1.85099,1.46541][-1.79091e-007,-2.72271,-1.30117e-007][0.317136,0.679064,0][-0.375067,-1.85099,1.77026][-1.79091e-007,-2.72271,-2.22168e-007][0.363573,0.679064,0][-0.375067,-1.33743,1.8446][-0.612069,-0.419638,2.92334][0.363573,0.713895,0][-0.375067,-1.33743,1.8446][-0.612069,-0.419638,2.92334][0.363573,0.713895,0][-1.05975,-1.33743,1.53632][-1.7533,-0.329904,2.4466][0.317135,0.713895,0][-1.05975,-1.85099,1.46541][-1.79091e-007,-2.72271,-1.30117e-007][0.317136,0.679064,0][-0.375067,-1.85099,1.77026][-1.79091e-007,-2.72271,-2.22168e-007][0.363573,0.679064,0][0.374415,-1.85099,1.77026][0,-2.72271,-1.76142e-007][0.414405,0.679064,0][0.374414,-1.33743,1.8446][0.615396,-0.422902,2.92138][0.414405,0.713895,0][0.374414,-1.33743,1.8446][0.615396,-0.422902,2.92138][0.414405,0.713895,0][-0.375067,-1.33743,1.8446][-0.612069,-0.419638,2.92334][0.363573,0.713895,0][-0.375067,-1.85099,1.77026][-1.79091e-007,-2.72271,-2.22168e-007][0.363573,0.679064,0][0.374415,-1.85099,1.77026][0,-2.72271,-1.76142e-007][0.414405,0.679064,0][1.0591,-1.85099,1.46541][0,-2.72271,-1.45686e-007][0.460842,0.679064,0][1.0591,-1.33743,1.53632][1.75446,-0.340805,2.44108][0.460842,0.713895,0][1.0591,-1.33743,1.53632][1.75446,-0.340805,2.44108][0.460842,0.713895,0][0.374414,-1.33743,1.8446][0.615396,-0.422902,2.92138][0.414405,0.713895,0][0.374415,-1.85099,1.77026][0,-2.72271,-1.76142e-007][0.414405,0.679064,0][1.0591,-1.85099,1.46541][0,-2.72271,-1.45686e-007][0.460842,0.679064,0][1.5606,-1.85099,0.90844][-1.55952e-007,-2.72271,0][0.494855,0.679064,0][1.5606,-1.33743,0.968586][2.62269,-0.189259,1.54145][0.494855,0.713895,0][1.5606,-1.33743,0.968586][2.62269,-0.189259,1.54145][0.494855,0.713895,0][1.0591,-1.33743,1.53632][1.75446,-0.340805,2.44108][0.460842,0.713895,0][1.0591,-1.85099,1.46541][0,-2.72271,-1.45686e-007][0.460842,0.679064,0][1.5606,-1.85099,0.90844][-1.55952e-007,-2.72271,0][0.740895,0.438404,0][1.7922,-1.85099,0.19564][-1.79091e-007,-2.72271,0][0.692551,0.438404,0][1.7922,-1.33743,0.236952][3.05067,-0.0352945,0.352624][0.695353,0.403573,0][1.7922,-1.33743,0.236952][3.05067,-0.0352945,0.352624][0.695353,0.403573,0][1.5606,-1.33743,0.968586][2.62269,-0.189259,1.54145][0.744975,0.403573,0][1.5606,-1.85099,0.90844][-1.55952e-007,-2.72271,0][0.740895,0.438404,0][1.7922,-1.85099,0.19564][-1.79091e-007,-2.72271,0][0.692551,0.438404,0][1.71386,-1.85099,-0.549736][-2.39671e-007,-2.72271,-1.54887e-007][0.641998,0.438404,0][1.71386,-1.33743,-0.529004][2.93899,0.039725,-0.921999][0.643404,0.403573,0][1.71386,-1.33743,-0.529004][2.93899,0.039725,-0.921999][0.643404,0.403573,0][1.7922,-1.33743,0.236952][3.05067,-0.0352945,0.352624][0.695353,0.403573,0][1.7922,-1.85099,0.19564][-1.79091e-007,-2.72271,0][0.692551,0.438404,0][1.71386,-1.85099,-0.549736][-2.39671e-007,-2.72271,-1.54887e-007][0.641998,0.438404,0][1.33912,-1.85099,-1.19881][-1.48124e-007,-2.72271,-1.64509e-007][0.597976,0.438404,0][1.33912,-1.33743,-1.19221][2.29897,0.0344739,-2.04522][0.598424,0.403573,0][1.33912,-1.33743,-1.19221][2.29897,0.0344739,-2.04522][0.598424,0.403573,0][1.71386,-1.33743,-0.529004][2.93899,0.039725,-0.921999][0.643404,0.403573,0][1.71386,-1.85099,-0.549736][-2.39671e-007,-2.72271,-1.54887e-007][0.641998,0.438404,0][1.33912,-1.85099,-1.19881][-1.48124e-007,-2.72271,-1.64509e-007][0.976934,0.400169,0][0.732778,-1.85099,-1.63934][0,-2.72272,0][0.93581,0.400169,0][0.732778,-1.33743,-1.63823][1.25514,0.0112461,-2.80539][0.93581,0.365338,0][0.732778,-1.33743,-1.63823][1.25514,0.0112461,-2.80539][0.93581,0.365338,0][1.33912,-1.33743,-1.19221][2.29897,0.0344739,-2.04522][0.976934,0.365338,0][1.33912,-1.85099,-1.19881][-1.48124e-007,-2.72271,-1.64509e-007][0.976934,0.400169,0][0.732778,-1.85099,-1.63934][0,-2.72272,0][0.93581,0.400169,0][-0.000326543,-1.85099,-1.79517][0,-2.72271,0][0.886089,0.400169,0][-0.000326272,-1.33743,-1.79493][-0.00107902,0.00242506,-3.07261][0.886089,0.365338,0][-0.000326272,-1.33743,-1.79493][-0.00107902,0.00242506,-3.07261][0.886089,0.365338,0][0.732778,-1.33743,-1.63823][1.25514,0.0112461,-2.80539][0.93581,0.365338,0][0.732778,-1.85099,-1.63934][0,-2.72272,0][0.93581,0.400169,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-1.71452,-1.33743,-0.529005][0,1,3.0787e-007][0.170985,0.247836,0][-1.79286,-1.33743,0.236952][-2.47985,-0.0322903,0.401382][0.119035,0.253149,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-1.79286,-1.33743,0.236952][-2.47985,-0.0322903,0.401382][0.119035,0.253149,0][-1.56126,-1.33743,0.968585][-2.62784,-0.174224,1.54118][0.0694137,0.237441,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-1.56126,-1.33743,0.968585][-2.62784,-0.174224,1.54118][0.0694137,0.237441,0][-1.05975,-1.33743,1.53632][-1.7533,-0.329904,2.4466][0.0309084,0.203428,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-1.05975,-1.33743,1.53632][-1.7533,-0.329904,2.4466][0.0309084,0.203428,0][-0.375067,-1.33743,1.8446][-0.612069,-0.419638,2.92334][0.01,0.15699,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-0.375067,-1.33743,1.8446][-0.612069,-0.419638,2.92334][0.01,0.15699,0][0.374414,-1.33743,1.8446][0.615396,-0.422902,2.92138][0.01,0.106159,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][0.374414,-1.33743,1.8446][0.615396,-0.422902,2.92138][0.01,0.106159,0][1.0591,-1.33743,1.53632][1.75446,-0.340805,2.44108][0.0309084,0.0597212,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][1.0591,-1.33743,1.53632][1.75446,-0.340805,2.44108][0.0309084,0.0597212,0][1.5606,-1.33743,0.968586][2.62269,-0.189259,1.54145][0.0694137,0.0257079,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][1.5606,-1.33743,0.968586][2.62269,-0.189259,1.54145][0.0694137,0.0257079,0][1.7922,-1.33743,0.236952][3.05067,-0.0352945,0.352624][0.119035,0.01,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][1.7922,-1.33743,0.236952][3.05067,-0.0352945,0.352624][0.119035,0.01,0][1.71386,-1.33743,-0.529004][2.93899,0.039725,-0.921999][0.170984,0.0153134,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][1.71386,-1.33743,-0.529004][2.93899,0.039725,-0.921999][0.170984,0.0153134,0][1.33912,-1.33743,-1.19221][2.29897,0.0344739,-2.04522][0.215965,0.0407294,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][1.33912,-1.33743,-1.19221][2.29897,0.0344739,-2.04522][0.215965,0.0407294,0][0.732778,-1.33743,-1.63823][1.25514,0.0112461,-2.80539][0.246215,0.0818533,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][0.732778,-1.33743,-1.63823][1.25514,0.0112461,-2.80539][0.246215,0.0818533,0][-0.000326272,-1.33743,-1.79493][-0.00107902,0.00242506,-3.07261][0.256843,0.131575,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-0.000326272,-1.33743,-1.79493][-0.00107902,0.00242506,-3.07261][0.256843,0.131575,0][-0.733431,-1.33743,-1.63823][-1.25869,0.00506456,-2.80224][0.246215,0.181296,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-0.733431,-1.33743,-1.63823][-1.25869,0.00506456,-2.80224][0.246215,0.181296,0][-1.33977,-1.33743,-1.19221][-2.29894,0.0210791,-2.04077][0.215965,0.22242,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-1.33977,-1.33743,-1.19221][-2.29894,0.0210791,-2.04077][0.215965,0.22242,0][-1.71452,-1.33743,-0.529005][-1.33252,0.0228196,-0.763016][0.170985,0.247836,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,0.0246907,-0.0490857][-1.10191,0,0][0.783558,0.973287,0][-2.19999,-0.149644,-0.120324][-2.41779,0,0][0.770792,0.97285,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,-0.149644,-0.120324][-2.41779,0,0][0.770792,0.97285,0][-2.19999,-0.317192,-0.0618313][-2.3232,0,0][0.762051,0.964576,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,-0.317192,-0.0618313][-2.3232,0,0][0.762051,0.964576,0][-2.19999,-0.384937,0.0912952][-2.32019,0,0][0.762115,0.95322,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,-0.384937,0.0912952][-2.32019,0,0][0.762115,0.95322,0][-2.19999,-0.316634,0.250675][-2.38709,0,0][0.770769,0.945257,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,-0.316634,0.250675][-2.38709,0,0][0.770769,0.945257,0][-2.19999,-0.149139,0.323756][-2.41155,0,0][0.783163,0.945389,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,-0.149139,0.323756][-2.41155,0,0][0.783163,0.945389,0][-2.19999,0.0247475,0.266396][-2.33874,-6.81265e-005,7.20064e-005][0.792327,0.95377,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,0.0247475,0.266396][-2.33874,-6.81265e-005,7.20064e-005][0.792327,0.95377,0][-2.20001,0.0994896,0.111397][-2.25613,-0.000116878,3.57719e-006][0.792645,0.965436,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.20001,0.0994896,0.111397][-2.25613,-0.000116878,3.57719e-006][0.792645,0.965436,0][-2.19999,0.0246907,-0.0490857][-1,-4.95155e-005,-5.71456e-005][0.783558,0.973287,0][-2.19999,-0.149644,-0.120324][-2.41779,0,0][0.832628,0.342858,0][-2.19999,0.0246907,-0.0490857][-1.10191,0,0][0.820804,0.342858,0][-2.05816,0.0246908,-0.0490854][1.26034e-006,0.594179,-1.45408][0.820804,0.333238,0][-2.05816,0.0246908,-0.0490854][1.26034e-006,0.594179,-1.45408][0.820804,0.333238,0][-2.05816,-0.149644,-0.120324][-2.48182e-006,0.0764503,-2.9371][0.832628,0.333238,0][-2.19999,-0.149644,-0.120324][-2.41779,0,0][0.832628,0.342858,0][-2.19999,0.0246907,-0.0490857][7.63991e-007,0.906384,-0.422456][0.813311,0.342858,0][-2.05817,0.0994898,0.111397][7.63991e-007,0.906384,-0.422456][0.802427,0.333239,0][-2.05816,0.0246908,-0.0490854][7.63991e-007,0.906384,-0.422456][0.813311,0.333238,0][-2.19999,0.0246907,-0.0490857][-3.38401e-006,0.906385,-0.422453][0.599124,0.17688,0][-2.20001,0.0994896,0.111397][-2.25613,-0.000116878,3.57719e-006][0.610009,0.17688,0][-2.05817,0.0994898,0.111397][-1.19412e-006,2.22657,0.304014][0.610009,0.186499,0][-2.20001,0.0994896,0.111397][-2.25613,-0.000116878,3.57719e-006][0.610009,0.17688,0][-2.19999,0.0247475,0.266396][-2.33874,-6.81265e-005,7.20064e-005][0.620521,0.17688,0][-2.05816,0.0247481,0.266396][3.97698e-006,1.9069,2.17397][0.620521,0.1865,0][-2.05816,0.0247481,0.266396][3.97698e-006,1.9069,2.17397][0.620521,0.1865,0][-2.05817,0.0994898,0.111397][-1.19412e-006,2.22657,0.304014][0.610009,0.186499,0][-2.20001,0.0994896,0.111397][-2.25613,-0.000116878,3.57719e-006][0.610009,0.17688,0][-2.19999,0.0247475,0.266396][-2.33874,-6.81265e-005,7.20064e-005][0.323035,0.599452,0][-2.19999,-0.149139,0.323756][-2.41155,0,0][0.334829,0.599452,0][-2.05816,-0.149139,0.323755][8.17151e-006,-0.136098,2.93146][0.334829,0.609071,0][-2.05816,-0.149139,0.323755][8.17151e-006,-0.136098,2.93146][0.334829,0.609071,0][-2.05816,0.0247481,0.266396][3.97698e-006,1.9069,2.17397][0.323035,0.609071,0][-2.19999,0.0247475,0.266396][-2.33874,-6.81265e-005,7.20064e-005][0.323035,0.599452,0][-2.19999,-0.149139,0.323756][-2.41155,0,0][0.334829,0.599452,0][-2.19999,-0.316634,0.250675][-2.38709,0,0][0.346189,0.599452,0][-2.05816,-0.316633,0.250675][9.09355e-006,-2.07197,2.05847][0.346189,0.609071,0][-2.05816,-0.316633,0.250675][9.09355e-006,-2.07197,2.05847][0.346189,0.609071,0][-2.05816,-0.149139,0.323755][8.17151e-006,-0.136098,2.93146][0.334829,0.609071,0][-2.19999,-0.149139,0.323756][-2.41155,0,0][0.334829,0.599452,0][-2.19999,-0.316634,0.250675][-2.38709,0,0][0.01,0.907336,0][-2.19999,-0.384937,0.0912952][-2.32019,0,0][0.0208096,0.907336,0][-2.05816,-0.384936,0.091295][1.14894e-005,-2.8803,-0.0167716][0.0208096,0.916956,0][-2.05816,-0.384936,0.091295][1.14894e-005,-2.8803,-0.0167716][0.0208096,0.916956,0][-2.05816,-0.316633,0.250675][9.09355e-006,-2.07197,2.05847][0.01,0.916956,0][-2.19999,-0.316634,0.250675][-2.38709,0,0][0.01,0.907336,0][-2.19999,-0.384937,0.0912952][-2.32019,0,0][0.0208096,0.907336,0][-2.19999,-0.317192,-0.0618313][-2.3232,0,0][0.0311951,0.907336,0][-2.05816,-0.317191,-0.0618321][-2.08501e-007,-1.95422,-2.11855][0.0311951,0.916956,0][-2.05816,-0.317191,-0.0618321][-2.08501e-007,-1.95422,-2.11855][0.0311951,0.916956,0][-2.05816,-0.384936,0.091295][1.14894e-005,-2.8803,-0.0167716][0.0208096,0.916956,0][-2.19999,-0.384937,0.0912952][-2.32019,0,0][0.0208096,0.907336,0][-2.19999,-0.317192,-0.0618313][-2.3232,0,0][0.843992,0.342858,0][-2.19999,-0.149644,-0.120324][-2.41779,0,0][0.832628,0.342858,0][-2.05816,-0.149644,-0.120324][-2.48182e-006,0.0764503,-2.9371][0.832628,0.333238,0][-2.05816,-0.149644,-0.120324][-2.48182e-006,0.0764503,-2.9371][0.832628,0.333238,0][-2.05816,-0.317191,-0.0618321][-2.08501e-007,-1.95422,-2.11855][0.843992,0.333238,0][-2.19999,-0.317192,-0.0618313][-2.3232,0,0][0.843992,0.342858,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,0.0246908,-0.0490854][1,4.95745e-005,5.56327e-005][0.191646,0.916892,0][-2.05817,0.0994898,0.111397][-1.19412e-006,2.22657,0.304014][0.182874,0.908691,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05817,0.0994898,0.111397][-1.19412e-006,2.22657,0.304014][0.182874,0.908691,0][-2.05816,0.0247481,0.266396][3.97698e-006,1.9069,2.17397][0.183649,0.897046,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,0.0247481,0.266396][3.97698e-006,1.9069,2.17397][0.183649,0.897046,0][-2.05816,-0.149139,0.323755][8.17151e-006,-0.136098,2.93146][0.193135,0.889031,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,-0.149139,0.323755][8.17151e-006,-0.136098,2.93146][0.193135,0.889031,0][-2.05816,-0.316633,0.250675][9.09355e-006,-2.07197,2.05847][0.205524,0.889385,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,-0.316633,0.250675][9.09355e-006,-2.07197,2.05847][0.205524,0.889385,0][-2.05816,-0.384936,0.091295][1.14894e-005,-2.8803,-0.0167716][0.213859,0.897681,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,-0.384936,0.091295][1.14894e-005,-2.8803,-0.0167716][0.213859,0.897681,0][-2.05816,-0.317191,-0.0618321][-2.08501e-007,-1.95422,-2.11855][0.213478,0.909031,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,-0.317191,-0.0618321][-2.08501e-007,-1.95422,-2.11855][0.213478,0.909031,0][-2.05816,-0.149644,-0.120324][-2.48182e-006,0.0764503,-2.9371][0.204419,0.916956,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,-0.149644,-0.120324][-2.48182e-006,0.0764503,-2.9371][0.204419,0.916956,0][-2.05816,0.0246908,-0.0490854][1.26034e-006,0.594179,-1.45408][0.191646,0.916892,0][1.77483,1.45536,-0.175998][-0.999998,0.000701422,0.00196149][0.987613,0.0621805,0][1.77483,-0.459074,-0.224221][-1,4.11293e-007,9.76143e-007][0.857743,0.0603583,0][1.77483,-0.459357,0.508635][-1,0.000219099,0.00061258][0.859672,0.0106914,0][1.77483,-0.459357,0.508635][-1,0.000219099,0.00061258][0.859672,0.0106914,0][1.7768,1.46036,0.594155][-0.999996,0.000910823,0.00254713][0.99,0.01,0][1.77483,1.45536,-0.175998][-0.999998,0.000701422,0.00196149][0.987613,0.0621805,0][2.08033,1.45536,-0.175998][0.999998,-0.000700763,-0.00196261][0.946415,0.168183,0][2.08229,1.46036,0.594154][0.999996,-0.000910319,-0.00254868][0.948705,0.220368,0][2.08033,-0.459358,0.508634][1,-0.000218085,-0.000612705][0.818379,0.219435,0][2.08033,-0.459358,0.508634][1,-0.000218085,-0.000612705][0.818379,0.219435,0][2.08033,-0.459074,-0.224222][1,7.63608e-007,-6.5036e-007][0.816542,0.169765,0][2.08033,1.45536,-0.175998][0.999998,-0.000700763,-0.00196261][0.946415,0.168183,0][1.77483,-0.459357,0.508635][7.79797e-007,-1,-0.000386083][0.768247,0.861348,0][1.77483,-0.459074,-0.224221][7.79797e-007,-1,-0.000386083][0.718542,0.861348,0][2.08033,-0.459074,-0.224222][7.79797e-007,-1,-0.000386083][0.718542,0.840629,0][2.08033,-0.459074,-0.224222][-1.85429e-006,-1,-0.000387181][0.831136,0.883828,0][2.08033,-0.459358,0.508634][-1.85429e-006,-1,-0.000387181][0.88084,0.883828,0][1.77483,-0.459357,0.508635][-1.85429e-006,-1,-0.000387181][0.88084,0.904548,0][2.08033,1.45536,-0.175998][-1.25091e-007,0.0251816,-0.999683][0.42722,0.840629,0][2.08033,-0.459074,-0.224222][-1.67756e-006,0.0251818,-0.999683][0.557062,0.840629,0][1.77483,-0.459074,-0.224221][-1.5037e-006,0.0251818,-0.999683][0.557062,0.861348,0][1.77483,-0.459074,-0.224221][-1.5037e-006,0.0251818,-0.999683][0.557062,0.861348,0][1.77483,1.45536,-0.175998][0,0.0251815,-0.999683][0.42722,0.861348,0][2.08033,1.45536,-0.175998][-1.25091e-007,0.0251816,-0.999683][0.42722,0.840629,0][1.77483,1.45536,-0.175998][1.16557e-006,0.999979,-0.00649239][0.287762,0.450828,0][1.7768,1.46036,0.594155][1.16557e-006,0.999979,-0.00649239][0.287895,0.398594,0][2.08229,1.46036,0.594154][1.16557e-006,0.999979,-0.00649239][0.308614,0.398594,0][2.08229,1.46036,0.594154][0,0.999979,-0.00649193][0.351706,0.939686,0][2.08033,1.45536,-0.175998][0,0.999979,-0.00649193][0.40394,0.939819,0][1.77483,1.45536,-0.175998][0,0.999979,-0.00649193][0.40394,0.960538,0][1.7768,1.46036,0.594155][1.86667e-006,-0.0445041,0.999009][0.987943,0.105246,0][1.77483,-0.459357,0.508635][1.86667e-006,-0.0445041,0.999009][0.857743,0.10538,0][2.08033,-0.459358,0.508634][1.86667e-006,-0.0445041,0.999009][0.857743,0.0846603,0][2.08033,-0.459358,0.508634][7.27567e-007,-0.0445043,0.999009][0.42722,0.797563,0][2.08229,1.46036,0.594154][7.27567e-007,-0.0445043,0.999009][0.55742,0.79743,0][1.7768,1.46036,0.594155][7.27567e-007,-0.0445043,0.999009][0.55742,0.818149,0][1.89064,-0.149504,0.00823055][3.28457e-006,-0.999999,0.00165424][0.286352,0.782142,0][1.89063,-0.149601,-0.0578237][6.31367e-006,-0.999999,0.00145889][0.283122,0.785247,0][1.95188,-0.149504,0.00823107][1.03936e-005,-1.64664,0.002724][0.283473,0.779148,0][1.89064,-0.149504,0.00823055][3.28457e-006,-0.999999,0.00165424][0.286352,0.782142,0][1.95188,-0.149504,0.00823107][1.03936e-005,-1.64664,0.002724][0.283473,0.779148,0][1.89064,-0.149382,0.0743256][4.90923e-006,-1.49467,0.00276453][0.289583,0.779035,0][1.89064,-0.149504,0.00823055][3.28457e-006,-0.999999,0.00165424][0.286352,0.782142,0][1.89064,-0.149382,0.0743256][4.90923e-006,-1.49467,0.00276453][0.289583,0.779035,0][1.82939,-0.149504,0.00823106][4.23355e-007,-1.64661,0.00272395][0.289231,0.785136,0][1.89064,-0.149504,0.00823055][3.28457e-006,-0.999999,0.00165424][0.286352,0.782142,0][1.82939,-0.149504,0.00823106][4.23355e-007,-1.64661,0.00272395][0.289231,0.785136,0][1.89063,-0.149601,-0.0578237][1.91007e-007,-0.74765,0.00109074][0.283122,0.785247,0][1.89063,-0.149601,-0.0578237][1.91007e-007,-0.74765,0.00109074][0.771083,0.743868,0][1.82939,-0.149504,0.00823106][4.23355e-007,-1.64661,0.00272395][0.771076,0.748022,0][1.82609,4.91895,0.0731734][-2.34006,-0.000755504,-0.0586367][0.427319,0.748246,0][1.82609,4.91895,0.0731734][-2.34006,-0.000755504,-0.0586367][0.427319,0.748246,0][1.8896,4.92042,0.00477479][-1.14641,0.0129044,-1.06414][0.42722,0.743939,0][1.89063,-0.149601,-0.0578237][1.91007e-007,-0.74765,0.00109074][0.771083,0.743868,0][1.82939,-0.149504,0.00823106][4.23355e-007,-1.64661,0.00272395][0.524829,0.687372,0][1.89064,-0.149382,0.0743256][4.90923e-006,-1.49467,0.00276453][0.524837,0.683218,0][1.88446,4.91708,0.14133][-0.0504602,-0.0269003,2.11218][0.868459,0.683637,0][1.88446,4.91708,0.14133][-0.0504602,-0.0269003,2.11218][0.868459,0.683637,0][1.82609,4.91895,0.0731734][-2.34006,-0.000755504,-0.0586367][0.868585,0.687595,0][1.82939,-0.149504,0.00823106][4.23355e-007,-1.64661,0.00272395][0.524829,0.687372,0][1.89064,-0.149382,0.0743256][4.90923e-006,-1.49467,0.00276453][0.524837,0.683218,0][1.95188,-0.149504,0.00823107][1.03936e-005,-1.64664,0.002724][0.524829,0.679064,0][1.94858,4.91895,0.0731734][2.33181,0.00122175,0.0388615][0.868585,0.679287,0][1.94858,4.91895,0.0731734][2.33181,0.00122175,0.0388615][0.868585,0.679287,0][1.88446,4.91708,0.14133][-0.0504602,-0.0269003,2.11218][0.868459,0.683637,0][1.89064,-0.149382,0.0743256][4.90923e-006,-1.49467,0.00276453][0.524837,0.683218,0][1.95188,-0.149504,0.00823107][1.03936e-005,-1.64664,0.002724][0.771076,0.770726,0][1.8896,4.92042,0.00477479][0.75736,0.00885853,-0.652938][0.42722,0.77495,0][1.94858,4.91895,0.0731734][2.33181,0.00122175,0.0388615][0.427319,0.770949,0][1.95188,-0.149504,0.00823107][0.73327,0.00854423,-0.679884][0.868685,0.710075,0][1.89063,-0.149601,-0.0578237][0.73327,0.00854423,-0.679884][0.868692,0.714229,0][1.8896,4.92042,0.00477479][0.73327,0.00854423,-0.679884][0.524829,0.714299,0][1.88734,4.91895,0.0731731][-3.83704e-006,0.999701,0.0244479][0.373884,0.781902,0][1.8896,4.92042,0.00477479][-1.14641,0.0129044,-1.06414][0.377121,0.778577,0][1.82609,4.91895,0.0731734][-2.34006,-0.000755504,-0.0586367][0.376763,0.784897,0][1.88734,4.91895,0.0731731][-3.83704e-006,0.999701,0.0244479][0.373884,0.781902,0][1.82609,4.91895,0.0731734][-2.34006,-0.000755504,-0.0586367][0.376763,0.784897,0][1.88446,4.91708,0.14133][-0.0504602,-0.0269003,2.11218][0.370687,0.785247,0][1.88734,4.91895,0.0731731][-3.83704e-006,0.999701,0.0244479][0.373884,0.781902,0][1.88446,4.91708,0.14133][-0.0504602,-0.0269003,2.11218][0.370687,0.785247,0][1.94858,4.91895,0.0731734][2.33181,0.00122175,0.0388615][0.371005,0.778908,0][1.88734,4.91895,0.0731731][-3.83704e-006,0.999701,0.0244479][0.373884,0.781902,0][1.94858,4.91895,0.0731734][2.33181,0.00122175,0.0388615][0.371005,0.778908,0][1.8896,4.92042,0.00477479][1.54762e-005,0.999769,0.0214747][0.377121,0.778577,0][2.07117,-0.204026,0.25289][0.986243,-0.153553,-0.0612052][0.981527,0.803624,0][1.9698,-0.627446,-0.318272][-0.985456,0.160664,0.0553562][0.93331,0.802953,0][1.96979,-0.626699,-0.320416][0.986243,-0.153553,-0.0612052][0.933225,0.802825,0][1.96979,-0.626699,-0.320416][0.986243,-0.153553,-0.0612052][0.933225,0.802825,0][2.07116,-0.203279,0.250746][0.986218,-0.153786,-0.061029][0.981442,0.803496,0][2.07117,-0.204026,0.25289][0.986218,-0.153786,-0.061029][0.981527,0.803624,0][1.9698,0.449444,-0.131978][0.980886,0.18594,0.0573538][0.731511,0.502965,0][2.07117,-0.204026,0.25289][0.980886,0.18594,0.0573538][0.782918,0.501239,0][2.07116,-0.203279,0.250746][0.980886,0.18594,0.0573538][0.782804,0.501342,0][2.07116,-0.203279,0.250746][0.980799,0.186234,0.0578773][0.427307,0.897596,0][1.96979,0.45019,-0.134121][0.980799,0.186234,0.0578773][0.47697,0.884208,0][1.9698,0.449444,-0.131978][0.972117,0.198701,-0.124524][0.476883,0.884335,0][1.6756,-1.0087,-0.820376][0.874238,-0.456322,-0.165763][0.890551,0.80285,0][1.96979,-0.626699,-0.320416][0.986243,-0.153553,-0.0612052][0.933225,0.802825,0][1.9698,-0.627446,-0.318272][-0.985456,0.160664,0.0553562][0.93331,0.802953,0][1.9698,-0.627446,-0.318272][-0.985456,0.160664,0.0553562][0.93331,0.802953,0][1.67562,-1.00944,-0.818233][-0.871992,0.462812,0.159483][0.890636,0.802978,0][1.6756,-1.0087,-0.820376][0.874238,-0.456322,-0.165763][0.890551,0.80285,0][1.96979,0.45019,-0.134121][0.980799,0.186234,0.0578773][0.47697,0.884208,0][1.6756,1.28769,-0.115593][0.938846,0.32743,0.106572][0.531396,0.900513,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.531308,0.90064,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.531308,0.90064,0][1.9698,0.449444,-0.131978][0.972117,0.198701,-0.124524][0.476883,0.884335,0][1.96979,0.45019,-0.134121][0.980799,0.186234,0.0578773][0.47697,0.884208,0][1.21739,-1.31566,-1.20582][0.674364,-0.695614,-0.247698][0.174806,0.965538,0][1.6756,-1.0087,-0.820376][0.874238,-0.456322,-0.165763][0.208654,0.987977,0][1.67562,-1.00944,-0.818233][-0.871992,0.462812,0.159483][0.208672,0.988121,0][1.67562,-1.00944,-0.818233][-0.871992,0.462812,0.159483][0.208672,0.988121,0][1.21741,-1.3164,-1.20368][-0.675257,0.693868,0.250151][0.174824,0.965682,0][1.21739,-1.31566,-1.20582][0.674364,-0.695614,-0.247698][0.174806,0.965538,0][1.6756,1.28769,-0.115593][0.938846,0.32743,0.106572][0.531396,0.900513,0][1.21739,1.78165,-0.266132][0.674854,0.698537,0.237944][0.566406,0.899572,0][1.21741,1.7809,-0.263989][-0.678552,-0.698615,-0.226945][0.566318,0.899699,0][1.21741,1.7809,-0.263989][-0.678552,-0.698615,-0.226945][0.566318,0.899699,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.531308,0.90064,0][1.6756,1.28769,-0.115593][0.938846,0.32743,0.106572][0.531396,0.900513,0][0.640013,-1.51274,-1.44847][0.419075,-0.856388,-0.301623][0.13403,0.95364,0][1.21739,-1.31566,-1.20582][0.674364,-0.695614,-0.247698][0.174806,0.965538,0][1.21741,-1.3164,-1.20368][-0.675257,0.693868,0.250151][0.174824,0.965682,0][1.21741,-1.3164,-1.20368][-0.675257,0.693868,0.250151][0.174824,0.965682,0][0.64003,-1.51348,-1.44632][-0.421542,0.851701,0.3113][0.134047,0.953784,0][0.640013,-1.51274,-1.44847][0.419075,-0.856388,-0.301623][0.13403,0.95364,0][1.21739,1.78165,-0.266132][0.674854,0.698537,0.237944][0.856767,0.533084,0][0.640012,2.09503,-0.364461][0.416244,0.859742,0.295948][0.817608,0.539753,0][0.640029,2.09429,-0.362318][-0.418692,-0.861511,-0.28722][0.817609,0.539608,0][0.640029,2.09429,-0.362318][-0.418692,-0.861511,-0.28722][0.817609,0.539608,0][1.21741,1.7809,-0.263989][-0.678552,-0.698615,-0.226945][0.856769,0.532939,0][1.21739,1.78165,-0.266132][0.674854,0.698537,0.237944][0.856767,0.533084,0][-1.61793e-005,-1.58065,-1.53136][0.14147,-0.934455,-0.326772][0.0902634,0.95299,0][0.640013,-1.51274,-1.44847][0.419075,-0.856388,-0.301623][0.13403,0.95364,0][0.64003,-1.51348,-1.44632][-0.421542,0.851701,0.3113][0.134047,0.953784,0][0.64003,-1.51348,-1.44632][-0.421542,0.851701,0.3113][0.134047,0.953784,0][6.6671e-007,-1.58139,-1.52921][-0.142833,0.928807,0.341929][0.0902811,0.953134,0][-1.61793e-005,-1.58065,-1.53136][0.14147,-0.934455,-0.326772][0.0902634,0.95299,0][0.640012,2.09503,-0.364461][0.416244,0.859742,0.295948][0.817608,0.539753,0][-1.59067e-005,2.20491,-0.398544][0.143234,0.934976,0.324507][0.774199,0.542064,0][6.84039e-007,2.20416,-0.396401][-0.144489,-0.938711,-0.312959][0.774201,0.541919,0][6.84039e-007,2.20416,-0.396401][-0.144489,-0.938711,-0.312959][0.774201,0.541919,0][0.640029,2.09429,-0.362318][-0.418692,-0.861511,-0.28722][0.817609,0.539608,0][0.640012,2.09503,-0.364461][0.416244,0.859742,0.295948][0.817608,0.539753,0][-0.640045,-1.51274,-1.44846][-0.141289,-0.935176,-0.324783][0.0477756,0.963511,0][-1.61793e-005,-1.58065,-1.53136][0.14147,-0.934455,-0.326772][0.0902634,0.95299,0][6.6671e-007,-1.58139,-1.52921][-0.142833,0.928807,0.341929][0.0902811,0.953134,0][6.6671e-007,-1.58139,-1.52921][-0.142833,0.928807,0.341929][0.0902811,0.953134,0][-0.640028,-1.51348,-1.44632][0.142886,0.928585,0.34251][0.0477932,0.963655,0][-0.640045,-1.51274,-1.44846][-0.141289,-0.935176,-0.324783][0.0477756,0.963511,0][-1.59067e-005,2.20491,-0.398544][0.143234,0.934976,0.324507][0.774199,0.542064,0][-0.640045,2.09503,-0.364461][-0.143026,0.934352,0.326388][0.730791,0.539753,0][-0.640028,2.09428,-0.362317][0.144489,-0.938711,-0.31296][0.730792,0.539608,0][-0.640028,2.09428,-0.362317][0.144489,-0.938711,-0.31296][0.730792,0.539608,0][6.84039e-007,2.20416,-0.396401][-0.144489,-0.938711,-0.312959][0.774201,0.541919,0][-1.59067e-005,2.20491,-0.398544][0.143234,0.934976,0.324507][0.774199,0.542064,0][-1.21742,-1.31566,-1.20583][-0.417606,-0.859083,-0.295941][0.0107412,0.984313,0][-0.640045,-1.51274,-1.44846][-0.141289,-0.935176,-0.324783][0.0477756,0.963511,0][-0.640028,-1.51348,-1.44632][0.142886,0.928585,0.34251][0.0477932,0.963655,0][-0.640028,-1.51348,-1.44632][0.142886,0.928585,0.34251][0.0477932,0.963655,0][-1.21741,-1.3164,-1.20368][0.422019,0.850769,0.313196][0.0107589,0.984457,0][-1.21742,-1.31566,-1.20583][-0.417606,-0.859083,-0.295941][0.0107412,0.984313,0][-0.640045,2.09503,-0.364461][-0.143026,0.934352,0.326388][0.730791,0.539753,0][-1.21742,1.78165,-0.266132][-0.414503,0.858453,0.302069][0.691632,0.533084,0][-1.21741,1.7809,-0.263989][0.420603,-0.862861,-0.280294][0.691633,0.532939,0][-1.21741,1.7809,-0.263989][0.420603,-0.862861,-0.280294][0.691633,0.532939,0][-0.640028,2.09428,-0.362317][0.144489,-0.938711,-0.31296][0.730792,0.539608,0][-0.640045,2.09503,-0.364461][-0.143026,0.934352,0.326388][0.730791,0.539753,0][-1.67563,-1.0087,-0.820375][-0.67123,-0.701591,-0.239209][0.19773,0.841739,0][-1.21742,-1.31566,-1.20583][-0.417606,-0.859083,-0.295941][0.218549,0.815597,0][-1.21741,-1.3164,-1.20368][0.422019,0.850769,0.313196][0.218599,0.815742,0][-1.21741,-1.3164,-1.20368][0.422019,0.850769,0.313196][0.218599,0.815742,0][-1.67562,-1.00944,-0.818232][0.676252,0.691901,0.252897][0.19778,0.841885,0][-1.67563,-1.0087,-0.820375][-0.67123,-0.701591,-0.239209][0.19773,0.841739,0][-1.21742,1.78165,-0.266132][-0.414503,0.858453,0.302069][0.583769,0.805986,0][-1.67563,1.28769,-0.115593][-0.671166,0.698371,0.248625][0.61879,0.805618,0][-1.67562,1.28695,-0.113449][0.673585,-0.698489,-0.241652][0.618882,0.805741,0][-1.67562,1.28695,-0.113449][0.673585,-0.698489,-0.241652][0.618882,0.805741,0][-1.21741,1.7809,-0.263989][0.420603,-0.862861,-0.280294][0.583861,0.806109,0][-1.21742,1.78165,-0.266132][-0.414503,0.858453,0.302069][0.583769,0.805986,0][-1.96982,-0.626699,-0.320417][-0.00247049,-0.00132422,-0.000441916][0.171822,0.875648,0][-1.67563,-1.0087,-0.820375][-0.67123,-0.701591,-0.239209][0.19773,0.841739,0][-1.67562,-1.00944,-0.818232][0.676252,0.691901,0.252897][0.19778,0.841885,0][-1.67562,-1.00944,-0.818232][0.676252,0.691901,0.252897][0.19778,0.841885,0][-1.9698,-0.627445,-0.318273][0.15475,0.0809724,0.0291911][0.171872,0.875793,0][-1.96982,-0.626699,-0.320417][-0.00247049,-0.00132422,-0.000441916][0.171822,0.875648,0][-1.67563,1.28769,-0.115593][-0.671166,0.698371,0.248625][0.61879,0.805618,0][-1.97014,0.57291,0.0639541][-0.900413,0.408541,0.149502][0.668684,0.80261,0][-1.97012,0.572163,0.066097][0.894813,-0.41192,-0.172138][0.668776,0.802733,0][-1.97012,0.572163,0.066097][0.894813,-0.41192,-0.172138][0.668776,0.802733,0][-1.67562,1.28695,-0.113449][0.673585,-0.698489,-0.241652][0.618882,0.805741,0][-1.67563,1.28769,-0.115593][-0.671166,0.698371,0.248625][0.61879,0.805618,0][-1.96939,-0.646112,-0.264687][-0.961002,0.258754,0.0975834][0.173138,0.879428,0][-1.96944,-0.643872,-0.271116][0.996014,0.0863532,0.0223604][0.172986,0.878991,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-1.96987,-0.624459,-0.326847][-0.168646,0.930412,0.325411][0.17167,0.875212,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-1.96984,-0.625952,-0.32256][0.772335,-0.597988,-0.214266][0.171771,0.875502,0][-1.96982,-0.626699,-0.320417][-0.00247049,-0.00132422,-0.000441916][0.171822,0.875648,0][-1.96982,-0.626699,-0.320417][-0.00247049,-0.00132422,-0.000441916][0.171822,0.875648,0][-1.9698,-0.627445,-0.318273][0.15475,0.0809724,0.0291911][0.171872,0.875793,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.143155,0.914531,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-1.96982,-0.626699,-0.320417][-0.00247049,-0.00132422,-0.000441916][0.171822,0.875648,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.143155,0.914531,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.143155,0.914531,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.143155,0.914531,0][-2.07117,-0.204026,0.252889][1,0,0][0.143155,0.914531,0][-2.07119,-0.203279,0.250746][-0.984589,-0.167389,-0.0506582][0.143104,0.914386,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.143155,0.914531,0][-2.07119,-0.203279,0.250746][-0.984589,-0.167389,-0.0506582][0.143104,0.914386,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07119,-0.203279,0.250746][-0.984589,-0.167389,-0.0506582][0.143104,0.914386,0][-2.07121,-0.202532,0.248602][-0.984588,-0.167392,-0.0506561][0.143053,0.91424,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07121,-0.202532,0.248602][-0.984588,-0.167392,-0.0506561][0.143053,0.91424,0][-2.07122,-0.201786,0.246459][-0.984587,-0.167403,-0.0506492][0.143003,0.914095,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07122,-0.201786,0.246459][-0.984587,-0.167403,-0.0506492][0.143003,0.914095,0][-2.07124,-0.201039,0.244316][-0.984586,-0.167407,-0.0506469][0.142952,0.91395,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07124,-0.201039,0.244316][-0.984586,-0.167407,-0.0506469][0.142952,0.91395,0][-2.07189,-0.171919,0.160719][0.217135,0.802207,-0.556162][0.140977,0.90828,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07189,-0.171919,0.160719][0.217135,0.802207,-0.556162][0.140977,0.90828,0][-2.07081,-0.21098,0.273639][0.98457,0.167646,0.0501684][0.143626,0.915938,0][-2.07081,-0.21098,0.273639][0.98457,0.167646,0.0501684][0.143626,0.915938,0][-2.07076,-0.21322,0.280069][-0.893457,0.421953,0.153915][0.143778,0.916374,0][-2.07069,-0.216206,0.288643][0.921895,0.372102,-0.107935][0.143981,0.916956,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07081,-0.21098,0.273639][0.98457,0.167646,0.0501684][0.143626,0.915938,0][-2.07069,-0.216206,0.288643][0.921895,0.372102,-0.107935][0.143981,0.916956,0][-2.07069,-0.216206,0.288643][0.921895,0.372102,-0.107935][0.143981,0.916956,0][-1.96932,-0.450779,-0.345996][-0.965602,-0.0946532,-0.242187][0.15989,0.873913,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.173341,0.880009,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07069,-0.216206,0.288643][0.921895,0.372102,-0.107935][0.143981,0.916956,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.173341,0.880009,0][-1.96939,-0.646112,-0.264687][-0.961002,0.258754,0.0975834][0.173138,0.879428,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.173341,0.880009,0][-1.96937,-0.646859,-0.262543][-0.715544,0.657944,0.234747][0.173189,0.879573,0][-1.96939,-0.646112,-0.264687][-0.961002,0.258754,0.0975834][0.173138,0.879428,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.173341,0.880009,0][-2.07117,-0.204026,0.252889][-0.988132,0.142468,0.0574224][0.722789,0.798938,0][-1.97012,0.572163,0.066097][0.894813,-0.41192,-0.172138][0.668776,0.802733,0][-1.97014,0.57291,0.0639541][-0.900413,0.408541,0.149502][0.668684,0.80261,0][-1.97014,0.57291,0.0639541][-0.988141,0.142445,0.057325][0.945399,0.710553,0][-2.07119,-0.203279,0.250746][-0.988141,0.142445,0.057325][0.891254,0.710205,0][-2.07117,-0.204026,0.252889][-0.988141,0.142445,0.057325][0.891171,0.710075,0][1.96977,-0.625952,-0.32256][0.986252,-0.153471,-0.0612665][0.93314,0.802696,0][2.07114,-0.202532,0.248603][0.986252,-0.153471,-0.0612665][0.981357,0.803367,0][2.07116,-0.203279,0.250746][0.986218,-0.153786,-0.061029][0.981442,0.803496,0][2.07116,-0.203279,0.250746][0.986218,-0.153786,-0.061029][0.981442,0.803496,0][1.96979,-0.626699,-0.320416][0.986243,-0.153553,-0.0612052][0.933225,0.802825,0][1.96977,-0.625952,-0.32256][0.986252,-0.153471,-0.0612665][0.93314,0.802696,0][1.96979,0.45019,-0.134121][0.980949,0.185723,0.05697][0.790411,0.502965,0][2.07116,-0.203279,0.250746][0.980949,0.185723,0.05697][0.841818,0.501239,0][2.07114,-0.202532,0.248603][0.980949,0.185723,0.05697][0.841704,0.501342,0][2.07114,-0.202532,0.248603][0.980893,0.185915,0.0573129][0.427395,0.897469,0][1.96977,0.450937,-0.136265][0.980893,0.185915,0.0573129][0.477057,0.884082,0][1.96979,0.45019,-0.134121][0.980799,0.186234,0.0578773][0.47697,0.884208,0][1.67558,-1.00795,-0.82252][0.874169,-0.456524,-0.16557][0.890466,0.802721,0][1.96977,-0.625952,-0.32256][0.986252,-0.153471,-0.0612665][0.93314,0.802696,0][1.96979,-0.626699,-0.320416][0.986243,-0.153553,-0.0612052][0.933225,0.802825,0][1.96979,-0.626699,-0.320416][0.986243,-0.153553,-0.0612052][0.933225,0.802825,0][1.6756,-1.0087,-0.820376][0.874238,-0.456322,-0.165763][0.890551,0.80285,0][1.67558,-1.00795,-0.82252][0.874169,-0.456524,-0.16557][0.890466,0.802721,0][1.96977,0.450937,-0.136265][0.980893,0.185915,0.0573129][0.477057,0.884082,0][1.67558,1.28844,-0.117737][0.938792,0.327397,0.107151][0.531483,0.900386,0][1.6756,1.28769,-0.115593][0.938846,0.32743,0.106572][0.531396,0.900513,0][1.6756,1.28769,-0.115593][0.938846,0.32743,0.106572][0.531396,0.900513,0][1.96979,0.45019,-0.134121][0.980799,0.186234,0.0578773][0.47697,0.884208,0][1.96977,0.450937,-0.136265][0.980893,0.185915,0.0573129][0.477057,0.884082,0][1.21737,-1.31491,-1.20797][0.674371,-0.695601,-0.247715][0.174789,0.965393,0][1.67558,-1.00795,-0.82252][0.874169,-0.456524,-0.16557][0.208636,0.987833,0][1.6756,-1.0087,-0.820376][0.874238,-0.456322,-0.165763][0.208654,0.987977,0][1.6756,-1.0087,-0.820376][0.874238,-0.456322,-0.165763][0.208654,0.987977,0][1.21739,-1.31566,-1.20582][0.674364,-0.695614,-0.247698][0.174806,0.965538,0][1.21737,-1.31491,-1.20797][0.674371,-0.695601,-0.247715][0.174789,0.965393,0][1.67558,1.28844,-0.117737][0.938792,0.327397,0.107151][0.531483,0.900386,0][1.21737,1.78239,-0.268275][0.674886,0.69854,0.237847][0.566493,0.899446,0][1.21739,1.78165,-0.266132][0.674854,0.698537,0.237944][0.566406,0.899572,0][1.21739,1.78165,-0.266132][0.674854,0.698537,0.237944][0.566406,0.899572,0][1.6756,1.28769,-0.115593][0.938846,0.32743,0.106572][0.531396,0.900513,0][1.67558,1.28844,-0.117737][0.938792,0.327397,0.107151][0.531483,0.900386,0][0.639997,-1.51199,-1.45061][0.41903,-0.856472,-0.301448][0.134012,0.953496,0][1.21737,-1.31491,-1.20797][0.674371,-0.695601,-0.247715][0.174789,0.965393,0][1.21739,-1.31566,-1.20582][0.674364,-0.695614,-0.247698][0.174806,0.965538,0][1.21739,-1.31566,-1.20582][0.674364,-0.695614,-0.247698][0.174806,0.965538,0][0.640013,-1.51274,-1.44847][0.419075,-0.856388,-0.301623][0.13403,0.95364,0][0.639997,-1.51199,-1.45061][0.41903,-0.856472,-0.301448][0.134012,0.953496,0][1.21737,1.78239,-0.268275][0.674886,0.69854,0.237847][0.856766,0.533229,0][0.639996,2.09578,-0.366605][0.416193,0.859704,0.29613][0.817607,0.539898,0][0.640012,2.09503,-0.364461][0.416244,0.859742,0.295948][0.817608,0.539753,0][0.640012,2.09503,-0.364461][0.416244,0.859742,0.295948][0.817608,0.539753,0][1.21739,1.78165,-0.266132][0.674854,0.698537,0.237944][0.856767,0.533084,0][1.21737,1.78239,-0.268275][0.674886,0.69854,0.237847][0.856766,0.533229,0][-3.277e-005,-1.5799,-1.5335][0.141447,-0.934545,-0.326523][0.0902458,0.952846,0][0.639997,-1.51199,-1.45061][0.41903,-0.856472,-0.301448][0.134012,0.953496,0][0.640013,-1.51274,-1.44847][0.419075,-0.856388,-0.301623][0.13403,0.95364,0][0.640013,-1.51274,-1.44847][0.419075,-0.856388,-0.301623][0.13403,0.95364,0][-1.61793e-005,-1.58065,-1.53136][0.14147,-0.934455,-0.326772][0.0902634,0.95299,0][-3.277e-005,-1.5799,-1.5335][0.141447,-0.934545,-0.326523][0.0902458,0.952846,0][0.639996,2.09578,-0.366605][0.416193,0.859704,0.29613][0.817607,0.539898,0][-3.24974e-005,2.20566,-0.400688][0.143217,0.934924,0.324661][0.774198,0.54221,0][-1.59067e-005,2.20491,-0.398544][0.143234,0.934976,0.324507][0.774199,0.542064,0][-1.59067e-005,2.20491,-0.398544][0.143234,0.934976,0.324507][0.774199,0.542064,0][0.640012,2.09503,-0.364461][0.416244,0.859742,0.295948][0.817608,0.539753,0][0.639996,2.09578,-0.366605][0.416193,0.859704,0.29613][0.817607,0.539898,0][-0.640061,-1.51199,-1.45061][-0.141272,-0.935245,-0.324591][0.0477579,0.963367,0][-3.277e-005,-1.5799,-1.5335][0.141447,-0.934545,-0.326523][0.0902458,0.952846,0][-1.61793e-005,-1.58065,-1.53136][0.14147,-0.934455,-0.326772][0.0902634,0.95299,0][-1.61793e-005,-1.58065,-1.53136][0.14147,-0.934455,-0.326772][0.0902634,0.95299,0][-0.640045,-1.51274,-1.44846][-0.141289,-0.935176,-0.324783][0.0477756,0.963511,0][-0.640061,-1.51199,-1.45061][-0.141272,-0.935245,-0.324591][0.0477579,0.963367,0][-3.24974e-005,2.20566,-0.400688][0.143217,0.934924,0.324661][0.774198,0.54221,0][-0.640061,2.09578,-0.366605][-0.142993,0.934251,0.326693][0.73079,0.539898,0][-0.640045,2.09503,-0.364461][-0.143026,0.934352,0.326388][0.730791,0.539753,0][-0.640045,2.09503,-0.364461][-0.143026,0.934352,0.326388][0.730791,0.539753,0][-1.59067e-005,2.20491,-0.398544][0.143234,0.934976,0.324507][0.774199,0.542064,0][-3.24974e-005,2.20566,-0.400688][0.143217,0.934924,0.324661][0.774198,0.54221,0][-1.21744,-1.31491,-1.20797][-0.417656,-0.858991,-0.296138][0.0107236,0.984169,0][-0.640061,-1.51199,-1.45061][-0.141272,-0.935245,-0.324591][0.0477579,0.963367,0][-0.640045,-1.51274,-1.44846][-0.141289,-0.935176,-0.324783][0.0477756,0.963511,0][-0.640045,-1.51274,-1.44846][-0.141289,-0.935176,-0.324783][0.0477756,0.963511,0][-1.21742,-1.31566,-1.20583][-0.417606,-0.859083,-0.295941][0.0107412,0.984313,0][-1.21744,-1.31491,-1.20797][-0.417656,-0.858991,-0.296138][0.0107236,0.984169,0][-0.640061,2.09578,-0.366605][-0.142993,0.934251,0.326693][0.73079,0.539898,0][-1.21744,1.78239,-0.268275][-0.414483,0.858438,0.302139][0.69163,0.533229,0][-1.21742,1.78165,-0.266132][-0.414503,0.858453,0.302069][0.691632,0.533084,0][-1.21742,1.78165,-0.266132][-0.414503,0.858453,0.302069][0.691632,0.533084,0][-0.640045,2.09503,-0.364461][-0.143026,0.934352,0.326388][0.730791,0.539753,0][-0.640061,2.09578,-0.366605][-0.142993,0.934251,0.326693][0.73079,0.539898,0][-1.67565,-1.00795,-0.822519][-0.671196,-0.701654,-0.239119][0.197679,0.841594,0][-1.21744,-1.31491,-1.20797][-0.417656,-0.858991,-0.296138][0.218498,0.815452,0][-1.21742,-1.31566,-1.20583][-0.417606,-0.859083,-0.295941][0.218549,0.815597,0][-1.21742,-1.31566,-1.20583][-0.417606,-0.859083,-0.295941][0.218549,0.815597,0][-1.67563,-1.0087,-0.820375][-0.67123,-0.701591,-0.239209][0.19773,0.841739,0][-1.67565,-1.00795,-0.822519][-0.671196,-0.701654,-0.239119][0.197679,0.841594,0][-1.21744,1.78239,-0.268275][-0.414483,0.858438,0.302139][0.583677,0.805862,0][-1.67565,1.28844,-0.117737][-0.671235,0.698375,0.248427][0.618698,0.805495,0][-1.67563,1.28769,-0.115593][-0.671166,0.698371,0.248625][0.61879,0.805618,0][-1.67563,1.28769,-0.115593][-0.671166,0.698371,0.248625][0.61879,0.805618,0][-1.21742,1.78165,-0.266132][-0.414503,0.858453,0.302069][0.583769,0.805986,0][-1.21744,1.78239,-0.268275][-0.414483,0.858438,0.302139][0.583677,0.805862,0][-1.96984,-0.625952,-0.32256][0.772335,-0.597988,-0.214266][0.171771,0.875502,0][-1.67565,-1.00795,-0.822519][-0.671196,-0.701654,-0.239119][0.197679,0.841594,0][-1.67563,-1.0087,-0.820375][-0.67123,-0.701591,-0.239209][0.19773,0.841739,0][-1.67563,-1.0087,-0.820375][-0.67123,-0.701591,-0.239209][0.19773,0.841739,0][-1.96982,-0.626699,-0.320417][-0.00247049,-0.00132422,-0.000441916][0.171822,0.875648,0][-1.96984,-0.625952,-0.32256][0.772335,-0.597988,-0.214266][0.171771,0.875502,0][-1.67565,1.28844,-0.117737][-0.671235,0.698375,0.248427][0.618698,0.805495,0][-1.97015,0.573656,0.0618106][-0.900472,0.408502,0.149251][0.668592,0.802487,0][-1.97014,0.57291,0.0639541][-0.900413,0.408541,0.149502][0.668684,0.80261,0][-1.97014,0.57291,0.0639541][-0.900413,0.408541,0.149502][0.668684,0.80261,0][-1.67563,1.28769,-0.115593][-0.671166,0.698371,0.248625][0.61879,0.805618,0][-1.67565,1.28844,-0.117737][-0.671235,0.698375,0.248427][0.618698,0.805495,0][-2.07119,-0.203279,0.250746][-0.988148,0.142428,0.0572494][0.722697,0.798814,0][-1.97014,0.57291,0.0639541][-0.900413,0.408541,0.149502][0.668684,0.80261,0][-1.97015,0.573656,0.0618106][-0.900472,0.408502,0.149251][0.668592,0.802487,0][-1.97015,0.573656,0.0618106][-0.988141,0.142446,0.0573272][0.847784,0.771204,0][-2.07121,-0.202532,0.248602][-0.988141,0.142446,0.0573272][0.793638,0.770856,0][-2.07119,-0.203279,0.250746][-0.988141,0.142446,0.0573272][0.793556,0.770726,0][1.96975,-0.625205,-0.324703][0.986272,-0.153283,-0.061409][0.933055,0.802568,0][2.07112,-0.201786,0.246459][0.986272,-0.153283,-0.061409][0.981272,0.803239,0][2.07114,-0.202532,0.248603][0.986252,-0.153471,-0.0612665][0.981357,0.803367,0][2.07114,-0.202532,0.248603][0.986252,-0.153471,-0.0612665][0.981357,0.803367,0][1.96977,-0.625952,-0.32256][0.986252,-0.153471,-0.0612665][0.93314,0.802696,0][1.96975,-0.625205,-0.324703][0.986272,-0.153283,-0.061409][0.933055,0.802568,0][1.96977,0.450937,-0.136265][0.980998,0.185555,0.0566746][0.580298,0.621113,0][2.07114,-0.202532,0.248603][0.980998,0.185555,0.0566746][0.631705,0.619386,0][2.07112,-0.201786,0.246459][0.980998,0.185555,0.0566746][0.631591,0.61949,0][2.07112,-0.201786,0.246459][0.981044,0.185398,0.0563939][0.427482,0.897343,0][1.96975,0.451684,-0.138408][0.981044,0.185398,0.056394][0.477145,0.883955,0][1.96977,0.450937,-0.136265][0.980893,0.185915,0.0573129][0.477057,0.884082,0][1.67557,-1.0072,-0.824664][0.874305,-0.456124,-0.165955][0.890382,0.802593,0][1.96975,-0.625205,-0.324703][0.986272,-0.153283,-0.061409][0.933055,0.802568,0][1.96977,-0.625952,-0.32256][0.986252,-0.153471,-0.0612665][0.93314,0.802696,0][1.96977,-0.625952,-0.32256][0.986252,-0.153471,-0.0612665][0.93314,0.802696,0][1.67558,-1.00795,-0.82252][0.874169,-0.456524,-0.16557][0.890466,0.802721,0][1.67557,-1.0072,-0.824664][0.874305,-0.456124,-0.165955][0.890382,0.802593,0][1.96975,0.451684,-0.138408][0.981044,0.185398,0.056394][0.477145,0.883955,0][1.67557,1.28919,-0.11988][0.938846,0.327428,0.106583][0.531571,0.90026,0][1.67558,1.28844,-0.117737][0.938792,0.327397,0.107151][0.531483,0.900386,0][1.67558,1.28844,-0.117737][0.938792,0.327397,0.107151][0.531483,0.900386,0][1.96977,0.450937,-0.136265][0.980893,0.185915,0.0573129][0.477057,0.884082,0][1.96975,0.451684,-0.138408][0.981044,0.185398,0.056394][0.477145,0.883955,0][1.21736,-1.31416,-1.21011][0.674283,-0.695773,-0.247474][0.174771,0.965249,0][1.67557,-1.0072,-0.824664][0.874305,-0.456124,-0.165955][0.208619,0.987688,0][1.67558,-1.00795,-0.82252][0.874169,-0.456524,-0.16557][0.208636,0.987833,0][1.67558,-1.00795,-0.82252][0.874169,-0.456524,-0.16557][0.208636,0.987833,0][1.21737,-1.31491,-1.20797][0.674371,-0.695601,-0.247715][0.174789,0.965393,0][1.21736,-1.31416,-1.21011][0.674283,-0.695773,-0.247474][0.174771,0.965249,0][1.67557,1.28919,-0.11988][0.938846,0.327428,0.106583][0.531571,0.90026,0][1.21736,1.78314,-0.27042][0.67467,0.698531,0.238482][0.566581,0.899319,0][1.21737,1.78239,-0.268275][0.674886,0.69854,0.237847][0.566493,0.899446,0][1.21737,1.78239,-0.268275][0.674886,0.69854,0.237847][0.566493,0.899446,0][1.67558,1.28844,-0.117737][0.938792,0.327397,0.107151][0.531483,0.900386,0][1.67557,1.28919,-0.11988][0.938846,0.327428,0.106583][0.531571,0.90026,0][0.639979,-1.51124,-1.45275][0.419049,-0.856434,-0.301526][0.133994,0.953351,0][1.21736,-1.31416,-1.21011][0.674283,-0.695773,-0.247474][0.174771,0.965249,0][1.21737,-1.31491,-1.20797][0.674371,-0.695601,-0.247715][0.174789,0.965393,0][1.21737,-1.31491,-1.20797][0.674371,-0.695601,-0.247715][0.174789,0.965393,0][0.639997,-1.51199,-1.45061][0.41903,-0.856472,-0.301448][0.134012,0.953496,0][0.639979,-1.51124,-1.45275][0.419049,-0.856434,-0.301526][0.133994,0.953351,0][1.21736,1.78314,-0.27042][0.67467,0.698531,0.238482][0.856765,0.533375,0][0.639979,2.09653,-0.368749][0.416009,0.859568,0.296781][0.817606,0.540044,0][0.639996,2.09578,-0.366605][0.416193,0.859704,0.29613][0.817607,0.539898,0][0.639996,2.09578,-0.366605][0.416193,0.859704,0.29613][0.817607,0.539898,0][1.21737,1.78239,-0.268275][0.674886,0.69854,0.237847][0.856766,0.533229,0][1.21736,1.78314,-0.27042][0.67467,0.698531,0.238482][0.856765,0.533375,0][-4.96159e-005,-1.57915,-1.53564][0.141467,-0.934463,-0.326749][0.0902281,0.952702,0][0.639979,-1.51124,-1.45275][0.419049,-0.856434,-0.301526][0.133994,0.953351,0][0.639997,-1.51199,-1.45061][0.41903,-0.856472,-0.301448][0.134012,0.953496,0][0.639997,-1.51199,-1.45061][0.41903,-0.856472,-0.301448][0.134012,0.953496,0][-3.277e-005,-1.5799,-1.5335][0.141447,-0.934545,-0.326523][0.0902458,0.952846,0][-4.96159e-005,-1.57915,-1.53564][0.141467,-0.934463,-0.326749][0.0902281,0.952702,0][0.639979,2.09653,-0.368749][0.416009,0.859568,0.296781][0.817606,0.540044,0][-4.90881e-005,2.2064,-0.402831][0.143212,0.934913,0.324698][0.774197,0.542355,0][-3.24974e-005,2.20566,-0.400688][0.143217,0.934924,0.324661][0.774198,0.54221,0][-3.24974e-005,2.20566,-0.400688][0.143217,0.934924,0.324661][0.774198,0.54221,0][0.639996,2.09578,-0.366605][0.416193,0.859704,0.29613][0.817607,0.539898,0][0.639979,2.09653,-0.368749][0.416009,0.859568,0.296781][0.817606,0.540044,0][-0.640078,-1.51124,-1.45275][-0.141292,-0.935164,-0.324815][0.0477403,0.963222,0][-4.96159e-005,-1.57915,-1.53564][0.141467,-0.934463,-0.326749][0.0902281,0.952702,0][-3.277e-005,-1.5799,-1.5335][0.141447,-0.934545,-0.326523][0.0902458,0.952846,0][-3.277e-005,-1.5799,-1.5335][0.141447,-0.934545,-0.326523][0.0902458,0.952846,0][-0.640061,-1.51199,-1.45061][-0.141272,-0.935245,-0.324591][0.0477579,0.963367,0][-0.640078,-1.51124,-1.45275][-0.141292,-0.935164,-0.324815][0.0477403,0.963222,0][-4.90881e-005,2.2064,-0.402831][0.143212,0.934913,0.324698][0.774197,0.542355,0][-0.640078,2.09652,-0.368748][-0.14305,0.934417,0.326193][0.730789,0.540044,0][-0.640061,2.09578,-0.366605][-0.142993,0.934251,0.326693][0.73079,0.539898,0][-0.640061,2.09578,-0.366605][-0.142993,0.934251,0.326693][0.73079,0.539898,0][-3.24974e-005,2.20566,-0.400688][0.143217,0.934924,0.324661][0.774198,0.54221,0][-4.90881e-005,2.2064,-0.402831][0.143212,0.934913,0.324698][0.774197,0.542355,0][-1.21746,-1.31416,-1.21011][-0.417613,-0.859069,-0.295973][0.0107059,0.984025,0][-0.640078,-1.51124,-1.45275][-0.141292,-0.935164,-0.324815][0.0477403,0.963222,0][-0.640061,-1.51199,-1.45061][-0.141272,-0.935245,-0.324591][0.0477579,0.963367,0][-0.640061,-1.51199,-1.45061][-0.141272,-0.935245,-0.324591][0.0477579,0.963367,0][-1.21744,-1.31491,-1.20797][-0.417656,-0.858991,-0.296138][0.0107236,0.984169,0][-1.21746,-1.31416,-1.21011][-0.417613,-0.859069,-0.295973][0.0107059,0.984025,0][-0.640078,2.09652,-0.368748][-0.14305,0.934417,0.326193][0.730789,0.540044,0][-1.21746,1.78314,-0.27042][-0.41443,0.8584,0.302321][0.691629,0.533375,0][-1.21744,1.78239,-0.268275][-0.414483,0.858438,0.302139][0.69163,0.533229,0][-1.21744,1.78239,-0.268275][-0.414483,0.858438,0.302139][0.69163,0.533229,0][-0.640061,2.09578,-0.366605][-0.142993,0.934251,0.326693][0.73079,0.539898,0][-0.640078,2.09652,-0.368748][-0.14305,0.934417,0.326193][0.730789,0.540044,0][-1.67567,-1.0072,-0.824663][-0.671209,-0.70163,-0.239153][0.197628,0.841448,0][-1.21746,-1.31416,-1.21011][-0.417613,-0.859069,-0.295973][0.218447,0.815306,0][-1.21744,-1.31491,-1.20797][-0.417656,-0.858991,-0.296138][0.218498,0.815452,0][-1.21744,-1.31491,-1.20797][-0.417656,-0.858991,-0.296138][0.218498,0.815452,0][-1.67565,-1.00795,-0.822519][-0.671196,-0.701654,-0.239119][0.197679,0.841594,0][-1.67567,-1.0072,-0.824663][-0.671209,-0.70163,-0.239153][0.197628,0.841448,0][-1.21746,1.78314,-0.27042][-0.41443,0.8584,0.302321][0.583585,0.805739,0][-1.67567,1.28919,-0.11988][-0.671185,0.698372,0.248568][0.618605,0.805371,0][-1.67565,1.28844,-0.117737][-0.671235,0.698375,0.248427][0.618698,0.805495,0][-1.67565,1.28844,-0.117737][-0.671235,0.698375,0.248427][0.618698,0.805495,0][-1.21744,1.78239,-0.268275][-0.414483,0.858438,0.302139][0.583677,0.805862,0][-1.21746,1.78314,-0.27042][-0.41443,0.8584,0.302321][0.583585,0.805739,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-1.67567,-1.0072,-0.824663][-0.671209,-0.70163,-0.239153][0.197628,0.841448,0][-1.67565,-1.00795,-0.822519][-0.671196,-0.701654,-0.239119][0.197679,0.841594,0][-1.67565,-1.00795,-0.822519][-0.671196,-0.701654,-0.239119][0.197679,0.841594,0][-1.96984,-0.625952,-0.32256][0.772335,-0.597988,-0.214266][0.171771,0.875502,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-1.67567,1.28919,-0.11988][-0.671185,0.698372,0.248568][0.618605,0.805371,0][-1.97017,0.574403,0.0596669][-0.900476,0.4085,0.149237][0.6685,0.802363,0][-1.97015,0.573656,0.0618106][-0.900472,0.408502,0.149251][0.668592,0.802487,0][-1.97015,0.573656,0.0618106][-0.900472,0.408502,0.149251][0.668592,0.802487,0][-1.67565,1.28844,-0.117737][-0.671235,0.698375,0.248427][0.618698,0.805495,0][-1.67567,1.28919,-0.11988][-0.671185,0.698372,0.248568][0.618605,0.805371,0][-2.07121,-0.202532,0.248602][-0.988145,0.142436,0.0572845][0.722605,0.798691,0][-1.97015,0.573656,0.0618106][-0.900472,0.408502,0.149251][0.668592,0.802487,0][-1.97017,0.574403,0.0596669][-0.900476,0.4085,0.149237][0.6685,0.802363,0][-1.97017,0.574403,0.0596669][-0.988142,0.142445,0.0573209][0.84779,0.744346,0][-2.07122,-0.201786,0.246459][-0.988142,0.142445,0.0573209][0.793645,0.743998,0][-2.07121,-0.202532,0.248602][-0.988142,0.142445,0.0573209][0.793562,0.743868,0][1.96974,-0.624459,-0.326847][0.986209,-0.153871,-0.0609626][0.93297,0.802439,0][2.07111,-0.201039,0.244316][0.986209,-0.153871,-0.0609626][0.981187,0.80311,0][2.07112,-0.201786,0.246459][0.986272,-0.153283,-0.061409][0.981272,0.803239,0][2.07112,-0.201786,0.246459][0.986272,-0.153283,-0.061409][0.981272,0.803239,0][1.96975,-0.625205,-0.324703][0.986272,-0.153283,-0.061409][0.933055,0.802568,0][1.96974,-0.624459,-0.326847][0.986209,-0.153871,-0.0609626][0.93297,0.802439,0][1.96975,0.451684,-0.138408][0.980861,0.186024,0.057505][0.639199,0.621113,0][2.07112,-0.201786,0.246459][0.980861,0.186024,0.057505][0.690605,0.619386,0][2.07111,-0.201039,0.244316][0.980861,0.186024,0.057505][0.690491,0.61949,0][2.07111,-0.201039,0.244316][0.980859,0.186031,0.0575173][0.427569,0.897216,0][1.96974,0.45243,-0.140552][0.980859,0.186031,0.0575173][0.477232,0.883828,0][1.96975,0.451684,-0.138408][0.981044,0.185398,0.056394][0.477145,0.883955,0][1.67555,-1.00646,-0.826807][0.874173,-0.456515,-0.165579][0.890297,0.802464,0][1.96974,-0.624459,-0.326847][0.986209,-0.153871,-0.0609626][0.93297,0.802439,0][1.96975,-0.625205,-0.324703][0.986272,-0.153283,-0.061409][0.933055,0.802568,0][1.96975,-0.625205,-0.324703][0.986272,-0.153283,-0.061409][0.933055,0.802568,0][1.67557,-1.0072,-0.824664][0.874305,-0.456124,-0.165955][0.890382,0.802593,0][1.67555,-1.00646,-0.826807][0.874173,-0.456515,-0.165579][0.890297,0.802464,0][1.96974,0.45243,-0.140552][0.980859,0.186031,0.0575173][0.477232,0.883828,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.531658,0.900133,0][1.67557,1.28919,-0.11988][0.938846,0.327428,0.106583][0.531571,0.90026,0][1.67557,1.28919,-0.11988][0.938846,0.327428,0.106583][0.531571,0.90026,0][1.96975,0.451684,-0.138408][0.981044,0.185398,0.056394][0.477145,0.883955,0][1.96974,0.45243,-0.140552][0.980859,0.186031,0.0575173][0.477232,0.883828,0][1.21734,-1.31342,-1.21226][0.674318,-0.695704,-0.247572][0.174753,0.965105,0][1.67555,-1.00646,-0.826807][0.874173,-0.456515,-0.165579][0.208601,0.987544,0][1.67557,-1.0072,-0.824664][0.874305,-0.456124,-0.165955][0.208619,0.987688,0][1.67557,-1.0072,-0.824664][0.874305,-0.456124,-0.165955][0.208619,0.987688,0][1.21736,-1.31416,-1.21011][0.674283,-0.695773,-0.247474][0.174771,0.965249,0][1.21734,-1.31342,-1.21226][0.674318,-0.695704,-0.247572][0.174753,0.965105,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.531658,0.900133,0][1.21734,1.78389,-0.272562][0.674916,0.69854,0.23776][0.566668,0.899192,0][1.21736,1.78314,-0.27042][0.67467,0.698531,0.238482][0.566581,0.899319,0][1.21736,1.78314,-0.27042][0.67467,0.698531,0.238482][0.566581,0.899319,0][1.67557,1.28919,-0.11988][0.938846,0.327428,0.106583][0.531571,0.90026,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.531658,0.900133,0][0.639963,-1.5105,-1.4549][0.419095,-0.85635,-0.301703][0.133977,0.953207,0][1.21734,-1.31342,-1.21226][0.674318,-0.695704,-0.247572][0.174753,0.965105,0][1.21736,-1.31416,-1.21011][0.674283,-0.695773,-0.247474][0.174771,0.965249,0][1.21736,-1.31416,-1.21011][0.674283,-0.695773,-0.247474][0.174771,0.965249,0][0.639979,-1.51124,-1.45275][0.419049,-0.856434,-0.301526][0.133994,0.953351,0][0.639963,-1.5105,-1.4549][0.419095,-0.85635,-0.301703][0.133977,0.953207,0][1.21734,1.78389,-0.272562][0.674916,0.69854,0.23776][0.856764,0.53352,0][0.639963,2.09727,-0.370892][0.416172,0.859686,0.29621][0.817605,0.540189,0][0.639979,2.09653,-0.368749][0.416009,0.859568,0.296781][0.817606,0.540044,0][0.639979,2.09653,-0.368749][0.416009,0.859568,0.296781][0.817606,0.540044,0][1.21736,1.78314,-0.27042][0.67467,0.698531,0.238482][0.856765,0.533375,0][1.21734,1.78389,-0.272562][0.674916,0.69854,0.23776][0.856764,0.53352,0][-6.59514e-005,-1.57841,-1.53779][0.141451,-0.934529,-0.326568][0.0902105,0.952557,0][0.639963,-1.5105,-1.4549][0.419095,-0.85635,-0.301703][0.133977,0.953207,0][0.639979,-1.51124,-1.45275][0.419049,-0.856434,-0.301526][0.133994,0.953351,0][0.639979,-1.51124,-1.45275][0.419049,-0.856434,-0.301526][0.133994,0.953351,0][-4.96159e-005,-1.57915,-1.53564][0.141467,-0.934463,-0.326749][0.0902281,0.952702,0][-6.59514e-005,-1.57841,-1.53779][0.141451,-0.934529,-0.326568][0.0902105,0.952557,0][0.639963,2.09727,-0.370892][0.416172,0.859686,0.29621][0.817605,0.540189,0][-6.56788e-005,2.20715,-0.404974][0.143205,0.93489,0.324767][0.774196,0.542501,0][-4.90881e-005,2.2064,-0.402831][0.143212,0.934913,0.324698][0.774197,0.542355,0][-4.90881e-005,2.2064,-0.402831][0.143212,0.934913,0.324698][0.774197,0.542355,0][0.639979,2.09653,-0.368749][0.416009,0.859568,0.296781][0.817606,0.540044,0][0.639963,2.09727,-0.370892][0.416172,0.859686,0.29621][0.817605,0.540189,0][-0.640095,-1.5105,-1.45489][-0.141273,-0.93524,-0.324604][0.0477226,0.963078,0][-6.59514e-005,-1.57841,-1.53779][0.141451,-0.934529,-0.326568][0.0902105,0.952557,0][-4.96159e-005,-1.57915,-1.53564][0.141467,-0.934463,-0.326749][0.0902281,0.952702,0][-4.96159e-005,-1.57915,-1.53564][0.141467,-0.934463,-0.326749][0.0902281,0.952702,0][-0.640078,-1.51124,-1.45275][-0.141292,-0.935164,-0.324815][0.0477403,0.963222,0][-0.640095,-1.5105,-1.45489][-0.141273,-0.93524,-0.324604][0.0477226,0.963078,0][-6.56788e-005,2.20715,-0.404974][0.143205,0.93489,0.324767][0.774196,0.542501,0][-0.640095,2.09727,-0.370891][-0.142957,0.934141,0.327022][0.730788,0.540189,0][-0.640078,2.09652,-0.368748][-0.14305,0.934417,0.326193][0.730789,0.540044,0][-0.640078,2.09652,-0.368748][-0.14305,0.934417,0.326193][0.730789,0.540044,0][-4.90881e-005,2.2064,-0.402831][0.143212,0.934913,0.324698][0.774197,0.542355,0][-6.56788e-005,2.20715,-0.404974][0.143205,0.93489,0.324767][0.774196,0.542501,0][-1.21747,-1.31342,-1.21226][-0.417638,-0.859024,-0.296069][0.0106883,0.98388,0][-0.640095,-1.5105,-1.45489][-0.141273,-0.93524,-0.324604][0.0477226,0.963078,0][-0.640078,-1.51124,-1.45275][-0.141292,-0.935164,-0.324815][0.0477403,0.963222,0][-0.640078,-1.51124,-1.45275][-0.141292,-0.935164,-0.324815][0.0477403,0.963222,0][-1.21746,-1.31416,-1.21011][-0.417613,-0.859069,-0.295973][0.0107059,0.984025,0][-1.21747,-1.31342,-1.21226][-0.417638,-0.859024,-0.296069][0.0106883,0.98388,0][-0.640095,2.09727,-0.370891][-0.142957,0.934141,0.327022][0.730788,0.540189,0][-1.21747,1.78389,-0.272562][-0.414473,0.85843,0.302174][0.691628,0.53352,0][-1.21746,1.78314,-0.27042][-0.41443,0.8584,0.302321][0.691629,0.533375,0][-1.21746,1.78314,-0.27042][-0.41443,0.8584,0.302321][0.691629,0.533375,0][-0.640078,2.09652,-0.368748][-0.14305,0.934417,0.326193][0.730789,0.540044,0][-0.640095,2.09727,-0.370891][-0.142957,0.934141,0.327022][0.730788,0.540189,0][-1.67568,-1.00646,-0.826806][-0.671264,-0.701526,-0.239303][0.197578,0.841303,0][-1.21747,-1.31342,-1.21226][-0.417638,-0.859024,-0.296069][0.218397,0.815161,0][-1.21746,-1.31416,-1.21011][-0.417613,-0.859069,-0.295973][0.218447,0.815306,0][-1.21746,-1.31416,-1.21011][-0.417613,-0.859069,-0.295973][0.218447,0.815306,0][-1.67567,-1.0072,-0.824663][-0.671209,-0.70163,-0.239153][0.197628,0.841448,0][-1.67568,-1.00646,-0.826806][-0.671264,-0.701526,-0.239303][0.197578,0.841303,0][-1.21747,1.78389,-0.272562][-0.414473,0.85843,0.302174][0.583493,0.805616,0][-1.67568,1.28993,-0.122023][-0.671218,0.698374,0.248476][0.618513,0.805248,0][-1.67567,1.28919,-0.11988][-0.671185,0.698372,0.248568][0.618605,0.805371,0][-1.67567,1.28919,-0.11988][-0.671185,0.698372,0.248568][0.618605,0.805371,0][-1.21746,1.78314,-0.27042][-0.41443,0.8584,0.302321][0.583585,0.805739,0][-1.21747,1.78389,-0.272562][-0.414473,0.85843,0.302174][0.583493,0.805616,0][-1.96987,-0.624459,-0.326847][-0.168646,0.930412,0.325411][0.17167,0.875212,0][-1.67568,-1.00646,-0.826806][-0.671264,-0.701526,-0.239303][0.197578,0.841303,0][-1.67567,-1.0072,-0.824663][-0.671209,-0.70163,-0.239153][0.197628,0.841448,0][-1.67567,-1.0072,-0.824663][-0.671209,-0.70163,-0.239153][0.197628,0.841448,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-1.96987,-0.624459,-0.326847][-0.168646,0.930412,0.325411][0.17167,0.875212,0][-1.67568,1.28993,-0.122023][-0.671218,0.698374,0.248476][0.618513,0.805248,0][-1.97019,0.57515,0.0575232][-0.900435,0.408527,0.14941][0.668407,0.80224,0][-1.97017,0.574403,0.0596669][-0.900476,0.4085,0.149237][0.6685,0.802363,0][-1.97017,0.574403,0.0596669][-0.900476,0.4085,0.149237][0.6685,0.802363,0][-1.67567,1.28919,-0.11988][-0.671185,0.698372,0.248568][0.618605,0.805371,0][-1.67568,1.28993,-0.122023][-0.671218,0.698374,0.248476][0.618513,0.805248,0][-2.07122,-0.201786,0.246459][-0.988136,0.14246,0.0573873][0.722513,0.798568,0][-1.97017,0.574403,0.0596669][-0.900476,0.4085,0.149237][0.6685,0.802363,0][-1.97019,0.57515,0.0575232][-0.900435,0.408527,0.14941][0.668407,0.80224,0][-1.97019,0.57515,0.0575232][-0.988144,0.142439,0.0572978][0.105081,0.813016,0][-2.07124,-0.201039,0.244316][-0.988144,0.142439,0.0572978][0.159226,0.813364,0][-2.07122,-0.201786,0.246459][-0.988144,0.142439,0.0572978][0.159308,0.813494,0][1.96909,-0.595339,-0.410443][0.986235,-0.153623,-0.061152][0.929661,0.79743,0][2.07046,-0.171919,0.16072][0.986235,-0.153623,-0.061152][0.977878,0.798101,0][2.07111,-0.201039,0.244316][0.986209,-0.153871,-0.0609626][0.981187,0.80311,0][2.07111,-0.201039,0.244316][0.986209,-0.153871,-0.0609626][0.981187,0.80311,0][1.96974,-0.624459,-0.326847][0.986209,-0.153871,-0.0609626][0.93297,0.802439,0][1.96909,-0.595339,-0.410443][0.986235,-0.153623,-0.061152][0.929661,0.79743,0][1.96974,0.45243,-0.140552][0.980924,0.185811,0.0571264][0.53558,0.566169,0][2.07111,-0.201039,0.244316][0.980924,0.185811,0.0571264][0.484173,0.567896,0][2.07046,-0.171919,0.16072][0.980924,0.185811,0.0571264][0.488619,0.563861,0][1.6749,-0.977337,-0.910403][0.87423,-0.456346,-0.165741][0.886988,0.797455,0][1.96909,-0.595339,-0.410443][0.986235,-0.153623,-0.061152][0.929661,0.79743,0][1.96974,-0.624459,-0.326847][0.986209,-0.153871,-0.0609626][0.93297,0.802439,0][1.96974,-0.624459,-0.326847][0.986209,-0.153871,-0.0609626][0.93297,0.802439,0][1.67555,-1.00646,-0.826807][0.874173,-0.456515,-0.165579][0.890297,0.802464,0][1.6749,-0.977337,-0.910403][0.87423,-0.456346,-0.165741][0.886988,0.797455,0][1.21669,-1.2843,-1.29585][0.674317,-0.695705,-0.247569][0.174065,0.959477,0][1.6749,-0.977337,-0.910403][0.87423,-0.456346,-0.165741][0.207913,0.981916,0][1.67555,-1.00646,-0.826807][0.874173,-0.456515,-0.165579][0.208601,0.987544,0][1.67555,-1.00646,-0.826807][0.874173,-0.456515,-0.165579][0.208601,0.987544,0][1.21734,-1.31342,-1.21226][0.674318,-0.695704,-0.247572][0.174753,0.965105,0][1.21669,-1.2843,-1.29585][0.674317,-0.695705,-0.247569][0.174065,0.959477,0][1.6749,1.31905,-0.205619][0.674799,0.698535,0.238106][0.535069,0.895192,0][1.21669,1.81301,-0.356159][0.674799,0.698535,0.238106][0.570079,0.894251,0][1.21734,1.78389,-0.272562][0.674916,0.69854,0.23776][0.566668,0.899192,0][1.21734,1.78389,-0.272562][0.674916,0.69854,0.23776][0.566668,0.899192,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.531658,0.900133,0][1.6749,1.31905,-0.205619][0.674799,0.698535,0.238106][0.535069,0.895192,0][0.639315,-1.48138,-1.53849][0.41906,-0.856415,-0.301568][0.133288,0.947579,0][1.21669,-1.2843,-1.29585][0.674317,-0.695705,-0.247569][0.174065,0.959477,0][1.21734,-1.31342,-1.21226][0.674318,-0.695704,-0.247572][0.174753,0.965105,0][1.21734,-1.31342,-1.21226][0.674318,-0.695704,-0.247572][0.174753,0.965105,0][0.639963,-1.5105,-1.4549][0.419095,-0.85635,-0.301703][0.133977,0.953207,0][0.639315,-1.48138,-1.53849][0.41906,-0.856415,-0.301568][0.133288,0.947579,0][1.21669,1.81301,-0.356159][0.674799,0.698535,0.238106][0.85672,0.53919,0][0.639315,2.12639,-0.454488][0.416165,0.859684,0.296228][0.817561,0.545859,0][0.639963,2.09727,-0.370892][0.416172,0.859686,0.29621][0.817605,0.540189,0][0.639963,2.09727,-0.370892][0.416172,0.859686,0.29621][0.817605,0.540189,0][1.21734,1.78389,-0.272562][0.674916,0.69854,0.23776][0.856764,0.53352,0][1.21669,1.81301,-0.356159][0.674799,0.698535,0.238106][0.85672,0.53919,0][-0.000713755,-1.54929,-1.62138][0.141456,-0.934509,-0.326624][0.0895222,0.946929,0][0.639315,-1.48138,-1.53849][0.41906,-0.856415,-0.301568][0.133288,0.947579,0][0.639963,-1.5105,-1.4549][0.419095,-0.85635,-0.301703][0.133977,0.953207,0][0.639963,-1.5105,-1.4549][0.419095,-0.85635,-0.301703][0.133977,0.953207,0][-6.59514e-005,-1.57841,-1.53779][0.141451,-0.934529,-0.326568][0.0902105,0.952557,0][-0.000713755,-1.54929,-1.62138][0.141456,-0.934509,-0.326624][0.0895222,0.946929,0][0.639315,2.12639,-0.454488][0.416165,0.859684,0.296228][0.817561,0.545859,0][-0.000713227,2.23627,-0.48857][0.143228,0.934952,0.324578][0.774152,0.54817,0][-6.56788e-005,2.20715,-0.404974][0.143205,0.93489,0.324767][0.774196,0.542501,0][-6.56788e-005,2.20715,-0.404974][0.143205,0.93489,0.324767][0.774196,0.542501,0][0.639963,2.09727,-0.370892][0.416172,0.859686,0.29621][0.817605,0.540189,0][0.639315,2.12639,-0.454488][0.416165,0.859684,0.296228][0.817561,0.545859,0][-0.640743,-1.48138,-1.53849][-0.14128,-0.935214,-0.324677][0.0470343,0.95745,0][-0.000713755,-1.54929,-1.62138][0.141456,-0.934509,-0.326624][0.0895222,0.946929,0][-6.59514e-005,-1.57841,-1.53779][0.141451,-0.934529,-0.326568][0.0902105,0.952557,0][-6.59514e-005,-1.57841,-1.53779][0.141451,-0.934529,-0.326568][0.0902105,0.952557,0][-0.640095,-1.5105,-1.45489][-0.141273,-0.93524,-0.324604][0.0477226,0.963078,0][-0.640743,-1.48138,-1.53849][-0.14128,-0.935214,-0.324677][0.0470343,0.95745,0][-0.000713227,2.23627,-0.48857][0.143228,0.934952,0.324578][0.774152,0.54817,0][-0.640743,2.12639,-0.454488][-0.14301,0.934296,0.326557][0.730744,0.545859,0][-0.640095,2.09727,-0.370891][-0.142957,0.934141,0.327022][0.730788,0.540189,0][-0.640095,2.09727,-0.370891][-0.142957,0.934141,0.327022][0.730788,0.540189,0][-6.56788e-005,2.20715,-0.404974][0.143205,0.93489,0.324767][0.774196,0.542501,0][-0.000713227,2.23627,-0.48857][0.143228,0.934952,0.324578][0.774152,0.54817,0][-1.21812,-1.2843,-1.29585][-0.417622,-0.859052,-0.296008][0.01,0.978252,0][-0.640743,-1.48138,-1.53849][-0.14128,-0.935214,-0.324677][0.0470343,0.95745,0][-0.640095,-1.5105,-1.45489][-0.141273,-0.93524,-0.324604][0.0477226,0.963078,0][-0.640095,-1.5105,-1.45489][-0.141273,-0.93524,-0.324604][0.0477226,0.963078,0][-1.21747,-1.31342,-1.21226][-0.417638,-0.859024,-0.296069][0.0106883,0.98388,0][-1.21812,-1.2843,-1.29585][-0.417622,-0.859052,-0.296008][0.01,0.978252,0][-0.640743,2.12639,-0.454488][-0.14301,0.934296,0.326557][0.730744,0.545859,0][-1.21812,1.81301,-0.356159][-0.414454,0.858417,0.302239][0.691584,0.53919,0][-1.21747,1.78389,-0.272562][-0.414473,0.85843,0.302174][0.691628,0.53352,0][-1.21747,1.78389,-0.272562][-0.414473,0.85843,0.302174][0.691628,0.53352,0][-0.640095,2.09727,-0.370891][-0.142957,0.934141,0.327022][0.730788,0.540189,0][-0.640743,2.12639,-0.454488][-0.14301,0.934296,0.326557][0.730744,0.545859,0][-1.67633,-0.977336,-0.910402][-0.671224,-0.701601,-0.239194][0.195603,0.835633,0][-1.21812,-1.2843,-1.29585][-0.417622,-0.859052,-0.296008][0.216422,0.809491,0][-1.21747,-1.31342,-1.21226][-0.417638,-0.859024,-0.296069][0.218397,0.815161,0][-1.21747,-1.31342,-1.21226][-0.417638,-0.859024,-0.296069][0.218397,0.815161,0][-1.67568,-1.00646,-0.826806][-0.671264,-0.701526,-0.239303][0.197578,0.841303,0][-1.67633,-0.977336,-0.910402][-0.671224,-0.701601,-0.239194][0.195603,0.835633,0][-1.21812,1.81301,-0.356159][-0.414454,0.858417,0.302239][0.5799,0.800805,0][-1.67633,1.31905,-0.205619][-0.671218,0.698374,0.248476][0.614921,0.800438,0][-1.67568,1.28993,-0.122023][-0.671218,0.698374,0.248476][0.618513,0.805248,0][-1.67568,1.28993,-0.122023][-0.671218,0.698374,0.248476][0.618513,0.805248,0][-1.21747,1.78389,-0.272562][-0.414473,0.85843,0.302174][0.583493,0.805616,0][-1.21812,1.81301,-0.356159][-0.414454,0.858417,0.302239][0.5799,0.800805,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-1.67633,-0.977336,-0.910402][-0.671224,-0.701601,-0.239194][0.195603,0.835633,0][-1.67568,-1.00646,-0.826806][-0.671264,-0.701526,-0.239303][0.197578,0.841303,0][-1.67568,-1.00646,-0.826806][-0.671264,-0.701526,-0.239303][0.197578,0.841303,0][-1.96987,-0.624459,-0.326847][-0.168646,0.930412,0.325411][0.17167,0.875212,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-1.67633,1.31905,-0.205619][-0.671218,0.698374,0.248476][0.614921,0.800438,0][-1.97083,0.604269,-0.0260726][-0.900467,0.408506,0.149275][0.664815,0.79743,0][-1.97019,0.57515,0.0575232][-0.900435,0.408527,0.14941][0.668407,0.80224,0][-1.97019,0.57515,0.0575232][-0.900435,0.408527,0.14941][0.668407,0.80224,0][-1.67568,1.28993,-0.122023][-0.671218,0.698374,0.248476][0.618513,0.805248,0][-1.67633,1.31905,-0.205619][-0.671218,0.698374,0.248476][0.614921,0.800438,0][-2.07124,-0.201039,0.244316][-0.988146,0.142433,0.0572707][0.722421,0.798444,0][-1.97019,0.57515,0.0575232][-0.900435,0.408527,0.14941][0.668407,0.80224,0][-1.97083,0.604269,-0.0260726][-0.900467,0.408506,0.149275][0.664815,0.79743,0][-1.97083,0.604269,-0.0260726][-0.988146,0.142433,0.0572723][0.495891,0.983287,0][-2.07189,-0.171919,0.160719][-0.988146,0.142433,0.0572723][0.549904,0.979492,0][-2.07124,-0.201039,0.244316][-0.988146,0.142433,0.0572723][0.553497,0.984302,0][1.97017,-0.643872,-0.271116][-0.986236,0.153618,0.0611564][0.416479,0.603874,0][2.07154,-0.220452,0.300047][-0.986236,0.153618,0.0611564][0.368273,0.602654,0][2.07046,-0.171919,0.16072][0.986235,-0.153623,-0.061152][0.374111,0.594527,0][2.07046,-0.171919,0.16072][0.986235,-0.153623,-0.061152][0.374111,0.594527,0][1.96909,-0.595339,-0.410443][0.986235,-0.153623,-0.061152][0.422317,0.595747,0][1.97017,-0.643872,-0.271116][-0.986236,0.153618,0.0611564][0.416479,0.603874,0][1.96909,0.48155,-0.224148][-0.980924,-0.185809,-0.057121][0.867521,0.844758,0][2.07046,-0.171919,0.16072][-0.980924,-0.185809,-0.057121][0.91879,0.840629,0][2.07154,-0.220452,0.300047][-0.980924,-0.185809,-0.057121][0.926917,0.846467,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.899944,0.432218,0][1.6749,1.31905,-0.205619][0.674799,0.698535,0.238106][0.905301,0.44067,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.902087,0.435599,0][1.97017,0.433017,-0.084821][-0.938827,-0.327418,-0.106781][0.844921,0.446377,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.899944,0.432218,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.902087,0.435599,0][1.97017,0.433017,-0.084821][-0.938827,-0.327418,-0.106781][0.844921,0.446377,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.902087,0.435599,0][1.96974,0.45243,-0.140552][0.980859,0.186031,0.0575173][0.847063,0.449757,0][2.07154,-0.220452,0.300047][-0.980923,-0.185813,-0.0571294][0.795821,0.431052,0][1.97017,0.433017,-0.084821][-0.938827,-0.327418,-0.106781][0.844921,0.446377,0][1.96974,0.45243,-0.140552][0.980859,0.186031,0.0575173][0.847063,0.449757,0][2.07154,-0.220452,0.300047][-0.980923,-0.185813,-0.0571294][0.795821,0.431052,0][1.96974,0.45243,-0.140552][0.980859,0.186031,0.0575173][0.847063,0.449757,0][2.07046,-0.171919,0.16072][-0.980924,-0.185808,-0.0571205][0.801178,0.439504,0][1.67598,-1.02587,-0.771076][-0.874229,0.456348,0.16574][0.459119,0.605572,0][1.97017,-0.643872,-0.271116][-0.986236,0.153618,0.0611564][0.416479,0.603874,0][1.96909,-0.595339,-0.410443][0.986235,-0.153623,-0.061152][0.422317,0.595747,0][1.96909,-0.595339,-0.410443][0.986235,-0.153623,-0.061152][0.422317,0.595747,0][1.6749,-0.977337,-0.910403][0.87423,-0.456346,-0.165741][0.464957,0.597445,0][1.67598,-1.02587,-0.771076][-0.874229,0.456348,0.16574][0.459119,0.605572,0][1.21777,-1.33283,-1.15653][-0.674317,0.695705,0.247568][0.755483,0.195343,0][1.67598,-1.02587,-0.771076][-0.874229,0.456348,0.16574][0.78656,0.1692,0][1.6749,-0.977337,-0.910403][0.87423,-0.456346,-0.165741][0.786487,0.17865,0][1.6749,-0.977337,-0.910403][0.87423,-0.456346,-0.165741][0.786487,0.17865,0][1.21669,-1.2843,-1.29585][0.674317,-0.695705,-0.247569][0.75541,0.204792,0][1.21777,-1.33283,-1.15653][-0.674317,0.695705,0.247568][0.755483,0.195343,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.918947,0.501948,0][1.21777,1.76447,-0.216832][-0.674799,-0.698536,-0.238104][0.88787,0.491738,0][1.21669,1.81301,-0.356159][0.674799,0.698535,0.238106][0.887797,0.482288,0][1.21669,1.81301,-0.356159][0.674799,0.698535,0.238106][0.887797,0.482288,0][1.6749,1.31905,-0.205619][0.674799,0.698535,0.238106][0.918874,0.492498,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.918947,0.501948,0][0.640394,-1.52991,-1.39916][-0.41906,0.856413,0.301572][0.716324,0.211799,0][1.21777,-1.33283,-1.15653][-0.674317,0.695705,0.247568][0.755483,0.195343,0][1.21669,-1.2843,-1.29585][0.674317,-0.695705,-0.247569][0.75541,0.204792,0][1.21669,-1.2843,-1.29585][0.674317,-0.695705,-0.247569][0.75541,0.204792,0][0.639315,-1.48138,-1.53849][0.41906,-0.856415,-0.301568][0.716251,0.221249,0][0.640394,-1.52991,-1.39916][-0.41906,0.856413,0.301572][0.716324,0.211799,0][1.21777,1.76447,-0.216832][-0.674799,-0.698536,-0.238104][0.88787,0.491738,0][0.640395,2.07786,-0.315161][-0.416165,-0.859681,-0.296234][0.848711,0.485069,0][0.639315,2.12639,-0.454488][0.416165,0.859684,0.296228][0.848638,0.475619,0][0.639315,2.12639,-0.454488][0.416165,0.859684,0.296228][0.848638,0.475619,0][1.21669,1.81301,-0.356159][0.674799,0.698535,0.238106][0.887797,0.482288,0][1.21777,1.76447,-0.216832][-0.674799,-0.698536,-0.238104][0.88787,0.491738,0][0.000365407,-1.59782,-1.48206][-0.141456,0.934509,0.326623][0.672916,0.217421,0][0.640394,-1.52991,-1.39916][-0.41906,0.856413,0.301572][0.716324,0.211799,0][0.639315,-1.48138,-1.53849][0.41906,-0.856415,-0.301568][0.716251,0.221249,0][0.639315,-1.48138,-1.53849][0.41906,-0.856415,-0.301568][0.716251,0.221249,0][-0.000713755,-1.54929,-1.62138][0.141456,-0.934509,-0.326624][0.672842,0.226871,0][0.000365407,-1.59782,-1.48206][-0.141456,0.934509,0.326623][0.672916,0.217421,0][0.640395,2.07786,-0.315161][-0.416165,-0.859681,-0.296234][0.848711,0.485069,0][0.00036619,2.18774,-0.349244][-0.143227,-0.934953,-0.324576][0.805303,0.482757,0][-0.000713227,2.23627,-0.48857][0.143228,0.934952,0.324578][0.805229,0.473308,0][-0.000713227,2.23627,-0.48857][0.143228,0.934952,0.324578][0.805229,0.473308,0][0.639315,2.12639,-0.454488][0.416165,0.859684,0.296228][0.848638,0.475619,0][0.640395,2.07786,-0.315161][-0.416165,-0.859681,-0.296234][0.848711,0.485069,0][-0.639663,-1.52991,-1.39916][0.14128,0.935213,0.324678][0.629507,0.211799,0][0.000365407,-1.59782,-1.48206][-0.141456,0.934509,0.326623][0.672916,0.217421,0][-0.000713755,-1.54929,-1.62138][0.141456,-0.934509,-0.326624][0.672842,0.226871,0][-0.000713755,-1.54929,-1.62138][0.141456,-0.934509,-0.326624][0.672842,0.226871,0][-0.640743,-1.48138,-1.53849][-0.14128,-0.935214,-0.324677][0.629434,0.221249,0][-0.639663,-1.52991,-1.39916][0.14128,0.935213,0.324678][0.629507,0.211799,0][0.00036619,2.18774,-0.349244][-0.143227,-0.934953,-0.324576][0.805303,0.482757,0][-0.639663,2.07786,-0.31516][0.143009,-0.934294,-0.326564][0.761894,0.485069,0][-0.640743,2.12639,-0.454488][-0.14301,0.934296,0.326557][0.761821,0.475619,0][-0.640743,2.12639,-0.454488][-0.14301,0.934296,0.326557][0.761821,0.475619,0][-0.000713227,2.23627,-0.48857][0.143228,0.934952,0.324578][0.805229,0.473308,0][0.00036619,2.18774,-0.349244][-0.143227,-0.934953,-0.324576][0.805303,0.482757,0][-1.21704,-1.33283,-1.15652][0.417623,0.859052,0.296009][0.590348,0.195343,0][-0.639663,-1.52991,-1.39916][0.14128,0.935213,0.324678][0.629507,0.211799,0][-0.640743,-1.48138,-1.53849][-0.14128,-0.935214,-0.324677][0.629434,0.221249,0][-0.640743,-1.48138,-1.53849][-0.14128,-0.935214,-0.324677][0.629434,0.221249,0][-1.21812,-1.2843,-1.29585][-0.417622,-0.859052,-0.296008][0.590274,0.204792,0][-1.21704,-1.33283,-1.15652][0.417623,0.859052,0.296009][0.590348,0.195343,0][-0.639663,2.07786,-0.31516][0.143009,-0.934294,-0.326564][0.761894,0.485069,0][-1.21704,1.76447,-0.216832][0.414454,-0.858417,-0.302239][0.722735,0.491738,0][-1.21812,1.81301,-0.356159][-0.414454,0.858417,0.302239][0.722661,0.482288,0][-1.21812,1.81301,-0.356159][-0.414454,0.858417,0.302239][0.722661,0.482288,0][-0.640743,2.12639,-0.454488][-0.14301,0.934296,0.326557][0.761821,0.475619,0][-0.639663,2.07786,-0.31516][0.143009,-0.934294,-0.326564][0.761894,0.485069,0][-1.67525,-1.02587,-0.771075][0.671224,0.701601,0.239195][0.559271,0.1692,0][-1.21704,-1.33283,-1.15652][0.417623,0.859052,0.296009][0.590348,0.195343,0][-1.21812,-1.2843,-1.29585][-0.417622,-0.859052,-0.296008][0.590274,0.204792,0][-1.21812,-1.2843,-1.29585][-0.417622,-0.859052,-0.296008][0.590274,0.204792,0][-1.67633,-0.977336,-0.910402][-0.671224,-0.701601,-0.239194][0.559197,0.17865,0][-1.67525,-1.02587,-0.771075][0.671224,0.701601,0.239195][0.559271,0.1692,0][-1.21704,1.76447,-0.216832][0.414454,-0.858417,-0.302239][0.722735,0.491738,0][-1.67525,1.27052,-0.0662928][0.671218,-0.698374,-0.248476][0.691657,0.501948,0][-1.67633,1.31905,-0.205619][-0.671218,0.698374,0.248476][0.691584,0.492498,0][-1.67633,1.31905,-0.205619][-0.671218,0.698374,0.248476][0.691584,0.492498,0][-1.21812,1.81301,-0.356159][-0.414454,0.858417,0.302239][0.722661,0.482288,0][-1.21704,1.76447,-0.216832][0.414454,-0.858417,-0.302239][0.722735,0.491738,0][-1.96944,-0.643872,-0.271116][0.996014,0.0863532,0.0223604][0.951508,0.892178,0][-1.67525,-1.02587,-0.771075][0.671224,0.701601,0.239195][0.908835,0.892203,0][-1.67633,-0.977336,-0.910402][-0.671224,-0.701601,-0.239194][0.90332,0.883853,0][-1.67633,-0.977336,-0.910402][-0.671224,-0.701601,-0.239194][0.90332,0.883853,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.945993,0.883828,0][-1.96944,-0.643872,-0.271116][0.996014,0.0863532,0.0223604][0.951508,0.892178,0][-1.67525,1.27052,-0.0662928][0.671218,-0.698374,-0.248476][0.682885,0.851781,0][-1.96975,0.555736,0.113254][0.900465,-0.408506,-0.14928][0.632913,0.850639,0][-1.97083,0.604269,-0.0260726][-0.900467,0.408506,0.149275][0.638597,0.842404,0][-1.97083,0.604269,-0.0260726][-0.900467,0.408506,0.149275][0.638597,0.842404,0][-1.67633,1.31905,-0.205619][-0.671218,0.698374,0.248476][0.688569,0.843546,0][-1.67525,1.27052,-0.0662928][0.671218,-0.698374,-0.248476][0.682885,0.851781,0][-2.07189,-0.171919,0.160719][0.988146,-0.142434,-0.0572745][0.58448,0.840629,0][-1.97083,0.604269,-0.0260726][-0.900467,0.408506,0.149275][0.638597,0.842404,0][-1.96975,0.555736,0.113254][0.900465,-0.408506,-0.14928][0.632913,0.850639,0][-1.96975,0.555736,0.113254][0.988048,-0.142516,-0.0587469][0.944186,0.68534,0][-2.07081,-0.21098,0.273639][0.988048,-0.142516,-0.0587469][0.891065,0.686075,0][-2.07189,-0.171919,0.160719][0.988048,-0.142516,-0.0587469][0.89513,0.679064,0][1.97022,-0.646112,-0.264686][-0.986232,0.153654,0.0611292][0.41621,0.604249,0][2.07159,-0.222692,0.306477][-0.986232,0.153654,0.0611292][0.368004,0.603029,0][2.07154,-0.220452,0.300047][-0.986236,0.153618,0.0611564][0.368273,0.602654,0][2.07154,-0.220452,0.300047][-0.986236,0.153618,0.0611564][0.368273,0.602654,0][1.97017,-0.643872,-0.271116][-0.986236,0.153618,0.0611564][0.416479,0.603874,0][1.97022,-0.646112,-0.264686][-0.986232,0.153654,0.0611292][0.41621,0.604249,0][1.97017,0.433017,-0.084821][-0.980916,-0.185835,-0.0571682][0.403495,0.983121,0][2.07154,-0.220452,0.300047][-0.980916,-0.185835,-0.0571682][0.35206,0.983316,0][2.07159,-0.222692,0.306477][-0.980916,-0.185835,-0.0571682][0.351706,0.983018,0][2.07159,-0.222692,0.306477][-0.980906,-0.185872,-0.0572317][0.795574,0.430662,0][1.97022,0.430778,-0.0783906][-0.980906,-0.185872,-0.0572317][0.844674,0.445987,0][1.97017,0.433017,-0.084821][-0.938827,-0.327418,-0.106781][0.844921,0.446377,0][1.67603,-1.02811,-0.764645][-0.874208,0.456412,0.165678][0.458849,0.605947,0][1.97022,-0.646112,-0.264686][-0.986232,0.153654,0.0611292][0.41621,0.604249,0][1.97017,-0.643872,-0.271116][-0.986236,0.153618,0.0611564][0.416479,0.603874,0][1.97017,-0.643872,-0.271116][-0.986236,0.153618,0.0611564][0.416479,0.603874,0][1.67598,-1.02587,-0.771076][-0.874229,0.456348,0.16574][0.459119,0.605572,0][1.67603,-1.02811,-0.764645][-0.874208,0.456412,0.165678][0.458849,0.605947,0][1.97022,0.430778,-0.0783906][-0.980906,-0.185872,-0.0572317][0.844674,0.445987,0][1.67603,1.26828,-0.0598625][-0.938838,-0.327423,-0.106662][0.899697,0.431828,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.899944,0.432218,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.899944,0.432218,0][1.97017,0.433017,-0.084821][-0.938827,-0.327418,-0.106781][0.844921,0.446377,0][1.97022,0.430778,-0.0783906][-0.980906,-0.185872,-0.0572317][0.844674,0.445987,0][1.21782,-1.33507,-1.15009][-0.674307,0.695726,0.247538][0.755487,0.194907,0][1.67603,-1.02811,-0.764645][-0.874208,0.456412,0.165678][0.786564,0.168764,0][1.67598,-1.02587,-0.771076][-0.874229,0.456348,0.16574][0.78656,0.1692,0][1.67598,-1.02587,-0.771076][-0.874229,0.456348,0.16574][0.78656,0.1692,0][1.21777,-1.33283,-1.15653][-0.674317,0.695705,0.247568][0.755483,0.195343,0][1.21782,-1.33507,-1.15009][-0.674307,0.695726,0.247538][0.755487,0.194907,0][1.67603,1.26828,-0.0598625][-0.938838,-0.327423,-0.106662][0.918951,0.502384,0][1.21782,1.76223,-0.210402][-0.674823,-0.698537,-0.238031][0.887874,0.492174,0][1.21777,1.76447,-0.216832][-0.674799,-0.698536,-0.238104][0.88787,0.491738,0][1.21777,1.76447,-0.216832][-0.674799,-0.698536,-0.238104][0.88787,0.491738,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.918947,0.501948,0][1.67603,1.26828,-0.0598625][-0.938838,-0.327423,-0.106662][0.918951,0.502384,0][0.640445,-1.53215,-1.39273][-0.419065,0.856405,0.301589][0.716327,0.211363,0][1.21782,-1.33507,-1.15009][-0.674307,0.695726,0.247538][0.755487,0.194907,0][1.21777,-1.33283,-1.15653][-0.674317,0.695705,0.247568][0.755483,0.195343,0][1.21777,-1.33283,-1.15653][-0.674317,0.695705,0.247568][0.755483,0.195343,0][0.640394,-1.52991,-1.39916][-0.41906,0.856413,0.301572][0.716324,0.211799,0][0.640445,-1.53215,-1.39273][-0.419065,0.856405,0.301589][0.716327,0.211363,0][1.21782,1.76223,-0.210402][-0.674823,-0.698537,-0.238031][0.887874,0.492174,0][0.640444,2.07562,-0.308731][-0.416189,-0.859699,-0.296151][0.848714,0.485505,0][0.640395,2.07786,-0.315161][-0.416165,-0.859681,-0.296234][0.848711,0.485069,0][0.640395,2.07786,-0.315161][-0.416165,-0.859681,-0.296234][0.848711,0.485069,0][1.21777,1.76447,-0.216832][-0.674799,-0.698536,-0.238104][0.88787,0.491738,0][1.21782,1.76223,-0.210402][-0.674823,-0.698537,-0.238031][0.887874,0.492174,0][0.00041569,-1.60006,-1.47563][-0.141458,0.934501,0.326645][0.672919,0.216985,0][0.640445,-1.53215,-1.39273][-0.419065,0.856405,0.301589][0.716327,0.211363,0][0.640394,-1.52991,-1.39916][-0.41906,0.856413,0.301572][0.716324,0.211799,0][0.640394,-1.52991,-1.39916][-0.41906,0.856413,0.301572][0.716324,0.211799,0][0.000365407,-1.59782,-1.48206][-0.141456,0.934509,0.326623][0.672916,0.217421,0][0.00041569,-1.60006,-1.47563][-0.141458,0.934501,0.326645][0.672919,0.216985,0][0.640444,2.07562,-0.308731][-0.416189,-0.859699,-0.296151][0.848714,0.485505,0][0.000415452,2.1855,-0.342814][-0.143215,-0.934924,-0.324665][0.805306,0.483193,0][0.00036619,2.18774,-0.349244][-0.143227,-0.934953,-0.324576][0.805303,0.482757,0][0.00036619,2.18774,-0.349244][-0.143227,-0.934953,-0.324576][0.805303,0.482757,0][0.640395,2.07786,-0.315161][-0.416165,-0.859681,-0.296234][0.848711,0.485069,0][0.640444,2.07562,-0.308731][-0.416189,-0.859699,-0.296151][0.848714,0.485505,0][-0.639613,-1.53215,-1.39273][0.141279,0.935216,0.324672][0.62951,0.211363,0][0.00041569,-1.60006,-1.47563][-0.141458,0.934501,0.326645][0.672919,0.216985,0][0.000365407,-1.59782,-1.48206][-0.141456,0.934509,0.326623][0.672916,0.217421,0][0.000365407,-1.59782,-1.48206][-0.141456,0.934509,0.326623][0.672916,0.217421,0][-0.639663,-1.52991,-1.39916][0.14128,0.935213,0.324678][0.629507,0.211799,0][-0.639613,-1.53215,-1.39273][0.141279,0.935216,0.324672][0.62951,0.211363,0][0.000415452,2.1855,-0.342814][-0.143215,-0.934924,-0.324665][0.805306,0.483193,0][-0.639613,2.07562,-0.30873][0.14301,-0.934302,-0.32654][0.761897,0.485505,0][-0.639663,2.07786,-0.31516][0.143009,-0.934294,-0.326564][0.761894,0.485069,0][-0.639663,2.07786,-0.31516][0.143009,-0.934294,-0.326564][0.761894,0.485069,0][0.00036619,2.18774,-0.349244][-0.143227,-0.934953,-0.324576][0.805303,0.482757,0][0.000415452,2.1855,-0.342814][-0.143215,-0.934924,-0.324665][0.805306,0.483193,0][-1.21699,-1.33507,-1.15009][0.417622,0.859054,0.296005][0.590351,0.194907,0][-0.639613,-1.53215,-1.39273][0.141279,0.935216,0.324672][0.62951,0.211363,0][-0.639663,-1.52991,-1.39916][0.14128,0.935213,0.324678][0.629507,0.211799,0][-0.639663,-1.52991,-1.39916][0.14128,0.935213,0.324678][0.629507,0.211799,0][-1.21704,-1.33283,-1.15652][0.417623,0.859052,0.296009][0.590348,0.195343,0][-1.21699,-1.33507,-1.15009][0.417622,0.859054,0.296005][0.590351,0.194907,0][-0.639613,2.07562,-0.30873][0.14301,-0.934302,-0.32654][0.761897,0.485505,0][-1.21699,1.76223,-0.210402][0.414475,-0.858433,-0.302163][0.722738,0.492174,0][-1.21704,1.76447,-0.216832][0.414454,-0.858417,-0.302239][0.722735,0.491738,0][-1.21704,1.76447,-0.216832][0.414454,-0.858417,-0.302239][0.722735,0.491738,0][-0.639663,2.07786,-0.31516][0.143009,-0.934294,-0.326564][0.761894,0.485069,0][-0.639613,2.07562,-0.30873][0.14301,-0.934302,-0.32654][0.761897,0.485505,0][-1.6752,-1.02811,-0.764645][0.671234,0.701583,0.23922][0.559274,0.168764,0][-1.21699,-1.33507,-1.15009][0.417622,0.859054,0.296005][0.590351,0.194907,0][-1.21704,-1.33283,-1.15652][0.417623,0.859052,0.296009][0.590348,0.195343,0][-1.21704,-1.33283,-1.15652][0.417623,0.859052,0.296009][0.590348,0.195343,0][-1.67525,-1.02587,-0.771075][0.671224,0.701601,0.239195][0.559271,0.1692,0][-1.6752,-1.02811,-0.764645][0.671234,0.701583,0.23922][0.559274,0.168764,0][-1.21699,1.76223,-0.210402][0.414475,-0.858433,-0.302163][0.722738,0.492174,0][-1.6752,1.26828,-0.0598622][0.671231,-0.698375,-0.248437][0.691661,0.502384,0][-1.67525,1.27052,-0.0662928][0.671218,-0.698374,-0.248476][0.691657,0.501948,0][-1.67525,1.27052,-0.0662928][0.671218,-0.698374,-0.248476][0.691657,0.501948,0][-1.21704,1.76447,-0.216832][0.414454,-0.858417,-0.302239][0.722735,0.491738,0][-1.21699,1.76223,-0.210402][0.414475,-0.858433,-0.302163][0.722738,0.492174,0][-1.96939,-0.646112,-0.264687][-0.961002,0.258754,0.0975834][0.951763,0.892563,0][-1.6752,-1.02811,-0.764645][0.671234,0.701583,0.23922][0.90909,0.892588,0][-1.67525,-1.02587,-0.771075][0.671224,0.701601,0.239195][0.908835,0.892203,0][-1.67525,-1.02587,-0.771075][0.671224,0.701601,0.239195][0.908835,0.892203,0][-1.96944,-0.643872,-0.271116][0.996014,0.0863532,0.0223604][0.951508,0.892178,0][-1.96939,-0.646112,-0.264687][-0.961002,0.258754,0.0975834][0.951763,0.892563,0][-1.6752,1.26828,-0.0598622][0.671231,-0.698375,-0.248437][0.682623,0.852161,0][-1.9697,0.553496,0.119685][0.900479,-0.408498,-0.149224][0.632651,0.851019,0][-1.96975,0.555736,0.113254][0.900465,-0.408506,-0.14928][0.632913,0.850639,0][-1.96975,0.555736,0.113254][0.900465,-0.408506,-0.14928][0.632913,0.850639,0][-1.67525,1.27052,-0.0662928][0.671218,-0.698374,-0.248476][0.682885,0.851781,0][-1.6752,1.26828,-0.0598622][0.671231,-0.698375,-0.248437][0.682623,0.852161,0][-2.07081,-0.21098,0.273639][0.988185,-0.142205,-0.0571754][0.579891,0.847308,0][-1.96975,0.555736,0.113254][0.900465,-0.408506,-0.14928][0.632913,0.850639,0][-1.9697,0.553496,0.119685][0.900479,-0.408498,-0.149224][0.632651,0.851019,0][-1.9697,0.553496,0.119685][0.988183,-0.14221,-0.0571979][0.85077,0.648289,0][-2.07076,-0.21322,0.280069][0.988183,-0.14221,-0.0571979][0.797649,0.649024,0][-2.07081,-0.21098,0.273639][0.988183,-0.14221,-0.0571979][0.797881,0.648625,0][1.97024,-0.646859,-0.262542][-0.98624,0.153579,0.0611849][0.41612,0.604374,0][2.07161,-0.223439,0.30862][-0.98624,0.153579,0.0611849][0.367914,0.603154,0][2.07159,-0.222692,0.306477][-0.986232,0.153654,0.0611292][0.368004,0.603029,0][2.07159,-0.222692,0.306477][-0.986232,0.153654,0.0611292][0.368004,0.603029,0][1.97022,-0.646112,-0.264686][-0.986232,0.153654,0.0611292][0.41621,0.604249,0][1.97024,-0.646859,-0.262542][-0.98624,0.153579,0.0611849][0.41612,0.604374,0][1.97022,0.430778,-0.0783906][-0.980929,-0.185792,-0.0570913][0.882689,0.963531,0][2.07159,-0.222692,0.306477][-0.980929,-0.185792,-0.0570913][0.831253,0.963726,0][2.07161,-0.223439,0.30862][-0.980929,-0.185792,-0.0570913][0.831136,0.963626,0][2.07161,-0.223439,0.30862][-0.980959,-0.18569,-0.0569103][0.795491,0.430532,0][1.97024,0.43003,-0.0762474][-0.980959,-0.18569,-0.0569103][0.844591,0.445857,0][1.97022,0.430778,-0.0783906][-0.980906,-0.185872,-0.0572317][0.844674,0.445987,0][1.67605,-1.02886,-0.762503][-0.874329,0.456055,0.166022][0.45876,0.606072,0][1.97024,-0.646859,-0.262542][-0.98624,0.153579,0.0611849][0.41612,0.604374,0][1.97022,-0.646112,-0.264686][-0.986232,0.153654,0.0611292][0.41621,0.604249,0][1.97022,-0.646112,-0.264686][-0.986232,0.153654,0.0611292][0.41621,0.604249,0][1.67603,-1.02811,-0.764645][-0.874208,0.456412,0.165678][0.458849,0.605947,0][1.67605,-1.02886,-0.762503][-0.874329,0.456055,0.166022][0.45876,0.606072,0][1.97024,0.43003,-0.0762474][-0.980959,-0.18569,-0.0569103][0.844591,0.445857,0][1.67605,1.26753,-0.0577188][-0.938793,-0.327398,-0.107137][0.899614,0.431698,0][1.67603,1.26828,-0.0598625][-0.938838,-0.327423,-0.106662][0.899697,0.431828,0][1.67603,1.26828,-0.0598625][-0.938838,-0.327423,-0.106662][0.899697,0.431828,0][1.97022,0.430778,-0.0783906][-0.980906,-0.185872,-0.0572317][0.844674,0.445987,0][1.97024,0.43003,-0.0762474][-0.980959,-0.18569,-0.0569103][0.844591,0.445857,0][1.21784,-1.33582,-1.14795][-0.67444,0.695466,0.247906][0.755488,0.194761,0][1.67605,-1.02886,-0.762503][-0.874329,0.456055,0.166022][0.786565,0.168619,0][1.67603,-1.02811,-0.764645][-0.874208,0.456412,0.165678][0.786564,0.168764,0][1.67603,-1.02811,-0.764645][-0.874208,0.456412,0.165678][0.786564,0.168764,0][1.21782,-1.33507,-1.15009][-0.674307,0.695726,0.247538][0.755487,0.194907,0][1.21784,-1.33582,-1.14795][-0.67444,0.695466,0.247906][0.755488,0.194761,0][1.67605,1.26753,-0.0577188][-0.938793,-0.327398,-0.107137][0.918952,0.502529,0][1.21784,1.76149,-0.208258][-0.674782,-0.698535,-0.238154][0.887875,0.492319,0][1.21782,1.76223,-0.210402][-0.674823,-0.698537,-0.238031][0.887874,0.492174,0][1.21782,1.76223,-0.210402][-0.674823,-0.698537,-0.238031][0.887874,0.492174,0][1.67603,1.26828,-0.0598625][-0.938838,-0.327423,-0.106662][0.918951,0.502384,0][1.67605,1.26753,-0.0577188][-0.938793,-0.327398,-0.107137][0.918952,0.502529,0][0.640461,-1.5329,-1.39059][-0.419058,0.856417,0.301564][0.716329,0.211218,0][1.21784,-1.33582,-1.14795][-0.67444,0.695466,0.247906][0.755488,0.194761,0][1.21782,-1.33507,-1.15009][-0.674307,0.695726,0.247538][0.755487,0.194907,0][1.21782,-1.33507,-1.15009][-0.674307,0.695726,0.247538][0.755487,0.194907,0][0.640445,-1.53215,-1.39273][-0.419065,0.856405,0.301589][0.716327,0.211363,0][0.640461,-1.5329,-1.39059][-0.419058,0.856417,0.301564][0.716329,0.211218,0][1.21784,1.76149,-0.208258][-0.674782,-0.698535,-0.238154][0.887875,0.492319,0][0.640461,2.07487,-0.306588][-0.416047,-0.859596,-0.296646][0.848716,0.48565,0][0.640444,2.07562,-0.308731][-0.416189,-0.859699,-0.296151][0.848714,0.485505,0][0.640444,2.07562,-0.308731][-0.416189,-0.859699,-0.296151][0.848714,0.485505,0][1.21782,1.76223,-0.210402][-0.674823,-0.698537,-0.238031][0.887874,0.492174,0][1.21784,1.76149,-0.208258][-0.674782,-0.698535,-0.238154][0.887875,0.492319,0][0.000432025,-1.60081,-1.47348][-0.141454,0.934517,0.326602][0.67292,0.21684,0][0.640461,-1.5329,-1.39059][-0.419058,0.856417,0.301564][0.716329,0.211218,0][0.640445,-1.53215,-1.39273][-0.419065,0.856405,0.301589][0.716327,0.211363,0][0.640445,-1.53215,-1.39273][-0.419065,0.856405,0.301589][0.716327,0.211363,0][0.00041569,-1.60006,-1.47563][-0.141458,0.934501,0.326645][0.672919,0.216985,0][0.000432025,-1.60081,-1.47348][-0.141454,0.934517,0.326602][0.67292,0.21684,0][0.640461,2.07487,-0.306588][-0.416047,-0.859596,-0.296646][0.848716,0.48565,0][0.000432553,2.18475,-0.34067][-0.143266,-0.935068,-0.324225][0.805307,0.483339,0][0.000415452,2.1855,-0.342814][-0.143215,-0.934924,-0.324665][0.805306,0.483193,0][0.000415452,2.1855,-0.342814][-0.143215,-0.934924,-0.324665][0.805306,0.483193,0][0.640444,2.07562,-0.308731][-0.416189,-0.859699,-0.296151][0.848714,0.485505,0][0.640461,2.07487,-0.306588][-0.416047,-0.859596,-0.296646][0.848716,0.48565,0][-0.639596,-1.5329,-1.39059][0.141282,0.935205,0.324703][0.629511,0.211218,0][0.000432025,-1.60081,-1.47348][-0.141454,0.934517,0.326602][0.67292,0.21684,0][0.00041569,-1.60006,-1.47563][-0.141458,0.934501,0.326645][0.672919,0.216985,0][0.00041569,-1.60006,-1.47563][-0.141458,0.934501,0.326645][0.672919,0.216985,0][-0.639613,-1.53215,-1.39273][0.141279,0.935216,0.324672][0.62951,0.211363,0][-0.639596,-1.5329,-1.39059][0.141282,0.935205,0.324703][0.629511,0.211218,0][0.000432553,2.18475,-0.34067][-0.143266,-0.935068,-0.324225][0.805307,0.483339,0][-0.639596,2.07487,-0.306587][0.143016,-0.934317,-0.326493][0.761898,0.48565,0][-0.639613,2.07562,-0.30873][0.14301,-0.934302,-0.32654][0.761897,0.485505,0][-0.639613,2.07562,-0.30873][0.14301,-0.934302,-0.32654][0.761897,0.485505,0][0.000415452,2.1855,-0.342814][-0.143215,-0.934924,-0.324665][0.805306,0.483193,0][0.000432553,2.18475,-0.34067][-0.143266,-0.935068,-0.324225][0.805307,0.483339,0][-1.21697,-1.33582,-1.14795][0.41762,0.859056,0.295999][0.590352,0.194761,0][-0.639596,-1.5329,-1.39059][0.141282,0.935205,0.324703][0.629511,0.211218,0][-0.639613,-1.53215,-1.39273][0.141279,0.935216,0.324672][0.62951,0.211363,0][-0.639613,-1.53215,-1.39273][0.141279,0.935216,0.324672][0.62951,0.211363,0][-1.21699,-1.33507,-1.15009][0.417622,0.859054,0.296005][0.590351,0.194907,0][-1.21697,-1.33582,-1.14795][0.41762,0.859056,0.295999][0.590352,0.194761,0][-0.639596,2.07487,-0.306587][0.143016,-0.934317,-0.326493][0.761898,0.48565,0][-1.21697,1.76149,-0.208258][0.414478,-0.858435,-0.302155][0.722739,0.492319,0][-1.21699,1.76223,-0.210402][0.414475,-0.858433,-0.302163][0.722738,0.492174,0][-1.21699,1.76223,-0.210402][0.414475,-0.858433,-0.302163][0.722738,0.492174,0][-0.639613,2.07562,-0.30873][0.14301,-0.934302,-0.32654][0.761897,0.485505,0][-0.639596,2.07487,-0.306587][0.143016,-0.934317,-0.326493][0.761898,0.48565,0][-1.67518,-1.02886,-0.762501][0.671231,0.701589,0.239212][0.559275,0.168619,0][-1.21697,-1.33582,-1.14795][0.41762,0.859056,0.295999][0.590352,0.194761,0][-1.21699,-1.33507,-1.15009][0.417622,0.859054,0.296005][0.590351,0.194907,0][-1.21699,-1.33507,-1.15009][0.417622,0.859054,0.296005][0.590351,0.194907,0][-1.6752,-1.02811,-0.764645][0.671234,0.701583,0.23922][0.559274,0.168764,0][-1.67518,-1.02886,-0.762501][0.671231,0.701589,0.239212][0.559275,0.168619,0][-1.21697,1.76149,-0.208258][0.414478,-0.858435,-0.302155][0.722739,0.492319,0][-1.67518,1.26753,-0.0577182][0.671208,-0.698373,-0.248504][0.691662,0.502529,0][-1.6752,1.26828,-0.0598622][0.671231,-0.698375,-0.248437][0.691661,0.502384,0][-1.6752,1.26828,-0.0598622][0.671231,-0.698375,-0.248437][0.691661,0.502384,0][-1.21699,1.76223,-0.210402][0.414475,-0.858433,-0.302163][0.722738,0.492174,0][-1.21697,1.76149,-0.208258][0.414478,-0.858435,-0.302155][0.722739,0.492319,0][-1.96937,-0.646859,-0.262543][-0.715544,0.657944,0.234747][0.951848,0.892691,0][-1.67518,-1.02886,-0.762501][0.671231,0.701589,0.239212][0.909174,0.892717,0][-1.6752,-1.02811,-0.764645][0.671234,0.701583,0.23922][0.90909,0.892588,0][-1.6752,-1.02811,-0.764645][0.671234,0.701583,0.23922][0.90909,0.892588,0][-1.96939,-0.646112,-0.264687][-0.961002,0.258754,0.0975834][0.951763,0.892563,0][-1.96937,-0.646859,-0.262543][-0.715544,0.657944,0.234747][0.951848,0.892691,0][-1.67518,1.26753,-0.0577182][0.671208,-0.698373,-0.248504][0.682535,0.852288,0][-1.96969,0.55275,0.121828][0.900479,-0.408498,-0.149221][0.632563,0.851146,0][-1.9697,0.553496,0.119685][0.900479,-0.408498,-0.149224][0.632651,0.851019,0][-1.9697,0.553496,0.119685][0.900479,-0.408498,-0.149224][0.632651,0.851019,0][-1.6752,1.26828,-0.0598622][0.671231,-0.698375,-0.248437][0.682623,0.852161,0][-1.67518,1.26753,-0.0577182][0.671208,-0.698373,-0.248504][0.682535,0.852288,0][-2.07076,-0.21322,0.280069][0.988182,-0.142211,-0.0572031][0.579629,0.847688,0][-1.9697,0.553496,0.119685][0.900479,-0.408498,-0.149224][0.632651,0.851019,0][-1.96969,0.55275,0.121828][0.900479,-0.408498,-0.149221][0.632563,0.851146,0][-1.96969,0.55275,0.121828][0.988179,-0.142217,-0.0572357][0.869663,0.250341,0][-2.07074,-0.213966,0.282212][0.988179,-0.142217,-0.0572357][0.816542,0.251076,0][-2.07076,-0.21322,0.280069][0.988179,-0.142217,-0.0572357][0.816619,0.250943,0][1.97029,-0.649099,-0.256112][0.969206,-0.14967,-0.195546][0.41585,0.604749,0][2.07166,-0.225679,0.315051][0.98953,-0.0595785,-0.131454][0.367644,0.603529,0][2.07161,-0.223439,0.30862][-0.98624,0.153579,0.0611849][0.367914,0.603154,0][2.07161,-0.223439,0.30862][-0.98624,0.153579,0.0611849][0.367914,0.603154,0][1.97024,-0.646859,-0.262542][-0.98624,0.153579,0.0611849][0.41612,0.604374,0][1.97029,-0.649099,-0.256112][0.969206,-0.14967,-0.195546][0.41585,0.604749,0][1.97024,0.43003,-0.0762474][-0.980917,-0.185834,-0.0571665][0.974894,0.656319,0][2.07161,-0.223439,0.30862][-0.980917,-0.185834,-0.0571665][0.923459,0.656514,0][2.07166,-0.225679,0.315051][-0.980917,-0.185834,-0.0571665][0.923105,0.656217,0][2.07166,-0.225679,0.315051][-0.980934,-0.185774,-0.0570603][0.795244,0.430142,0][1.97029,0.427791,-0.0698173][0.983687,0.15252,-0.0953775][0.844344,0.445466,0][1.97024,0.43003,-0.0762474][-0.980959,-0.18569,-0.0569103][0.844591,0.445857,0][1.6761,-1.0311,-0.756072][0.806192,-0.422938,-0.413737][0.45849,0.606447,0][1.97029,-0.649099,-0.256112][0.969206,-0.14967,-0.195546][0.41585,0.604749,0][1.97024,-0.646859,-0.262542][-0.98624,0.153579,0.0611849][0.41612,0.604374,0][1.97024,-0.646859,-0.262542][-0.98624,0.153579,0.0611849][0.41612,0.604374,0][1.67605,-1.02886,-0.762503][-0.874329,0.456055,0.166022][0.45876,0.606072,0][1.6761,-1.0311,-0.756072][0.806192,-0.422938,-0.413737][0.45849,0.606447,0][1.97029,0.427791,-0.0698173][0.983687,0.15252,-0.0953775][0.844344,0.445466,0][1.6761,1.26529,-0.0512892][0.839054,0.539148,0.0728585][0.899367,0.431308,0][1.67605,1.26753,-0.0577188][-0.938793,-0.327398,-0.107137][0.899614,0.431698,0][1.67605,1.26753,-0.0577188][-0.938793,-0.327398,-0.107137][0.899614,0.431698,0][1.97024,0.43003,-0.0762474][-0.980959,-0.18569,-0.0569103][0.844591,0.445857,0][1.97029,0.427791,-0.0698173][0.983687,0.15252,-0.0953775][0.844344,0.445466,0][1.21789,-1.33806,-1.14152][0.589077,-0.472369,-0.655633][0.755491,0.194325,0][1.6761,-1.0311,-0.756072][0.806192,-0.422938,-0.413737][0.786568,0.168183,0][1.67605,-1.02886,-0.762503][-0.874329,0.456055,0.166022][0.786565,0.168619,0][1.67605,-1.02886,-0.762503][-0.874329,0.456055,0.166022][0.786565,0.168619,0][1.21784,-1.33582,-1.14795][-0.67444,0.695466,0.247906][0.755488,0.194761,0][1.21789,-1.33806,-1.14152][0.589077,-0.472369,-0.655633][0.755491,0.194325,0][1.6761,1.26529,-0.0512892][0.839054,0.539148,0.0728585][0.918955,0.502965,0][1.21789,1.75925,-0.201828][0.603988,0.79268,-0.0828076][0.887878,0.492755,0][1.21784,1.76149,-0.208258][-0.674782,-0.698535,-0.238154][0.887875,0.492319,0][1.21784,1.76149,-0.208258][-0.674782,-0.698535,-0.238154][0.887875,0.492319,0][1.67605,1.26753,-0.0577188][-0.938793,-0.327398,-0.107137][0.918952,0.502529,0][1.6761,1.26529,-0.0512892][0.839054,0.539148,0.0728585][0.918955,0.502965,0][0.640511,-1.53514,-1.38416][0.297234,-0.491477,-0.818598][0.716332,0.210782,0][1.21789,-1.33806,-1.14152][0.589077,-0.472369,-0.655633][0.755491,0.194325,0][1.21784,-1.33582,-1.14795][-0.67444,0.695466,0.247906][0.755488,0.194761,0][1.21784,-1.33582,-1.14795][-0.67444,0.695466,0.247906][0.755488,0.194761,0][0.640461,-1.5329,-1.39059][-0.419058,0.856417,0.301564][0.716329,0.211218,0][0.640511,-1.53514,-1.38416][0.297234,-0.491477,-0.818598][0.716332,0.210782,0][1.21789,1.75925,-0.201828][0.603988,0.79268,-0.0828076][0.887878,0.492755,0][0.640511,2.07263,-0.300157][0.317679,0.924987,-0.208517][0.848719,0.486086,0][0.640461,2.07487,-0.306588][-0.416047,-0.859596,-0.296646][0.848716,0.48565,0][0.640461,2.07487,-0.306588][-0.416047,-0.859596,-0.296646][0.848716,0.48565,0][1.21784,1.76149,-0.208258][-0.674782,-0.698535,-0.238154][0.887875,0.492319,0][1.21789,1.75925,-0.201828][0.603988,0.79268,-0.0828076][0.887878,0.492755,0][0.000482308,-1.60305,-1.46705][0.00414317,-0.48596,-0.873971][0.672923,0.216404,0][0.640511,-1.53514,-1.38416][0.297234,-0.491477,-0.818598][0.716332,0.210782,0][0.640461,-1.5329,-1.39059][-0.419058,0.856417,0.301564][0.716329,0.211218,0][0.640461,-1.5329,-1.39059][-0.419058,0.856417,0.301564][0.716329,0.211218,0][0.000432025,-1.60081,-1.47348][-0.141454,0.934517,0.326602][0.67292,0.21684,0][0.000482308,-1.60305,-1.46705][0.00414317,-0.48596,-0.873971][0.672923,0.216404,0][0.640511,2.07263,-0.300157][0.317679,0.924987,-0.208517][0.848719,0.486086,0][0.00048207,2.18251,-0.33424][-0.00956008,0.960039,-0.279703][0.80531,0.483775,0][0.000432553,2.18475,-0.34067][-0.143266,-0.935068,-0.324225][0.805307,0.483339,0][0.000432553,2.18475,-0.34067][-0.143266,-0.935068,-0.324225][0.805307,0.483339,0][0.640461,2.07487,-0.306588][-0.416047,-0.859596,-0.296646][0.848716,0.48565,0][0.640511,2.07263,-0.300157][0.317679,0.924987,-0.208517][0.848719,0.486086,0][-0.639547,-1.53514,-1.38416][-0.305277,-0.486651,-0.818521][0.629515,0.210781,0][0.000482308,-1.60305,-1.46705][0.00414317,-0.48596,-0.873971][0.672923,0.216404,0][0.000432025,-1.60081,-1.47348][-0.141454,0.934517,0.326602][0.67292,0.21684,0][0.000432025,-1.60081,-1.47348][-0.141454,0.934517,0.326602][0.67292,0.21684,0][-0.639596,-1.5329,-1.39059][0.141282,0.935205,0.324703][0.629511,0.211218,0][-0.639547,-1.53514,-1.38416][-0.305277,-0.486651,-0.818521][0.629515,0.210781,0][0.00048207,2.18251,-0.33424][-0.00956008,0.960039,-0.279703][0.80531,0.483775,0][-0.639547,2.07263,-0.300156][-0.324928,0.914589,-0.240725][0.761902,0.486087,0][-0.639596,2.07487,-0.306587][0.143016,-0.934317,-0.326493][0.761898,0.48565,0][-0.639596,2.07487,-0.306587][0.143016,-0.934317,-0.326493][0.761898,0.48565,0][0.000432553,2.18475,-0.34067][-0.143266,-0.935068,-0.324225][0.805307,0.483339,0][0.00048207,2.18251,-0.33424][-0.00956008,0.960039,-0.279703][0.80531,0.483775,0][-1.21692,-1.33806,-1.14152][-0.590699,-0.453416,-0.667449][0.590356,0.194325,0][-0.639547,-1.53514,-1.38416][-0.305277,-0.486651,-0.818521][0.629515,0.210781,0][-0.639596,-1.5329,-1.39059][0.141282,0.935205,0.324703][0.629511,0.211218,0][-0.639596,-1.5329,-1.39059][0.141282,0.935205,0.324703][0.629511,0.211218,0][-1.21697,-1.33582,-1.14795][0.41762,0.859056,0.295999][0.590352,0.194761,0][-1.21692,-1.33806,-1.14152][-0.590699,-0.453416,-0.667449][0.590356,0.194325,0][-0.639547,2.07263,-0.300156][-0.324928,0.914589,-0.240725][0.761902,0.486087,0][-1.21692,1.75925,-0.201828][-0.615612,0.775462,-0.140287][0.722742,0.492755,0][-1.21697,1.76149,-0.208258][0.414478,-0.858435,-0.302155][0.722739,0.492319,0][-1.21697,1.76149,-0.208258][0.414478,-0.858435,-0.302155][0.722739,0.492319,0][-0.639596,2.07487,-0.306587][0.143016,-0.934317,-0.326493][0.761898,0.48565,0][-0.639547,2.07263,-0.300156][-0.324928,0.914589,-0.240725][0.761902,0.486087,0][-1.67513,-1.0311,-0.756071][-0.829868,-0.359638,-0.426591][0.559278,0.168183,0][-1.21692,-1.33806,-1.14152][-0.590699,-0.453416,-0.667449][0.590356,0.194325,0][-1.21697,-1.33582,-1.14795][0.41762,0.859056,0.295999][0.590352,0.194761,0][-1.21697,-1.33582,-1.14795][0.41762,0.859056,0.295999][0.590352,0.194761,0][-1.67518,-1.02886,-0.762501][0.671231,0.701589,0.239212][0.559275,0.168619,0][-1.67513,-1.0311,-0.756071][-0.829868,-0.359638,-0.426591][0.559278,0.168183,0][-1.21692,1.75925,-0.201828][-0.615612,0.775462,-0.140287][0.722742,0.492755,0][-1.67513,1.26529,-0.0512884][-0.836239,0.548152,-0.0152811][0.691665,0.502965,0][-1.67518,1.26753,-0.0577182][0.671208,-0.698373,-0.248504][0.691662,0.502529,0][-1.67518,1.26753,-0.0577182][0.671208,-0.698373,-0.248504][0.691662,0.502529,0][-1.21697,1.76149,-0.208258][0.414478,-0.858435,-0.302155][0.722739,0.492319,0][-1.21692,1.75925,-0.201828][-0.615612,0.775462,-0.140287][0.722742,0.492755,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.952102,0.893077,0][-1.67513,-1.0311,-0.756071][-0.829868,-0.359638,-0.426591][0.909429,0.893102,0][-1.67518,-1.02886,-0.762501][0.671231,0.701589,0.239212][0.909174,0.892717,0][-1.67518,-1.02886,-0.762501][0.671231,0.701589,0.239212][0.909174,0.892717,0][-1.96937,-0.646859,-0.262543][-0.715544,0.657944,0.234747][0.951848,0.892691,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.952102,0.893077,0][-1.67513,1.26529,-0.0512884][-0.836239,0.548152,-0.0152811][0.682273,0.852668,0][-1.96964,0.55051,0.128258][-0.974995,0.208523,-0.0768278][0.632301,0.851526,0][-1.96969,0.55275,0.121828][0.900479,-0.408498,-0.149221][0.632563,0.851146,0][-1.96969,0.55275,0.121828][0.900479,-0.408498,-0.149221][0.632563,0.851146,0][-1.67518,1.26753,-0.0577182][0.671208,-0.698373,-0.248504][0.682535,0.852288,0][-1.67513,1.26529,-0.0512884][-0.836239,0.548152,-0.0152811][0.682273,0.852668,0][-2.07074,-0.213966,0.282212][0.988183,-0.142208,-0.0571906][0.579542,0.847815,0][-1.96969,0.55275,0.121828][0.900479,-0.408498,-0.149221][0.632563,0.851146,0][-1.96964,0.55051,0.128258][-0.974995,0.208523,-0.0768278][0.632301,0.851526,0][-1.96964,0.55051,0.128258][0.988183,-0.142209,-0.0571938][0.593507,0.651086,0][-2.07069,-0.216206,0.288643][0.988183,-0.142209,-0.0571938][0.540385,0.651821,0][-2.07074,-0.213966,0.282212][0.988183,-0.142209,-0.0571938][0.540618,0.651422,0] \ No newline at end of file diff --git a/charcustom/hats/fonts/StageProp.mesh b/charcustom/hats/fonts/StageProp.mesh new file mode 100644 index 0000000..b2f4b28 --- /dev/null +++ b/charcustom/hats/fonts/StageProp.mesh @@ -0,0 +1,3 @@ +version 1.00 +152 +[-0.684571,2.05638,-0.235496][-0.17365,0.984807,0][0.51759,0.228315,0][-0.886906,2.02071,-0.120364][-0.17365,0.984807,0][0.545166,0.271589,0][-0.690521,2.05534,0.235497][-0.17365,0.984807,0][0.47439,0.382653,0][-0.886906,2.02071,-0.120364][-0.17365,0.984807,0][0.545166,0.271589,0][-0.889881,2.02018,0.115133][-0.17365,0.984807,0][0.523566,0.348757,0][-0.690521,2.05534,0.235497][-0.17365,0.984807,0][0.47439,0.382653,0][-0.690521,2.05534,0.235497][-0.17365,0.984807,0][0.47439,0.382653,0][-0.488186,2.09101,0.120365][-0.173647,0.984808,0][0.446814,0.339379,0][-0.684571,2.05638,-0.235496][-0.17365,0.984807,0][0.51759,0.228315,0][-0.488186,2.09101,0.120365][-0.173647,0.984808,0][0.446814,0.339379,0][-0.485211,2.09154,-0.115132][-0.173647,0.984808,0][0.468413,0.26221,0][-0.684571,2.05638,-0.235496][-0.17365,0.984807,0][0.51759,0.228315,0][-0.485211,2.09154,-0.115132][-0.173647,0.984808,0][0.089455,0.015964,0][-0.346087,1.82421,-0.165896][0.428485,0.378776,-0.820323][0.089455,0.084309,0][-0.684571,2.05638,-0.235496][-0.17365,0.984807,0][0.033405,0.015964,0][-0.346087,1.82421,-0.165896][0.428485,0.378776,-0.820323][0.089455,0.084309,0][-0.633349,1.77356,-0.339331][0.428484,0.378776,-0.820323][0.008692,0.084309,0][-0.684571,2.05638,-0.235496][-0.17365,0.984807,0][0.033405,0.015964,0][-0.684571,2.05638,-0.235496][-0.17365,0.984807,0][0.264701,0.015239,0][-0.633349,1.77356,-0.339331][0.428484,0.378776,-0.820323][0.278902,0.084721,0][-0.886906,2.02071,-0.120364][-0.17365,0.984807,0][0.200287,0.015239,0][-0.633349,1.77356,-0.339331][0.428484,0.378776,-0.820323][0.278902,0.084721,0][-0.924898,1.72215,-0.173435][-0.511313,0.213063,-0.832564][0.186086,0.084721,0][-0.886906,2.02071,-0.120364][-0.17365,0.984807,0][0.200287,0.015239,0][-0.886906,2.02071,-0.120364][-0.17365,0.984807,0][0.145922,0.017748,0][-0.924898,1.72215,-0.173435][-0.511313,0.213063,-0.832564][0.170635,0.086093,0][-0.889881,2.02018,0.115133][-0.17365,0.984807,0][0.089872,0.017748,0][-0.924898,1.72215,-0.173435][-0.511313,0.213063,-0.832564][0.170635,0.086093,0][-0.929185,1.7214,0.165897][-0.991651,0.128368,-0.0122415][0.089872,0.086093,0][-0.889881,2.02018,0.115133][-0.17365,0.984807,0][0.089872,0.017748,0][-0.889881,2.02018,0.115133][-0.17365,0.984807,0][0.089872,0.017748,0][-0.929185,1.7214,0.165897][-0.991651,0.128368,-0.0122415][0.089872,0.086093,0][-0.690521,2.05534,0.235497][-0.17365,0.984807,0][0.033823,0.017748,0][-0.929185,1.7214,0.165897][-0.991651,0.128368,-0.0122415][0.089872,0.086093,0][-0.641923,1.77205,0.339332][-0.532192,0.209382,0.820324][0.009109,0.086093,0][-0.690521,2.05534,0.235497][-0.17365,0.984807,0][0.033823,0.017748,0][-0.690521,2.05534,0.235497][-0.17365,0.984807,0][0.264401,0.01524,0][-0.641923,1.77205,0.339332][-0.532192,0.209382,0.820324][0.278602,0.08472,0][-0.488186,2.09101,0.120365][-0.173647,0.984808,0][0.199986,0.01524,0][-0.641923,1.77205,0.339332][-0.532192,0.209382,0.820324][0.278602,0.08472,0][-0.350374,1.82346,0.173436][0.407605,0.375092,0.832565][0.185785,0.08472,0][-0.488186,2.09101,0.120365][-0.173647,0.984808,0][0.199986,0.01524,0][-0.488186,2.09101,0.120365][-0.173647,0.984808,0][0.145505,0.015964,0][-0.350374,1.82346,0.173436][0.407605,0.375092,0.832565][0.170218,0.084309,0][-0.485211,2.09154,-0.115132][-0.173647,0.984808,0][0.089455,0.015964,0][-0.350374,1.82346,0.173436][0.407605,0.375092,0.832565][0.170218,0.084309,0][-0.346087,1.82421,-0.165896][0.428485,0.378776,-0.820323][0.089455,0.084309,0][-0.485211,2.09154,-0.115132][-0.173647,0.984808,0][0.089455,0.015964,0][-0.346087,1.82421,-0.165896][0.428485,0.378776,-0.820323][0.089455,0.082691,0][-0.39055,1.55469,-0.115132][0.532413,-0.240683,-0.811547][0.089455,0.143971,0][-0.633349,1.77356,-0.339331][0.428484,0.378776,-0.820323][0.008692,0.082691,0][-0.39055,1.55469,-0.115132][0.532413,-0.240683,-0.811547][0.089455,0.143971,0][-0.58991,1.51954,-0.235496][0.532413,-0.240682,-0.811547][0.033405,0.143971,0][-0.633349,1.77356,-0.339331][0.428484,0.378776,-0.820323][0.008692,0.082691,0][-0.633349,1.77356,-0.339331][0.428484,0.378776,-0.820323][0.278902,0.084721,0][-0.58991,1.51954,-0.235496][0.532413,-0.240682,-0.811547][0.264701,0.14702,0][-0.924898,1.72215,-0.173435][-0.511313,0.213063,-0.832564][0.186086,0.084721,0][-0.58991,1.51954,-0.235496][0.532413,-0.240682,-0.811547][0.264701,0.14702,0][-0.792246,1.48386,-0.120364][-0.39733,-0.40462,-0.823657][0.200287,0.14702,0][-0.924898,1.72215,-0.173435][-0.511313,0.213063,-0.832564][0.186086,0.084721,0][-0.924898,1.72215,-0.173435][-0.511313,0.213063,-0.832564][0.170635,0.081238,0][-0.792246,1.48386,-0.120364][-0.39733,-0.40462,-0.823657][0.145922,0.142518,0][-0.929185,1.7214,0.165897][-0.991651,0.128368,-0.0122415][0.089872,0.081238,0][-0.792246,1.48386,-0.120364][-0.39733,-0.40462,-0.823657][0.145922,0.142518,0][-0.79522,1.48333,0.115133][-0.872529,-0.488412,-0.0121099][0.089872,0.142518,0][-0.929185,1.7214,0.165897][-0.991651,0.128368,-0.0122415][0.089872,0.081238,0][-0.929185,1.7214,0.165897][-0.991651,0.128368,-0.0122415][0.089872,0.081238,0][-0.79522,1.48333,0.115133][-0.872529,-0.488412,-0.0121099][0.089872,0.142518,0][-0.641923,1.77205,0.339332][-0.532192,0.209382,0.820324][0.009109,0.081238,0][-0.79522,1.48333,0.115133][-0.872529,-0.488412,-0.0121099][0.089872,0.142518,0][-0.59586,1.51849,0.235497][-0.417986,-0.408264,0.811547][0.033823,0.142518,0][-0.641923,1.77205,0.339332][-0.532192,0.209382,0.820324][0.009109,0.081238,0][-0.641923,1.77205,0.339332][-0.532192,0.209382,0.820324][0.278602,0.08472,0][-0.59586,1.51849,0.235497][-0.417986,-0.408264,0.811547][0.264401,0.147019,0][-0.350374,1.82346,0.173436][0.407605,0.375092,0.832565][0.185785,0.08472,0][-0.59586,1.51849,0.235497][-0.417986,-0.408264,0.811547][0.264401,0.147019,0][-0.393525,1.55416,0.120365][0.511756,-0.244324,0.823657][0.199986,0.147019,0][-0.350374,1.82346,0.173436][0.407605,0.375092,0.832565][0.185785,0.08472,0][-0.350374,1.82346,0.173436][0.407605,0.375092,0.832565][0.170218,0.082691,0][-0.393525,1.55416,0.120365][0.511756,-0.244324,0.823657][0.145505,0.143971,0][-0.346087,1.82421,-0.165896][0.428485,0.378776,-0.820323][0.089455,0.082691,0][-0.393525,1.55416,0.120365][0.511756,-0.244324,0.823657][0.145505,0.143971,0][-0.39055,1.55469,-0.115132][0.532413,-0.240683,-0.811547][0.089455,0.143971,0][-0.346087,1.82421,-0.165896][0.428485,0.378776,-0.820323][0.089455,0.082691,0][-0.39055,1.55469,-0.115132][0.532413,-0.240683,-0.811547][0.132378,0.161417,0][-0.148683,0.182989,-0.115132][0.503303,0.088746,-0.859541][0.132378,0.497819,0][-0.58991,1.51954,-0.235496][0.532413,-0.240682,-0.811547][0.075908,0.161417,0][-0.148683,0.182989,-0.115132][0.503303,0.088746,-0.859541][0.132378,0.497819,0][-0.348043,0.147837,-0.235497][0.503303,0.0887461,-0.859541][0.075908,0.497819,0][-0.58991,1.51954,-0.235496][0.532413,-0.240682,-0.811547][0.075908,0.161417,0][-0.58991,1.51954,-0.235496][0.532413,-0.240682,-0.811547][0.264701,0.163201,0][-0.348043,0.147837,-0.235497][0.503303,0.0887461,-0.859541][0.264701,0.49991,0][-0.792246,1.48386,-0.120364][-0.39733,-0.40462,-0.823657][0.200287,0.163201,0][-0.348043,0.147837,-0.235497][0.503303,0.0887461,-0.859541][0.264701,0.49991,0][-0.550378,0.112159,-0.120364][-0.481424,-0.0848879,-0.872367][0.200287,0.49991,0][-0.792246,1.48386,-0.120364][-0.39733,-0.40462,-0.823657][0.200287,0.163201,0][-0.792246,1.48386,-0.120364][-0.39733,-0.40462,-0.823657][0.189268,0.161586,0][-0.550378,0.112159,-0.120364][-0.481424,-0.0848879,-0.872367][0.189268,0.497987,0][-0.79522,1.48333,0.115133][-0.872529,-0.488412,-0.0121099][0.132798,0.161586,0][-0.550378,0.112159,-0.120364][-0.481424,-0.0848879,-0.872367][0.189268,0.497987,0][-0.553353,0.111635,0.115132][-0.984727,-0.173634,-0.0128257][0.132798,0.497987,0][-0.79522,1.48333,0.115133][-0.872529,-0.488412,-0.0121099][0.132798,0.161586,0][-0.79522,1.48333,0.115133][-0.872529,-0.488412,-0.0121099][0.132798,0.161586,0][-0.553353,0.111635,0.115132][-0.984727,-0.173634,-0.0128257][0.132798,0.497987,0][-0.59586,1.51849,0.235497][-0.417986,-0.408264,0.811547][0.076328,0.161586,0][-0.553353,0.111635,0.115132][-0.984727,-0.173634,-0.0128257][0.132798,0.497987,0][-0.353992,0.146787,0.235497][-0.503303,-0.088746,0.859541][0.076328,0.497987,0][-0.59586,1.51849,0.235497][-0.417986,-0.408264,0.811547][0.076328,0.161586,0][-0.59586,1.51849,0.235497][-0.417986,-0.408264,0.811547][0.264401,0.1632,0][-0.353992,0.146787,0.235497][-0.503303,-0.088746,0.859541][0.264401,0.49991,0][-0.393525,1.55416,0.120365][0.511756,-0.244324,0.823657][0.199986,0.1632,0][-0.353992,0.146787,0.235497][-0.503303,-0.088746,0.859541][0.264401,0.49991,0][-0.151657,0.182464,0.120365][0.481424,0.0848879,0.872367][0.199986,0.49991,0][-0.393525,1.55416,0.120365][0.511756,-0.244324,0.823657][0.199986,0.1632,0][-0.393525,1.55416,0.120365][0.511756,-0.244324,0.823657][0.188848,0.161417,0][-0.151657,0.182464,0.120365][0.481424,0.0848879,0.872367][0.188848,0.497819,0][-0.39055,1.55469,-0.115132][0.532413,-0.240683,-0.811547][0.132378,0.161417,0][-0.151657,0.182464,0.120365][0.481424,0.0848879,0.872367][0.188848,0.497819,0][-0.148683,0.182989,-0.115132][0.503303,0.088746,-0.859541][0.132378,0.497819,0][-0.39055,1.55469,-0.115132][0.532413,-0.240683,-0.811547][0.132378,0.161417,0][-0.148683,0.182989,-0.115132][0.503303,0.088746,-0.859541][0.118046,0.86084,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.118046,0.896611,0][-0.348043,0.147837,-0.235497][0.503303,0.0887461,-0.859541][0.061997,0.86084,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.118046,0.896611,0][-0.320609,-7.67708e-005,-0.339332][0.342888,0.581501,-0.737756][0.037283,0.896611,0][-0.348043,0.147837,-0.235497][0.503303,0.0887461,-0.859541][0.061997,0.86084,0][-0.348043,0.147837,-0.235497][0.503303,0.0887461,-0.859541][0.29228,0.859687,0][-0.320609,-7.67708e-005,-0.339332][0.342888,0.581501,-0.737756][0.306481,0.896052,0][-0.550378,0.112159,-0.120364][-0.481424,-0.0848879,-0.872367][0.227866,0.859687,0][-0.320609,-7.67708e-005,-0.339332][0.342888,0.581501,-0.737756][0.306481,0.896052,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.213665,0.896052,0][-0.550378,0.112159,-0.120364][-0.481424,-0.0848879,-0.872367][0.227866,0.859687,0][-0.550378,0.112159,-0.120364][-0.481424,-0.0848879,-0.872367][0.173501,0.861006,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.198214,0.896776,0][-0.553353,0.111635,0.115132][-0.984727,-0.173634,-0.0128257][0.117451,0.861006,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.198214,0.896776,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.117451,0.896776,0][-0.553353,0.111635,0.115132][-0.984727,-0.173634,-0.0128257][0.117451,0.861006,0][-0.553353,0.111635,0.115132][-0.984727,-0.173634,-0.0128257][0.117451,0.861006,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.117451,0.896776,0][-0.353992,0.146787,0.235497][-0.503303,-0.088746,0.859541][0.061402,0.861006,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.117451,0.896776,0][-0.329182,-0.00158858,0.339332][-0.521094,0.429157,0.737757][0.036688,0.896776,0][-0.353992,0.146787,0.235497][-0.503303,-0.088746,0.859541][0.061402,0.861006,0][-0.353992,0.146787,0.235497][-0.503303,-0.088746,0.859541][0.29198,0.859687,0][-0.329182,-0.00158858,0.339332][-0.521094,0.429157,0.737757][0.306181,0.896052,0][-0.151657,0.182464,0.120365][0.481424,0.0848879,0.872367][0.227565,0.859687,0][-0.329182,-0.00158858,0.339332][-0.521094,0.429157,0.737757][0.306181,0.896052,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.213364,0.896052,0][-0.151657,0.182464,0.120365][0.481424,0.0848879,0.872367][0.227565,0.859687,0][-0.151657,0.182464,0.120365][0.481424,0.0848879,0.872367][0.174096,0.86084,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.198809,0.896611,0][-0.148683,0.182989,-0.115132][0.503303,0.088746,-0.859541][0.118046,0.86084,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.198809,0.896611,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.118046,0.896611,0][-0.148683,0.182989,-0.115132][0.503303,0.088746,-0.859541][0.118046,0.86084,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.517146,0.030088,0][0.145231,-0.248164,-0.164306][0.391021,-0.904323,0.171183][0.571521,0.03275,0][0.020982,-0.270072,0.00376929][0.391021,-0.904323,0.171183][0.563752,0.091198,0][-0.0719849,-0.60939,-0.0853107][0.639918,-0.223102,-0.735344][0.837735,0.548001,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.870688,0.514985,0][0.063873,-0.513319,0.00376923][0.639918,-0.223102,-0.735344][0.847211,0.600429,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.870688,0.514985,0][0.020982,-0.270072,0.00376929][0.391021,-0.904323,0.171183][0.880165,0.600429,0][0.063873,-0.513319,0.00376923][0.639918,-0.223102,-0.735344][0.847211,0.600429,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.995774,0.765955,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.937785,0.72882,0][-0.320609,-7.67708e-005,-0.339332][0.342888,0.581501,-0.737756][0.995774,0.712358,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.937785,0.72882,0][-0.253601,-0.390604,-0.197126][0.0705457,-0.330597,-0.941132][0.937785,0.689897,0][-0.320609,-7.67708e-005,-0.339332][0.342888,0.581501,-0.737756][0.995774,0.712358,0][-0.393715,-0.41531,-0.198951][-0.0623928,-0.984272,0.165277][0.476541,0.023855,0][-0.557829,-0.372132,-0.00376948][-0.0623928,-0.984272,0.165277][0.466096,0.091935,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.427203,0.039189,0][-0.352213,-0.658802,-0.0889604][0.0821811,-0.39861,-0.913431][0.843197,0.667188,0][-0.393715,-0.41531,-0.198951][-0.0623928,-0.984272,0.165277][0.876289,0.684491,0][-0.2121,-0.634097,-0.0871357][0.0821811,-0.39861,-0.913431][0.843197,0.705953,0][-0.393715,-0.41531,-0.198951][-0.0623928,-0.984272,0.165277][0.876289,0.684491,0][-0.253601,-0.390604,-0.197126][0.0705457,-0.330597,-0.941132][0.876289,0.723255,0][-0.2121,-0.634097,-0.0871357][0.0821811,-0.39861,-0.913431][0.843197,0.705953,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.512702,0.153045,0][-0.682078,-0.394041,0.164306][-0.0581427,-0.983522,-0.171183][0.458327,0.150383,0][-0.557829,-0.372132,-0.00376948][-0.0623928,-0.984272,0.165277][0.466096,0.091935,0][-0.354415,-0.659191,0.0853103][-0.525021,-0.428512,0.735344][0.835827,0.548527,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.86878,0.515513,0][-0.514938,-0.61538,-0.00376954][-0.525021,-0.428512,0.735344][0.845304,0.600955,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.86878,0.515513,0][-0.557829,-0.372132,-0.00376948][-0.0623928,-0.984272,0.165277][0.878257,0.600955,0][-0.514938,-0.61538,-0.00376954][-0.525021,-0.428512,0.735344][0.845304,0.600955,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.995775,0.765607,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.937786,0.728473,0][-0.329182,-0.00158858,0.339332][-0.521094,0.429157,0.737757][0.995775,0.712011,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.937786,0.728473,0][-0.258581,-0.391482,0.197126][0.0467796,-0.334788,0.941131][0.937786,0.68955,0][-0.329182,-0.00158858,0.339332][-0.521094,0.429157,0.737757][0.995775,0.712011,0][-0.118467,-0.366776,0.198951][0.395271,-0.903573,-0.165277][0.553307,0.159279,0][0.020982,-0.270072,0.00376929][0.391021,-0.904323,0.171183][0.563752,0.091198,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.602645,0.143944,0][-0.0741869,-0.609779,0.08896][0.0591078,-0.402679,0.913431][0.843196,0.666843,0][-0.118467,-0.366776,0.198951][0.395271,-0.903573,-0.165277][0.87629,0.684145,0][-0.2143,-0.634485,0.0871354][0.0591078,-0.402679,0.913431][0.843196,0.705607,0][-0.118467,-0.366776,0.198951][0.395271,-0.903573,-0.165277][0.87629,0.684145,0][-0.258581,-0.391482,0.197126][0.0467796,-0.334788,0.941131][0.87629,0.722909,0][-0.2143,-0.634485,0.0871354][0.0591078,-0.402679,0.913431][0.843196,0.705607,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.995774,0.765955,0][0.0887592,0.0721059,-0.164306][0.00059496,0.0703161,-0.997525][0.995774,0.799874,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.937785,0.72882,0][0.0887592,0.0721059,-0.164306][0.00059496,0.0703161,-0.997525][0.995774,0.799874,0][0.145231,-0.248164,-0.164306][0.391021,-0.904323,0.171183][0.948179,0.799874,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.937785,0.72882,0][-0.118467,-0.366776,0.198951][0.395271,-0.903573,-0.165277][0.937786,0.650628,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.948179,0.570898,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.995775,0.604818,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.948179,0.570898,0][0.0844725,0.07135,0.175026][-0.0126319,-0.00222757,0.999918][0.995775,0.570898,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.995775,0.604818,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.602645,0.143944,0][0.020982,-0.270072,0.00376929][0.391021,-0.904323,0.171183][0.563752,0.091198,0][0.145231,-0.248164,-0.164306][0.391021,-0.904323,0.171183][0.571521,0.03275,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.425131,0.354324,0][0.0844725,0.07135,0.175026][-0.0126319,-0.00222757,0.999918][0.4018,0.351473,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.456255,0.24313,0][0.0844725,0.07135,0.175026][-0.0126319,-0.00222757,0.999918][0.4018,0.351473,0][0.0887592,0.0721059,-0.164306][0.00059496,0.0703161,-0.997525][0.432924,0.24028,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.456255,0.24313,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.995775,0.765607,0][-0.738551,-0.0737712,0.164306][-0.0246086,0.0658715,0.997525][0.995775,0.799527,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.937786,0.728473,0][-0.738551,-0.0737712,0.164306][-0.0246086,0.0658715,0.997525][0.995775,0.799527,0][-0.682078,-0.394041,0.164306][-0.0581427,-0.983522,-0.171183][0.948179,0.799527,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.937786,0.728473,0][-0.393715,-0.41531,-0.198951][-0.0623928,-0.984272,0.165277][0.937785,0.650975,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.948179,0.571245,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.995774,0.605165,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.948179,0.571245,0][-0.734264,-0.0730153,-0.175026][0.0126319,0.00222757,-0.999918][0.995774,0.571245,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.995774,0.605165,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.427203,0.039189,0][-0.557829,-0.372132,-0.00376948][-0.0623928,-0.984272,0.165277][0.466096,0.091935,0][-0.682078,-0.394041,0.164306][-0.0581427,-0.983522,-0.171183][0.458327,0.150383,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.566849,0.256644,0][-0.734264,-0.0730153,-0.175026][0.0126319,0.00222757,-0.999918][0.59018,0.259494,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.535725,0.367838,0][-0.734264,-0.0730153,-0.175026][0.0126319,0.00222757,-0.999918][0.59018,0.259494,0][-0.738551,-0.0737712,0.164306][-0.0246086,0.0658715,0.997525][0.559056,0.370688,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.535725,0.367838,0][0.0844725,0.07135,0.175026][-0.0126319,-0.00222757,0.999918][0.4018,0.351473,0][0.636328,-0.184326,0.0945439][0.421247,0.906916,0.00734178][0.316068,0.311559,0][0.0887592,0.0721059,-0.164306][0.00059496,0.0703161,-0.997525][0.432924,0.24028,0][0.636328,-0.184326,0.0945439][0.421247,0.906916,0.00734178][0.316068,0.311559,0][0.63842,-0.183957,-0.0710498][0.421247,0.906916,0.00734303][0.331256,0.257296,0][0.0887592,0.0721059,-0.164306][0.00059496,0.0703161,-0.997525][0.432924,0.24028,0][0.0887592,0.0721059,-0.164306][0.00059496,0.0703161,-0.997525][0.995774,0.799874,0][0.63842,-0.183957,-0.0710498][0.421247,0.906916,0.00734303][0.9449,0.922381,0][0.145231,-0.248164,-0.164306][0.391021,-0.904323,0.171183][0.948179,0.799874,0][0.63842,-0.183957,-0.0710498][0.421247,0.906916,0.00734303][0.9449,0.922381,0][0.666544,-0.343456,-0.0710499][0.181673,0.0320341,-0.982837][0.921196,0.922381,0][0.145231,-0.248164,-0.164306][0.391021,-0.904323,0.171183][0.948179,0.799874,0][0.145231,-0.248164,-0.164306][0.391021,-0.904323,0.171183][0.571521,0.03275,0][0.666544,-0.343456,-0.0710499][0.181673,0.0320341,-0.982837][0.673189,0.049767,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.602645,0.143944,0][0.666544,-0.343456,-0.0710499][0.181673,0.0320341,-0.982837][0.673189,0.049767,0][0.664452,-0.343825,0.0945439][-0.179042,-0.983831,-0.00445419][0.688377,0.104029,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.602645,0.143944,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.948179,0.570898,0][0.664452,-0.343825,0.0945439][-0.179042,-0.983831,-0.00445419][0.921196,0.42095,0][0.0844725,0.07135,0.175026][-0.0126319,-0.00222757,0.999918][0.995775,0.570898,0][0.664452,-0.343825,0.0945439][-0.179042,-0.983831,-0.00445419][0.921196,0.42095,0][0.636328,-0.184326,0.0945439][0.421247,0.906916,0.00734178][0.9449,0.42095,0][0.0844725,0.07135,0.175026][-0.0126319,-0.00222757,0.999918][0.995775,0.570898,0][-0.734264,-0.0730153,-0.175026][0.0126319,0.00222757,-0.999918][0.59018,0.259494,0][-1.16539,-0.502017,-0.0945442][-0.706026,0.708148,-0.00734171][0.675912,0.299409,0][-0.738551,-0.0737712,0.164306][-0.0246086,0.0658715,0.997525][0.559056,0.370688,0][-1.16539,-0.502017,-0.0945442][-0.706026,0.708148,-0.00734171][0.675912,0.299409,0][-1.16748,-0.502386,0.0710496][-0.706026,0.708148,-0.00734219][0.660724,0.353671,0][-0.738551,-0.0737712,0.164306][-0.0246086,0.0658715,0.997525][0.559056,0.370688,0][-0.738551,-0.0737712,0.164306][-0.0246086,0.0658715,0.997525][0.995775,0.799527,0][-1.16748,-0.502386,0.0710496][-0.706026,0.708148,-0.00734219][0.9449,0.922034,0][-0.682078,-0.394041,0.164306][-0.0581427,-0.983522,-0.171183][0.948179,0.799527,0][-1.16748,-0.502386,0.0710496][-0.706026,0.708148,-0.00734219][0.9449,0.922034,0][-1.13936,-0.661886,0.0710496][-0.181673,-0.0320341,0.982837][0.921196,0.922034,0][-0.682078,-0.394041,0.164306][-0.0581427,-0.983522,-0.171183][0.948179,0.799527,0][-0.682078,-0.394041,0.164306][-0.0581427,-0.983522,-0.171183][0.458327,0.150383,0][-1.13936,-0.661886,0.0710496][-0.181673,-0.0320341,0.982837][0.356659,0.133366,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.427203,0.039189,0][-1.13936,-0.661886,0.0710496][-0.181673,-0.0320341,0.982837][0.356659,0.133366,0][-1.13727,-0.661517,-0.0945442][0.504734,-0.863263,0.00445344][0.341471,0.079104,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.427203,0.039189,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.948179,0.571245,0][-1.13727,-0.661517,-0.0945442][0.504734,-0.863263,0.00445344][0.921196,0.421298,0][-0.734264,-0.0730153,-0.175026][0.0126319,0.00222757,-0.999918][0.995774,0.571245,0][-1.13727,-0.661517,-0.0945442][0.504734,-0.863263,0.00445344][0.921196,0.421298,0][-1.16539,-0.502017,-0.0945442][-0.706026,0.708148,-0.00734171][0.9449,0.421298,0][-0.734264,-0.0730153,-0.175026][0.0126319,0.00222757,-0.999918][0.995774,0.571245,0][0.664452,-0.343825,0.0945439][-0.179042,-0.983831,-0.00445419][0.921196,0.42095,0][0.934226,-0.523316,0.0564782][0.15779,0.0278225,0.987081][0.88847,0.350454,0][0.636328,-0.184326,0.0945439][0.421247,0.906916,0.00734178][0.9449,0.42095,0][0.934226,-0.523316,0.0564782][0.15779,0.0278225,0.987081][0.88847,0.350454,0][0.917352,-0.427622,0.0564783][0.15779,0.0278226,0.987081][0.902692,0.350454,0][0.636328,-0.184326,0.0945439][0.421247,0.906916,0.00734178][0.9449,0.42095,0][0.636328,-0.184326,0.0945439][0.421247,0.906916,0.00734178][0.942585,0.031905,0][0.917352,-0.427622,0.0564783][0.15779,0.0278226,0.987081][0.9916,0.229585,0][0.63842,-0.183957,-0.0710498][0.421247,0.906916,0.00734303][0.856258,0.031905,0][0.917352,-0.427622,0.0564783][0.15779,0.0278226,0.987081][0.9916,0.229585,0][0.918403,-0.427437,-0.0269792][0.655281,0.75532,0.00992737][0.948091,0.229585,0][0.63842,-0.183957,-0.0710498][0.421247,0.906916,0.00734303][0.856258,0.031905,0][0.63842,-0.183957,-0.0710498][0.421247,0.906916,0.00734303][0.9449,0.922381,0][0.918403,-0.427437,-0.0269792][0.655281,0.75532,0.00992737][0.902692,0.979904,0][0.666544,-0.343456,-0.0710499][0.181673,0.0320341,-0.982837][0.921196,0.922381,0][0.918403,-0.427437,-0.0269792][0.655281,0.75532,0.00992737][0.902692,0.979904,0][0.935277,-0.523131,-0.0269793][0.182685,0.0322125,-0.982644][0.888471,0.979904,0][0.666544,-0.343456,-0.0710499][0.181673,0.0320341,-0.982837][0.921196,0.922381,0][0.666544,-0.343456,-0.0710499][0.181673,0.0320341,-0.982837][0.673189,0.049767,0][0.935277,-0.523131,-0.0269793][0.182685,0.0322125,-0.982644][0.720982,0.057845,0][0.664452,-0.343825,0.0945439][-0.179042,-0.983831,-0.00445419][0.688377,0.104029,0][0.935277,-0.523131,-0.0269793][0.182685,0.0322125,-0.982644][0.720982,0.057845,0][0.934226,-0.523316,0.0564782][0.15779,0.0278225,0.987081][0.728638,0.085193,0][0.664452,-0.343825,0.0945439][-0.179042,-0.983831,-0.00445419][0.688377,0.104029,0][0.934226,-0.523316,0.0564782][0.15779,0.0278225,0.987081][0.992612,0.294571,0][0.935277,-0.523131,-0.0269793][0.182685,0.0322125,-0.982644][0.949103,0.294571,0][0.917352,-0.427622,0.0564783][0.15779,0.0278226,0.987081][0.992612,0.227967,0][0.935277,-0.523131,-0.0269793][0.182685,0.0322125,-0.982644][0.949103,0.294571,0][0.918403,-0.427437,-0.0269792][0.655281,0.75532,0.00992737][0.949103,0.227967,0][0.917352,-0.427622,0.0564783][0.15779,0.0278226,0.987081][0.992612,0.227967,0][-1.13727,-0.661517,-0.0945442][0.504734,-0.863263,0.00445344][0.921196,0.421298,0][-1.32938,-0.922452,-0.0564786][-0.15779,-0.0278225,-0.987081][0.888471,0.350801,0][-1.16539,-0.502017,-0.0945442][-0.706026,0.708148,-0.00734171][0.9449,0.421298,0][-1.32938,-0.922452,-0.0564786][-0.15779,-0.0278225,-0.987081][0.888471,0.350801,0][-1.34626,-0.826758,-0.0564786][-0.157791,-0.0278224,-0.987081][0.902692,0.350801,0][-1.16539,-0.502017,-0.0945442][-0.706026,0.708148,-0.00734171][0.9449,0.421298,0][-1.16539,-0.502017,-0.0945442][-0.706026,0.708148,-0.00734171][0.9423,0.029199,0][-1.34626,-0.826758,-0.0564786][-0.157791,-0.0278224,-0.987081][0.991315,0.226879,0][-1.16748,-0.502386,0.0710496][-0.706026,0.708148,-0.00734219][0.855973,0.029199,0][-1.34626,-0.826758,-0.0564786][-0.157791,-0.0278224,-0.987081][0.991315,0.226879,0][-1.34731,-0.826943,0.0269789][-0.874098,0.485649,-0.00992794][0.947806,0.226879,0][-1.16748,-0.502386,0.0710496][-0.706026,0.708148,-0.00734219][0.855973,0.029199,0][-1.16748,-0.502386,0.0710496][-0.706026,0.708148,-0.00734219][0.9449,0.922034,0][-1.34731,-0.826943,0.0269789][-0.874098,0.485649,-0.00992794][0.902692,0.979557,0][-1.13936,-0.661886,0.0710496][-0.181673,-0.0320341,0.982837][0.921196,0.922034,0][-1.34731,-0.826943,0.0269789][-0.874098,0.485649,-0.00992794][0.902692,0.979557,0][-1.33043,-0.922637,0.0269789][-0.182685,-0.0322125,0.982644][0.88847,0.979557,0][-1.13936,-0.661886,0.0710496][-0.181673,-0.0320341,0.982837][0.921196,0.922034,0][-1.13936,-0.661886,0.0710496][-0.181673,-0.0320341,0.982837][0.356659,0.133366,0][-1.33043,-0.922637,0.0269789][-0.182685,-0.0322125,0.982644][0.308865,0.125288,0][-1.13727,-0.661517,-0.0945442][0.504734,-0.863263,0.00445344][0.341471,0.079104,0][-1.33043,-0.922637,0.0269789][-0.182685,-0.0322125,0.982644][0.308865,0.125288,0][-1.32938,-0.922452,-0.0564786][-0.15779,-0.0278225,-0.987081][0.30121,0.097941,0][-1.13727,-0.661517,-0.0945442][0.504734,-0.863263,0.00445344][0.341471,0.079104,0][-1.32938,-0.922452,-0.0564786][-0.15779,-0.0278225,-0.987081][0.991315,0.295101,0][-1.33043,-0.922637,0.0269789][-0.182685,-0.0322125,0.982644][0.947806,0.295101,0][-1.34626,-0.826758,-0.0564786][-0.157791,-0.0278224,-0.987081][0.991315,0.228497,0][-1.33043,-0.922637,0.0269789][-0.182685,-0.0322125,0.982644][0.947806,0.295101,0][-1.34731,-0.826943,0.0269789][-0.874098,0.485649,-0.00992794][0.947806,0.228497,0][-1.34626,-0.826758,-0.0564786][-0.157791,-0.0278224,-0.987081][0.991315,0.228497,0][0.063873,-0.513319,0.00376923][0.639918,-0.223102,-0.735344][0.852711,0.611832,0][0.020982,-0.270072,0.00376929][0.391021,-0.904323,0.171183][0.885805,0.611832,0][-0.0741869,-0.609779,0.08896][0.0591078,-0.402679,0.913431][0.843196,0.666843,0][0.020982,-0.270072,0.00376929][0.391021,-0.904323,0.171183][0.885805,0.611832,0][-0.118467,-0.366776,0.198951][0.395271,-0.903573,-0.165277][0.87629,0.684145,0][-0.0741869,-0.609779,0.08896][0.0591078,-0.402679,0.913431][0.843196,0.666843,0][-0.514938,-0.61538,-0.00376954][-0.525021,-0.428512,0.735344][0.852711,0.612178,0][-0.557829,-0.372132,-0.00376948][-0.0623928,-0.984272,0.165277][0.885805,0.612178,0][-0.352213,-0.658802,-0.0889604][0.0821811,-0.39861,-0.913431][0.843197,0.667188,0][-0.557829,-0.372132,-0.00376948][-0.0623928,-0.984272,0.165277][0.885805,0.612178,0][-0.393715,-0.41531,-0.198951][-0.0623928,-0.984272,0.165277][0.876289,0.684491,0][-0.352213,-0.658802,-0.0889604][0.0821811,-0.39861,-0.913431][0.843197,0.667188,0][-0.2121,-0.634097,-0.0871357][0.0821811,-0.39861,-0.913431][0.843197,0.705953,0][-0.253601,-0.390604,-0.197126][0.0705457,-0.330597,-0.941132][0.876289,0.723255,0][-0.0719849,-0.60939,-0.0853107][0.639918,-0.223102,-0.735344][0.843197,0.744717,0][-0.253601,-0.390604,-0.197126][0.0705457,-0.330597,-0.941132][0.876289,0.723255,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.876289,0.76202,0][-0.0719849,-0.60939,-0.0853107][0.639918,-0.223102,-0.735344][0.843197,0.744717,0][-0.320609,-7.67708e-005,-0.339332][0.342888,0.581501,-0.737756][0.995774,0.712358,0][-0.253601,-0.390604,-0.197126][0.0705457,-0.330597,-0.941132][0.937785,0.689897,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.995774,0.605165,0][-0.253601,-0.390604,-0.197126][0.0705457,-0.330597,-0.941132][0.937785,0.689897,0][-0.393715,-0.41531,-0.198951][-0.0623928,-0.984272,0.165277][0.937785,0.650975,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.995774,0.605165,0][-0.2143,-0.634485,0.0871354][0.0591078,-0.402679,0.913431][0.843196,0.705607,0][-0.258581,-0.391482,0.197126][0.0467796,-0.334788,0.941131][0.87629,0.722909,0][-0.354415,-0.659191,0.0853103][-0.525021,-0.428512,0.735344][0.843196,0.744372,0][-0.258581,-0.391482,0.197126][0.0467796,-0.334788,0.941131][0.87629,0.722909,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.87629,0.761674,0][-0.354415,-0.659191,0.0853103][-0.525021,-0.428512,0.735344][0.843196,0.744372,0][-0.329182,-0.00158858,0.339332][-0.521094,0.429157,0.737757][0.995775,0.712011,0][-0.258581,-0.391482,0.197126][0.0467796,-0.334788,0.941131][0.937786,0.68955,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.995775,0.604818,0][-0.258581,-0.391482,0.197126][0.0467796,-0.334788,0.941131][0.937786,0.68955,0][-0.118467,-0.366776,0.198951][0.395271,-0.903573,-0.165277][0.937786,0.650628,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.995775,0.604818,0][0.270429,-1.9386,0.0032035][0.488741,0.0704843,0.869577][0.659847,0.623842,0][0.063873,-0.513319,0.00376923][0.639918,-0.223102,-0.735344][0.852711,0.611832,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][0.063873,-0.513319,0.00376923][0.639918,-0.223102,-0.735344][0.852711,0.611832,0][-0.0741869,-0.609779,0.08896][0.0591078,-0.402679,0.913431][0.843196,0.666843,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][0.156799,-2.03076,-0.0725138][0.510464,0.0744518,-0.85667][0.645687,0.548226,0][-0.0719849,-0.60939,-0.0853107][0.639918,-0.223102,-0.735344][0.837735,0.548001,0][0.270429,-1.9386,0.0032035][0.488741,0.0704843,0.869577][0.655164,0.592789,0][-0.0719849,-0.60939,-0.0853107][0.639918,-0.223102,-0.735344][0.837735,0.548001,0][0.063873,-0.513319,0.00376923][0.639918,-0.223102,-0.735344][0.847211,0.600429,0][0.270429,-1.9386,0.0032035][0.488741,0.0704843,0.869577][0.655164,0.592789,0][0.0383968,-2.0557,-0.0740662][0.0145074,-0.00663602,-0.999873][0.649795,0.703897,0][-0.2121,-0.634097,-0.0871357][0.0821811,-0.39861,-0.913431][0.843197,0.705953,0][0.156799,-2.03076,-0.0725138][0.510464,0.0744518,-0.85667][0.650332,0.736847,0][-0.2121,-0.634097,-0.0871357][0.0821811,-0.39861,-0.913431][0.843197,0.705953,0][-0.0719849,-0.60939,-0.0853107][0.639918,-0.223102,-0.735344][0.843197,0.744717,0][0.156799,-2.03076,-0.0725138][0.510464,0.0744518,-0.85667][0.650332,0.736847,0][-0.0813949,-2.07276,-0.0756173][0.0139106,-0.00677126,-0.99988][0.650332,0.670947,0][-0.352213,-0.658802,-0.0889604][0.0821811,-0.39861,-0.913431][0.843197,0.667188,0][0.0383968,-2.0557,-0.0740662][0.0145074,-0.00663602,-0.999873][0.649795,0.703897,0][-0.352213,-0.658802,-0.0889604][0.0821811,-0.39861,-0.913431][0.843197,0.667188,0][-0.2121,-0.634097,-0.0871357][0.0821811,-0.39861,-0.913431][0.843197,0.705953,0][0.0383968,-2.0557,-0.0740662][0.0145074,-0.00663602,-0.999873][0.649795,0.703897,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.659847,0.624189,0][-0.514938,-0.61538,-0.00376954][-0.525021,-0.428512,0.735344][0.852711,0.612178,0][-0.0813949,-2.07276,-0.0756173][0.0139106,-0.00677126,-0.99988][0.650332,0.670947,0][-0.514938,-0.61538,-0.00376954][-0.525021,-0.428512,0.735344][0.852711,0.612178,0][-0.352213,-0.658802,-0.0889604][0.0821811,-0.39861,-0.913431][0.843197,0.667188,0][-0.0813949,-2.07276,-0.0756173][0.0139106,-0.00677126,-0.99988][0.650332,0.670947,0][-0.083266,-2.07309,0.0725128][-0.505143,-0.104628,0.85667][0.643778,0.548752,0][-0.354415,-0.659191,0.0853103][-0.525021,-0.428512,0.735344][0.835827,0.548527,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.653253,0.593315,0][-0.354415,-0.659191,0.0853103][-0.525021,-0.428512,0.735344][0.835827,0.548527,0][-0.514938,-0.61538,-0.00376954][-0.525021,-0.428512,0.735344][0.845304,0.600955,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.653253,0.593315,0][0.0365254,-2.05603,0.0740652][-0.0113628,-0.0111981,0.999873][0.649795,0.703551,0][-0.2143,-0.634485,0.0871354][0.0591078,-0.402679,0.913431][0.843196,0.705607,0][-0.083266,-2.07309,0.0725128][-0.505143,-0.104628,0.85667][0.650332,0.736501,0][-0.2143,-0.634485,0.0871354][0.0591078,-0.402679,0.913431][0.843196,0.705607,0][-0.354415,-0.659191,0.0853103][-0.525021,-0.428512,0.735344][0.843196,0.744372,0][-0.083266,-2.07309,0.0725128][-0.505143,-0.104628,0.85667][0.650332,0.736501,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][-0.0741869,-0.609779,0.08896][0.0591078,-0.402679,0.913431][0.843196,0.666843,0][0.0365254,-2.05603,0.0740652][-0.0113628,-0.0111981,0.999873][0.649795,0.703551,0][-0.0741869,-0.609779,0.08896][0.0591078,-0.402679,0.913431][0.843196,0.666843,0][-0.2143,-0.634485,0.0871354][0.0591078,-0.402679,0.913431][0.843196,0.705607,0][0.0365254,-2.05603,0.0740652][-0.0113628,-0.0111981,0.999873][0.649795,0.703551,0][0.0365254,-2.05603,0.0740652][-0.0113628,-0.0111981,0.999873][0.649795,0.703551,0][-0.083266,-2.07309,0.0725128][-0.505143,-0.104628,0.85667][0.650332,0.736501,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.653253,0.593315,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][0.0365254,-2.05603,0.0740652][-0.0113628,-0.0111981,0.999873][0.649795,0.703551,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.653253,0.593315,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.653253,0.593315,0][-0.0813949,-2.07276,-0.0756173][0.0139106,-0.00677126,-0.99988][0.650332,0.670947,0][0.0383968,-2.0557,-0.0740662][0.0145074,-0.00663602,-0.999873][0.649795,0.703897,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.653253,0.593315,0][0.0383968,-2.0557,-0.0740662][0.0145074,-0.00663602,-0.999873][0.649795,0.703897,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][0.0383968,-2.0557,-0.0740662][0.0145074,-0.00663602,-0.999873][0.649795,0.703897,0][0.156799,-2.03076,-0.0725138][0.510464,0.0744518,-0.85667][0.650332,0.736847,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][0.156799,-2.03076,-0.0725138][0.510464,0.0744518,-0.85667][0.650332,0.736847,0][0.270429,-1.9386,0.0032035][0.488741,0.0704843,0.869577][0.655164,0.592789,0] \ No newline at end of file diff --git a/charcustom/hats/fonts/Swordpack.mesh b/charcustom/hats/fonts/Swordpack.mesh new file mode 100644 index 0000000..ea3496b --- /dev/null +++ b/charcustom/hats/fonts/Swordpack.mesh @@ -0,0 +1,3 @@ +version 1.00 +728 +[2.80772,-3.16823,-0.253079][0.254128,-0.435805,0.863419][0.087793,0.02921,0][2.60269,-3.02914,-0.194999][0.0126942,-0.217611,0.975953][0.094868,0.066134,0][2.73485,-3.24111,-0.283384][0.12438,-0.735568,0.665935][0.103431,0.02921,0][2.73485,-3.24111,-0.283384][0.12438,-0.735568,0.665935][0.103431,0.02921,0][2.60269,-3.02914,-0.194999][0.0126942,-0.217611,0.975953][0.094868,0.066134,0][2.47647,-3.15536,-0.247489][-0.218711,-0.561201,0.79826][0.121954,0.066134,0][2.80772,-3.16823,-0.253079][0.254128,-0.435805,0.863419][0.087793,0.02921,0][2.8978,-3.07816,-0.253079][0.435808,-0.25413,0.863417][0.068463,0.02921,0][2.60269,-3.02914,-0.194999][0.0126942,-0.217611,0.975953][0.094868,0.066134,0][2.60269,-3.02914,-0.194999][0.0126942,-0.217611,0.975953][0.094868,0.066134,0][2.8978,-3.07816,-0.253079][0.435808,-0.25413,0.863417][0.068463,0.02921,0][2.7587,-2.87312,-0.194999][0.217611,-0.0126947,0.975953][0.061388,0.066134,0][2.8978,-3.07816,-0.253079][0.435808,-0.25413,0.863417][0.068463,0.02921,0][2.97067,-3.00529,-0.283384][0.735571,-0.124382,0.665932][0.052825,0.02921,0][2.7587,-2.87312,-0.194999][0.217611,-0.0126947,0.975953][0.061388,0.066134,0][2.7587,-2.87312,-0.194999][0.217611,-0.0126947,0.975953][0.061388,0.066134,0][2.97067,-3.00529,-0.283384][0.735571,-0.124382,0.665932][0.052825,0.02921,0][2.88492,-2.7469,-0.247489][0.5612,0.218708,0.798261][0.034302,0.066134,0][2.97067,-3.00529,-0.283384][0.735571,-0.124382,0.665932][0.052825,0.02921,0][2.9985,-2.97745,-0.332418][0.999954,0.00963802,3.84586e-006][0.046852,0.02921,0][2.88492,-2.7469,-0.247489][0.5612,0.218708,0.798261][0.034302,0.066134,0][2.88492,-2.7469,-0.247489][0.5612,0.218708,0.798261][0.034302,0.066134,0][2.9985,-2.97745,-0.332418][0.999954,0.00963802,3.84586e-006][0.046852,0.02921,0][2.93314,-2.69869,-0.332418][0.90031,0.435248,2.65693e-006][0.023956,0.066134,0][2.97067,-3.00529,-0.381453][0.735573,-0.124382,-0.665929][0.052825,0.02921,0][2.88492,-2.7469,-0.417348][0.561202,0.21871,-0.798259][0.034302,0.066134,0][2.9985,-2.97745,-0.332418][0.999954,0.00963802,3.84586e-006][0.046852,0.02921,0][2.9985,-2.97745,-0.332418][0.999954,0.00963802,3.84586e-006][0.046852,0.02921,0][2.88492,-2.7469,-0.417348][0.561202,0.21871,-0.798259][0.034302,0.066134,0][2.93314,-2.69869,-0.332418][0.90031,0.435248,2.65693e-006][0.023956,0.066134,0][2.8978,-3.07816,-0.411758][0.435809,-0.254132,-0.863416][0.068463,0.02921,0][2.7587,-2.87312,-0.469838][0.217611,-0.0126947,-0.975953][0.061388,0.066134,0][2.97067,-3.00529,-0.381453][0.735573,-0.124382,-0.665929][0.052825,0.02921,0][2.97067,-3.00529,-0.381453][0.735573,-0.124382,-0.665929][0.052825,0.02921,0][2.7587,-2.87312,-0.469838][0.217611,-0.0126947,-0.975953][0.061388,0.066134,0][2.88492,-2.7469,-0.417348][0.561202,0.21871,-0.798259][0.034302,0.066134,0][2.8978,-3.07816,-0.411758][0.435809,-0.254132,-0.863416][0.068463,0.02921,0][2.80772,-3.16823,-0.411758][0.25413,-0.435806,-0.863418][0.087793,0.02921,0][2.7587,-2.87312,-0.469838][0.217611,-0.0126947,-0.975953][0.061388,0.066134,0][2.7587,-2.87312,-0.469838][0.217611,-0.0126947,-0.975953][0.061388,0.066134,0][2.80772,-3.16823,-0.411758][0.25413,-0.435806,-0.863418][0.087793,0.02921,0][2.60269,-3.02914,-0.469838][0.0126942,-0.217611,-0.975953][0.094868,0.066134,0][2.80772,-3.16823,-0.411758][0.25413,-0.435806,-0.863418][0.087793,0.02921,0][2.73485,-3.24111,-0.381453][0.124379,-0.735571,-0.665932][0.103431,0.02921,0][2.60269,-3.02914,-0.469838][0.0126942,-0.217611,-0.975953][0.094868,0.066134,0][2.60269,-3.02914,-0.469838][0.0126942,-0.217611,-0.975953][0.094868,0.066134,0][2.73485,-3.24111,-0.381453][0.124379,-0.735571,-0.665932][0.103431,0.02921,0][2.47647,-3.15536,-0.417348][-0.218712,-0.561203,-0.798258][0.121954,0.066134,0][2.73485,-3.24111,-0.381453][0.124379,-0.735571,-0.665932][0.103431,0.02921,0][2.70701,-3.26894,-0.332418][-0.00963754,-0.999954,3.83961e-006][0.109404,0.02921,0][2.47647,-3.15536,-0.417348][-0.218712,-0.561203,-0.798258][0.121954,0.066134,0][2.47647,-3.15536,-0.417348][-0.218712,-0.561203,-0.798258][0.121954,0.066134,0][2.70701,-3.26894,-0.332418][-0.00963754,-0.999954,3.83961e-006][0.109404,0.02921,0][2.42826,-3.20357,-0.332418][-0.435248,-0.900311,2.59831e-006][0.1323,0.066134,0][2.73485,-3.24111,-0.283384][0.12438,-0.735568,0.665935][0.103431,0.02921,0][2.47647,-3.15536,-0.247489][-0.218711,-0.561201,0.79826][0.121954,0.066134,0][2.70701,-3.26894,-0.332418][-0.00963754,-0.999954,3.83961e-006][0.109404,0.02921,0][2.70701,-3.26894,-0.332418][-0.00963754,-0.999954,3.83961e-006][0.109404,0.02921,0][2.47647,-3.15536,-0.247489][-0.218711,-0.561201,0.79826][0.121954,0.066134,0][2.42826,-3.20357,-0.332418][-0.435248,-0.900311,2.59831e-006][0.1323,0.066134,0][2.60269,-3.02914,-0.194999][0.0126942,-0.217611,0.975953][0.094868,0.066134,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][2.47647,-3.15536,-0.247489][-0.218711,-0.561201,0.79826][0.121954,0.066134,0][2.47647,-3.15536,-0.247489][-0.218711,-0.561201,0.79826][0.121954,0.066134,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][2.20983,-2.95191,-0.23435][-0.359675,-0.435707,0.825102][0.128734,0.116573,0][2.60269,-3.02914,-0.194999][0.0126942,-0.217611,0.975953][0.094868,0.066134,0][2.7587,-2.87312,-0.194999][0.217611,-0.0126947,0.975953][0.061388,0.066134,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][2.7587,-2.87312,-0.194999][0.217611,-0.0126947,0.975953][0.061388,0.066134,0][2.53573,-2.62601,-0.17374][0.126905,0.0771124,0.988913][0.058798,0.116573,0][2.7587,-2.87312,-0.194999][0.217611,-0.0126947,0.975953][0.061388,0.066134,0][2.88492,-2.7469,-0.247489][0.5612,0.218708,0.798261][0.034302,0.066134,0][2.53573,-2.62601,-0.17374][0.126905,0.0771124,0.988913][0.058798,0.116573,0][2.53573,-2.62601,-0.17374][0.126905,0.0771124,0.988913][0.058798,0.116573,0][2.88492,-2.7469,-0.247489][0.5612,0.218708,0.798261][0.034302,0.066134,0][2.68147,-2.48027,-0.23435][0.435706,0.359675,0.825102][0.027522,0.116573,0][2.88492,-2.7469,-0.247489][0.5612,0.218708,0.798261][0.034302,0.066134,0][2.93314,-2.69869,-0.332418][0.90031,0.435248,2.65693e-006][0.023956,0.066134,0][2.68147,-2.48027,-0.23435][0.435706,0.359675,0.825102][0.027522,0.116573,0][2.68147,-2.48027,-0.23435][0.435706,0.359675,0.825102][0.027522,0.116573,0][2.93314,-2.69869,-0.332418][0.90031,0.435248,2.65693e-006][0.023956,0.066134,0][2.73714,-2.4246,-0.332418][0.761191,0.648528,2.9076e-006][0.015575,0.116573,0][2.88492,-2.7469,-0.417348][0.561202,0.21871,-0.798259][0.034302,0.066134,0][2.68147,-2.48027,-0.430487][0.435708,0.359677,-0.825101][0.027522,0.116573,0][2.93314,-2.69869,-0.332418][0.90031,0.435248,2.65693e-006][0.023956,0.066134,0][2.93314,-2.69869,-0.332418][0.90031,0.435248,2.65693e-006][0.023956,0.066134,0][2.68147,-2.48027,-0.430487][0.435708,0.359677,-0.825101][0.027522,0.116573,0][2.73714,-2.4246,-0.332418][0.761191,0.648528,2.9076e-006][0.015575,0.116573,0][2.7587,-2.87312,-0.469838][0.217611,-0.0126947,-0.975953][0.061388,0.066134,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][2.88492,-2.7469,-0.417348][0.561202,0.21871,-0.798259][0.034302,0.066134,0][2.88492,-2.7469,-0.417348][0.561202,0.21871,-0.798259][0.034302,0.066134,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][2.68147,-2.48027,-0.430487][0.435708,0.359677,-0.825101][0.027522,0.116573,0][2.7587,-2.87312,-0.469838][0.217611,-0.0126947,-0.975953][0.061388,0.066134,0][2.60269,-3.02914,-0.469838][0.0126942,-0.217611,-0.975953][0.094868,0.066134,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][2.60269,-3.02914,-0.469838][0.0126942,-0.217611,-0.975953][0.094868,0.066134,0][2.35558,-2.80616,-0.491097][-0.0771124,-0.126905,-0.988913][0.097458,0.116573,0][2.60269,-3.02914,-0.469838][0.0126942,-0.217611,-0.975953][0.094868,0.066134,0][2.47647,-3.15536,-0.417348][-0.218712,-0.561203,-0.798258][0.121954,0.066134,0][2.35558,-2.80616,-0.491097][-0.0771124,-0.126905,-0.988913][0.097458,0.116573,0][2.35558,-2.80616,-0.491097][-0.0771124,-0.126905,-0.988913][0.097458,0.116573,0][2.47647,-3.15536,-0.417348][-0.218712,-0.561203,-0.798258][0.121954,0.066134,0][2.20983,-2.95191,-0.430487][-0.359676,-0.435708,-0.825101][0.128734,0.116573,0][2.47647,-3.15536,-0.417348][-0.218712,-0.561203,-0.798258][0.121954,0.066134,0][2.42826,-3.20357,-0.332418][-0.435248,-0.900311,2.59831e-006][0.1323,0.066134,0][2.20983,-2.95191,-0.430487][-0.359676,-0.435708,-0.825101][0.128734,0.116573,0][2.20983,-2.95191,-0.430487][-0.359676,-0.435708,-0.825101][0.128734,0.116573,0][2.42826,-3.20357,-0.332418][-0.435248,-0.900311,2.59831e-006][0.1323,0.066134,0][2.15416,-3.00758,-0.332418][-0.648527,-0.761192,2.42929e-006][0.14068,0.116573,0][2.47647,-3.15536,-0.247489][-0.218711,-0.561201,0.79826][0.121954,0.066134,0][2.20983,-2.95191,-0.23435][-0.359675,-0.435707,0.825102][0.128734,0.116573,0][2.42826,-3.20357,-0.332418][-0.435248,-0.900311,2.59831e-006][0.1323,0.066134,0][2.42826,-3.20357,-0.332418][-0.435248,-0.900311,2.59831e-006][0.1323,0.066134,0][2.20983,-2.95191,-0.23435][-0.359675,-0.435707,0.825102][0.128734,0.116573,0][2.15416,-3.00758,-0.332418][-0.648527,-0.761192,2.42929e-006][0.14068,0.116573,0][2.20983,-2.95191,-0.23435][-0.359675,-0.435707,0.825102][0.128734,0.116573,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][-1.85529,1.11321,-0.23435][-0.393508,-0.393508,0.830845][0.128734,0.988922,0][-1.85529,1.11321,-0.23435][-0.393508,-0.393508,0.830845][0.128734,0.988922,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][-1.70955,1.25896,-0.17374][-0.100771,-0.100771,0.989793][0.097458,0.988922,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][2.53573,-2.62601,-0.17374][0.126905,0.0771124,0.988913][0.058798,0.116573,0][-1.70955,1.25896,-0.17374][-0.100771,-0.100771,0.989793][0.097458,0.988922,0][-1.70955,1.25896,-0.17374][-0.100771,-0.100771,0.989793][0.097458,0.988922,0][2.53573,-2.62601,-0.17374][0.126905,0.0771124,0.988913][0.058798,0.116573,0][-1.52939,1.43911,-0.17374][0.10077,0.10077,0.989793][0.058798,0.988922,0][2.53573,-2.62601,-0.17374][0.126905,0.0771124,0.988913][0.058798,0.116573,0][2.68147,-2.48027,-0.23435][0.435706,0.359675,0.825102][0.027522,0.116573,0][-1.52939,1.43911,-0.17374][0.10077,0.10077,0.989793][0.058798,0.988922,0][-1.52939,1.43911,-0.17374][0.10077,0.10077,0.989793][0.058798,0.988922,0][2.68147,-2.48027,-0.23435][0.435706,0.359675,0.825102][0.027522,0.116573,0][-1.38365,1.58486,-0.23435][0.393508,0.393508,0.830845][0.027522,0.988922,0][2.68147,-2.48027,-0.23435][0.435706,0.359675,0.825102][0.027522,0.116573,0][2.73714,-2.4246,-0.332418][0.761191,0.648528,2.9076e-006][0.015575,0.116573,0][-1.38365,1.58486,-0.23435][0.393508,0.393508,0.830845][0.027522,0.988922,0][-1.38365,1.58486,-0.23435][0.393508,0.393508,0.830845][0.027522,0.988922,0][2.73714,-2.4246,-0.332418][0.761191,0.648528,2.9076e-006][0.015575,0.116573,0][-1.32798,1.64053,-0.332418][0.707107,0.707107,2.70065e-006][0.015575,0.988922,0][2.73714,-2.4246,-0.332418][0.761191,0.648528,2.9076e-006][0.015575,0.116573,0][2.68147,-2.48027,-0.430487][0.435708,0.359677,-0.825101][0.027522,0.116573,0][-1.32798,1.64053,-0.332418][0.707107,0.707107,2.70065e-006][0.015575,0.988922,0][-1.32798,1.64053,-0.332418][0.707107,0.707107,2.70065e-006][0.015575,0.988922,0][2.68147,-2.48027,-0.430487][0.435708,0.359677,-0.825101][0.027522,0.116573,0][-1.38365,1.58486,-0.430487][0.39351,0.393509,-0.830843][0.027522,0.988922,0][2.68147,-2.48027,-0.430487][0.435708,0.359677,-0.825101][0.027522,0.116573,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][-1.38365,1.58486,-0.430487][0.39351,0.393509,-0.830843][0.027522,0.988922,0][-1.38365,1.58486,-0.430487][0.39351,0.393509,-0.830843][0.027522,0.988922,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][-1.52939,1.43911,-0.491097][0.10077,0.10077,-0.989793][0.058798,0.988922,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][2.35558,-2.80616,-0.491097][-0.0771124,-0.126905,-0.988913][0.097458,0.116573,0][-1.52939,1.43911,-0.491097][0.10077,0.10077,-0.989793][0.058798,0.988922,0][-1.52939,1.43911,-0.491097][0.10077,0.10077,-0.989793][0.058798,0.988922,0][2.35558,-2.80616,-0.491097][-0.0771124,-0.126905,-0.988913][0.097458,0.116573,0][-1.70955,1.25896,-0.491097][-0.100771,-0.100771,-0.989793][0.097458,0.988922,0][2.35558,-2.80616,-0.491097][-0.0771124,-0.126905,-0.988913][0.097458,0.116573,0][2.20983,-2.95191,-0.430487][-0.359676,-0.435708,-0.825101][0.128734,0.116573,0][-1.70955,1.25896,-0.491097][-0.100771,-0.100771,-0.989793][0.097458,0.988922,0][-1.70955,1.25896,-0.491097][-0.100771,-0.100771,-0.989793][0.097458,0.988922,0][2.20983,-2.95191,-0.430487][-0.359676,-0.435708,-0.825101][0.128734,0.116573,0][-1.85529,1.11321,-0.430487][-0.39351,-0.39351,-0.830843][0.128734,0.988922,0][2.20983,-2.95191,-0.430487][-0.359676,-0.435708,-0.825101][0.128734,0.116573,0][2.15416,-3.00758,-0.332418][-0.648527,-0.761192,2.42929e-006][0.14068,0.116573,0][-1.85529,1.11321,-0.430487][-0.39351,-0.39351,-0.830843][0.128734,0.988922,0][-1.85529,1.11321,-0.430487][-0.39351,-0.39351,-0.830843][0.128734,0.988922,0][2.15416,-3.00758,-0.332418][-0.648527,-0.761192,2.42929e-006][0.14068,0.116573,0][-1.91096,1.05754,-0.332418][-0.707107,-0.707107,3.67386e-006][0.14068,0.988922,0][2.15416,-3.00758,-0.332418][-0.648527,-0.761192,2.42929e-006][0.14068,0.116573,0][2.20983,-2.95191,-0.23435][-0.359675,-0.435707,0.825102][0.128734,0.116573,0][-1.91096,1.05754,-0.332418][-0.707107,-0.707107,3.67386e-006][0.14068,0.988922,0][-1.91096,1.05754,-0.332418][-0.707107,-0.707107,3.67386e-006][0.14068,0.988922,0][2.20983,-2.95191,-0.23435][-0.359675,-0.435707,0.825102][0.128734,0.116573,0][-1.85529,1.11321,-0.23435][-0.393508,-0.393508,0.830845][0.128734,0.988922,0][2.80772,-3.16823,-0.253079][0.254128,-0.435805,0.863419][0.087793,0.02921,0][2.73485,-3.24111,-0.283384][0.12438,-0.735568,0.665935][0.103431,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.8978,-3.07816,-0.253079][0.435808,-0.25413,0.863417][0.068463,0.02921,0][2.80772,-3.16823,-0.253079][0.254128,-0.435805,0.863419][0.087793,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.97067,-3.00529,-0.283384][0.735571,-0.124382,0.665932][0.052825,0.02921,0][2.8978,-3.07816,-0.253079][0.435808,-0.25413,0.863417][0.068463,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.9985,-2.97745,-0.332418][0.999954,0.00963802,3.84586e-006][0.046852,0.02921,0][2.97067,-3.00529,-0.283384][0.735571,-0.124382,0.665932][0.052825,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.97067,-3.00529,-0.381453][0.735573,-0.124382,-0.665929][0.052825,0.02921,0][2.9985,-2.97745,-0.332418][0.999954,0.00963802,3.84586e-006][0.046852,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.8978,-3.07816,-0.411758][0.435809,-0.254132,-0.863416][0.068463,0.02921,0][2.97067,-3.00529,-0.381453][0.735573,-0.124382,-0.665929][0.052825,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.80772,-3.16823,-0.411758][0.25413,-0.435806,-0.863418][0.087793,0.02921,0][2.8978,-3.07816,-0.411758][0.435809,-0.254132,-0.863416][0.068463,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.73485,-3.24111,-0.381453][0.124379,-0.735571,-0.665932][0.103431,0.02921,0][2.80772,-3.16823,-0.411758][0.25413,-0.435806,-0.863418][0.087793,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.70701,-3.26894,-0.332418][-0.00963754,-0.999954,3.83961e-006][0.109404,0.02921,0][2.73485,-3.24111,-0.381453][0.124379,-0.735571,-0.665932][0.103431,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.73485,-3.24111,-0.283384][0.12438,-0.735568,0.665935][0.103431,0.02921,0][2.70701,-3.26894,-0.332418][-0.00963754,-0.999954,3.83961e-006][0.109404,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][-0.959183,2.00932,-0.537819][0.337636,0.337637,-1.49646][0.375571,0.960472,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-1.04076,2.0909,-0.537819][-0.638752,2.47756,-2.20951][0.402397,0.960472,0][-1.04076,2.0909,-0.537819][-0.638752,2.47756,-2.20951][0.402397,0.960472,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-1.51929,1.8653,-0.645588][-0.404205,0.599272,-0.691007][0.418243,0.844701,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-1.51929,1.8653,-0.645588][-0.404205,0.599272,-0.691007][0.418243,0.844701,0][-1.51929,1.8653,-0.645588][-0.404205,0.599272,-0.691007][0.418243,0.844701,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-2.13574,1.24885,-0.645588][-0.599273,0.404206,-0.691006][0.418243,0.641986,0][-2.27976,0.688746,-0.537819][-0.439279,-0.439279,-0.783625][0.375571,0.526215,0][-2.36133,0.770323,-0.537819][-0.749297,-0.0686839,-0.658663][0.402397,0.526215,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-2.36133,0.770323,-0.537819][-0.749297,-0.0686839,-0.658663][0.402397,0.526215,0][-2.13574,1.24885,-0.645588][-0.599273,0.404206,-0.691006][0.418243,0.641986,0][-1.51929,1.8653,-0.645588][-0.404205,0.599272,-0.691007][0.418243,0.844701,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-1.04076,2.0909,-0.537819][-0.638752,2.47756,-2.20951][0.402397,0.960472,0][-1.04076,2.0909,-0.537819][-0.638752,2.47756,-2.20951][0.402397,0.960472,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-0.953889,2.17777,-0.332418][-0.459297,0.937878,-0.202404][0.402397,0.989038,0][-1.51929,1.8653,-0.645588][-0.404205,0.599272,-0.691007][0.418243,0.844701,0][-2.13574,1.24885,-0.645588][-0.599273,0.404206,-0.691006][0.418243,0.641986,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-2.13574,1.24885,-0.645588][-0.599273,0.404206,-0.691006][0.418243,0.641986,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-2.13574,1.24885,-0.645588][-0.599273,0.404206,-0.691006][0.418243,0.641986,0][-2.36133,0.770323,-0.537819][-0.749297,-0.0686839,-0.658663][0.402397,0.526215,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-2.36133,0.770323,-0.537819][-0.749297,-0.0686839,-0.658663][0.402397,0.526215,0][-2.4482,0.683453,-0.332418][-0.967543,-0.252708,8.46246e-007][0.402397,0.497649,0][-1.51929,1.8653,-0.0192494][0.0621585,0.210636,2.78617][0.418243,0.844701,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-1.04076,2.0909,-0.127018][0.324643,0.455136,1.82683][0.402397,0.960472,0][-1.04076,2.0909,-0.127018][0.324643,0.455136,1.82683][0.402397,0.960472,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-0.959183,2.00932,-0.127018][0.337636,0.337637,1.49646][0.375571,0.960472,0][-1.51929,1.8653,-0.0192494][0.0621585,0.210636,2.78617][0.418243,0.844701,0][-2.13574,1.24885,-0.0192494][-0.210636,-0.0621588,2.78616][0.418243,0.641986,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-2.13574,1.24885,-0.0192494][-0.210636,-0.0621588,2.78616][0.418243,0.641986,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-2.13574,1.24885,-0.0192494][-0.210636,-0.0621588,2.78616][0.418243,0.641986,0][-2.36133,0.770323,-0.127018][-0.749296,-0.0686834,0.658663][0.402397,0.526215,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-2.36133,0.770323,-0.127018][-0.749296,-0.0686834,0.658663][0.402397,0.526215,0][-2.27976,0.688746,-0.127018][-0.439279,-0.439279,0.783625][0.375571,0.526215,0][-0.696092,1.19249,-0.332418][-0.755056,-0.65566,0][0.198011,0.869426,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-1.46293,0.425655,-0.332418][-0.0450693,-0.231125,0.116811][0.198011,0.617261,0][-2.27976,0.688746,-0.127018][-0.439279,-0.439279,0.783625][0.375571,0.526215,0][-2.36663,0.601876,-0.332418][-0.219454,-1.12541,0.568783][0.375571,0.497649,0][-2.27976,0.688746,-0.537819][-0.439279,-0.439279,-0.783625][0.375571,0.526215,0][-2.36663,0.601876,-0.332418][-0.219454,-1.12541,0.568783][0.375571,0.497649,0][-2.36133,0.770323,-0.537819][-0.749297,-0.0686839,-0.658663][0.402397,0.526215,0][-2.36133,0.770323,-0.537819][-0.749297,-0.0686839,-0.658663][0.402397,0.526215,0][-2.36663,0.601876,-0.332418][-0.219454,-1.12541,0.568783][0.375571,0.497649,0][-2.4482,0.683453,-0.332418][-0.967543,-0.252708,8.46246e-007][0.402397,0.497649,0][-0.872313,2.09619,-0.332418][0.707112,0.707102,2.45392e-006][0.375571,0.989038,0][-0.959183,2.00932,-0.537819][0.337636,0.337637,-1.49646][0.375571,0.960472,0][-0.953889,2.17777,-0.332418][-0.459297,0.937878,-0.202404][0.402397,0.989038,0][-0.953889,2.17777,-0.332418][-0.459297,0.937878,-0.202404][0.402397,0.989038,0][-0.959183,2.00932,-0.537819][0.337636,0.337637,-1.49646][0.375571,0.960472,0][-1.04076,2.0909,-0.537819][-0.638752,2.47756,-2.20951][0.402397,0.960472,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-2.27976,0.688746,-0.127018][-0.439279,-0.439279,0.783625][0.375571,0.526215,0][-1.46293,0.425655,-0.332418][-0.0450693,-0.231125,0.116811][0.198011,0.617261,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-1.46293,0.425655,-0.332418][-0.0450693,-0.231125,0.116811][0.198011,0.617261,0][-2.27976,0.688746,-0.537819][-0.439279,-0.439279,-0.783625][0.375571,0.526215,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-1.46293,0.425655,-0.332418][-0.0450693,-0.231125,0.116811][0.198011,0.617261,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-0.696092,1.19249,-0.332418][-0.755056,-0.65566,0][0.198011,0.869426,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-0.959183,2.00932,-0.537819][0.337636,0.337637,-1.49646][0.375571,0.960472,0][-0.872313,2.09619,-0.332418][0.707112,0.707102,2.45392e-006][0.375571,0.989038,0][-0.696092,1.19249,-0.332418][-0.755056,-0.65566,0][0.198011,0.869426,0][-0.959183,2.00932,-0.537819][0.337636,0.337637,-1.49646][0.375571,0.960472,0][-0.959183,2.00932,-0.127018][0.337636,0.337637,1.49646][0.375571,0.960472,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-0.696092,1.19249,-0.332418][-0.755056,-0.65566,0][0.198011,0.869426,0][-2.36663,0.601876,-0.332418][-0.219454,-1.12541,0.568783][0.375571,0.497649,0][-2.27976,0.688746,-0.127018][-0.439279,-0.439279,0.783625][0.375571,0.526215,0][-2.4482,0.683453,-0.332418][-0.967543,-0.252708,8.46246e-007][0.402397,0.497649,0][-2.4482,0.683453,-0.332418][-0.967543,-0.252708,8.46246e-007][0.402397,0.497649,0][-2.27976,0.688746,-0.127018][-0.439279,-0.439279,0.783625][0.375571,0.526215,0][-2.36133,0.770323,-0.127018][-0.749296,-0.0686834,0.658663][0.402397,0.526215,0][-2.4482,0.683453,-0.332418][-0.967543,-0.252708,8.46246e-007][0.402397,0.497649,0][-2.36133,0.770323,-0.127018][-0.749296,-0.0686834,0.658663][0.402397,0.526215,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-2.36133,0.770323,-0.127018][-0.749296,-0.0686834,0.658663][0.402397,0.526215,0][-2.13574,1.24885,-0.0192494][-0.210636,-0.0621588,2.78616][0.418243,0.641986,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-1.51929,1.8653,-0.0192494][0.0621585,0.210636,2.78617][0.418243,0.844701,0][-1.51929,1.8653,-0.0192494][0.0621585,0.210636,2.78617][0.418243,0.844701,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-2.13574,1.24885,-0.0192494][-0.210636,-0.0621588,2.78616][0.418243,0.641986,0][-0.953889,2.17777,-0.332418][-0.459297,0.937878,-0.202404][0.402397,0.989038,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-1.04076,2.0909,-0.127018][0.324643,0.455136,1.82683][0.402397,0.960472,0][-1.04076,2.0909,-0.127018][0.324643,0.455136,1.82683][0.402397,0.960472,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-1.51929,1.8653,-0.0192494][0.0621585,0.210636,2.78617][0.418243,0.844701,0][-0.959183,2.00932,-0.127018][0.337636,0.337637,1.49646][0.375571,0.960472,0][-0.872313,2.09619,-0.332418][0.707112,0.707102,2.45392e-006][0.375571,0.989038,0][-1.04076,2.0909,-0.127018][0.324643,0.455136,1.82683][0.402397,0.960472,0][-1.04076,2.0909,-0.127018][0.324643,0.455136,1.82683][0.402397,0.960472,0][-0.872313,2.09619,-0.332418][0.707112,0.707102,2.45392e-006][0.375571,0.989038,0][-0.953889,2.17777,-0.332418][-0.459297,0.937878,-0.202404][0.402397,0.989038,0][-1.46293,0.425655,-0.332418][-0.0450693,-0.231125,0.116811][0.198011,0.617261,0][-2.36663,0.601876,-0.332418][-0.219454,-1.12541,0.568783][0.375571,0.497649,0][-2.27976,0.688746,-0.537819][-0.439279,-0.439279,-0.783625][0.375571,0.526215,0][-0.959183,2.00932,-0.127018][0.337636,0.337637,1.49646][0.375571,0.960472,0][-0.696092,1.19249,-0.332418][-0.755056,-0.65566,0][0.198011,0.869426,0][-0.872313,2.09619,-0.332418][0.707112,0.707102,2.45392e-006][0.375571,0.989038,0][-3.06902,2.86025,-0.230599][-0.53006,0.696524,0.483622][0.253317,0.832025,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-3.01914,2.91013,-0.269491][-0.393467,0.861527,0.320867][0.2288,0.832025,0][-3.01914,2.91013,-0.269491][-0.393467,0.861527,0.320867][0.2288,0.832025,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-2.9088,2.91798,-0.223424][0.0986212,0.810064,0.577989][0.199759,0.80684,0][-3.06902,2.86025,-0.230599][-0.53006,0.696524,0.483622][0.253317,0.832025,0][-3.13068,2.79858,-0.230599][-0.696523,0.530062,0.483623][0.283622,0.832025,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-3.13068,2.79858,-0.230599][-0.696523,0.530062,0.483623][0.283622,0.832025,0][-3.10201,2.72477,-0.156062][-0.488451,0.173583,0.855152][0.294715,0.80684,0][-3.13068,2.79858,-0.230599][-0.696523,0.530062,0.483623][0.283622,0.832025,0][-3.18057,2.7487,-0.269491][-0.861527,0.393467,0.320867][0.30814,0.832025,0][-3.10201,2.72477,-0.156062][-0.488451,0.173583,0.855152][0.294715,0.80684,0][-3.10201,2.72477,-0.156062][-0.488451,0.173583,0.855152][0.294715,0.80684,0][-3.18057,2.7487,-0.269491][-0.861527,0.393467,0.320867][0.30814,0.832025,0][-3.18841,2.63836,-0.223424][-0.810062,-0.0986245,0.577991][0.33718,0.80684,0][-3.18057,2.7487,-0.269491][-0.861527,0.393467,0.320867][0.30814,0.832025,0][-3.19963,2.72964,-0.332418][-0.943337,0.331835,1.992e-006][0.317505,0.832025,0][-3.18841,2.63836,-0.223424][-0.810062,-0.0986245,0.577991][0.33718,0.80684,0][-3.18841,2.63836,-0.223424][-0.810062,-0.0986245,0.577991][0.33718,0.80684,0][-3.19963,2.72964,-0.332418][-0.943337,0.331835,1.992e-006][0.317505,0.832025,0][-3.22142,2.60536,-0.332418][-0.972936,-0.231076,1.31754e-006][0.353401,0.80684,0][-3.18057,2.7487,-0.395347][-0.861527,0.393466,-0.320867][0.30814,0.832025,0][-3.18841,2.63836,-0.441413][-0.810063,-0.0986273,-0.577989][0.33718,0.80684,0][-3.19963,2.72964,-0.332418][-0.943337,0.331835,1.992e-006][0.317505,0.832025,0][-3.19963,2.72964,-0.332418][-0.943337,0.331835,1.992e-006][0.317505,0.832025,0][-3.18841,2.63836,-0.441413][-0.810063,-0.0986273,-0.577989][0.33718,0.80684,0][-3.22142,2.60536,-0.332418][-0.972936,-0.231076,1.31754e-006][0.353401,0.80684,0][-3.13068,2.79858,-0.434238][-0.696523,0.530065,-0.483618][0.283622,0.832025,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-3.18057,2.7487,-0.395347][-0.861527,0.393466,-0.320867][0.30814,0.832025,0][-3.18057,2.7487,-0.395347][-0.861527,0.393466,-0.320867][0.30814,0.832025,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-3.18841,2.63836,-0.441413][-0.810063,-0.0986273,-0.577989][0.33718,0.80684,0][-3.13068,2.79858,-0.434238][-0.696523,0.530065,-0.483618][0.283622,0.832025,0][-3.06902,2.86025,-0.434238][-0.530064,0.696524,-0.483618][0.253317,0.832025,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-3.06902,2.86025,-0.434238][-0.530064,0.696524,-0.483618][0.253317,0.832025,0][-2.99521,2.83157,-0.508776][-0.173578,0.488451,-0.855153][0.242225,0.80684,0][-3.06902,2.86025,-0.434238][-0.530064,0.696524,-0.483618][0.253317,0.832025,0][-3.01914,2.91013,-0.395347][-0.393466,0.861527,-0.320867][0.2288,0.832025,0][-2.99521,2.83157,-0.508776][-0.173578,0.488451,-0.855153][0.242225,0.80684,0][-2.99521,2.83157,-0.508776][-0.173578,0.488451,-0.855153][0.242225,0.80684,0][-3.01914,2.91013,-0.395347][-0.393466,0.861527,-0.320867][0.2288,0.832025,0][-2.9088,2.91798,-0.441413][0.0986241,0.810065,-0.577986][0.199759,0.80684,0][-3.01914,2.91013,-0.395347][-0.393466,0.861527,-0.320867][0.2288,0.832025,0][-3.00008,2.92919,-0.332418][-0.331834,0.943338,2.01474e-006][0.219435,0.832025,0][-2.9088,2.91798,-0.441413][0.0986241,0.810065,-0.577986][0.199759,0.80684,0][-2.9088,2.91798,-0.441413][0.0986241,0.810065,-0.577986][0.199759,0.80684,0][-3.00008,2.92919,-0.332418][-0.331834,0.943338,2.01474e-006][0.219435,0.832025,0][-2.8758,2.95098,-0.332418][0.231074,0.972936,1.35816e-006][0.183539,0.80684,0][-3.01914,2.91013,-0.269491][-0.393467,0.861527,0.320867][0.2288,0.832025,0][-2.9088,2.91798,-0.223424][0.0986212,0.810064,0.577989][0.199759,0.80684,0][-3.00008,2.92919,-0.332418][-0.331834,0.943338,2.01474e-006][0.219435,0.832025,0][-3.00008,2.92919,-0.332418][-0.331834,0.943338,2.01474e-006][0.219435,0.832025,0][-2.9088,2.91798,-0.223424][0.0986212,0.810064,0.577989][0.199759,0.80684,0][-2.8758,2.95098,-0.332418][0.231074,0.972936,1.35816e-006][0.183539,0.80684,0][-2.74582,2.75496,-0.267746][0.751983,0.280522,0.596514][0.517434,0.984299,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.45257,0.984299,0][-1.78072,1.78986,-0.267746][-0.180644,0.879376,0.440528][0.517434,0.467746,0][-1.78072,1.78986,-0.267746][-0.180644,0.879376,0.440528][0.517434,0.467746,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.45257,0.984299,0][-1.8646,1.70598,-0.175059][-0.415694,0.69905,0.581832][0.45257,0.467747,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.969123,0.984299,0][-2.94152,2.55926,-0.175059][0.0219611,-0.429737,0.902687][0.892561,0.984299,0][-1.8646,1.70598,-0.175059][-0.415694,0.69905,0.581832][0.969123,0.467747,0][-1.8646,1.70598,-0.175059][-0.415694,0.69905,0.581832][0.969123,0.467747,0][-2.94152,2.55926,-0.175059][0.0219611,-0.429737,0.902687][0.892561,0.984299,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.892561,0.467747,0][-2.94152,2.55926,-0.175059][0.0219611,-0.429737,0.902687][0.892561,0.984299,0][-3.0254,2.47538,-0.267746][-0.280521,-0.75198,0.596519][0.827696,0.984299,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.892561,0.467747,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.892561,0.467747,0][-3.0254,2.47538,-0.267746][-0.280521,-0.75198,0.596519][0.827696,0.984299,0][-2.0603,1.51028,-0.267746][-0.879371,0.180647,0.440538][0.827696,0.467747,0][-3.0254,2.47538,-0.267746][-0.280521,-0.75198,0.596519][0.827696,0.984299,0][-3.05336,2.44742,-0.332418][-0.463552,-0.88607,-5.33228e-006][0.801703,0.984298,0][-2.0603,1.51028,-0.267746][-0.879371,0.180647,0.440538][0.827696,0.467747,0][-2.0603,1.51028,-0.267746][-0.879371,0.180647,0.440538][0.827696,0.467747,0][-3.05336,2.44742,-0.332418][-0.463552,-0.88607,-5.33228e-006][0.801703,0.984298,0][-2.08826,1.48232,-0.332418][-0.975541,0.219817,0][0.801703,0.467746,0][-3.05336,2.44742,-0.332418][-0.463552,-0.88607,-5.33228e-006][0.801703,0.984298,0][-3.0254,2.47539,-0.39709][-0.280517,-0.751983,-0.596516][0.77571,0.984299,0][-2.08826,1.48232,-0.332418][-0.975541,0.219817,0][0.801703,0.467746,0][-2.08826,1.48232,-0.332418][-0.975541,0.219817,0][0.801703,0.467746,0][-3.0254,2.47539,-0.39709][-0.280517,-0.751983,-0.596516][0.77571,0.984299,0][-2.0603,1.51028,-0.39709][-0.879372,0.180644,-0.440538][0.77571,0.467747,0][-3.0254,2.47539,-0.39709][-0.280517,-0.751983,-0.596516][0.77571,0.984299,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.710846,0.984299,0][-2.0603,1.51028,-0.39709][-0.879372,0.180644,-0.440538][0.77571,0.467747,0][-2.0603,1.51028,-0.39709][-0.879372,0.180644,-0.440538][0.77571,0.467747,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.710846,0.984299,0][-1.97642,1.59416,-0.489778][-0.699049,0.415693,-0.581832][0.710846,0.467747,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.710846,0.984299,0][-2.8297,2.67108,-0.489778][0.429738,-0.0219621,-0.902686][0.634284,0.984299,0][-1.97642,1.59416,-0.489778][-0.699049,0.415693,-0.581832][0.710846,0.467747,0][-1.97642,1.59416,-0.489778][-0.699049,0.415693,-0.581832][0.710846,0.467747,0][-2.8297,2.67108,-0.489778][0.429738,-0.0219621,-0.902686][0.634284,0.984299,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.634284,0.467747,0][-2.8297,2.67108,-0.489778][0.429738,-0.0219621,-0.902686][0.634284,0.984299,0][-2.74582,2.75496,-0.39709][0.751985,0.280523,-0.596511][0.569419,0.984299,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.634284,0.467747,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.634284,0.467747,0][-2.74582,2.75496,-0.39709][0.751985,0.280523,-0.596511][0.569419,0.984299,0][-1.78072,1.78986,-0.39709][-0.180642,0.879377,-0.440527][0.569419,0.467747,0][-2.74582,2.75496,-0.39709][0.751985,0.280523,-0.596511][0.569419,0.984299,0][-2.71786,2.78292,-0.332418][0.886078,0.463537,0][0.543427,0.984299,0][-1.78072,1.78986,-0.39709][-0.180642,0.879377,-0.440527][0.569419,0.467747,0][-1.78072,1.78986,-0.39709][-0.180642,0.879377,-0.440527][0.569419,0.467747,0][-2.71786,2.78292,-0.332418][0.886078,0.463537,0][0.543427,0.984299,0][-1.75276,1.81782,-0.332418][-0.219788,0.975548,2.13914e-007][0.543427,0.467747,0][-2.71786,2.78292,-0.332418][0.886078,0.463537,0][0.543427,0.984299,0][-2.74582,2.75496,-0.267746][0.751983,0.280522,0.596514][0.517434,0.984299,0][-1.75276,1.81782,-0.332418][-0.219788,0.975548,2.13914e-007][0.543427,0.467747,0][-1.75276,1.81782,-0.332418][-0.219788,0.975548,2.13914e-007][0.543427,0.467747,0][-2.74582,2.75496,-0.267746][0.751983,0.280522,0.596514][0.517434,0.984299,0][-1.78072,1.78986,-0.267746][-0.180644,0.879376,0.440528][0.517434,0.467746,0][-3.06902,2.86025,-0.230599][-0.53006,0.696524,0.483622][0.253317,0.832025,0][-3.01914,2.91013,-0.269491][-0.393467,0.861527,0.320867][0.2288,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.13068,2.79858,-0.230599][-0.696523,0.530062,0.483623][0.283622,0.832025,0][-3.06902,2.86025,-0.230599][-0.53006,0.696524,0.483622][0.253317,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.18057,2.7487,-0.269491][-0.861527,0.393467,0.320867][0.30814,0.832025,0][-3.13068,2.79858,-0.230599][-0.696523,0.530062,0.483623][0.283622,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.19963,2.72964,-0.332418][-0.943337,0.331835,1.992e-006][0.317505,0.832025,0][-3.18057,2.7487,-0.269491][-0.861527,0.393467,0.320867][0.30814,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.18057,2.7487,-0.395347][-0.861527,0.393466,-0.320867][0.30814,0.832025,0][-3.19963,2.72964,-0.332418][-0.943337,0.331835,1.992e-006][0.317505,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.13068,2.79858,-0.434238][-0.696523,0.530065,-0.483618][0.283622,0.832025,0][-3.18057,2.7487,-0.395347][-0.861527,0.393466,-0.320867][0.30814,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.06902,2.86025,-0.434238][-0.530064,0.696524,-0.483618][0.253317,0.832025,0][-3.13068,2.79858,-0.434238][-0.696523,0.530065,-0.483618][0.283622,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.01914,2.91013,-0.395347][-0.393466,0.861527,-0.320867][0.2288,0.832025,0][-3.06902,2.86025,-0.434238][-0.530064,0.696524,-0.483618][0.253317,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.00008,2.92919,-0.332418][-0.331834,0.943338,2.01474e-006][0.219435,0.832025,0][-3.01914,2.91013,-0.395347][-0.393466,0.861527,-0.320867][0.2288,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.01914,2.91013,-0.269491][-0.393467,0.861527,0.320867][0.2288,0.832025,0][-3.00008,2.92919,-0.332418][-0.331834,0.943338,2.01474e-006][0.219435,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-2.87576,2.72865,-0.128779][0.301081,0.0452026,0.952527][0.238165,0.752198,0][-2.9088,2.91798,-0.223424][0.0986212,0.810064,0.577989][0.199759,0.80684,0][-2.9088,2.91798,-0.223424][0.0986212,0.810064,0.577989][0.199759,0.80684,0][-2.87576,2.72865,-0.128779][0.301081,0.0452026,0.952527][0.238165,0.752198,0][-2.77599,2.82842,-0.206562][0.665202,0.366862,0.650321][0.18913,0.752198,0][-1.76585,1.61874,-0.128779][0.176247,0.176248,0.968439][0.219825,0.637661,0][-1.66608,1.71851,-0.206562][0.524179,0.524179,0.671173][0.165413,0.637661,0][-1.85885,1.71174,-0.128779][-0.330041,0.596372,0.731719][0.219825,0.688377,0][-1.85885,1.71174,-0.128779][-0.330041,0.596372,0.731719][0.219825,0.688377,0][-1.66608,1.71851,-0.206562][0.524179,0.524179,0.671173][0.165413,0.637661,0][-1.75908,1.81151,-0.206562][-0.0506016,0.855507,0.515312][0.165413,0.688377,0][-3.10201,2.72477,-0.156062][-0.488451,0.173583,0.855152][0.294715,0.80684,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-2.87576,2.72865,-0.128779][0.301081,0.0452026,0.952527][0.238165,0.752198,0][-1.88918,1.49541,-0.128779][-0.176246,-0.176247,0.968439][0.287083,0.637661,0][-1.76585,1.61874,-0.128779][0.176247,0.176248,0.968439][0.219825,0.637661,0][-1.98217,1.58841,-0.128779][-0.596373,0.330038,0.73172][0.287083,0.688377,0][-1.98217,1.58841,-0.128779][-0.596373,0.330038,0.73172][0.287083,0.688377,0][-1.76585,1.61874,-0.128779][0.176247,0.176248,0.968439][0.219825,0.637661,0][-1.85885,1.71174,-0.128779][-0.330041,0.596372,0.731719][0.219825,0.688377,0][-3.09886,2.50555,-0.206562][-0.36686,-0.665203,0.650321][0.34781,0.752198,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-3.18841,2.63836,-0.223424][-0.810062,-0.0986245,0.577991][0.33718,0.80684,0][-3.18841,2.63836,-0.223424][-0.810062,-0.0986245,0.577991][0.33718,0.80684,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-3.10201,2.72477,-0.156062][-0.488451,0.173583,0.855152][0.294715,0.80684,0][-1.98895,1.39564,-0.206562][-0.524177,-0.524176,0.671176][0.341495,0.637661,0][-1.88918,1.49541,-0.128779][-0.176246,-0.176247,0.968439][0.287083,0.637661,0][-2.08195,1.48864,-0.206562][-0.855506,0.0506042,0.515314][0.341495,0.688377,0][-2.08195,1.48864,-0.206562][-0.855506,0.0506042,0.515314][0.341495,0.688377,0][-1.88918,1.49541,-0.128779][-0.176246,-0.176247,0.968439][0.287083,0.637661,0][-1.98217,1.58841,-0.128779][-0.596373,0.330038,0.73172][0.287083,0.688377,0][-3.13697,2.46744,-0.332418][-0.576766,-0.81691,0][0.36654,0.752198,0][-3.09886,2.50555,-0.206562][-0.36686,-0.665203,0.650321][0.34781,0.752198,0][-3.22142,2.60536,-0.332418][-0.972936,-0.231076,1.31754e-006][0.353401,0.80684,0][-3.22142,2.60536,-0.332418][-0.972936,-0.231076,1.31754e-006][0.353401,0.80684,0][-3.09886,2.50555,-0.206562][-0.36686,-0.665203,0.650321][0.34781,0.752198,0][-3.18841,2.63836,-0.223424][-0.810062,-0.0986245,0.577991][0.33718,0.80684,0][-2.02706,1.35753,-0.332418][-0.707108,-0.707106,1.59954e-006][0.362279,0.637661,0][-1.98895,1.39564,-0.206562][-0.524177,-0.524176,0.671176][0.341495,0.637661,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-1.98895,1.39564,-0.206562][-0.524177,-0.524176,0.671176][0.341495,0.637661,0][-2.08195,1.48864,-0.206562][-0.855506,0.0506042,0.515314][0.341495,0.688377,0][-3.18841,2.63836,-0.441413][-0.810063,-0.0986273,-0.577989][0.33718,0.80684,0][-3.09886,2.50555,-0.458275][-0.366858,-0.665207,-0.650319][0.34781,0.752198,0][-3.22142,2.60536,-0.332418][-0.972936,-0.231076,1.31754e-006][0.353401,0.80684,0][-3.22142,2.60536,-0.332418][-0.972936,-0.231076,1.31754e-006][0.353401,0.80684,0][-3.09886,2.50555,-0.458275][-0.366858,-0.665207,-0.650319][0.34781,0.752198,0][-3.13697,2.46744,-0.332418][-0.576766,-0.81691,0][0.36654,0.752198,0][-1.98895,1.39564,-0.458275][-0.524177,-0.524178,-0.671175][0.341495,0.637661,0][-2.02706,1.35753,-0.332418][-0.707108,-0.707106,1.59954e-006][0.362279,0.637661,0][-2.08195,1.48864,-0.458275][-0.855507,0.0506035,-0.515313][0.341495,0.688377,0][-2.08195,1.48864,-0.458275][-0.855507,0.0506035,-0.515313][0.341495,0.688377,0][-2.02706,1.35753,-0.332418][-0.707108,-0.707106,1.59954e-006][0.362279,0.637661,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-2.99909,2.60533,-0.536058][-0.045202,-0.301081,-0.952527][0.298775,0.752198,0][-3.18841,2.63836,-0.441413][-0.810063,-0.0986273,-0.577989][0.33718,0.80684,0][-3.18841,2.63836,-0.441413][-0.810063,-0.0986273,-0.577989][0.33718,0.80684,0][-2.99909,2.60533,-0.536058][-0.045202,-0.301081,-0.952527][0.298775,0.752198,0][-3.09886,2.50555,-0.458275][-0.366858,-0.665207,-0.650319][0.34781,0.752198,0][-1.88918,1.49541,-0.536058][-0.176245,-0.176247,-0.968439][0.287083,0.637661,0][-1.98895,1.39564,-0.458275][-0.524177,-0.524178,-0.671175][0.341495,0.637661,0][-1.98217,1.58841,-0.536058][-0.596372,0.330038,-0.73172][0.287083,0.688377,0][-1.98217,1.58841,-0.536058][-0.596372,0.330038,-0.73172][0.287083,0.688377,0][-1.98895,1.39564,-0.458275][-0.524177,-0.524178,-0.671175][0.341495,0.637661,0][-2.08195,1.48864,-0.458275][-0.855507,0.0506035,-0.515313][0.341495,0.688377,0][-2.99521,2.83157,-0.508776][-0.173578,0.488451,-0.855153][0.242225,0.80684,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-2.99909,2.60533,-0.536058][-0.045202,-0.301081,-0.952527][0.298775,0.752198,0][-1.76585,1.61874,-0.536058][0.176247,0.176247,-0.968439][0.219825,0.637661,0][-1.88918,1.49541,-0.536058][-0.176245,-0.176247,-0.968439][0.287083,0.637661,0][-1.85885,1.71174,-0.536058][-0.330042,0.596372,-0.731719][0.219825,0.688377,0][-1.85885,1.71174,-0.536058][-0.330042,0.596372,-0.731719][0.219825,0.688377,0][-1.88918,1.49541,-0.536058][-0.176245,-0.176247,-0.968439][0.287083,0.637661,0][-1.98217,1.58841,-0.536058][-0.596372,0.330038,-0.73172][0.287083,0.688377,0][-2.77599,2.82842,-0.458275][0.665204,0.366862,-0.65032][0.18913,0.752198,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-2.9088,2.91798,-0.441413][0.0986241,0.810065,-0.577986][0.199759,0.80684,0][-2.9088,2.91798,-0.441413][0.0986241,0.810065,-0.577986][0.199759,0.80684,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-2.99521,2.83157,-0.508776][-0.173578,0.488451,-0.855153][0.242225,0.80684,0][-1.66608,1.71851,-0.458275][0.52418,0.524179,-0.671171][0.165413,0.637661,0][-1.76585,1.61874,-0.536058][0.176247,0.176247,-0.968439][0.219825,0.637661,0][-1.75908,1.81151,-0.458275][-0.0506008,0.855508,-0.515311][0.165413,0.688377,0][-1.75908,1.81151,-0.458275][-0.0506008,0.855508,-0.515311][0.165413,0.688377,0][-1.76585,1.61874,-0.536058][0.176247,0.176247,-0.968439][0.219825,0.637661,0][-1.85885,1.71174,-0.536058][-0.330042,0.596372,-0.731719][0.219825,0.688377,0][-2.73788,2.86653,-0.332418][0.816908,0.576767,1.12132e-006][0.1704,0.752198,0][-2.77599,2.82842,-0.458275][0.665204,0.366862,-0.65032][0.18913,0.752198,0][-2.8758,2.95098,-0.332418][0.231074,0.972936,1.35816e-006][0.183539,0.80684,0][-2.8758,2.95098,-0.332418][0.231074,0.972936,1.35816e-006][0.183539,0.80684,0][-2.77599,2.82842,-0.458275][0.665204,0.366862,-0.65032][0.18913,0.752198,0][-2.9088,2.91798,-0.441413][0.0986241,0.810065,-0.577986][0.199759,0.80684,0][-1.62797,1.75662,-0.332418][0.707108,0.707106,1.59953e-006][0.144629,0.637661,0][-1.66608,1.71851,-0.458275][0.52418,0.524179,-0.671171][0.165413,0.637661,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-1.66608,1.71851,-0.458275][0.52418,0.524179,-0.671171][0.165413,0.637661,0][-1.75908,1.81151,-0.458275][-0.0506008,0.855508,-0.515311][0.165413,0.688377,0][-2.9088,2.91798,-0.223424][0.0986212,0.810064,0.577989][0.199759,0.80684,0][-2.77599,2.82842,-0.206562][0.665202,0.366862,0.650321][0.18913,0.752198,0][-2.8758,2.95098,-0.332418][0.231074,0.972936,1.35816e-006][0.183539,0.80684,0][-2.8758,2.95098,-0.332418][0.231074,0.972936,1.35816e-006][0.183539,0.80684,0][-2.77599,2.82842,-0.206562][0.665202,0.366862,0.650321][0.18913,0.752198,0][-2.73788,2.86653,-0.332418][0.816908,0.576767,1.12132e-006][0.1704,0.752198,0][-1.66608,1.71851,-0.206562][0.524179,0.524179,0.671173][0.165413,0.637661,0][-1.62797,1.75662,-0.332418][0.707108,0.707106,1.59953e-006][0.144629,0.637661,0][-1.75908,1.81151,-0.206562][-0.0506016,0.855507,0.515312][0.165413,0.688377,0][-1.75908,1.81151,-0.206562][-0.0506016,0.855507,0.515312][0.165413,0.688377,0][-1.62797,1.75662,-0.332418][0.707108,0.707106,1.59953e-006][0.144629,0.637661,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-2.87576,2.72865,-0.128779][0.301081,0.0452026,0.952527][0.238165,0.752198,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.240991,0.726732,0][-2.77599,2.82842,-0.206562][0.665202,0.366862,0.650321][0.18913,0.752198,0][-2.77599,2.82842,-0.206562][0.665202,0.366862,0.650321][0.18913,0.752198,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.240991,0.726732,0][-2.74582,2.75496,-0.267746][0.751983,0.280522,0.596514][0.199769,0.726732,0][-1.85885,1.71174,-0.128779][-0.330041,0.596372,0.731719][0.219825,0.688377,0][-1.75908,1.81151,-0.206562][-0.0506016,0.855507,0.515312][0.165413,0.688377,0][-1.8646,1.70598,-0.175059][-0.415694,0.69905,0.581832][0.222961,0.703916,0][-1.8646,1.70598,-0.175059][-0.415694,0.69905,0.581832][0.222961,0.703916,0][-1.75908,1.81151,-0.206562][-0.0506016,0.855507,0.515312][0.165413,0.688377,0][-1.78072,1.78986,-0.267746][-0.180644,0.879376,0.440528][0.177219,0.703916,0][-2.87576,2.72865,-0.128779][0.301081,0.0452026,0.952527][0.238165,0.752198,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.240991,0.726732,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.240991,0.726732,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-2.94152,2.55926,-0.175059][0.0219611,-0.429737,0.902687][0.295949,0.726732,0][-1.98217,1.58841,-0.128779][-0.596373,0.330038,0.73172][0.287083,0.688377,0][-1.85885,1.71174,-0.128779][-0.330041,0.596372,0.731719][0.219825,0.688377,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.283946,0.703916,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.283946,0.703916,0][-1.85885,1.71174,-0.128779][-0.330041,0.596372,0.731719][0.219825,0.688377,0][-1.8646,1.70598,-0.175059][-0.415694,0.69905,0.581832][0.222961,0.703916,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-3.09886,2.50555,-0.206562][-0.36686,-0.665203,0.650321][0.34781,0.752198,0][-2.94152,2.55926,-0.175059][0.0219611,-0.429737,0.902687][0.295949,0.726732,0][-2.94152,2.55926,-0.175059][0.0219611,-0.429737,0.902687][0.295949,0.726732,0][-3.09886,2.50555,-0.206562][-0.36686,-0.665203,0.650321][0.34781,0.752198,0][-3.0254,2.47538,-0.267746][-0.280521,-0.75198,0.596519][0.337171,0.726732,0][-1.98217,1.58841,-0.128779][-0.596373,0.330038,0.73172][0.287083,0.688377,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.283946,0.703916,0][-2.08195,1.48864,-0.206562][-0.855506,0.0506042,0.515314][0.341495,0.688377,0][-2.08195,1.48864,-0.206562][-0.855506,0.0506042,0.515314][0.341495,0.688377,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.283946,0.703916,0][-2.0603,1.51028,-0.267746][-0.879371,0.180647,0.440538][0.329689,0.703916,0][-3.09886,2.50555,-0.206562][-0.36686,-0.665203,0.650321][0.34781,0.752198,0][-3.13697,2.46744,-0.332418][-0.576766,-0.81691,0][0.36654,0.752198,0][-3.0254,2.47538,-0.267746][-0.280521,-0.75198,0.596519][0.337171,0.726732,0][-3.0254,2.47538,-0.267746][-0.280521,-0.75198,0.596519][0.337171,0.726732,0][-3.13697,2.46744,-0.332418][-0.576766,-0.81691,0][0.36654,0.752198,0][-3.05336,2.44742,-0.332418][-0.463552,-0.88607,-5.33228e-006][0.350914,0.726732,0][-2.08195,1.48864,-0.206562][-0.855506,0.0506042,0.515314][0.341495,0.688377,0][-2.0603,1.51028,-0.267746][-0.879371,0.180647,0.440538][0.329689,0.703916,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-2.0603,1.51028,-0.267746][-0.879371,0.180647,0.440538][0.329689,0.703916,0][-2.08826,1.48232,-0.332418][-0.975541,0.219817,0][0.34494,0.703916,0][-3.09886,2.50555,-0.458275][-0.366858,-0.665207,-0.650319][0.34781,0.752198,0][-3.0254,2.47539,-0.39709][-0.280517,-0.751983,-0.596516][0.33717,0.726732,0][-3.13697,2.46744,-0.332418][-0.576766,-0.81691,0][0.36654,0.752198,0][-3.13697,2.46744,-0.332418][-0.576766,-0.81691,0][0.36654,0.752198,0][-3.0254,2.47539,-0.39709][-0.280517,-0.751983,-0.596516][0.33717,0.726732,0][-3.05336,2.44742,-0.332418][-0.463552,-0.88607,-5.33228e-006][0.350914,0.726732,0][-2.08195,1.48864,-0.458275][-0.855507,0.0506035,-0.515313][0.341495,0.688377,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-2.0603,1.51028,-0.39709][-0.879372,0.180644,-0.440538][0.329689,0.703916,0][-2.0603,1.51028,-0.39709][-0.879372,0.180644,-0.440538][0.329689,0.703916,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-2.08826,1.48232,-0.332418][-0.975541,0.219817,0][0.34494,0.703916,0][-2.99909,2.60533,-0.536058][-0.045202,-0.301081,-0.952527][0.298775,0.752198,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.295949,0.726732,0][-3.09886,2.50555,-0.458275][-0.366858,-0.665207,-0.650319][0.34781,0.752198,0][-3.09886,2.50555,-0.458275][-0.366858,-0.665207,-0.650319][0.34781,0.752198,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.295949,0.726732,0][-3.0254,2.47539,-0.39709][-0.280517,-0.751983,-0.596516][0.33717,0.726732,0][-1.98217,1.58841,-0.536058][-0.596372,0.330038,-0.73172][0.287083,0.688377,0][-2.08195,1.48864,-0.458275][-0.855507,0.0506035,-0.515313][0.341495,0.688377,0][-1.97642,1.59416,-0.489778][-0.699049,0.415693,-0.581832][0.283946,0.703916,0][-1.97642,1.59416,-0.489778][-0.699049,0.415693,-0.581832][0.283946,0.703916,0][-2.08195,1.48864,-0.458275][-0.855507,0.0506035,-0.515313][0.341495,0.688377,0][-2.0603,1.51028,-0.39709][-0.879372,0.180644,-0.440538][0.329689,0.703916,0][-2.99909,2.60533,-0.536058][-0.045202,-0.301081,-0.952527][0.298775,0.752198,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.295949,0.726732,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.295949,0.726732,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-2.8297,2.67108,-0.489778][0.429738,-0.0219621,-0.902686][0.240991,0.726732,0][-1.85885,1.71174,-0.536058][-0.330042,0.596372,-0.731719][0.219825,0.688377,0][-1.98217,1.58841,-0.536058][-0.596372,0.330038,-0.73172][0.287083,0.688377,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.222961,0.703916,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.222961,0.703916,0][-1.98217,1.58841,-0.536058][-0.596372,0.330038,-0.73172][0.287083,0.688377,0][-1.97642,1.59416,-0.489778][-0.699049,0.415693,-0.581832][0.283946,0.703916,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-2.77599,2.82842,-0.458275][0.665204,0.366862,-0.65032][0.18913,0.752198,0][-2.8297,2.67108,-0.489778][0.429738,-0.0219621,-0.902686][0.240991,0.726732,0][-2.8297,2.67108,-0.489778][0.429738,-0.0219621,-0.902686][0.240991,0.726732,0][-2.77599,2.82842,-0.458275][0.665204,0.366862,-0.65032][0.18913,0.752198,0][-2.74582,2.75496,-0.39709][0.751985,0.280523,-0.596511][0.199769,0.726732,0][-1.85885,1.71174,-0.536058][-0.330042,0.596372,-0.731719][0.219825,0.688377,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.222961,0.703916,0][-1.75908,1.81151,-0.458275][-0.0506008,0.855508,-0.515311][0.165413,0.688377,0][-1.75908,1.81151,-0.458275][-0.0506008,0.855508,-0.515311][0.165413,0.688377,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.222961,0.703916,0][-1.78072,1.78986,-0.39709][-0.180642,0.879377,-0.440527][0.177219,0.703916,0][-2.77599,2.82842,-0.458275][0.665204,0.366862,-0.65032][0.18913,0.752198,0][-2.73788,2.86653,-0.332418][0.816908,0.576767,1.12132e-006][0.1704,0.752198,0][-2.74582,2.75496,-0.39709][0.751985,0.280523,-0.596511][0.199769,0.726732,0][-2.74582,2.75496,-0.39709][0.751985,0.280523,-0.596511][0.199769,0.726732,0][-2.73788,2.86653,-0.332418][0.816908,0.576767,1.12132e-006][0.1704,0.752198,0][-2.71786,2.78292,-0.332418][0.886078,0.463537,0][0.186026,0.726732,0][-1.75908,1.81151,-0.458275][-0.0506008,0.855508,-0.515311][0.165413,0.688377,0][-1.78072,1.78986,-0.39709][-0.180642,0.879377,-0.440527][0.177219,0.703916,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-1.78072,1.78986,-0.39709][-0.180642,0.879377,-0.440527][0.177219,0.703916,0][-1.75276,1.81782,-0.332418][-0.219788,0.975548,2.13914e-007][0.161969,0.703916,0][-2.77599,2.82842,-0.206562][0.665202,0.366862,0.650321][0.18913,0.752198,0][-2.74582,2.75496,-0.267746][0.751983,0.280522,0.596514][0.199769,0.726732,0][-2.73788,2.86653,-0.332418][0.816908,0.576767,1.12132e-006][0.1704,0.752198,0][-2.73788,2.86653,-0.332418][0.816908,0.576767,1.12132e-006][0.1704,0.752198,0][-2.74582,2.75496,-0.267746][0.751983,0.280522,0.596514][0.199769,0.726732,0][-2.71786,2.78292,-0.332418][0.886078,0.463537,0][0.186026,0.726732,0][-1.75908,1.81151,-0.206562][-0.0506016,0.855507,0.515312][0.165413,0.688377,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-1.78072,1.78986,-0.267746][-0.180644,0.879376,0.440528][0.177219,0.703916,0][-1.78072,1.78986,-0.267746][-0.180644,0.879376,0.440528][0.177219,0.703916,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-1.75276,1.81782,-0.332418][-0.219788,0.975548,2.13914e-007][0.161969,0.703916,0][-0.504902,0.0491269,-0.168477][-0.455845,0.591772,-0.664839][0.835541,0.171845,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.808035,0.078704,0][-0.54653,0.00749779,-0.0503763][-0.595147,0.595148,0.539999][0.887416,0.145987,0][-0.54653,0.00749779,-0.0503763][-0.595147,0.595148,0.539999][0.887416,0.145987,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.808035,0.078704,0][-0.763828,-0.2098,-0.0503763][-0.816581,0.35995,0.451255][0.887416,0.011005,0][-0.319564,0.234465,-0.168477][-1.43771,1.43771,1.39474e-005][0.835541,0.286974,0][-0.504902,0.0491269,-0.168477][-0.455845,0.591772,-0.664839][0.835541,0.171845,0][-0.277935,0.276093,-0.0503774][-0.595148,0.595149,0.539997][0.887416,0.312833,0][-0.277935,0.276093,-0.0503774][-0.595148,0.595149,0.539997][0.887416,0.312833,0][-0.504902,0.0491269,-0.168477][-0.455845,0.591772,-0.664839][0.835541,0.171845,0][-0.54653,0.00749779,-0.0503763][-0.595147,0.595148,0.539999][0.887416,0.145987,0][-0.319564,0.234465,-0.168477][-1.43771,1.43771,1.39474e-005][0.835541,0.286974,0][-0.277935,0.276093,-0.0503774][-0.595148,0.595149,0.539997][0.887416,0.312833,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.808036,0.380115,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.808036,0.380115,0][-0.277935,0.276093,-0.0503774][-0.595148,0.595149,0.539997][0.887416,0.312833,0][-0.0606381,0.493391,-0.0503764][-0.35996,0.816576,0.451257][0.887416,0.447814,0][-0.112351,0.441678,-0.332418][-0.959589,0.281404,-1.20558e-006][0.763531,0.415691,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.808036,0.380115,0][-0.0606381,0.493391,-0.332418][-2.09712,3.7873,0][0.763531,0.447814,0][-0.0606381,0.493391,-0.332418][-2.09712,3.7873,0][0.763531,0.447814,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.808036,0.380115,0][-0.0606381,0.493391,-0.0503764][-0.35996,0.816576,0.451257][0.887416,0.447814,0][-0.112351,0.441678,-0.332418][-0.959589,0.281404,-1.20558e-006][0.763531,0.415691,0][-0.0606381,0.493391,-0.332418][-2.09712,3.7873,0][0.763531,0.447814,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.719027,0.380115,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.719027,0.380115,0][-0.0606381,0.493391,-0.332418][-2.09712,3.7873,0][0.763531,0.447814,0][-0.0606381,0.493391,-0.61446][-0.35996,0.816577,-0.451256][0.639647,0.447814,0][-0.319564,0.234465,-0.49636][-0.591773,0.455845,0.664838][0.691521,0.286974,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.719027,0.380115,0][-0.277935,0.276093,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.312833,0][-0.277935,0.276093,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.312833,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.719027,0.380115,0][-0.0606381,0.493391,-0.61446][-0.35996,0.816577,-0.451256][0.639647,0.447814,0][-0.504902,0.0491269,-0.49636][-0.455845,0.591773,0.664838][0.691521,0.171845,0][-0.319564,0.234465,-0.49636][-0.591773,0.455845,0.664838][0.691521,0.286974,0][-0.54653,0.00749779,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.145987,0][-0.54653,0.00749779,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.145987,0][-0.319564,0.234465,-0.49636][-0.591773,0.455845,0.664838][0.691521,0.286974,0][-0.277935,0.276093,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.312833,0][-0.504902,0.0491269,-0.49636][-0.455845,0.591773,0.664838][0.691521,0.171845,0][-0.54653,0.00749779,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.145987,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.719027,0.078705,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.719027,0.078705,0][-0.54653,0.00749779,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.145987,0][-0.763828,-0.209799,-0.61446][-0.81658,0.359952,-0.451256][0.639647,0.011005,0][-0.712115,-0.158087,-0.332418][-0.281402,0.95959,-2.63539e-006][0.763531,0.043128,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.719027,0.078705,0][-0.763828,-0.2098,-0.332418][-0.938315,0.345781,-3.78728e-007][0.763531,0.011005,0][-0.763828,-0.2098,-0.332418][-0.938315,0.345781,-3.78728e-007][0.763531,0.011005,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.719027,0.078705,0][-0.763828,-0.209799,-0.61446][-0.81658,0.359952,-0.451256][0.639647,0.011005,0][-0.712115,-0.158087,-0.332418][-0.281402,0.95959,-2.63539e-006][0.763531,0.043128,0][-0.763828,-0.2098,-0.332418][-0.938315,0.345781,-3.78728e-007][0.763531,0.011005,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.808035,0.078704,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.808035,0.078704,0][-0.763828,-0.2098,-0.332418][-0.938315,0.345781,-3.78728e-007][0.763531,0.011005,0][-0.763828,-0.2098,-0.0503763][-0.816581,0.35995,0.451255][0.887416,0.011005,0][-0.525531,-0.0337913,-0.0301803][-0.150835,0.150836,0.976984][0.474368,0.434752,0][-0.759245,-0.267505,-0.0301803][-0.711701,-0.256242,0.654081][0.619834,0.434752,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][-0.759245,-0.267505,-0.0301803][-0.711701,-0.256242,0.654081][0.619834,0.434752,0][-0.0179181,-1.00883,-0.0301803][-0.256242,-0.7117,0.654082][0.619834,0.033073,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][-0.525531,-0.0337913,-0.0301803][-0.150835,0.150836,0.976984][0.474368,0.434752,0][0.504682,-0.486232,-0.0301813][0.150833,-0.150835,0.976984][0.294562,0.033073,0][0.504682,-0.486232,-0.0301813][0.150833,-0.150835,0.976984][0.294562,0.033073,0][-0.525531,-0.0337913,-0.0301803][-0.150835,0.150836,0.976984][0.474368,0.434752,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][-0.00293213,0.488809,-0.0301804][0.256238,0.711704,0.65408][0.149096,0.434752,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][0.738395,-0.252519,-0.0301803][0.7117,0.256241,0.654082][0.149096,0.033073,0][0.738395,-0.252519,-0.0301803][0.7117,0.256241,0.654082][0.149096,0.033073,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][0.504682,-0.486232,-0.0301813][0.150833,-0.150835,0.976984][0.294562,0.033073,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][-0.00293213,0.488809,-0.0301804][0.256238,0.711704,0.65408][0.149096,0.434752,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][-0.00293213,0.488809,-0.0301804][0.256238,0.711704,0.65408][0.149096,0.434752,0][0.738395,-0.252519,-0.0301803][0.7117,0.256241,0.654082][0.149096,0.033073,0][-0.00293213,0.488809,-0.634656][0.256238,0.711704,-0.654079][0.149096,0.434752,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][0.738395,-0.252519,-0.634657][0.7117,0.256242,-0.654082][0.149096,0.033073,0][0.738395,-0.252519,-0.634657][0.7117,0.256242,-0.654082][0.149096,0.033073,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][-0.236645,0.255095,-0.634656][-0.150836,0.150835,-0.976984][0.294562,0.434752,0][-0.00293213,0.488809,-0.634656][0.256238,0.711704,-0.654079][0.149096,0.434752,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][-0.00293213,0.488809,-0.634656][0.256238,0.711704,-0.654079][0.149096,0.434752,0][0.738395,-0.252519,-0.634657][0.7117,0.256242,-0.654082][0.149096,0.033073,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][-0.236645,0.255095,-0.634656][-0.150836,0.150835,-0.976984][0.294562,0.434752,0][0.215796,-0.775118,-0.634656][0.150835,-0.150835,-0.976984][0.474368,0.033073,0][0.215796,-0.775118,-0.634656][0.150835,-0.150835,-0.976984][0.474368,0.033073,0][-0.236645,0.255095,-0.634656][-0.150836,0.150835,-0.976984][0.294562,0.434752,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][-0.759245,-0.267505,-0.634656][-0.711701,-0.256243,-0.654081][0.619834,0.434752,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][-0.0179171,-1.00883,-0.634656][-0.256236,-0.711704,-0.65408][0.619833,0.033073,0][-0.0179171,-1.00883,-0.634656][-0.256236,-0.711704,-0.65408][0.619833,0.033073,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][0.215796,-0.775118,-0.634656][0.150835,-0.150835,-0.976984][0.474368,0.033073,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.759245,-0.267505,-0.634656][-0.711701,-0.256243,-0.654081][0.619834,0.434752,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][-0.759245,-0.267505,-0.634656][-0.711701,-0.256243,-0.654081][0.619834,0.434752,0][-0.0179171,-1.00883,-0.634656][-0.256236,-0.711704,-0.65408][0.619833,0.033073,0][-0.759245,-0.267505,-0.0301803][-0.711701,-0.256242,0.654081][0.619834,0.434752,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.0179181,-1.00883,-0.0301803][-0.256242,-0.7117,0.654082][0.619834,0.033073,0][-0.0179181,-1.00883,-0.0301803][-0.256242,-0.7117,0.654082][0.619834,0.033073,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][0.0397879,-1.01342,-0.0503763][0.359952,-0.816579,0.451258][0.887416,0.011005,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.808036,0.078705,0][0.257085,-0.796117,-0.0503773][0.59515,-0.595148,0.539996][0.887416,0.145987,0][0.257085,-0.796117,-0.0503773][0.59515,-0.595148,0.539996][0.887416,0.145987,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.808036,0.078705,0][0.298714,-0.754488,-0.168477][0.59177,-0.455843,-0.664842][0.835541,0.171845,0][0.525681,-0.527522,-0.0503773][0.595147,-0.59515,0.539997][0.887416,0.312833,0][0.257085,-0.796117,-0.0503773][0.59515,-0.595148,0.539996][0.887416,0.145987,0][0.484052,-0.56915,-0.168477][0.45584,-0.591772,-0.664843][0.835541,0.286974,0][0.484052,-0.56915,-0.168477][0.45584,-0.591772,-0.664843][0.835541,0.286974,0][0.257085,-0.796117,-0.0503773][0.59515,-0.595148,0.539996][0.887416,0.145987,0][0.298714,-0.754488,-0.168477][0.59177,-0.455843,-0.664842][0.835541,0.171845,0][0.742978,-0.310224,-0.0503763][0.81658,-0.35995,0.451257][0.887416,0.447814,0][0.525681,-0.527522,-0.0503773][0.595147,-0.59515,0.539997][0.887416,0.312833,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.808036,0.380115,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.808036,0.380115,0][0.525681,-0.527522,-0.0503773][0.595147,-0.59515,0.539997][0.887416,0.312833,0][0.484052,-0.56915,-0.168477][0.45584,-0.591772,-0.664843][0.835541,0.286974,0][0.742978,-0.310224,-0.0503763][0.81658,-0.35995,0.451257][0.887416,0.447814,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.808036,0.380115,0][0.742978,-0.310224,-0.332418][0.938315,-0.34578,0][0.763531,0.447814,0][0.742978,-0.310224,-0.332418][0.938315,-0.34578,0][0.763531,0.447814,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.808036,0.380115,0][0.691265,-0.361937,-0.332418][0.281402,-0.95959,-1.32789e-006][0.763531,0.415691,0][0.742978,-0.310224,-0.614461][0.81658,-0.35995,-0.451257][0.639647,0.447814,0][0.742978,-0.310224,-0.332418][0.938315,-0.34578,0][0.763531,0.447814,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.719027,0.380115,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.719027,0.380115,0][0.742978,-0.310224,-0.332418][0.938315,-0.34578,0][0.763531,0.447814,0][0.691265,-0.361937,-0.332418][0.281402,-0.95959,-1.32789e-006][0.763531,0.415691,0][0.742978,-0.310224,-0.614461][0.81658,-0.35995,-0.451257][0.639647,0.447814,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.719027,0.380115,0][0.525681,-0.527522,-0.61446][0.595148,-0.595149,-0.539997][0.639647,0.312833,0][0.525681,-0.527522,-0.61446][0.595148,-0.595149,-0.539997][0.639647,0.312833,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.719027,0.380115,0][0.484052,-0.56915,-0.49636][0.455841,-0.59177,0.664844][0.691521,0.286974,0][0.257085,-0.796117,-0.61446][0.595147,-0.595149,-0.539998][0.639647,0.145987,0][0.525681,-0.527522,-0.61446][0.595148,-0.595149,-0.539997][0.639647,0.312833,0][0.298714,-0.754489,-0.49636][0.591772,-0.455845,0.664839][0.691521,0.171845,0][0.298714,-0.754489,-0.49636][0.591772,-0.455845,0.664839][0.691521,0.171845,0][0.525681,-0.527522,-0.61446][0.595148,-0.595149,-0.539997][0.639647,0.312833,0][0.484052,-0.56915,-0.49636][0.455841,-0.59177,0.664844][0.691521,0.286974,0][0.0397879,-1.01341,-0.61446][0.359959,-0.816578,-0.451254][0.639647,0.011005,0][0.257085,-0.796117,-0.61446][0.595147,-0.595149,-0.539998][0.639647,0.145987,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.719027,0.078705,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.719027,0.078705,0][0.257085,-0.796117,-0.61446][0.595147,-0.595149,-0.539998][0.639647,0.145987,0][0.298714,-0.754489,-0.49636][0.591772,-0.455845,0.664839][0.691521,0.171845,0][0.0397879,-1.01341,-0.61446][0.359959,-0.816578,-0.451254][0.639647,0.011005,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.719027,0.078705,0][0.0397879,-1.01342,-0.332418][0.345783,-0.938314,-1.51215e-006][0.763531,0.011005,0][0.0397879,-1.01342,-0.332418][0.345783,-0.938314,-1.51215e-006][0.763531,0.011005,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.719027,0.078705,0][0.0915009,-0.961702,-0.332418][0.95959,-0.281403,0][0.763531,0.043128,0][0.0397879,-1.01342,-0.0503763][0.359952,-0.816579,0.451258][0.887416,0.011005,0][0.0397879,-1.01342,-0.332418][0.345783,-0.938314,-1.51215e-006][0.763531,0.011005,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.808036,0.078705,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.808036,0.078705,0][0.0397879,-1.01342,-0.332418][0.345783,-0.938314,-1.51215e-006][0.763531,0.011005,0][0.0915009,-0.961702,-0.332418][0.95959,-0.281403,0][0.763531,0.043128,0][-0.759245,-0.267505,-0.0301803][-0.711701,-0.256242,0.654081][0.619834,0.434752,0][-0.525531,-0.0337913,-0.0301803][-0.150835,0.150836,0.976984][0.474368,0.434752,0][-0.763828,-0.2098,-0.0503763][-0.816581,0.35995,0.451255][0.603302,0.451627,0][-0.763828,-0.2098,-0.0503763][-0.816581,0.35995,0.451255][0.603302,0.451627,0][-0.525531,-0.0337913,-0.0301803][-0.150835,0.150836,0.976984][0.474368,0.434752,0][-0.54653,0.00749779,-0.0503763][-0.595147,0.595148,0.539999][0.468053,0.451627,0][-0.525531,-0.0337913,-0.0301803][-0.150835,0.150836,0.976984][0.474368,0.434752,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][-0.54653,0.00749779,-0.0503763][-0.595147,0.595148,0.539999][0.468053,0.451627,0][-0.54653,0.00749779,-0.0503763][-0.595147,0.595148,0.539999][0.468053,0.451627,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][-0.277935,0.276093,-0.0503774][-0.595148,0.595149,0.539997][0.300877,0.451627,0][-0.00293213,0.488809,-0.0301804][0.256238,0.711704,0.65408][0.149096,0.434752,0][-0.0606381,0.493391,-0.0503764][-0.35996,0.816576,0.451257][0.165628,0.451627,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][-0.0606381,0.493391,-0.0503764][-0.35996,0.816576,0.451257][0.165628,0.451627,0][-0.277935,0.276093,-0.0503774][-0.595148,0.595149,0.539997][0.300877,0.451627,0][-0.00293213,0.488809,-0.0301804][0.256238,0.711704,0.65408][0.149096,0.434752,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][-0.0606381,0.493391,-0.0503764][-0.35996,0.816576,0.451257][0.165628,0.451627,0][-0.0606381,0.493391,-0.0503764][-0.35996,0.816576,0.451257][0.165628,0.451627,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][-0.0606381,0.493391,-0.332418][-2.09712,3.7873,0][0.165629,0.451627,0][-0.00293213,0.488809,-0.634656][0.256238,0.711704,-0.654079][0.149096,0.434752,0][-0.0606381,0.493391,-0.61446][-0.35996,0.816577,-0.451256][0.165628,0.451627,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][-0.0606381,0.493391,-0.61446][-0.35996,0.816577,-0.451256][0.165628,0.451627,0][-0.0606381,0.493391,-0.332418][-2.09712,3.7873,0][0.165629,0.451627,0][-0.00293213,0.488809,-0.634656][0.256238,0.711704,-0.654079][0.149096,0.434752,0][-0.236645,0.255095,-0.634656][-0.150836,0.150835,-0.976984][0.294562,0.434752,0][-0.0606381,0.493391,-0.61446][-0.35996,0.816577,-0.451256][0.165628,0.451627,0][-0.0606381,0.493391,-0.61446][-0.35996,0.816577,-0.451256][0.165628,0.451627,0][-0.236645,0.255095,-0.634656][-0.150836,0.150835,-0.976984][0.294562,0.434752,0][-0.277935,0.276093,-0.61446][-0.595148,0.595148,-0.539998][0.300877,0.451627,0][-0.236645,0.255095,-0.634656][-0.150836,0.150835,-0.976984][0.294562,0.434752,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][-0.277935,0.276093,-0.61446][-0.595148,0.595148,-0.539998][0.300877,0.451627,0][-0.277935,0.276093,-0.61446][-0.595148,0.595148,-0.539998][0.300877,0.451627,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][-0.54653,0.00749779,-0.61446][-0.595148,0.595148,-0.539998][0.468053,0.451627,0][-0.759245,-0.267505,-0.634656][-0.711701,-0.256243,-0.654081][0.619834,0.434752,0][-0.763828,-0.209799,-0.61446][-0.81658,0.359952,-0.451256][0.603302,0.451627,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][-0.763828,-0.209799,-0.61446][-0.81658,0.359952,-0.451256][0.603302,0.451627,0][-0.54653,0.00749779,-0.61446][-0.595148,0.595148,-0.539998][0.468053,0.451627,0][-0.759245,-0.267505,-0.634656][-0.711701,-0.256243,-0.654081][0.619834,0.434752,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.763828,-0.209799,-0.61446][-0.81658,0.359952,-0.451256][0.603302,0.451627,0][-0.763828,-0.209799,-0.61446][-0.81658,0.359952,-0.451256][0.603302,0.451627,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.763828,-0.2098,-0.332418][-0.938315,0.345781,-3.78728e-007][0.603302,0.451627,0][-0.759245,-0.267505,-0.0301803][-0.711701,-0.256242,0.654081][0.619834,0.434752,0][-0.763828,-0.2098,-0.0503763][-0.816581,0.35995,0.451255][0.603302,0.451627,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.763828,-0.2098,-0.0503763][-0.816581,0.35995,0.451255][0.603302,0.451627,0][-0.763828,-0.2098,-0.332418][-0.938315,0.345781,-3.78728e-007][0.603302,0.451627,0][-0.0179181,-1.00883,-0.0301803][-0.256242,-0.7117,0.654082][0.619834,0.033073,0][0.0397879,-1.01342,-0.0503763][0.359952,-0.816579,0.451258][0.603302,0.016198,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][0.0397879,-1.01342,-0.0503763][0.359952,-0.816579,0.451258][0.603302,0.016198,0][0.257085,-0.796117,-0.0503773][0.59515,-0.595148,0.539996][0.468053,0.016198,0][-0.504902,0.0491269,-0.168477][-0.455845,0.591772,-0.664839][0.442143,0.451627,0][0.298714,-0.754488,-0.168477][0.59177,-0.455843,-0.664842][0.442143,0.016198,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.535469,0.451627,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.535469,0.451627,0][0.298714,-0.754488,-0.168477][0.59177,-0.455843,-0.664842][0.442143,0.016198,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.535469,0.016198,0][0.504682,-0.486232,-0.0301813][0.150833,-0.150835,0.976984][0.294562,0.033073,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][0.525681,-0.527522,-0.0503773][0.595147,-0.59515,0.539997][0.300877,0.016198,0][0.525681,-0.527522,-0.0503773][0.595147,-0.59515,0.539997][0.300877,0.016198,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][0.257085,-0.796117,-0.0503773][0.59515,-0.595148,0.539996][0.468053,0.016198,0][-0.319564,0.234465,-0.168477][-1.43771,1.43771,1.39474e-005][0.326787,0.451627,0][0.484052,-0.56915,-0.168477][0.45584,-0.591772,-0.664843][0.326787,0.016198,0][-0.504902,0.0491269,-0.168477][-0.455845,0.591772,-0.664839][0.442143,0.451627,0][-0.504902,0.0491269,-0.168477][-0.455845,0.591772,-0.664839][0.442143,0.451627,0][0.484052,-0.56915,-0.168477][0.45584,-0.591772,-0.664843][0.326787,0.016198,0][0.298714,-0.754488,-0.168477][0.59177,-0.455843,-0.664842][0.442143,0.016198,0][0.738395,-0.252519,-0.0301803][0.7117,0.256241,0.654082][0.149096,0.033073,0][0.504682,-0.486232,-0.0301813][0.150833,-0.150835,0.976984][0.294562,0.033073,0][0.742978,-0.310224,-0.0503763][0.81658,-0.35995,0.451257][0.165628,0.016198,0][0.742978,-0.310224,-0.0503763][0.81658,-0.35995,0.451257][0.165628,0.016198,0][0.504682,-0.486232,-0.0301813][0.150833,-0.150835,0.976984][0.294562,0.033073,0][0.525681,-0.527522,-0.0503773][0.595147,-0.59515,0.539997][0.300877,0.016198,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.233462,0.451627,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.233461,0.016198,0][-0.319564,0.234465,-0.168477][-1.43771,1.43771,1.39474e-005][0.326787,0.451627,0][-0.319564,0.234465,-0.168477][-1.43771,1.43771,1.39474e-005][0.326787,0.451627,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.233461,0.016198,0][0.484052,-0.56915,-0.168477][0.45584,-0.591772,-0.664843][0.326787,0.016198,0][0.738395,-0.252519,-0.0301803][0.7117,0.256241,0.654082][0.149096,0.033073,0][0.742978,-0.310224,-0.0503763][0.81658,-0.35995,0.451257][0.165628,0.016198,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][0.742978,-0.310224,-0.0503763][0.81658,-0.35995,0.451257][0.165628,0.016198,0][0.742978,-0.310224,-0.332418][0.938315,-0.34578,0][0.165628,0.016198,0][-0.112351,0.441678,-0.332418][-0.959589,0.281404,-1.20558e-006][0.197815,0.451627,0][0.691265,-0.361937,-0.332418][0.281402,-0.95959,-1.32789e-006][0.197815,0.016198,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.233462,0.451627,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.233462,0.451627,0][0.691265,-0.361937,-0.332418][0.281402,-0.95959,-1.32789e-006][0.197815,0.016198,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.233461,0.016198,0][0.738395,-0.252519,-0.634657][0.7117,0.256242,-0.654082][0.149096,0.033073,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][0.742978,-0.310224,-0.614461][0.81658,-0.35995,-0.451257][0.165628,0.016198,0][0.742978,-0.310224,-0.614461][0.81658,-0.35995,-0.451257][0.165628,0.016198,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][0.742978,-0.310224,-0.332418][0.938315,-0.34578,0][0.165628,0.016198,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.233462,0.451627,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.233461,0.016198,0][-0.112351,0.441678,-0.332418][-0.959589,0.281404,-1.20558e-006][0.197815,0.451627,0][-0.112351,0.441678,-0.332418][-0.959589,0.281404,-1.20558e-006][0.197815,0.451627,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.233461,0.016198,0][0.691265,-0.361937,-0.332418][0.281402,-0.95959,-1.32789e-006][0.197815,0.016198,0][0.738395,-0.252519,-0.634657][0.7117,0.256242,-0.654082][0.149096,0.033073,0][0.742978,-0.310224,-0.614461][0.81658,-0.35995,-0.451257][0.165628,0.016198,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][0.742978,-0.310224,-0.614461][0.81658,-0.35995,-0.451257][0.165628,0.016198,0][0.525681,-0.527522,-0.61446][0.595148,-0.595149,-0.539997][0.300877,0.016198,0][-0.319564,0.234465,-0.49636][-0.591773,0.455845,0.664838][0.326787,0.451627,0][0.484052,-0.56915,-0.49636][0.455841,-0.59177,0.664844][0.326787,0.016198,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.233462,0.451627,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.233462,0.451627,0][0.484052,-0.56915,-0.49636][0.455841,-0.59177,0.664844][0.326787,0.016198,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.233461,0.016198,0][0.215796,-0.775118,-0.634656][0.150835,-0.150835,-0.976984][0.474368,0.033073,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][0.257085,-0.796117,-0.61446][0.595147,-0.595149,-0.539998][0.468053,0.016198,0][0.257085,-0.796117,-0.61446][0.595147,-0.595149,-0.539998][0.468053,0.016198,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][0.525681,-0.527522,-0.61446][0.595148,-0.595149,-0.539997][0.300877,0.016198,0][-0.504902,0.0491269,-0.49636][-0.455845,0.591773,0.664838][0.442143,0.451627,0][0.298714,-0.754489,-0.49636][0.591772,-0.455845,0.664839][0.442143,0.016198,0][-0.319564,0.234465,-0.49636][-0.591773,0.455845,0.664838][0.326787,0.451627,0][-0.319564,0.234465,-0.49636][-0.591773,0.455845,0.664838][0.326787,0.451627,0][0.298714,-0.754489,-0.49636][0.591772,-0.455845,0.664839][0.442143,0.016198,0][0.484052,-0.56915,-0.49636][0.455841,-0.59177,0.664844][0.326787,0.016198,0][-0.0179171,-1.00883,-0.634656][-0.256236,-0.711704,-0.65408][0.619833,0.033073,0][0.215796,-0.775118,-0.634656][0.150835,-0.150835,-0.976984][0.474368,0.033073,0][0.0397879,-1.01341,-0.61446][0.359959,-0.816578,-0.451254][0.603302,0.016198,0][0.0397879,-1.01341,-0.61446][0.359959,-0.816578,-0.451254][0.603302,0.016198,0][0.215796,-0.775118,-0.634656][0.150835,-0.150835,-0.976984][0.474368,0.033073,0][0.257085,-0.796117,-0.61446][0.595147,-0.595149,-0.539998][0.468053,0.016198,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.535469,0.451627,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.535469,0.016198,0][-0.504902,0.0491269,-0.49636][-0.455845,0.591773,0.664838][0.442143,0.451627,0][-0.504902,0.0491269,-0.49636][-0.455845,0.591773,0.664838][0.442143,0.451627,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.535469,0.016198,0][0.298714,-0.754489,-0.49636][0.591772,-0.455845,0.664839][0.442143,0.016198,0][-0.0179171,-1.00883,-0.634656][-0.256236,-0.711704,-0.65408][0.619833,0.033073,0][0.0397879,-1.01341,-0.61446][0.359959,-0.816578,-0.451254][0.603302,0.016198,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][0.0397879,-1.01341,-0.61446][0.359959,-0.816578,-0.451254][0.603302,0.016198,0][0.0397879,-1.01342,-0.332418][0.345783,-0.938314,-1.51215e-006][0.603302,0.016198,0][-0.712115,-0.158087,-0.332418][-0.281402,0.95959,-2.63539e-006][0.571115,0.451627,0][0.0915009,-0.961702,-0.332418][0.95959,-0.281403,0][0.571115,0.016198,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.535469,0.451627,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.535469,0.451627,0][0.0915009,-0.961702,-0.332418][0.95959,-0.281403,0][0.571115,0.016198,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.535469,0.016198,0][-0.0179181,-1.00883,-0.0301803][-0.256242,-0.7117,0.654082][0.619834,0.033073,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][0.0397879,-1.01342,-0.0503763][0.359952,-0.816579,0.451258][0.603302,0.016198,0][0.0397879,-1.01342,-0.0503763][0.359952,-0.816579,0.451258][0.603302,0.016198,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][0.0397879,-1.01342,-0.332418][0.345783,-0.938314,-1.51215e-006][0.603302,0.016198,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.535469,0.451627,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.535469,0.016198,0][-0.712115,-0.158087,-0.332418][-0.281402,0.95959,-2.63539e-006][0.571115,0.451627,0][-0.712115,-0.158087,-0.332418][-0.281402,0.95959,-2.63539e-006][0.571115,0.451627,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.535469,0.016198,0][0.0915009,-0.961702,-0.332418][0.95959,-0.281403,0][0.571115,0.016198,0][0.166414,0.382299,0.373378][0.798655,0.306202,-0.518065][0.808035,0.078704,0][0.134409,0.414304,0.467102][0.371309,0.851311,0.370673][0.887416,0.011005,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.835541,0.171845,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.835541,0.171845,0][0.134409,0.414304,0.467102][0.371309,0.851311,0.370673][0.887416,0.011005,0][0.291888,0.256825,0.589509][0.483258,0.667767,0.56617][0.887416,0.145987,0][0.501694,0.0470178,0.435998][0.455842,0.59177,-0.664843][0.835541,0.286974,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.835541,0.171845,0][0.526162,0.0225499,0.589509][0.667768,0.483251,0.566175][0.887416,0.312833,0][0.526162,0.0225499,0.589509][0.667768,0.483251,0.566175][0.887416,0.312833,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.835541,0.171845,0][0.291888,0.256825,0.589509][0.483258,0.667767,0.56617][0.887416,0.145987,0][0.651635,-0.102923,0.373378][0.306199,0.798656,-0.518064][0.808036,0.380115,0][0.501694,0.0470178,0.435998][0.455842,0.59177,-0.664843][0.835541,0.286974,0][0.68364,-0.134928,0.467102][0.851309,0.371316,0.370672][0.887416,0.447814,0][0.68364,-0.134928,0.467102][0.851309,0.371316,0.370672][0.887416,0.447814,0][0.501694,0.0470178,0.435998][0.455842,0.59177,-0.664843][0.835541,0.286974,0][0.526162,0.0225499,0.589509][0.667768,0.483251,0.566175][0.887416,0.312833,0][0.708907,-0.160194,0.272057][0.281402,0.95959,0][0.763531,0.415691,0][0.651635,-0.102923,0.373378][0.306199,0.798656,-0.518064][0.808036,0.380115,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.763531,0.447814,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.763531,0.447814,0][0.651635,-0.102923,0.373378][0.306199,0.798656,-0.518064][0.808036,0.380115,0][0.68364,-0.134928,0.467102][0.851309,0.371316,0.370672][0.887416,0.447814,0][0.708907,-0.160194,0.272057][0.281402,0.95959,0][0.763531,0.415691,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.763531,0.447814,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.719027,0.380115,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.719027,0.380115,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.763531,0.447814,0][0.76062,-0.211907,-0.00998533][0.81727,0.355233,-0.453739][0.639647,0.447814,0][0.501694,0.0470178,0.108116][0.455842,0.59177,0.664843][0.691521,0.286974,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.719027,0.380115,0][0.543323,0.00538969,-0.00998533][0.593765,0.593766,-0.543034][0.639647,0.312833,0][0.543323,0.00538969,-0.00998533][0.593765,0.593766,-0.543034][0.639647,0.312833,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.719027,0.380115,0][0.76062,-0.211907,-0.00998533][0.81727,0.355233,-0.453739][0.639647,0.447814,0][0.316356,0.232357,0.108116][0.591772,0.455845,0.664839][0.691521,0.171845,0][0.501694,0.0470178,0.108116][0.455842,0.59177,0.664843][0.691521,0.286974,0][0.274727,0.273985,-0.00998536][0.593764,0.593765,-0.543035][0.639647,0.145987,0][0.274727,0.273985,-0.00998536][0.593764,0.593765,-0.543035][0.639647,0.145987,0][0.501694,0.0470178,0.108116][0.455842,0.59177,0.664843][0.691521,0.286974,0][0.543323,0.00538969,-0.00998533][0.593765,0.593766,-0.543034][0.639647,0.312833,0][0.316356,0.232357,0.108116][0.591772,0.455845,0.664839][0.691521,0.171845,0][0.274727,0.273985,-0.00998536][0.593764,0.593765,-0.543035][0.639647,0.145987,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.719027,0.078705,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.719027,0.078705,0][0.274727,0.273985,-0.00998536][0.593764,0.593765,-0.543035][0.639647,0.145987,0][0.0574299,0.491283,-0.00998536][0.355227,0.817272,-0.45374][0.639647,0.011005,0][0.109142,0.43957,0.272057][0.95959,0.281402,-2.76643e-006][0.763531,0.043128,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.719027,0.078705,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.763531,0.011005,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.763531,0.011005,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.719027,0.078705,0][0.0574299,0.491283,-0.00998536][0.355227,0.817272,-0.45374][0.639647,0.011005,0][0.109142,0.43957,0.272057][0.95959,0.281402,-2.76643e-006][0.763531,0.043128,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.763531,0.011005,0][0.166414,0.382299,0.373378][0.798655,0.306202,-0.518065][0.808035,0.078704,0][0.166414,0.382299,0.373378][0.798655,0.306202,-0.518065][0.808035,0.078704,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.763531,0.011005,0][0.134409,0.414304,0.467102][0.371309,0.851311,0.370673][0.887416,0.011005,0][0.251292,0.233928,0.609705][-0.00887696,0.333337,0.942766][0.474368,0.434752,0][0.0819169,0.403303,0.487298][-0.255918,0.689621,0.677443][0.619834,0.434752,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][0.0819169,0.403303,0.487298][-0.255918,0.689621,0.677443][0.619834,0.434752,0][-0.67374,-0.352354,0.487298][-0.689621,0.255916,0.677443][0.619834,0.033073,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][0.251292,0.233928,0.609705][-0.00887696,0.333337,0.942766][0.474368,0.434752,0][-0.252392,-0.773702,0.609704][0.00887974,-0.333334,0.942767][0.294562,0.033073,0][-0.252392,-0.773702,0.609704][0.00887974,-0.333334,0.942767][0.294562,0.033073,0][0.251292,0.233928,0.609705][-0.00887696,0.333337,0.942766][0.474368,0.434752,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][0.67264,-0.18742,0.487298][0.689623,-0.255912,0.677444][0.149096,0.434752,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][-0.0830171,-0.943077,0.487298][0.255911,-0.689622,0.677444][0.149096,0.033073,0][-0.0830171,-0.943077,0.487298][0.255911,-0.689622,0.677444][0.149096,0.033073,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][-0.252392,-0.773702,0.609704][0.00887974,-0.333334,0.942767][0.294562,0.033073,0][0.755436,-0.270215,0.272057][0.876892,-0.424617,0.225301][0.149096,0.434752,0][0.67264,-0.18742,0.487298][0.689623,-0.255912,0.677444][0.149096,0.434752,0][-0.000221127,-1.02587,0.272057][0.424618,-0.876891,0.225301][0.149096,0.033073,0][-0.000221127,-1.02587,0.272057][0.424618,-0.876891,0.225301][0.149096,0.033073,0][0.67264,-0.18742,0.487298][0.689623,-0.255912,0.677444][0.149096,0.434752,0][-0.0830171,-0.943077,0.487298][0.255911,-0.689622,0.677444][0.149096,0.033073,0][0.755436,-0.270215,-0.0301803][0.709841,-0.259311,-0.654891][0.149096,0.434752,0][0.755436,-0.270215,0.272057][0.876892,-0.424617,0.225301][0.149096,0.434752,0][-0.000221127,-1.02587,-0.0301813][0.259308,-0.709841,-0.654893][0.149096,0.033073,0][-0.000221127,-1.02587,-0.0301813][0.259308,-0.709841,-0.654893][0.149096,0.033073,0][0.755436,-0.270215,0.272057][0.876892,-0.424617,0.225301][0.149096,0.434752,0][-0.000221127,-1.02587,0.272057][0.424618,-0.876891,0.225301][0.149096,0.033073,0][0.521722,-0.0365021,-0.0301803][0.148337,0.148337,-0.977749][0.294562,0.434752,0][0.755436,-0.270215,-0.0301803][0.709841,-0.259311,-0.654891][0.149096,0.434752,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][0.755436,-0.270215,-0.0301803][0.709841,-0.259311,-0.654891][0.149096,0.434752,0][-0.000221127,-1.02587,-0.0301813][0.259308,-0.709841,-0.654893][0.149096,0.033073,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][0.521722,-0.0365021,-0.0301803][0.148337,0.148337,-0.977749][0.294562,0.434752,0][-0.522821,-0.503273,-0.0301803][-0.148339,-0.148339,-0.977748][0.474368,0.033073,0][-0.522821,-0.503273,-0.0301803][-0.148339,-0.148339,-0.977748][0.474368,0.033073,0][0.521722,-0.0365021,-0.0301803][0.148337,0.148337,-0.977749][0.294562,0.434752,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][-0.000878127,0.486098,-0.0301804][-0.259316,0.709839,-0.654893][0.619834,0.434752,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][-0.756535,-0.269559,-0.0301803][-0.709841,0.259312,-0.654891][0.619833,0.033073,0][-0.756535,-0.269559,-0.0301803][-0.709841,0.259312,-0.654891][0.619833,0.033073,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][-0.522821,-0.503273,-0.0301803][-0.148339,-0.148339,-0.977748][0.474368,0.033073,0][-0.000878127,0.486098,0.272057][-0.424625,0.876889,0.2253][0.619834,0.434752,0][-0.000878127,0.486098,-0.0301804][-0.259316,0.709839,-0.654893][0.619834,0.434752,0][-0.756535,-0.269559,0.272057][-0.876889,0.424625,0.225299][0.619834,0.033073,0][-0.756535,-0.269559,0.272057][-0.876889,0.424625,0.225299][0.619834,0.033073,0][-0.000878127,0.486098,-0.0301804][-0.259316,0.709839,-0.654893][0.619834,0.434752,0][-0.756535,-0.269559,-0.0301803][-0.709841,0.259312,-0.654891][0.619833,0.033073,0][0.0819169,0.403303,0.487298][-0.255918,0.689621,0.677443][0.619834,0.434752,0][-0.000878127,0.486098,0.272057][-0.424625,0.876889,0.2253][0.619834,0.434752,0][-0.67374,-0.352354,0.487298][-0.689621,0.255916,0.677443][0.619834,0.033073,0][-0.67374,-0.352354,0.487298][-0.689621,0.255916,0.677443][0.619834,0.033073,0][-0.000878127,0.486098,0.272057][-0.424625,0.876889,0.2253][0.619834,0.434752,0][-0.756535,-0.269559,0.272057][-0.876889,0.424625,0.225299][0.619834,0.033073,0][-0.527261,-0.562324,0.589509][-0.667765,-0.483256,0.566174][0.887416,0.145987,0][-0.68474,-0.404846,0.467103][-0.851309,-0.371312,0.370676][0.887416,0.011005,0][-0.502793,-0.586793,0.435998][-0.455844,-0.591771,-0.664841][0.835541,0.171845,0][-0.502793,-0.586793,0.435998][-0.455844,-0.591771,-0.664841][0.835541,0.171845,0][-0.68474,-0.404846,0.467103][-0.851309,-0.371312,0.370676][0.887416,0.011005,0][-0.652735,-0.436851,0.373378][-0.306202,-0.798654,-0.518065][0.808036,0.078705,0][-0.292986,-0.796599,0.589509][-0.483251,-0.667767,0.566176][0.887416,0.312833,0][-0.527261,-0.562324,0.589509][-0.667765,-0.483256,0.566174][0.887416,0.145987,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.835541,0.286974,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.835541,0.286974,0][-0.527261,-0.562324,0.589509][-0.667765,-0.483256,0.566174][0.887416,0.145987,0][-0.502793,-0.586793,0.435998][-0.455844,-0.591771,-0.664841][0.835541,0.171845,0][-0.292986,-0.796599,0.589509][-0.483251,-0.667767,0.566176][0.887416,0.312833,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.835541,0.286974,0][-0.135509,-0.954077,0.467102][-0.371317,-0.851309,0.37067][0.887416,0.447814,0][-0.135509,-0.954077,0.467102][-0.371317,-0.851309,0.37067][0.887416,0.447814,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.835541,0.286974,0][-0.167513,-0.922072,0.373378][-0.798654,-0.306197,-0.518069][0.808036,0.380115,0][-0.135509,-0.954077,0.467102][-0.371317,-0.851309,0.37067][0.887416,0.447814,0][-0.167513,-0.922072,0.373378][-0.798654,-0.306197,-0.518069][0.808036,0.380115,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.763531,0.447814,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.763531,0.447814,0][-0.167513,-0.922072,0.373378][-0.798654,-0.306197,-0.518069][0.808036,0.380115,0][-0.110242,-0.979345,0.272057][-0.959587,-0.281414,1.51427e-007][0.763531,0.415691,0][-0.0585281,-1.03106,-0.0099853][-0.355235,-0.817274,-0.45373][0.639647,0.447814,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.763531,0.447814,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.719027,0.380115,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.719027,0.380115,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.763531,0.447814,0][-0.110242,-0.979345,0.272057][-0.959587,-0.281414,1.51427e-007][0.763531,0.415691,0][-0.0585281,-1.03106,-0.0099853][-0.355235,-0.817274,-0.45373][0.639647,0.447814,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.719027,0.380115,0][-0.275827,-0.813759,-0.0099853][-0.593765,-0.593767,-0.543033][0.639647,0.312833,0][-0.275827,-0.813759,-0.0099853][-0.593765,-0.593767,-0.543033][0.639647,0.312833,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.719027,0.380115,0][-0.317456,-0.77213,0.108116][-0.59177,-0.455845,0.664842][0.691521,0.286974,0][-0.544422,-0.545164,-0.0099853][-0.593765,-0.593766,-0.543033][0.639647,0.145987,0][-0.275827,-0.813759,-0.0099853][-0.593765,-0.593767,-0.543033][0.639647,0.312833,0][-0.502794,-0.586792,0.108116][-0.455843,-0.591771,0.664841][0.691521,0.171845,0][-0.502794,-0.586792,0.108116][-0.455843,-0.591771,0.664841][0.691521,0.171845,0][-0.275827,-0.813759,-0.0099853][-0.593765,-0.593767,-0.543033][0.639647,0.312833,0][-0.317456,-0.77213,0.108116][-0.59177,-0.455845,0.664842][0.691521,0.286974,0][-0.761719,-0.327867,-0.00998533][-0.81727,-0.355232,-0.453739][0.639647,0.011005,0][-0.544422,-0.545164,-0.0099853][-0.593765,-0.593766,-0.543033][0.639647,0.145987,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.719027,0.078705,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.719027,0.078705,0][-0.544422,-0.545164,-0.0099853][-0.593765,-0.593766,-0.543033][0.639647,0.145987,0][-0.502794,-0.586792,0.108116][-0.455843,-0.591771,0.664841][0.691521,0.171845,0][-0.761719,-0.327867,-0.00998533][-0.81727,-0.355232,-0.453739][0.639647,0.011005,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.719027,0.078705,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.763531,0.011005,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.763531,0.011005,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.719027,0.078705,0][-0.710007,-0.379579,0.272057][-0.281404,-0.959589,0][0.763531,0.043128,0][-0.68474,-0.404846,0.467103][-0.851309,-0.371312,0.370676][0.887416,0.011005,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.763531,0.011005,0][-0.652735,-0.436851,0.373378][-0.306202,-0.798654,-0.518065][0.808036,0.078705,0][-0.652735,-0.436851,0.373378][-0.306202,-0.798654,-0.518065][0.808036,0.078705,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.763531,0.011005,0][-0.710007,-0.379579,0.272057][-0.281404,-0.959589,0][0.763531,0.043128,0][0.0819169,0.403303,0.487298][-0.255918,0.689621,0.677443][0.619834,0.434752,0][0.251292,0.233928,0.609705][-0.00887696,0.333337,0.942766][0.474368,0.434752,0][0.134409,0.414304,0.467102][0.371309,0.851311,0.370673][0.603302,0.451627,0][0.134409,0.414304,0.467102][0.371309,0.851311,0.370673][0.603302,0.451627,0][0.251292,0.233928,0.609705][-0.00887696,0.333337,0.942766][0.474368,0.434752,0][0.291888,0.256825,0.589509][0.483258,0.667767,0.56617][0.468053,0.451627,0][0.251292,0.233928,0.609705][-0.00887696,0.333337,0.942766][0.474368,0.434752,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][0.291888,0.256825,0.589509][0.483258,0.667767,0.56617][0.468053,0.451627,0][0.291888,0.256825,0.589509][0.483258,0.667767,0.56617][0.468053,0.451627,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][0.526162,0.0225499,0.589509][0.667768,0.483251,0.566175][0.300877,0.451627,0][0.67264,-0.18742,0.487298][0.689623,-0.255912,0.677444][0.149096,0.434752,0][0.68364,-0.134928,0.467102][0.851309,0.371316,0.370672][0.165628,0.451627,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][0.68364,-0.134928,0.467102][0.851309,0.371316,0.370672][0.165628,0.451627,0][0.526162,0.0225499,0.589509][0.667768,0.483251,0.566175][0.300877,0.451627,0][0.755436,-0.270215,0.272057][0.876892,-0.424617,0.225301][0.149096,0.434752,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.165629,0.451627,0][0.67264,-0.18742,0.487298][0.689623,-0.255912,0.677444][0.149096,0.434752,0][0.67264,-0.18742,0.487298][0.689623,-0.255912,0.677444][0.149096,0.434752,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.165629,0.451627,0][0.68364,-0.134928,0.467102][0.851309,0.371316,0.370672][0.165628,0.451627,0][0.755436,-0.270215,-0.0301803][0.709841,-0.259311,-0.654891][0.149096,0.434752,0][0.76062,-0.211907,-0.00998533][0.81727,0.355233,-0.453739][0.165628,0.451627,0][0.755436,-0.270215,0.272057][0.876892,-0.424617,0.225301][0.149096,0.434752,0][0.755436,-0.270215,0.272057][0.876892,-0.424617,0.225301][0.149096,0.434752,0][0.76062,-0.211907,-0.00998533][0.81727,0.355233,-0.453739][0.165628,0.451627,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.165629,0.451627,0][0.755436,-0.270215,-0.0301803][0.709841,-0.259311,-0.654891][0.149096,0.434752,0][0.521722,-0.0365021,-0.0301803][0.148337,0.148337,-0.977749][0.294562,0.434752,0][0.76062,-0.211907,-0.00998533][0.81727,0.355233,-0.453739][0.165628,0.451627,0][0.76062,-0.211907,-0.00998533][0.81727,0.355233,-0.453739][0.165628,0.451627,0][0.521722,-0.0365021,-0.0301803][0.148337,0.148337,-0.977749][0.294562,0.434752,0][0.543323,0.00538969,-0.00998533][0.593765,0.593766,-0.543034][0.300877,0.451627,0][0.521722,-0.0365021,-0.0301803][0.148337,0.148337,-0.977749][0.294562,0.434752,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][0.543323,0.00538969,-0.00998533][0.593765,0.593766,-0.543034][0.300877,0.451627,0][0.543323,0.00538969,-0.00998533][0.593765,0.593766,-0.543034][0.300877,0.451627,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][0.274727,0.273985,-0.00998536][0.593764,0.593765,-0.543035][0.468053,0.451627,0][-0.000878127,0.486098,-0.0301804][-0.259316,0.709839,-0.654893][0.619834,0.434752,0][0.0574299,0.491283,-0.00998536][0.355227,0.817272,-0.45374][0.603302,0.451627,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][0.0574299,0.491283,-0.00998536][0.355227,0.817272,-0.45374][0.603302,0.451627,0][0.274727,0.273985,-0.00998536][0.593764,0.593765,-0.543035][0.468053,0.451627,0][-0.000878127,0.486098,-0.0301804][-0.259316,0.709839,-0.654893][0.619834,0.434752,0][-0.000878127,0.486098,0.272057][-0.424625,0.876889,0.2253][0.619834,0.434752,0][0.0574299,0.491283,-0.00998536][0.355227,0.817272,-0.45374][0.603302,0.451627,0][0.0574299,0.491283,-0.00998536][0.355227,0.817272,-0.45374][0.603302,0.451627,0][-0.000878127,0.486098,0.272057][-0.424625,0.876889,0.2253][0.619834,0.434752,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.603302,0.451627,0][-0.000878127,0.486098,0.272057][-0.424625,0.876889,0.2253][0.619834,0.434752,0][0.0819169,0.403303,0.487298][-0.255918,0.689621,0.677443][0.619834,0.434752,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.603302,0.451627,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.603302,0.451627,0][0.0819169,0.403303,0.487298][-0.255918,0.689621,0.677443][0.619834,0.434752,0][0.134409,0.414304,0.467102][0.371309,0.851311,0.370673][0.603302,0.451627,0][-0.67374,-0.352354,0.487298][-0.689621,0.255916,0.677443][0.619834,0.033073,0][-0.68474,-0.404846,0.467103][-0.851309,-0.371312,0.370676][0.603302,0.016198,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][-0.68474,-0.404846,0.467103][-0.851309,-0.371312,0.370676][0.603302,0.016198,0][-0.527261,-0.562324,0.589509][-0.667765,-0.483256,0.566174][0.468053,0.016198,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.442143,0.451627,0][-0.502793,-0.586793,0.435998][-0.455844,-0.591771,-0.664841][0.442143,0.016198,0][0.166414,0.382299,0.373378][0.798655,0.306202,-0.518065][0.535469,0.451627,0][0.166414,0.382299,0.373378][0.798655,0.306202,-0.518065][0.535469,0.451627,0][-0.502793,-0.586793,0.435998][-0.455844,-0.591771,-0.664841][0.442143,0.016198,0][-0.652735,-0.436851,0.373378][-0.306202,-0.798654,-0.518065][0.535469,0.016198,0][-0.252392,-0.773702,0.609704][0.00887974,-0.333334,0.942767][0.294562,0.033073,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][-0.292986,-0.796599,0.589509][-0.483251,-0.667767,0.566176][0.300877,0.016198,0][-0.292986,-0.796599,0.589509][-0.483251,-0.667767,0.566176][0.300877,0.016198,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][-0.527261,-0.562324,0.589509][-0.667765,-0.483256,0.566174][0.468053,0.016198,0][0.501694,0.0470178,0.435998][0.455842,0.59177,-0.664843][0.326787,0.451627,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.326787,0.016198,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.442143,0.451627,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.442143,0.451627,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.326787,0.016198,0][-0.502793,-0.586793,0.435998][-0.455844,-0.591771,-0.664841][0.442143,0.016198,0][-0.0830171,-0.943077,0.487298][0.255911,-0.689622,0.677444][0.149096,0.033073,0][-0.252392,-0.773702,0.609704][0.00887974,-0.333334,0.942767][0.294562,0.033073,0][-0.135509,-0.954077,0.467102][-0.371317,-0.851309,0.37067][0.165628,0.016198,0][-0.135509,-0.954077,0.467102][-0.371317,-0.851309,0.37067][0.165628,0.016198,0][-0.252392,-0.773702,0.609704][0.00887974,-0.333334,0.942767][0.294562,0.033073,0][-0.292986,-0.796599,0.589509][-0.483251,-0.667767,0.566176][0.300877,0.016198,0][0.651635,-0.102923,0.373378][0.306199,0.798656,-0.518064][0.233462,0.451627,0][-0.167513,-0.922072,0.373378][-0.798654,-0.306197,-0.518069][0.233461,0.016198,0][0.501694,0.0470178,0.435998][0.455842,0.59177,-0.664843][0.326787,0.451627,0][0.501694,0.0470178,0.435998][0.455842,0.59177,-0.664843][0.326787,0.451627,0][-0.167513,-0.922072,0.373378][-0.798654,-0.306197,-0.518069][0.233461,0.016198,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.326787,0.016198,0][-0.000221127,-1.02587,0.272057][0.424618,-0.876891,0.225301][0.149096,0.033073,0][-0.0830171,-0.943077,0.487298][0.255911,-0.689622,0.677444][0.149096,0.033073,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.165628,0.016198,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.165628,0.016198,0][-0.0830171,-0.943077,0.487298][0.255911,-0.689622,0.677444][0.149096,0.033073,0][-0.135509,-0.954077,0.467102][-0.371317,-0.851309,0.37067][0.165628,0.016198,0][0.708907,-0.160194,0.272057][0.281402,0.95959,0][0.197815,0.451627,0][-0.110242,-0.979345,0.272057][-0.959587,-0.281414,1.51427e-007][0.197815,0.016198,0][0.651635,-0.102923,0.373378][0.306199,0.798656,-0.518064][0.233462,0.451627,0][0.651635,-0.102923,0.373378][0.306199,0.798656,-0.518064][0.233462,0.451627,0][-0.110242,-0.979345,0.272057][-0.959587,-0.281414,1.51427e-007][0.197815,0.016198,0][-0.167513,-0.922072,0.373378][-0.798654,-0.306197,-0.518069][0.233461,0.016198,0][-0.000221127,-1.02587,-0.0301813][0.259308,-0.709841,-0.654893][0.149096,0.033073,0][-0.000221127,-1.02587,0.272057][0.424618,-0.876891,0.225301][0.149096,0.033073,0][-0.0585281,-1.03106,-0.0099853][-0.355235,-0.817274,-0.45373][0.165628,0.016198,0][-0.0585281,-1.03106,-0.0099853][-0.355235,-0.817274,-0.45373][0.165628,0.016198,0][-0.000221127,-1.02587,0.272057][0.424618,-0.876891,0.225301][0.149096,0.033073,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.165628,0.016198,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.233462,0.451627,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.233461,0.016198,0][0.708907,-0.160194,0.272057][0.281402,0.95959,0][0.197815,0.451627,0][0.708907,-0.160194,0.272057][0.281402,0.95959,0][0.197815,0.451627,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.233461,0.016198,0][-0.110242,-0.979345,0.272057][-0.959587,-0.281414,1.51427e-007][0.197815,0.016198,0][-0.000221127,-1.02587,-0.0301813][0.259308,-0.709841,-0.654893][0.149096,0.033073,0][-0.0585281,-1.03106,-0.0099853][-0.355235,-0.817274,-0.45373][0.165628,0.016198,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][-0.0585281,-1.03106,-0.0099853][-0.355235,-0.817274,-0.45373][0.165628,0.016198,0][-0.275827,-0.813759,-0.0099853][-0.593765,-0.593767,-0.543033][0.300877,0.016198,0][0.501694,0.0470178,0.108116][0.455842,0.59177,0.664843][0.326787,0.451627,0][-0.317456,-0.77213,0.108116][-0.59177,-0.455845,0.664842][0.326787,0.016198,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.233462,0.451627,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.233462,0.451627,0][-0.317456,-0.77213,0.108116][-0.59177,-0.455845,0.664842][0.326787,0.016198,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.233461,0.016198,0][-0.522821,-0.503273,-0.0301803][-0.148339,-0.148339,-0.977748][0.474368,0.033073,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][-0.544422,-0.545164,-0.0099853][-0.593765,-0.593766,-0.543033][0.468053,0.016198,0][-0.544422,-0.545164,-0.0099853][-0.593765,-0.593766,-0.543033][0.468053,0.016198,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][-0.275827,-0.813759,-0.0099853][-0.593765,-0.593767,-0.543033][0.300877,0.016198,0][0.316356,0.232357,0.108116][0.591772,0.455845,0.664839][0.442143,0.451627,0][-0.502794,-0.586792,0.108116][-0.455843,-0.591771,0.664841][0.442143,0.016198,0][0.501694,0.0470178,0.108116][0.455842,0.59177,0.664843][0.326787,0.451627,0][0.501694,0.0470178,0.108116][0.455842,0.59177,0.664843][0.326787,0.451627,0][-0.502794,-0.586792,0.108116][-0.455843,-0.591771,0.664841][0.442143,0.016198,0][-0.317456,-0.77213,0.108116][-0.59177,-0.455845,0.664842][0.326787,0.016198,0][-0.756535,-0.269559,-0.0301803][-0.709841,0.259312,-0.654891][0.619833,0.033073,0][-0.522821,-0.503273,-0.0301803][-0.148339,-0.148339,-0.977748][0.474368,0.033073,0][-0.761719,-0.327867,-0.00998533][-0.81727,-0.355232,-0.453739][0.603302,0.016198,0][-0.761719,-0.327867,-0.00998533][-0.81727,-0.355232,-0.453739][0.603302,0.016198,0][-0.522821,-0.503273,-0.0301803][-0.148339,-0.148339,-0.977748][0.474368,0.033073,0][-0.544422,-0.545164,-0.0099853][-0.593765,-0.593766,-0.543033][0.468053,0.016198,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.535469,0.451627,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.535469,0.016198,0][0.316356,0.232357,0.108116][0.591772,0.455845,0.664839][0.442143,0.451627,0][0.316356,0.232357,0.108116][0.591772,0.455845,0.664839][0.442143,0.451627,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.535469,0.016198,0][-0.502794,-0.586792,0.108116][-0.455843,-0.591771,0.664841][0.442143,0.016198,0][-0.756535,-0.269559,-0.0301803][-0.709841,0.259312,-0.654891][0.619833,0.033073,0][-0.761719,-0.327867,-0.00998533][-0.81727,-0.355232,-0.453739][0.603302,0.016198,0][-0.756535,-0.269559,0.272057][-0.876889,0.424625,0.225299][0.619834,0.033073,0][-0.756535,-0.269559,0.272057][-0.876889,0.424625,0.225299][0.619834,0.033073,0][-0.761719,-0.327867,-0.00998533][-0.81727,-0.355232,-0.453739][0.603302,0.016198,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.603302,0.016198,0][0.109142,0.43957,0.272057][0.95959,0.281402,-2.76643e-006][0.571115,0.451627,0][-0.710007,-0.379579,0.272057][-0.281404,-0.959589,0][0.571115,0.016198,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.535469,0.451627,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.535469,0.451627,0][-0.710007,-0.379579,0.272057][-0.281404,-0.959589,0][0.571115,0.016198,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.535469,0.016198,0][-0.756535,-0.269559,0.272057][-0.876889,0.424625,0.225299][0.619834,0.033073,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.603302,0.016198,0][-0.67374,-0.352354,0.487298][-0.689621,0.255916,0.677443][0.619834,0.033073,0][-0.67374,-0.352354,0.487298][-0.689621,0.255916,0.677443][0.619834,0.033073,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.603302,0.016198,0][-0.68474,-0.404846,0.467103][-0.851309,-0.371312,0.370676][0.603302,0.016198,0][0.166414,0.382299,0.373378][0.798655,0.306202,-0.518065][0.535469,0.451627,0][-0.652735,-0.436851,0.373378][-0.306202,-0.798654,-0.518065][0.535469,0.016198,0][0.109142,0.43957,0.272057][0.95959,0.281402,-2.76643e-006][0.571115,0.451627,0][0.109142,0.43957,0.272057][0.95959,0.281402,-2.76643e-006][0.571115,0.451627,0][-0.652735,-0.436851,0.373378][-0.306202,-0.798654,-0.518065][0.535469,0.016198,0][-0.710007,-0.379579,0.272057][-0.281404,-0.959589,0][0.571115,0.016198,0][-2.99512,-3.1837,0.351396][-0.435806,-0.254132,0.863418][0.087793,0.02921,0][-2.85603,-2.97867,0.409476][-0.21761,-0.0126954,0.975953][0.094868,0.066134,0][-3.06799,-3.11083,0.321091][-0.735571,-0.124384,0.66593][0.103431,0.02921,0][-3.06799,-3.11083,0.321091][-0.735571,-0.124384,0.66593][0.103431,0.02921,0][-2.85603,-2.97867,0.409476][-0.21761,-0.0126954,0.975953][0.094868,0.066134,0][-2.98225,-2.85245,0.356987][-0.5612,0.218709,0.798261][0.121954,0.066134,0][-2.99512,-3.1837,0.351396][-0.435806,-0.254132,0.863418][0.087793,0.02921,0][-2.90505,-3.27378,0.351396][-0.254132,-0.435808,0.863417][0.068463,0.02921,0][-2.85603,-2.97867,0.409476][-0.21761,-0.0126954,0.975953][0.094868,0.066134,0][-2.85603,-2.97867,0.409476][-0.21761,-0.0126954,0.975953][0.094868,0.066134,0][-2.90505,-3.27378,0.351396][-0.254132,-0.435808,0.863417][0.068463,0.02921,0][-2.70001,-3.13469,0.409476][-0.0126964,-0.217609,0.975953][0.061388,0.066134,0][-2.90505,-3.27378,0.351396][-0.254132,-0.435808,0.863417][0.068463,0.02921,0][-2.83217,-3.34665,0.321091][-0.124383,-0.73557,0.665932][0.052825,0.02921,0][-2.70001,-3.13469,0.409476][-0.0126964,-0.217609,0.975953][0.061388,0.066134,0][-2.70001,-3.13469,0.409476][-0.0126964,-0.217609,0.975953][0.061388,0.066134,0][-2.83217,-3.34665,0.321091][-0.124383,-0.73557,0.665932][0.052825,0.02921,0][-2.57379,-3.26091,0.356987][0.218707,-0.5612,0.798261][0.034302,0.066134,0][-2.83217,-3.34665,0.321091][-0.124383,-0.73557,0.665932][0.052825,0.02921,0][-2.80434,-3.37449,0.272057][0.00963511,-0.999954,0][0.046852,0.02921,0][-2.57379,-3.26091,0.356987][0.218707,-0.5612,0.798261][0.034302,0.066134,0][-2.57379,-3.26091,0.356987][0.218707,-0.5612,0.798261][0.034302,0.066134,0][-2.80434,-3.37449,0.272057][0.00963511,-0.999954,0][0.046852,0.02921,0][-2.52558,-3.30912,0.272057][0.435248,-0.90031,-2.86531e-007][0.023956,0.066134,0][-2.83217,-3.34665,0.223023][-0.124383,-0.735571,-0.665932][0.052825,0.02921,0][-2.57379,-3.26091,0.187127][0.218708,-0.5612,-0.798261][0.034302,0.066134,0][-2.80434,-3.37449,0.272057][0.00963511,-0.999954,0][0.046852,0.02921,0][-2.80434,-3.37449,0.272057][0.00963511,-0.999954,0][0.046852,0.02921,0][-2.57379,-3.26091,0.187127][0.218708,-0.5612,-0.798261][0.034302,0.066134,0][-2.52558,-3.30912,0.272057][0.435248,-0.90031,-2.86531e-007][0.023956,0.066134,0][-2.90505,-3.27378,0.192718][-0.254132,-0.435808,-0.863417][0.068463,0.02921,0][-2.70001,-3.13469,0.134638][-0.0126964,-0.217609,-0.975953][0.061388,0.066134,0][-2.83217,-3.34665,0.223023][-0.124383,-0.735571,-0.665932][0.052825,0.02921,0][-2.83217,-3.34665,0.223023][-0.124383,-0.735571,-0.665932][0.052825,0.02921,0][-2.70001,-3.13469,0.134638][-0.0126964,-0.217609,-0.975953][0.061388,0.066134,0][-2.57379,-3.26091,0.187127][0.218708,-0.5612,-0.798261][0.034302,0.066134,0][-2.90505,-3.27378,0.192718][-0.254132,-0.435808,-0.863417][0.068463,0.02921,0][-2.99512,-3.1837,0.192718][-0.435806,-0.254132,-0.863418][0.087793,0.02921,0][-2.70001,-3.13469,0.134638][-0.0126964,-0.217609,-0.975953][0.061388,0.066134,0][-2.70001,-3.13469,0.134638][-0.0126964,-0.217609,-0.975953][0.061388,0.066134,0][-2.99512,-3.1837,0.192718][-0.435806,-0.254132,-0.863418][0.087793,0.02921,0][-2.85603,-2.97867,0.134638][-0.21761,-0.0126955,-0.975953][0.094868,0.066134,0][-2.99512,-3.1837,0.192718][-0.435806,-0.254132,-0.863418][0.087793,0.02921,0][-3.06799,-3.11083,0.223023][-0.735571,-0.124384,-0.66593][0.103431,0.02921,0][-2.85603,-2.97867,0.134638][-0.21761,-0.0126955,-0.975953][0.094868,0.066134,0][-2.85603,-2.97867,0.134638][-0.21761,-0.0126955,-0.975953][0.094868,0.066134,0][-3.06799,-3.11083,0.223023][-0.735571,-0.124384,-0.66593][0.103431,0.02921,0][-2.98225,-2.85245,0.187127][-0.5612,0.218709,-0.798261][0.121954,0.066134,0][-3.06799,-3.11083,0.223023][-0.735571,-0.124384,-0.66593][0.103431,0.02921,0][-3.09583,-3.083,0.272057][-0.999954,0.00964036,0][0.109404,0.02921,0][-2.98225,-2.85245,0.187127][-0.5612,0.218709,-0.798261][0.121954,0.066134,0][-2.98225,-2.85245,0.187127][-0.5612,0.218709,-0.798261][0.121954,0.066134,0][-3.09583,-3.083,0.272057][-0.999954,0.00964036,0][0.109404,0.02921,0][-3.03046,-2.80424,0.272057][-0.90031,0.435249,-3.35371e-007][0.1323,0.066134,0][-3.06799,-3.11083,0.321091][-0.735571,-0.124384,0.66593][0.103431,0.02921,0][-2.98225,-2.85245,0.356987][-0.5612,0.218709,0.798261][0.121954,0.066134,0][-3.09583,-3.083,0.272057][-0.999954,0.00964036,0][0.109404,0.02921,0][-3.09583,-3.083,0.272057][-0.999954,0.00964036,0][0.109404,0.02921,0][-2.98225,-2.85245,0.356987][-0.5612,0.218709,0.798261][0.121954,0.066134,0][-3.03046,-2.80424,0.272057][-0.90031,0.435249,-3.35371e-007][0.1323,0.066134,0][-2.85603,-2.97867,0.409476][-0.21761,-0.0126954,0.975953][0.094868,0.066134,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][-2.98225,-2.85245,0.356987][-0.5612,0.218709,0.798261][0.121954,0.066134,0][-2.98225,-2.85245,0.356987][-0.5612,0.218709,0.798261][0.121954,0.066134,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][-2.7788,-2.58581,0.370126][-0.435708,0.359676,0.825101][0.128734,0.116573,0][-2.85603,-2.97867,0.409476][-0.21761,-0.0126954,0.975953][0.094868,0.066134,0][-2.70001,-3.13469,0.409476][-0.0126964,-0.217609,0.975953][0.061388,0.066134,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][-2.70001,-3.13469,0.409476][-0.0126964,-0.217609,0.975953][0.061388,0.066134,0][-2.4529,-2.91171,0.430735][0.0771109,-0.126904,0.988913][0.058798,0.116573,0][-2.70001,-3.13469,0.409476][-0.0126964,-0.217609,0.975953][0.061388,0.066134,0][-2.57379,-3.26091,0.356987][0.218707,-0.5612,0.798261][0.034302,0.066134,0][-2.4529,-2.91171,0.430735][0.0771109,-0.126904,0.988913][0.058798,0.116573,0][-2.4529,-2.91171,0.430735][0.0771109,-0.126904,0.988913][0.058798,0.116573,0][-2.57379,-3.26091,0.356987][0.218707,-0.5612,0.798261][0.034302,0.066134,0][-2.30715,-3.05746,0.370126][0.359674,-0.435706,0.825103][0.027522,0.116573,0][-2.57379,-3.26091,0.356987][0.218707,-0.5612,0.798261][0.034302,0.066134,0][-2.52558,-3.30912,0.272057][0.435248,-0.90031,-2.86531e-007][0.023956,0.066134,0][-2.30715,-3.05746,0.370126][0.359674,-0.435706,0.825103][0.027522,0.116573,0][-2.30715,-3.05746,0.370126][0.359674,-0.435706,0.825103][0.027522,0.116573,0][-2.52558,-3.30912,0.272057][0.435248,-0.90031,-2.86531e-007][0.023956,0.066134,0][-2.25148,-3.11313,0.272057][0.648527,-0.761192,-2.75657e-006][0.015575,0.116573,0][-2.57379,-3.26091,0.187127][0.218708,-0.5612,-0.798261][0.034302,0.066134,0][-2.30715,-3.05746,0.173989][0.359675,-0.435705,-0.825103][0.027522,0.116573,0][-2.52558,-3.30912,0.272057][0.435248,-0.90031,-2.86531e-007][0.023956,0.066134,0][-2.52558,-3.30912,0.272057][0.435248,-0.90031,-2.86531e-007][0.023956,0.066134,0][-2.30715,-3.05746,0.173989][0.359675,-0.435705,-0.825103][0.027522,0.116573,0][-2.25148,-3.11313,0.272057][0.648527,-0.761192,-2.75657e-006][0.015575,0.116573,0][-2.70001,-3.13469,0.134638][-0.0126964,-0.217609,-0.975953][0.061388,0.066134,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][-2.57379,-3.26091,0.187127][0.218708,-0.5612,-0.798261][0.034302,0.066134,0][-2.57379,-3.26091,0.187127][0.218708,-0.5612,-0.798261][0.034302,0.066134,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][-2.30715,-3.05746,0.173989][0.359675,-0.435705,-0.825103][0.027522,0.116573,0][-2.70001,-3.13469,0.134638][-0.0126964,-0.217609,-0.975953][0.061388,0.066134,0][-2.85603,-2.97867,0.134638][-0.21761,-0.0126955,-0.975953][0.094868,0.066134,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][-2.85603,-2.97867,0.134638][-0.21761,-0.0126955,-0.975953][0.094868,0.066134,0][-2.63305,-2.73156,0.113379][-0.126904,0.0771117,-0.988913][0.097458,0.116573,0][-2.85603,-2.97867,0.134638][-0.21761,-0.0126955,-0.975953][0.094868,0.066134,0][-2.98225,-2.85245,0.187127][-0.5612,0.218709,-0.798261][0.121954,0.066134,0][-2.63305,-2.73156,0.113379][-0.126904,0.0771117,-0.988913][0.097458,0.116573,0][-2.63305,-2.73156,0.113379][-0.126904,0.0771117,-0.988913][0.097458,0.116573,0][-2.98225,-2.85245,0.187127][-0.5612,0.218709,-0.798261][0.121954,0.066134,0][-2.7788,-2.58581,0.173989][-0.435708,0.359677,-0.825101][0.128734,0.116573,0][-2.98225,-2.85245,0.187127][-0.5612,0.218709,-0.798261][0.121954,0.066134,0][-3.03046,-2.80424,0.272057][-0.90031,0.435249,-3.35371e-007][0.1323,0.066134,0][-2.7788,-2.58581,0.173989][-0.435708,0.359677,-0.825101][0.128734,0.116573,0][-2.7788,-2.58581,0.173989][-0.435708,0.359677,-0.825101][0.128734,0.116573,0][-3.03046,-2.80424,0.272057][-0.90031,0.435249,-3.35371e-007][0.1323,0.066134,0][-2.83447,-2.53014,0.272057][-0.761191,0.648527,-2.59291e-006][0.14068,0.116573,0][-2.98225,-2.85245,0.356987][-0.5612,0.218709,0.798261][0.121954,0.066134,0][-2.7788,-2.58581,0.370126][-0.435708,0.359676,0.825101][0.128734,0.116573,0][-3.03046,-2.80424,0.272057][-0.90031,0.435249,-3.35371e-007][0.1323,0.066134,0][-3.03046,-2.80424,0.272057][-0.90031,0.435249,-3.35371e-007][0.1323,0.066134,0][-2.7788,-2.58581,0.370126][-0.435708,0.359676,0.825101][0.128734,0.116573,0][-2.83447,-2.53014,0.272057][-0.761191,0.648527,-2.59291e-006][0.14068,0.116573,0][-2.7788,-2.58581,0.370126][-0.435708,0.359676,0.825101][0.128734,0.116573,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][1.28632,1.47931,0.370126][-0.393507,0.393507,0.830845][0.128734,0.988922,0][1.28632,1.47931,0.370126][-0.393507,0.393507,0.830845][0.128734,0.988922,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][1.43207,1.33356,0.430735][-0.100769,0.100769,0.989794][0.097458,0.988922,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][-2.4529,-2.91171,0.430735][0.0771109,-0.126904,0.988913][0.058798,0.116573,0][1.43207,1.33356,0.430735][-0.100769,0.100769,0.989794][0.097458,0.988922,0][1.43207,1.33356,0.430735][-0.100769,0.100769,0.989794][0.097458,0.988922,0][-2.4529,-2.91171,0.430735][0.0771109,-0.126904,0.988913][0.058798,0.116573,0][1.61222,1.15341,0.430735][0.100769,-0.100769,0.989794][0.058798,0.988922,0][-2.4529,-2.91171,0.430735][0.0771109,-0.126904,0.988913][0.058798,0.116573,0][-2.30715,-3.05746,0.370126][0.359674,-0.435706,0.825103][0.027522,0.116573,0][1.61222,1.15341,0.430735][0.100769,-0.100769,0.989794][0.058798,0.988922,0][1.61222,1.15341,0.430735][0.100769,-0.100769,0.989794][0.058798,0.988922,0][-2.30715,-3.05746,0.370126][0.359674,-0.435706,0.825103][0.027522,0.116573,0][1.75797,1.00766,0.370126][0.393508,-0.393508,0.830844][0.027522,0.988922,0][-2.30715,-3.05746,0.370126][0.359674,-0.435706,0.825103][0.027522,0.116573,0][-2.25148,-3.11313,0.272057][0.648527,-0.761192,-2.75657e-006][0.015575,0.116573,0][1.75797,1.00766,0.370126][0.393508,-0.393508,0.830844][0.027522,0.988922,0][1.75797,1.00766,0.370126][0.393508,-0.393508,0.830844][0.027522,0.988922,0][-2.25148,-3.11313,0.272057][0.648527,-0.761192,-2.75657e-006][0.015575,0.116573,0][1.81364,0.951995,0.272057][0.707107,-0.707107,-1.99507e-006][0.015575,0.988922,0][-2.25148,-3.11313,0.272057][0.648527,-0.761192,-2.75657e-006][0.015575,0.116573,0][-2.30715,-3.05746,0.173989][0.359675,-0.435705,-0.825103][0.027522,0.116573,0][1.81364,0.951995,0.272057][0.707107,-0.707107,-1.99507e-006][0.015575,0.988922,0][1.81364,0.951995,0.272057][0.707107,-0.707107,-1.99507e-006][0.015575,0.988922,0][-2.30715,-3.05746,0.173989][0.359675,-0.435705,-0.825103][0.027522,0.116573,0][1.75797,1.00766,0.173989][0.393508,-0.393508,-0.830844][0.027522,0.988922,0][-2.30715,-3.05746,0.173989][0.359675,-0.435705,-0.825103][0.027522,0.116573,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][1.75797,1.00766,0.173989][0.393508,-0.393508,-0.830844][0.027522,0.988922,0][1.75797,1.00766,0.173989][0.393508,-0.393508,-0.830844][0.027522,0.988922,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][1.61222,1.15341,0.113379][0.100771,-0.100771,-0.989793][0.058798,0.988922,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][-2.63305,-2.73156,0.113379][-0.126904,0.0771117,-0.988913][0.097458,0.116573,0][1.61222,1.15341,0.113379][0.100771,-0.100771,-0.989793][0.058798,0.988922,0][1.61222,1.15341,0.113379][0.100771,-0.100771,-0.989793][0.058798,0.988922,0][-2.63305,-2.73156,0.113379][-0.126904,0.0771117,-0.988913][0.097458,0.116573,0][1.43207,1.33356,0.113379][-0.100771,0.100771,-0.989793][0.097458,0.988922,0][-2.63305,-2.73156,0.113379][-0.126904,0.0771117,-0.988913][0.097458,0.116573,0][-2.7788,-2.58581,0.173989][-0.435708,0.359677,-0.825101][0.128734,0.116573,0][1.43207,1.33356,0.113379][-0.100771,0.100771,-0.989793][0.097458,0.988922,0][1.43207,1.33356,0.113379][-0.100771,0.100771,-0.989793][0.097458,0.988922,0][-2.7788,-2.58581,0.173989][-0.435708,0.359677,-0.825101][0.128734,0.116573,0][1.28632,1.47931,0.173989][-0.393507,0.393507,-0.830846][0.128734,0.988922,0][-2.7788,-2.58581,0.173989][-0.435708,0.359677,-0.825101][0.128734,0.116573,0][-2.83447,-2.53014,0.272057][-0.761191,0.648527,-2.59291e-006][0.14068,0.116573,0][1.28632,1.47931,0.173989][-0.393507,0.393507,-0.830846][0.128734,0.988922,0][1.28632,1.47931,0.173989][-0.393507,0.393507,-0.830846][0.128734,0.988922,0][-2.83447,-2.53014,0.272057][-0.761191,0.648527,-2.59291e-006][0.14068,0.116573,0][1.23065,1.53498,0.272057][-0.707107,0.707107,-2.48167e-006][0.14068,0.988922,0][-2.83447,-2.53014,0.272057][-0.761191,0.648527,-2.59291e-006][0.14068,0.116573,0][-2.7788,-2.58581,0.370126][-0.435708,0.359676,0.825101][0.128734,0.116573,0][1.23065,1.53498,0.272057][-0.707107,0.707107,-2.48167e-006][0.14068,0.988922,0][1.23065,1.53498,0.272057][-0.707107,0.707107,-2.48167e-006][0.14068,0.988922,0][-2.7788,-2.58581,0.370126][-0.435708,0.359676,0.825101][0.128734,0.116573,0][1.28632,1.47931,0.370126][-0.393507,0.393507,0.830845][0.128734,0.988922,0][-2.99512,-3.1837,0.351396][-0.435806,-0.254132,0.863418][0.087793,0.02921,0][-3.06799,-3.11083,0.321091][-0.735571,-0.124384,0.66593][0.103431,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-2.90505,-3.27378,0.351396][-0.254132,-0.435808,0.863417][0.068463,0.02921,0][-2.99512,-3.1837,0.351396][-0.435806,-0.254132,0.863418][0.087793,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-2.83217,-3.34665,0.321091][-0.124383,-0.73557,0.665932][0.052825,0.02921,0][-2.90505,-3.27378,0.351396][-0.254132,-0.435808,0.863417][0.068463,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-2.80434,-3.37449,0.272057][0.00963511,-0.999954,0][0.046852,0.02921,0][-2.83217,-3.34665,0.321091][-0.124383,-0.73557,0.665932][0.052825,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-2.83217,-3.34665,0.223023][-0.124383,-0.735571,-0.665932][0.052825,0.02921,0][-2.80434,-3.37449,0.272057][0.00963511,-0.999954,0][0.046852,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-2.90505,-3.27378,0.192718][-0.254132,-0.435808,-0.863417][0.068463,0.02921,0][-2.83217,-3.34665,0.223023][-0.124383,-0.735571,-0.665932][0.052825,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-2.99512,-3.1837,0.192718][-0.435806,-0.254132,-0.863418][0.087793,0.02921,0][-2.90505,-3.27378,0.192718][-0.254132,-0.435808,-0.863417][0.068463,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-3.06799,-3.11083,0.223023][-0.735571,-0.124384,-0.66593][0.103431,0.02921,0][-2.99512,-3.1837,0.192718][-0.435806,-0.254132,-0.863418][0.087793,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-3.09583,-3.083,0.272057][-0.999954,0.00964036,0][0.109404,0.02921,0][-3.06799,-3.11083,0.223023][-0.735571,-0.124384,-0.66593][0.103431,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-3.06799,-3.11083,0.321091][-0.735571,-0.124384,0.66593][0.103431,0.02921,0][-3.09583,-3.083,0.272057][-0.999954,0.00964036,0][0.109404,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][2.18243,0.5832,0.0666566][0.439281,-0.439277,-0.783625][0.375571,0.960472,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][2.26401,0.664777,0.0666566][0.749295,-0.0686806,-0.658665][0.402397,0.960472,0][2.26401,0.664777,0.0666566][0.749295,-0.0686806,-0.658665][0.402397,0.960472,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][2.03842,1.1433,-0.0411124][0.599273,0.404206,-0.691006][0.418243,0.844701,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][2.03842,1.1433,-0.0411124][0.599273,0.404206,-0.691006][0.418243,0.844701,0][2.03842,1.1433,-0.0411124][0.599273,0.404206,-0.691006][0.418243,0.844701,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][1.42196,1.75976,-0.0411124][0.404206,0.599272,-0.691007][0.418243,0.641986,0][0.86186,1.90377,0.0666566][-0.439278,0.439279,-0.783625][0.375571,0.526215,0][0.943437,1.98535,0.0666566][-0.0686826,0.749296,-0.658663][0.402397,0.526215,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][0.943437,1.98535,0.0666566][-0.0686826,0.749296,-0.658663][0.402397,0.526215,0][1.42196,1.75976,-0.0411124][0.404206,0.599272,-0.691007][0.418243,0.641986,0][2.03842,1.1433,-0.0411124][0.599273,0.404206,-0.691006][0.418243,0.844701,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][2.26401,0.664777,0.0666566][0.749295,-0.0686806,-0.658665][0.402397,0.960472,0][2.26401,0.664777,0.0666566][0.749295,-0.0686806,-0.658665][0.402397,0.960472,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][2.35088,0.577907,0.272057][0.967542,-0.252709,4.72681e-007][0.402397,0.989038,0][2.03842,1.1433,-0.0411124][0.599273,0.404206,-0.691006][0.418243,0.844701,0][1.42196,1.75976,-0.0411124][0.404206,0.599272,-0.691007][0.418243,0.641986,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][1.42196,1.75976,-0.0411124][0.404206,0.599272,-0.691007][0.418243,0.641986,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][1.42196,1.75976,-0.0411124][0.404206,0.599272,-0.691007][0.418243,0.641986,0][0.943437,1.98535,0.0666566][-0.0686826,0.749296,-0.658663][0.402397,0.526215,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][0.943437,1.98535,0.0666566][-0.0686826,0.749296,-0.658663][0.402397,0.526215,0][0.856566,2.07222,0.272057][-0.252712,0.967541,-8.57687e-007][0.402397,0.497649,0][2.03842,1.1433,0.585227][0.599273,0.404206,0.691006][0.418243,0.844701,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][2.26401,0.664777,0.477458][0.749296,-0.0686824,0.658664][0.402397,0.960472,0][2.26401,0.664777,0.477458][0.749296,-0.0686824,0.658664][0.402397,0.960472,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][2.18243,0.5832,0.477458][0.439284,-0.439277,0.783623][0.375571,0.960472,0][2.03842,1.1433,0.585227][0.599273,0.404206,0.691006][0.418243,0.844701,0][1.42196,1.75976,0.585227][0.404205,0.599272,0.691007][0.418243,0.641986,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][1.42196,1.75976,0.585227][0.404205,0.599272,0.691007][0.418243,0.641986,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][1.42196,1.75976,0.585227][0.404205,0.599272,0.691007][0.418243,0.641986,0][0.943437,1.98535,0.477457][-0.068682,0.749297,0.658663][0.402397,0.526215,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][0.943437,1.98535,0.477457][-0.068682,0.749297,0.658663][0.402397,0.526215,0][0.86186,1.90377,0.477457][-0.439279,0.439278,0.783625][0.375571,0.526215,0][1.3656,0.32011,0.272057][-0.65566,0.755056,0][0.198011,0.869426,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][0.598769,1.08694,0.272057][-0.231125,0.0450693,0.116811][0.198011,0.617261,0][0.86186,1.90377,0.477457][-0.439279,0.439278,0.783625][0.375571,0.526215,0][0.77499,1.99064,0.272057][-1.12541,0.219454,0.568784][0.375571,0.497649,0][0.86186,1.90377,0.0666566][-0.439278,0.439279,-0.783625][0.375571,0.526215,0][0.77499,1.99064,0.272057][-1.12541,0.219454,0.568784][0.375571,0.497649,0][0.943437,1.98535,0.0666566][-0.0686826,0.749296,-0.658663][0.402397,0.526215,0][0.943437,1.98535,0.0666566][-0.0686826,0.749296,-0.658663][0.402397,0.526215,0][0.77499,1.99064,0.272057][-1.12541,0.219454,0.568784][0.375571,0.497649,0][0.856566,2.07222,0.272057][-0.252712,0.967541,-8.57687e-007][0.402397,0.497649,0][2.2693,0.49633,0.272057][0.707104,-0.70711,8.84297e-007][0.375571,0.989038,0][2.18243,0.5832,0.0666566][0.439281,-0.439277,-0.783625][0.375571,0.960472,0][2.35088,0.577907,0.272057][0.967542,-0.252709,4.72681e-007][0.402397,0.989038,0][2.35088,0.577907,0.272057][0.967542,-0.252709,4.72681e-007][0.402397,0.989038,0][2.18243,0.5832,0.0666566][0.439281,-0.439277,-0.783625][0.375571,0.960472,0][2.26401,0.664777,0.0666566][0.749295,-0.0686806,-0.658665][0.402397,0.960472,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][0.86186,1.90377,0.477457][-0.439279,0.439278,0.783625][0.375571,0.526215,0][0.598769,1.08694,0.272057][-0.231125,0.0450693,0.116811][0.198011,0.617261,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][0.598769,1.08694,0.272057][-0.231125,0.0450693,0.116811][0.198011,0.617261,0][0.86186,1.90377,0.0666566][-0.439278,0.439279,-0.783625][0.375571,0.526215,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][0.598769,1.08694,0.272057][-0.231125,0.0450693,0.116811][0.198011,0.617261,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][1.3656,0.32011,0.272057][-0.65566,0.755056,0][0.198011,0.869426,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][2.18243,0.5832,0.0666566][0.439281,-0.439277,-0.783625][0.375571,0.960472,0][2.2693,0.49633,0.272057][0.707104,-0.70711,8.84297e-007][0.375571,0.989038,0][1.3656,0.32011,0.272057][-0.65566,0.755056,0][0.198011,0.869426,0][2.18243,0.5832,0.0666566][0.439281,-0.439277,-0.783625][0.375571,0.960472,0][2.18243,0.5832,0.477458][0.439284,-0.439277,0.783623][0.375571,0.960472,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][1.3656,0.32011,0.272057][-0.65566,0.755056,0][0.198011,0.869426,0][0.77499,1.99064,0.272057][-1.12541,0.219454,0.568784][0.375571,0.497649,0][0.86186,1.90377,0.477457][-0.439279,0.439278,0.783625][0.375571,0.526215,0][0.856566,2.07222,0.272057][-0.252712,0.967541,-8.57687e-007][0.402397,0.497649,0][0.856566,2.07222,0.272057][-0.252712,0.967541,-8.57687e-007][0.402397,0.497649,0][0.86186,1.90377,0.477457][-0.439279,0.439278,0.783625][0.375571,0.526215,0][0.943437,1.98535,0.477457][-0.068682,0.749297,0.658663][0.402397,0.526215,0][0.856566,2.07222,0.272057][-0.252712,0.967541,-8.57687e-007][0.402397,0.497649,0][0.943437,1.98535,0.477457][-0.068682,0.749297,0.658663][0.402397,0.526215,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][0.943437,1.98535,0.477457][-0.068682,0.749297,0.658663][0.402397,0.526215,0][1.42196,1.75976,0.585227][0.404205,0.599272,0.691007][0.418243,0.641986,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][2.03842,1.1433,0.585227][0.599273,0.404206,0.691006][0.418243,0.844701,0][2.03842,1.1433,0.585227][0.599273,0.404206,0.691006][0.418243,0.844701,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][1.42196,1.75976,0.585227][0.404205,0.599272,0.691007][0.418243,0.641986,0][2.35088,0.577907,0.272057][0.967542,-0.252709,4.72681e-007][0.402397,0.989038,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][2.26401,0.664777,0.477458][0.749296,-0.0686824,0.658664][0.402397,0.960472,0][2.26401,0.664777,0.477458][0.749296,-0.0686824,0.658664][0.402397,0.960472,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][2.03842,1.1433,0.585227][0.599273,0.404206,0.691006][0.418243,0.844701,0][2.18243,0.5832,0.477458][0.439284,-0.439277,0.783623][0.375571,0.960472,0][2.2693,0.49633,0.272057][0.707104,-0.70711,8.84297e-007][0.375571,0.989038,0][2.26401,0.664777,0.477458][0.749296,-0.0686824,0.658664][0.402397,0.960472,0][2.26401,0.664777,0.477458][0.749296,-0.0686824,0.658664][0.402397,0.960472,0][2.2693,0.49633,0.272057][0.707104,-0.70711,8.84297e-007][0.375571,0.989038,0][2.35088,0.577907,0.272057][0.967542,-0.252709,4.72681e-007][0.402397,0.989038,0][0.598769,1.08694,0.272057][-0.231125,0.0450693,0.116811][0.198011,0.617261,0][0.77499,1.99064,0.272057][-1.12541,0.219454,0.568784][0.375571,0.497649,0][0.86186,1.90377,0.0666566][-0.439278,0.439279,-0.783625][0.375571,0.526215,0][2.18243,0.5832,0.477458][0.439284,-0.439277,0.783623][0.375571,0.960472,0][1.3656,0.32011,0.272057][-0.65566,0.755056,0][0.198011,0.869426,0][2.2693,0.49633,0.272057][0.707104,-0.70711,8.84297e-007][0.375571,0.989038,0][3.03336,2.69304,0.373877][0.696525,0.530059,0.483622][0.253317,0.832025,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][3.08325,2.64315,0.334985][0.861528,0.393468,0.320862][0.2288,0.832025,0][3.08325,2.64315,0.334985][0.861528,0.393468,0.320862][0.2288,0.832025,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][3.09109,2.53282,0.381052][0.810064,-0.0986246,0.577987][0.199759,0.80684,0][3.03336,2.69304,0.373877][0.696525,0.530059,0.483622][0.253317,0.832025,0][2.9717,2.7547,0.373877][0.530059,0.696528,0.483618][0.283622,0.832025,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][2.9717,2.7547,0.373877][0.530059,0.696528,0.483618][0.283622,0.832025,0][2.89788,2.72603,0.448414][0.173579,0.488451,0.855153][0.294715,0.80684,0][2.9717,2.7547,0.373877][0.530059,0.696528,0.483618][0.283622,0.832025,0][2.92181,2.80459,0.334985][0.393467,0.861527,0.320867][0.30814,0.832025,0][2.89788,2.72603,0.448414][0.173579,0.488451,0.855153][0.294715,0.80684,0][2.89788,2.72603,0.448414][0.173579,0.488451,0.855153][0.294715,0.80684,0][2.92181,2.80459,0.334985][0.393467,0.861527,0.320867][0.30814,0.832025,0][2.81148,2.81243,0.381052][-0.0986239,0.810063,0.577989][0.33718,0.80684,0][2.92181,2.80459,0.334985][0.393467,0.861527,0.320867][0.30814,0.832025,0][2.90275,2.82364,0.272057][0.331835,0.943337,-4.77476e-007][0.317505,0.832025,0][2.81148,2.81243,0.381052][-0.0986239,0.810063,0.577989][0.33718,0.80684,0][2.81148,2.81243,0.381052][-0.0986239,0.810063,0.577989][0.33718,0.80684,0][2.90275,2.82364,0.272057][0.331835,0.943337,-4.77476e-007][0.317505,0.832025,0][2.77847,2.84544,0.272057][-0.231081,0.972935,-9.6929e-007][0.353401,0.80684,0][2.92181,2.80459,0.209129][0.393466,0.861527,-0.320868][0.30814,0.832025,0][2.81148,2.81243,0.163063][-0.0986242,0.810063,-0.577989][0.33718,0.80684,0][2.90275,2.82364,0.272057][0.331835,0.943337,-4.77476e-007][0.317505,0.832025,0][2.90275,2.82364,0.272057][0.331835,0.943337,-4.77476e-007][0.317505,0.832025,0][2.81148,2.81243,0.163063][-0.0986242,0.810063,-0.577989][0.33718,0.80684,0][2.77847,2.84544,0.272057][-0.231081,0.972935,-9.6929e-007][0.353401,0.80684,0][2.9717,2.7547,0.170237][0.53006,0.696526,-0.48362][0.283622,0.832025,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][2.92181,2.80459,0.209129][0.393466,0.861527,-0.320868][0.30814,0.832025,0][2.92181,2.80459,0.209129][0.393466,0.861527,-0.320868][0.30814,0.832025,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][2.81148,2.81243,0.163063][-0.0986242,0.810063,-0.577989][0.33718,0.80684,0][2.9717,2.7547,0.170237][0.53006,0.696526,-0.48362][0.283622,0.832025,0][3.03336,2.69304,0.170237][0.696524,0.530059,-0.483624][0.253317,0.832025,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][3.03336,2.69304,0.170237][0.696524,0.530059,-0.483624][0.253317,0.832025,0][3.00468,2.61922,0.0956995][0.488448,0.173579,-0.855154][0.242225,0.80684,0][3.03336,2.69304,0.170237][0.696524,0.530059,-0.483624][0.253317,0.832025,0][3.08325,2.64315,0.209129][0.861528,0.393467,-0.320863][0.2288,0.832025,0][3.00468,2.61922,0.0956995][0.488448,0.173579,-0.855154][0.242225,0.80684,0][3.00468,2.61922,0.0956995][0.488448,0.173579,-0.855154][0.242225,0.80684,0][3.08325,2.64315,0.209129][0.861528,0.393467,-0.320863][0.2288,0.832025,0][3.09109,2.53282,0.163063][0.810064,-0.0986249,-0.577987][0.199759,0.80684,0][3.08325,2.64315,0.209129][0.861528,0.393467,-0.320863][0.2288,0.832025,0][3.1023,2.6241,0.272057][0.943338,0.331832,-4.0042e-007][0.219435,0.832025,0][3.09109,2.53282,0.163063][0.810064,-0.0986249,-0.577987][0.199759,0.80684,0][3.09109,2.53282,0.163063][0.810064,-0.0986249,-0.577987][0.199759,0.80684,0][3.1023,2.6241,0.272057][0.943338,0.331832,-4.0042e-007][0.219435,0.832025,0][3.12409,2.49981,0.272057][0.972936,-0.231075,-9.17052e-007][0.183539,0.80684,0][3.08325,2.64315,0.334985][0.861528,0.393468,0.320862][0.2288,0.832025,0][3.09109,2.53282,0.381052][0.810064,-0.0986246,0.577987][0.199759,0.80684,0][3.1023,2.6241,0.272057][0.943338,0.331832,-4.0042e-007][0.219435,0.832025,0][3.1023,2.6241,0.272057][0.943338,0.331832,-4.0042e-007][0.219435,0.832025,0][3.09109,2.53282,0.381052][0.810064,-0.0986246,0.577987][0.199759,0.80684,0][3.12409,2.49981,0.272057][0.972936,-0.231075,-9.17052e-007][0.183539,0.80684,0][2.92807,2.36984,0.336729][0.280522,-0.75198,0.596518][0.517434,0.984299,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.45257,0.984299,0][1.96297,1.40474,0.336729][0.879374,0.180644,0.440533][0.517434,0.467746,0][1.96297,1.40474,0.336729][0.879374,0.180644,0.440533][0.517434,0.467746,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.45257,0.984299,0][1.8791,1.48862,0.429417][0.699048,0.415694,0.581833][0.45257,0.467747,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.969123,0.984299,0][2.73237,2.56554,0.429417][-0.429737,-0.0219615,0.902687][0.892561,0.984299,0][1.8791,1.48862,0.429417][0.699048,0.415694,0.581833][0.969123,0.467747,0][1.8791,1.48862,0.429417][0.699048,0.415694,0.581833][0.969123,0.467747,0][2.73237,2.56554,0.429417][-0.429737,-0.0219615,0.902687][0.892561,0.984299,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.892561,0.467747,0][2.73237,2.56554,0.429417][-0.429737,-0.0219615,0.902687][0.892561,0.984299,0][2.6485,2.64942,0.336729][-0.75198,0.280522,0.596518][0.827696,0.984299,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.892561,0.467747,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.892561,0.467747,0][2.6485,2.64942,0.336729][-0.75198,0.280522,0.596518][0.827696,0.984299,0][1.6834,1.68432,0.336729][0.180647,0.879376,0.440527][0.827696,0.467747,0][2.6485,2.64942,0.336729][-0.75198,0.280522,0.596518][0.827696,0.984299,0][2.62053,2.67738,0.272057][-0.886069,0.463552,0][0.801703,0.984298,0][1.6834,1.68432,0.336729][0.180647,0.879376,0.440527][0.827696,0.467747,0][1.6834,1.68432,0.336729][0.180647,0.879376,0.440527][0.827696,0.467747,0][2.62053,2.67738,0.272057][-0.886069,0.463552,0][0.801703,0.984298,0][1.65543,1.71228,0.272057][0.219809,0.975543,3.15134e-006][0.801703,0.467746,0][2.62053,2.67738,0.272057][-0.886069,0.463552,0][0.801703,0.984298,0][2.6485,2.64942,0.207385][-0.751979,0.28052,-0.596519][0.77571,0.984299,0][1.65543,1.71228,0.272057][0.219809,0.975543,3.15134e-006][0.801703,0.467746,0][1.65543,1.71228,0.272057][0.219809,0.975543,3.15134e-006][0.801703,0.467746,0][2.6485,2.64942,0.207385][-0.751979,0.28052,-0.596519][0.77571,0.984299,0][1.6834,1.68432,0.207385][0.180641,0.879374,-0.440533][0.77571,0.467747,0][2.6485,2.64942,0.207385][-0.751979,0.28052,-0.596519][0.77571,0.984299,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.710846,0.984299,0][1.6834,1.68432,0.207385][0.180641,0.879374,-0.440533][0.77571,0.467747,0][1.6834,1.68432,0.207385][0.180641,0.879374,-0.440533][0.77571,0.467747,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.710846,0.984299,0][1.76727,1.60044,0.114698][0.415699,0.699051,-0.581826][0.710846,0.467747,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.710846,0.984299,0][2.8442,2.45372,0.114698][-0.0219619,-0.42974,-0.902686][0.634284,0.984299,0][1.76727,1.60044,0.114698][0.415699,0.699051,-0.581826][0.710846,0.467747,0][1.76727,1.60044,0.114698][0.415699,0.699051,-0.581826][0.710846,0.467747,0][2.8442,2.45372,0.114698][-0.0219619,-0.42974,-0.902686][0.634284,0.984299,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.634284,0.467747,0][2.8442,2.45372,0.114698][-0.0219619,-0.42974,-0.902686][0.634284,0.984299,0][2.92807,2.36984,0.207386][0.280521,-0.751983,-0.596515][0.569419,0.984299,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.634284,0.467747,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.634284,0.467747,0][2.92807,2.36984,0.207386][0.280521,-0.751983,-0.596515][0.569419,0.984299,0][1.96297,1.40474,0.207386][0.879375,0.180645,-0.440531][0.569419,0.467747,0][2.92807,2.36984,0.207386][0.280521,-0.751983,-0.596515][0.569419,0.984299,0][2.95604,2.34188,0.272058][0.463544,-0.886074,6.31971e-006][0.543427,0.984299,0][1.96297,1.40474,0.207386][0.879375,0.180645,-0.440531][0.569419,0.467747,0][1.96297,1.40474,0.207386][0.879375,0.180645,-0.440531][0.569419,0.467747,0][2.95604,2.34188,0.272058][0.463544,-0.886074,6.31971e-006][0.543427,0.984299,0][1.99094,1.37678,0.272058][0.975544,0.219804,1.97291e-006][0.543427,0.467747,0][2.95604,2.34188,0.272058][0.463544,-0.886074,6.31971e-006][0.543427,0.984299,0][2.92807,2.36984,0.336729][0.280522,-0.75198,0.596518][0.517434,0.984299,0][1.99094,1.37678,0.272058][0.975544,0.219804,1.97291e-006][0.543427,0.467747,0][1.99094,1.37678,0.272058][0.975544,0.219804,1.97291e-006][0.543427,0.467747,0][2.92807,2.36984,0.336729][0.280522,-0.75198,0.596518][0.517434,0.984299,0][1.96297,1.40474,0.336729][0.879374,0.180644,0.440533][0.517434,0.467746,0][3.03336,2.69304,0.373877][0.696525,0.530059,0.483622][0.253317,0.832025,0][3.08325,2.64315,0.334985][0.861528,0.393468,0.320862][0.2288,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][2.9717,2.7547,0.373877][0.530059,0.696528,0.483618][0.283622,0.832025,0][3.03336,2.69304,0.373877][0.696525,0.530059,0.483622][0.253317,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][2.92181,2.80459,0.334985][0.393467,0.861527,0.320867][0.30814,0.832025,0][2.9717,2.7547,0.373877][0.530059,0.696528,0.483618][0.283622,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][2.90275,2.82364,0.272057][0.331835,0.943337,-4.77476e-007][0.317505,0.832025,0][2.92181,2.80459,0.334985][0.393467,0.861527,0.320867][0.30814,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][2.92181,2.80459,0.209129][0.393466,0.861527,-0.320868][0.30814,0.832025,0][2.90275,2.82364,0.272057][0.331835,0.943337,-4.77476e-007][0.317505,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][2.9717,2.7547,0.170237][0.53006,0.696526,-0.48362][0.283622,0.832025,0][2.92181,2.80459,0.209129][0.393466,0.861527,-0.320868][0.30814,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][3.03336,2.69304,0.170237][0.696524,0.530059,-0.483624][0.253317,0.832025,0][2.9717,2.7547,0.170237][0.53006,0.696526,-0.48362][0.283622,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][3.08325,2.64315,0.209129][0.861528,0.393467,-0.320863][0.2288,0.832025,0][3.03336,2.69304,0.170237][0.696524,0.530059,-0.483624][0.253317,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][3.1023,2.6241,0.272057][0.943338,0.331832,-4.0042e-007][0.219435,0.832025,0][3.08325,2.64315,0.209129][0.861528,0.393467,-0.320863][0.2288,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][3.08325,2.64315,0.334985][0.861528,0.393468,0.320862][0.2288,0.832025,0][3.1023,2.6241,0.272057][0.943338,0.331832,-4.0042e-007][0.219435,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][2.90177,2.49978,0.475697][0.0452044,-0.301082,0.952526][0.238165,0.752198,0][3.09109,2.53282,0.381052][0.810064,-0.0986246,0.577987][0.199759,0.80684,0][3.09109,2.53282,0.381052][0.810064,-0.0986246,0.577987][0.199759,0.80684,0][2.90177,2.49978,0.475697][0.0452044,-0.301082,0.952526][0.238165,0.752198,0][3.00154,2.40001,0.397913][0.366862,-0.665205,0.650319][0.18913,0.752198,0][1.79185,1.38987,0.475697][0.176247,-0.176249,0.968439][0.219825,0.637661,0][1.89163,1.2901,0.397913][0.524174,-0.524181,0.671175][0.165413,0.637661,0][1.88485,1.48286,0.475697][0.596372,0.330036,0.731722][0.219825,0.688377,0][1.88485,1.48286,0.475697][0.596372,0.330036,0.731722][0.219825,0.688377,0][1.89163,1.2901,0.397913][0.524174,-0.524181,0.671175][0.165413,0.637661,0][1.98462,1.38309,0.397913][0.855507,0.0506026,0.515312][0.165413,0.688377,0][2.89788,2.72603,0.448414][0.173579,0.488451,0.855153][0.294715,0.80684,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][2.90177,2.49978,0.475697][0.0452044,-0.301082,0.952526][0.238165,0.752198,0][1.66853,1.5132,0.475697][-0.17625,0.176248,0.968438][0.287083,0.637661,0][1.79185,1.38987,0.475697][0.176247,-0.176249,0.968439][0.219825,0.637661,0][1.76152,1.60619,0.475697][0.330042,0.596376,0.731716][0.287083,0.688377,0][1.76152,1.60619,0.475697][0.330042,0.596376,0.731716][0.287083,0.688377,0][1.79185,1.38987,0.475697][0.176247,-0.176249,0.968439][0.219825,0.637661,0][1.88485,1.48286,0.475697][0.596372,0.330036,0.731722][0.219825,0.688377,0][2.67867,2.72288,0.397913][-0.665206,0.366862,0.650318][0.34781,0.752198,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][2.81148,2.81243,0.381052][-0.0986239,0.810063,0.577989][0.33718,0.80684,0][2.81148,2.81243,0.381052][-0.0986239,0.810063,0.577989][0.33718,0.80684,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][2.89788,2.72603,0.448414][0.173579,0.488451,0.855153][0.294715,0.80684,0][1.56876,1.61297,0.397913][-0.536232,0.536226,1.37562][0.341495,0.637661,0][1.66853,1.5132,0.475697][-0.17625,0.176248,0.968438][0.287083,0.637661,0][1.66175,1.70596,0.397913][0.0506043,0.85551,0.515308][0.341495,0.688377,0][1.66175,1.70596,0.397913][0.0506043,0.85551,0.515308][0.341495,0.688377,0][1.66853,1.5132,0.475697][-0.17625,0.176248,0.968438][0.287083,0.637661,0][1.76152,1.60619,0.475697][0.330042,0.596376,0.731716][0.287083,0.688377,0][2.64056,2.76099,0.272057][-0.816907,0.576769,0][0.36654,0.752198,0][2.67867,2.72288,0.397913][-0.665206,0.366862,0.650318][0.34781,0.752198,0][2.77847,2.84544,0.272057][-0.231081,0.972935,-9.6929e-007][0.353401,0.80684,0][2.77847,2.84544,0.272057][-0.231081,0.972935,-9.6929e-007][0.353401,0.80684,0][2.67867,2.72288,0.397913][-0.665206,0.366862,0.650318][0.34781,0.752198,0][2.81148,2.81243,0.381052][-0.0986239,0.810063,0.577989][0.33718,0.80684,0][1.53065,1.65108,0.272057][-0.707107,0.707107,1.72337e-006][0.362279,0.637661,0][1.56876,1.61297,0.397913][-0.536232,0.536226,1.37562][0.341495,0.637661,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][1.56876,1.61297,0.397913][-0.536232,0.536226,1.37562][0.341495,0.637661,0][1.66175,1.70596,0.397913][0.0506043,0.85551,0.515308][0.341495,0.688377,0][2.81148,2.81243,0.163063][-0.0986242,0.810063,-0.577989][0.33718,0.80684,0][2.67867,2.72288,0.146201][-0.665203,0.366861,-0.650321][0.34781,0.752198,0][2.77847,2.84544,0.272057][-0.231081,0.972935,-9.6929e-007][0.353401,0.80684,0][2.77847,2.84544,0.272057][-0.231081,0.972935,-9.6929e-007][0.353401,0.80684,0][2.67867,2.72288,0.146201][-0.665203,0.366861,-0.650321][0.34781,0.752198,0][2.64056,2.76099,0.272057][-0.816907,0.576769,0][0.36654,0.752198,0][1.56876,1.61297,0.146201][-0.524179,0.524173,-0.671177][0.341495,0.637661,0][1.53065,1.65108,0.272057][-0.707107,0.707107,1.72337e-006][0.362279,0.637661,0][1.66175,1.70596,0.146201][0.0506035,0.855507,-0.515312][0.341495,0.688377,0][1.66175,1.70596,0.146201][0.0506035,0.855507,-0.515312][0.341495,0.688377,0][1.53065,1.65108,0.272057][-0.707107,0.707107,1.72337e-006][0.362279,0.637661,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][2.77844,2.62311,0.0684175][-0.301085,0.0452014,-0.952525][0.298775,0.752198,0][2.81148,2.81243,0.163063][-0.0986242,0.810063,-0.577989][0.33718,0.80684,0][2.81148,2.81243,0.163063][-0.0986242,0.810063,-0.577989][0.33718,0.80684,0][2.77844,2.62311,0.0684175][-0.301085,0.0452014,-0.952525][0.298775,0.752198,0][2.67867,2.72288,0.146201][-0.665203,0.366861,-0.650321][0.34781,0.752198,0][1.66853,1.5132,0.0684176][-0.176248,0.176246,-0.968439][0.287083,0.637661,0][1.56876,1.61297,0.146201][-0.524179,0.524173,-0.671177][0.341495,0.637661,0][1.76152,1.60619,0.0684176][0.330043,0.596375,-0.731716][0.287083,0.688377,0][1.76152,1.60619,0.0684176][0.330043,0.596375,-0.731716][0.287083,0.688377,0][1.56876,1.61297,0.146201][-0.524179,0.524173,-0.671177][0.341495,0.637661,0][1.66175,1.70596,0.146201][0.0506035,0.855507,-0.515312][0.341495,0.688377,0][3.00468,2.61922,0.0956995][0.488448,0.173579,-0.855154][0.242225,0.80684,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][2.77844,2.62311,0.0684175][-0.301085,0.0452014,-0.952525][0.298775,0.752198,0][1.79185,1.38987,0.0684176][0.176245,-0.176247,-0.968439][0.219825,0.637661,0][1.66853,1.5132,0.0684176][-0.176248,0.176246,-0.968439][0.287083,0.637661,0][1.88485,1.48286,0.0684176][0.596371,0.330037,-0.731722][0.219825,0.688377,0][1.88485,1.48286,0.0684176][0.596371,0.330037,-0.731722][0.219825,0.688377,0][1.66853,1.5132,0.0684176][-0.176248,0.176246,-0.968439][0.287083,0.637661,0][1.76152,1.60619,0.0684176][0.330043,0.596375,-0.731716][0.287083,0.688377,0][3.00154,2.40001,0.146201][0.36686,-0.665204,-0.650321][0.18913,0.752198,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][3.09109,2.53282,0.163063][0.810064,-0.0986249,-0.577987][0.199759,0.80684,0][3.09109,2.53282,0.163063][0.810064,-0.0986249,-0.577987][0.199759,0.80684,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][3.00468,2.61922,0.0956995][0.488448,0.173579,-0.855154][0.242225,0.80684,0][1.89163,1.2901,0.146201][0.524176,-0.524179,-0.671175][0.165413,0.637661,0][1.79185,1.38987,0.0684176][0.176245,-0.176247,-0.968439][0.219825,0.637661,0][1.98462,1.38309,0.146201][0.855507,0.0506006,-0.515312][0.165413,0.688377,0][1.98462,1.38309,0.146201][0.855507,0.0506006,-0.515312][0.165413,0.688377,0][1.79185,1.38987,0.0684176][0.176245,-0.176247,-0.968439][0.219825,0.637661,0][1.88485,1.48286,0.0684176][0.596371,0.330037,-0.731722][0.219825,0.688377,0][3.03965,2.3619,0.272057][0.576767,-0.816909,-6.91482e-007][0.1704,0.752198,0][3.00154,2.40001,0.146201][0.36686,-0.665204,-0.650321][0.18913,0.752198,0][3.12409,2.49981,0.272057][0.972936,-0.231075,-9.17052e-007][0.183539,0.80684,0][3.12409,2.49981,0.272057][0.972936,-0.231075,-9.17052e-007][0.183539,0.80684,0][3.00154,2.40001,0.146201][0.36686,-0.665204,-0.650321][0.18913,0.752198,0][3.09109,2.53282,0.163063][0.810064,-0.0986249,-0.577987][0.199759,0.80684,0][1.92974,1.25199,0.272057][0.707109,-0.707105,-3.06493e-006][0.144629,0.637661,0][1.89163,1.2901,0.146201][0.524176,-0.524179,-0.671175][0.165413,0.637661,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][1.89163,1.2901,0.146201][0.524176,-0.524179,-0.671175][0.165413,0.637661,0][1.98462,1.38309,0.146201][0.855507,0.0506006,-0.515312][0.165413,0.688377,0][3.09109,2.53282,0.381052][0.810064,-0.0986246,0.577987][0.199759,0.80684,0][3.00154,2.40001,0.397913][0.366862,-0.665205,0.650319][0.18913,0.752198,0][3.12409,2.49981,0.272057][0.972936,-0.231075,-9.17052e-007][0.183539,0.80684,0][3.12409,2.49981,0.272057][0.972936,-0.231075,-9.17052e-007][0.183539,0.80684,0][3.00154,2.40001,0.397913][0.366862,-0.665205,0.650319][0.18913,0.752198,0][3.03965,2.3619,0.272057][0.576767,-0.816909,-6.91482e-007][0.1704,0.752198,0][1.89163,1.2901,0.397913][0.524174,-0.524181,0.671175][0.165413,0.637661,0][1.92974,1.25199,0.272057][0.707109,-0.707105,-3.06493e-006][0.144629,0.637661,0][1.98462,1.38309,0.397913][0.855507,0.0506026,0.515312][0.165413,0.688377,0][1.98462,1.38309,0.397913][0.855507,0.0506026,0.515312][0.165413,0.688377,0][1.92974,1.25199,0.272057][0.707109,-0.707105,-3.06493e-006][0.144629,0.637661,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][2.90177,2.49978,0.475697][0.0452044,-0.301082,0.952526][0.238165,0.752198,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.240991,0.726732,0][3.00154,2.40001,0.397913][0.366862,-0.665205,0.650319][0.18913,0.752198,0][3.00154,2.40001,0.397913][0.366862,-0.665205,0.650319][0.18913,0.752198,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.240991,0.726732,0][2.92807,2.36984,0.336729][0.280522,-0.75198,0.596518][0.199769,0.726732,0][1.88485,1.48286,0.475697][0.596372,0.330036,0.731722][0.219825,0.688377,0][1.98462,1.38309,0.397913][0.855507,0.0506026,0.515312][0.165413,0.688377,0][1.8791,1.48862,0.429417][0.699048,0.415694,0.581833][0.222961,0.703916,0][1.8791,1.48862,0.429417][0.699048,0.415694,0.581833][0.222961,0.703916,0][1.98462,1.38309,0.397913][0.855507,0.0506026,0.515312][0.165413,0.688377,0][1.96297,1.40474,0.336729][0.879374,0.180644,0.440533][0.177219,0.703916,0][2.90177,2.49978,0.475697][0.0452044,-0.301082,0.952526][0.238165,0.752198,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.240991,0.726732,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.240991,0.726732,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][2.73237,2.56554,0.429417][-0.429737,-0.0219615,0.902687][0.295949,0.726732,0][1.76152,1.60619,0.475697][0.330042,0.596376,0.731716][0.287083,0.688377,0][1.88485,1.48286,0.475697][0.596372,0.330036,0.731722][0.219825,0.688377,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.283946,0.703916,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.283946,0.703916,0][1.88485,1.48286,0.475697][0.596372,0.330036,0.731722][0.219825,0.688377,0][1.8791,1.48862,0.429417][0.699048,0.415694,0.581833][0.222961,0.703916,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][2.67867,2.72288,0.397913][-0.665206,0.366862,0.650318][0.34781,0.752198,0][2.73237,2.56554,0.429417][-0.429737,-0.0219615,0.902687][0.295949,0.726732,0][2.73237,2.56554,0.429417][-0.429737,-0.0219615,0.902687][0.295949,0.726732,0][2.67867,2.72288,0.397913][-0.665206,0.366862,0.650318][0.34781,0.752198,0][2.6485,2.64942,0.336729][-0.75198,0.280522,0.596518][0.337171,0.726732,0][1.76152,1.60619,0.475697][0.330042,0.596376,0.731716][0.287083,0.688377,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.283946,0.703916,0][1.66175,1.70596,0.397913][0.0506043,0.85551,0.515308][0.341495,0.688377,0][1.66175,1.70596,0.397913][0.0506043,0.85551,0.515308][0.341495,0.688377,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.283946,0.703916,0][1.6834,1.68432,0.336729][0.180647,0.879376,0.440527][0.329689,0.703916,0][2.67867,2.72288,0.397913][-0.665206,0.366862,0.650318][0.34781,0.752198,0][2.64056,2.76099,0.272057][-0.816907,0.576769,0][0.36654,0.752198,0][2.6485,2.64942,0.336729][-0.75198,0.280522,0.596518][0.337171,0.726732,0][2.6485,2.64942,0.336729][-0.75198,0.280522,0.596518][0.337171,0.726732,0][2.64056,2.76099,0.272057][-0.816907,0.576769,0][0.36654,0.752198,0][2.62053,2.67738,0.272057][-0.886069,0.463552,0][0.350914,0.726732,0][1.66175,1.70596,0.397913][0.0506043,0.85551,0.515308][0.341495,0.688377,0][1.6834,1.68432,0.336729][0.180647,0.879376,0.440527][0.329689,0.703916,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][1.6834,1.68432,0.336729][0.180647,0.879376,0.440527][0.329689,0.703916,0][1.65543,1.71228,0.272057][0.219809,0.975543,3.15134e-006][0.34494,0.703916,0][2.67867,2.72288,0.146201][-0.665203,0.366861,-0.650321][0.34781,0.752198,0][2.6485,2.64942,0.207385][-0.751979,0.28052,-0.596519][0.33717,0.726732,0][2.64056,2.76099,0.272057][-0.816907,0.576769,0][0.36654,0.752198,0][2.64056,2.76099,0.272057][-0.816907,0.576769,0][0.36654,0.752198,0][2.6485,2.64942,0.207385][-0.751979,0.28052,-0.596519][0.33717,0.726732,0][2.62053,2.67738,0.272057][-0.886069,0.463552,0][0.350914,0.726732,0][1.66175,1.70596,0.146201][0.0506035,0.855507,-0.515312][0.341495,0.688377,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][1.6834,1.68432,0.207385][0.180641,0.879374,-0.440533][0.329689,0.703916,0][1.6834,1.68432,0.207385][0.180641,0.879374,-0.440533][0.329689,0.703916,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][1.65543,1.71228,0.272057][0.219809,0.975543,3.15134e-006][0.34494,0.703916,0][2.77844,2.62311,0.0684175][-0.301085,0.0452014,-0.952525][0.298775,0.752198,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.295949,0.726732,0][2.67867,2.72288,0.146201][-0.665203,0.366861,-0.650321][0.34781,0.752198,0][2.67867,2.72288,0.146201][-0.665203,0.366861,-0.650321][0.34781,0.752198,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.295949,0.726732,0][2.6485,2.64942,0.207385][-0.751979,0.28052,-0.596519][0.33717,0.726732,0][1.76152,1.60619,0.0684176][0.330043,0.596375,-0.731716][0.287083,0.688377,0][1.66175,1.70596,0.146201][0.0506035,0.855507,-0.515312][0.341495,0.688377,0][1.76727,1.60044,0.114698][0.415699,0.699051,-0.581826][0.283946,0.703916,0][1.76727,1.60044,0.114698][0.415699,0.699051,-0.581826][0.283946,0.703916,0][1.66175,1.70596,0.146201][0.0506035,0.855507,-0.515312][0.341495,0.688377,0][1.6834,1.68432,0.207385][0.180641,0.879374,-0.440533][0.329689,0.703916,0][2.77844,2.62311,0.0684175][-0.301085,0.0452014,-0.952525][0.298775,0.752198,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.295949,0.726732,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.295949,0.726732,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][2.8442,2.45372,0.114698][-0.0219619,-0.42974,-0.902686][0.240991,0.726732,0][1.88485,1.48286,0.0684176][0.596371,0.330037,-0.731722][0.219825,0.688377,0][1.76152,1.60619,0.0684176][0.330043,0.596375,-0.731716][0.287083,0.688377,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.222961,0.703916,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.222961,0.703916,0][1.76152,1.60619,0.0684176][0.330043,0.596375,-0.731716][0.287083,0.688377,0][1.76727,1.60044,0.114698][0.415699,0.699051,-0.581826][0.283946,0.703916,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][3.00154,2.40001,0.146201][0.36686,-0.665204,-0.650321][0.18913,0.752198,0][2.8442,2.45372,0.114698][-0.0219619,-0.42974,-0.902686][0.240991,0.726732,0][2.8442,2.45372,0.114698][-0.0219619,-0.42974,-0.902686][0.240991,0.726732,0][3.00154,2.40001,0.146201][0.36686,-0.665204,-0.650321][0.18913,0.752198,0][2.92807,2.36984,0.207386][0.280521,-0.751983,-0.596515][0.199769,0.726732,0][1.88485,1.48286,0.0684176][0.596371,0.330037,-0.731722][0.219825,0.688377,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.222961,0.703916,0][1.98462,1.38309,0.146201][0.855507,0.0506006,-0.515312][0.165413,0.688377,0][1.98462,1.38309,0.146201][0.855507,0.0506006,-0.515312][0.165413,0.688377,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.222961,0.703916,0][1.96297,1.40474,0.207386][0.879375,0.180645,-0.440531][0.177219,0.703916,0][3.00154,2.40001,0.146201][0.36686,-0.665204,-0.650321][0.18913,0.752198,0][3.03965,2.3619,0.272057][0.576767,-0.816909,-6.91482e-007][0.1704,0.752198,0][2.92807,2.36984,0.207386][0.280521,-0.751983,-0.596515][0.199769,0.726732,0][2.92807,2.36984,0.207386][0.280521,-0.751983,-0.596515][0.199769,0.726732,0][3.03965,2.3619,0.272057][0.576767,-0.816909,-6.91482e-007][0.1704,0.752198,0][2.95604,2.34188,0.272058][0.463544,-0.886074,6.31971e-006][0.186026,0.726732,0][1.98462,1.38309,0.146201][0.855507,0.0506006,-0.515312][0.165413,0.688377,0][1.96297,1.40474,0.207386][0.879375,0.180645,-0.440531][0.177219,0.703916,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][1.96297,1.40474,0.207386][0.879375,0.180645,-0.440531][0.177219,0.703916,0][1.99094,1.37678,0.272058][0.975544,0.219804,1.97291e-006][0.161969,0.703916,0][3.00154,2.40001,0.397913][0.366862,-0.665205,0.650319][0.18913,0.752198,0][2.92807,2.36984,0.336729][0.280522,-0.75198,0.596518][0.199769,0.726732,0][3.03965,2.3619,0.272057][0.576767,-0.816909,-6.91482e-007][0.1704,0.752198,0][3.03965,2.3619,0.272057][0.576767,-0.816909,-6.91482e-007][0.1704,0.752198,0][2.92807,2.36984,0.336729][0.280522,-0.75198,0.596518][0.199769,0.726732,0][2.95604,2.34188,0.272058][0.463544,-0.886074,6.31971e-006][0.186026,0.726732,0][1.98462,1.38309,0.397913][0.855507,0.0506026,0.515312][0.165413,0.688377,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][1.96297,1.40474,0.336729][0.879374,0.180644,0.440533][0.177219,0.703916,0][1.96297,1.40474,0.336729][0.879374,0.180644,0.440533][0.177219,0.703916,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][1.99094,1.37678,0.272058][0.975544,0.219804,1.97291e-006][0.161969,0.703916,0] \ No newline at end of file diff --git a/cut/charcustom/hats/fonts/gravityhammer.mesh b/charcustom/hats/fonts/gravityhammer.mesh similarity index 100% rename from cut/charcustom/hats/fonts/gravityhammer.mesh rename to charcustom/hats/fonts/gravityhammer.mesh diff --git a/charcustom/hats/fonts/head.mesh b/charcustom/hats/fonts/head.mesh new file mode 100644 index 0000000..a2e048e --- /dev/null +++ b/charcustom/hats/fonts/head.mesh @@ -0,0 +1,3 @@ +version 1.00 +480 +[1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][0.979834,2.01528,0][0.0941258,0.995548,-0.00496935][0.587458,0.260611,-0.5][0.931877,2.01528,-0.302785][0.0879833,0.995548,-0.0338126][0.591901,0.260611,-0.349756][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][0.931877,2.01528,-0.302785][0.0879833,0.995548,-0.0338126][0.591901,0.260611,-0.349756][0.792703,2.01528,-0.575931][0.0732284,0.995548,-0.059346][0.604792,0.260611,-0.214219][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][0.792703,2.01528,-0.575931][0.0732284,0.995548,-0.059346][0.604792,0.260611,-0.214219][0.575933,2.01528,-0.792701][0.0513055,0.995548,-0.0790703][0.624871,0.260611,-0.106656][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][0.575933,2.01528,-0.792701][0.0513055,0.995548,-0.0790703][0.624871,0.260611,-0.106656][0.302786,2.01528,-0.931876][0.0243603,0.995548,-0.0910546][0.650172,0.260611,-0.037596][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][0.302786,2.01528,-0.931876][0.0243603,0.995548,-0.0910546][0.650172,0.260611,-0.037596][1.54972e-006,2.01528,-0.979832][-0.00496936,0.995548,-0.0941258][0.678218,0.260611,-0.0137997][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][1.54972e-006,2.01528,-0.979832][-0.00496936,0.995548,-0.0941258][0.678218,0.260611,-0.0137997][-0.302783,2.01528,-0.931876][-0.0338126,0.995548,-0.0879833][0.706264,0.260611,-0.037596][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][-0.302783,2.01528,-0.931876][-0.0338126,0.995548,-0.0879833][0.706264,0.260611,-0.037596][-0.575929,2.01528,-0.792701][-0.059346,0.995548,-0.0732284][0.731565,0.260611,-0.106656][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][-0.575929,2.01528,-0.792701][-0.059346,0.995548,-0.0732284][0.731565,0.260611,-0.106656][-0.7927,2.01528,-0.575931][-0.0790703,0.995548,-0.0513054][0.751644,0.260611,-0.214219][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][-0.7927,2.01528,-0.575931][-0.0790703,0.995548,-0.0513054][0.751644,0.260611,-0.214219][-0.931874,2.01528,-0.302785][-0.0910545,0.995548,-0.0243603][0.764535,0.260611,-0.349756][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][-0.931874,2.01528,-0.302785][-0.0910545,0.995548,-0.0243603][0.764535,0.260611,-0.349756][-0.979831,2.01528,0][-0.0941258,0.995548,0.00496935][0.768977,0.260611,-0.5][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][-0.979831,2.01528,0][-0.0941258,0.995548,0.00496935][0.0378195,0.814306,0.5][-0.931874,2.01528,0.302785][-0.0879833,0.995548,0.0338126][0.0378195,0.816806,0.349756][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][-0.931874,2.01528,0.302785][-0.0879833,0.995548,0.0338126][0.0378195,0.816806,0.349756][-0.792699,2.01528,0.575931][-0.0732284,0.995548,0.059346][0.0378195,0.824063,0.214218][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][-0.792699,2.01528,0.575931][-0.0732284,0.995548,0.059346][0.0378195,0.824063,0.214218][-0.575929,2.01528,0.792701][-0.0513054,0.995548,0.0790702][0.0378195,0.835366,0.106656][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][-0.575929,2.01528,0.792701][-0.0513054,0.995548,0.0790702][0.0378195,0.835366,0.106656][-0.302783,2.01528,0.931876][-0.0243603,0.995548,0.0910545][0.0378195,0.849609,0.037596][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][-0.302783,2.01528,0.931876][-0.0243603,0.995548,0.0910545][0.0378195,0.849609,0.037596][1.66893e-006,2.01528,0.979832][0.00496935,0.995548,0.0941257][0.0378195,0.865397,0.0137997][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][1.66893e-006,2.01528,0.979832][0.00496935,0.995548,0.0941257][0.0378195,0.865397,0.0137997][0.302786,2.01528,0.931876][0.0338126,0.995548,0.0879833][0.0378195,0.881185,0.037596][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][0.302786,2.01528,0.931876][0.0338126,0.995548,0.0879833][0.0378195,0.881185,0.037596][0.575933,2.01528,0.792701][0.059346,0.995548,0.0732284][0.0378195,0.895427,0.106656][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][0.575933,2.01528,0.792701][0.059346,0.995548,0.0732284][0.0378195,0.895427,0.106656][0.792703,2.01528,0.575931][0.0790703,0.995548,0.0513054][0.0378195,0.90673,0.214219][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][0.792703,2.01528,0.575931][0.0790703,0.995548,0.0513054][0.0378195,0.90673,0.214219][0.931877,2.01528,0.302785][0.0910546,0.995548,0.0243603][0.0378195,0.913987,0.349756][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][0.931877,2.01528,0.302785][0.0910546,0.995548,0.0243603][0.0378195,0.913987,0.349756][0.979834,2.01528,0][0.0941258,0.995548,-0.00496935][0.0378195,0.916488,0.5][1.23619,1.96461,-0.401662][0.291269,0.951082,-0.102981][0.563713,0.26547,-0.300692][0.931877,2.01528,-0.302785][0.0879833,0.995548,-0.0338126][0.591901,0.260611,-0.349756][0.979834,2.01528,0][0.0941258,0.995548,-0.00496935][0.587458,0.260611,-0.5][0.979834,2.01528,0][0.0941258,0.995548,-0.00496935][0.587458,0.260611,-0.5][1.29981,1.96461,0][0.308836,0.951082,-0.0079339][0.55782,0.26547,-0.5][1.23619,1.96461,-0.401662][0.291269,0.951082,-0.102981][0.563713,0.26547,-0.300692][1.05157,1.96461,-0.764006][0.24519,0.951082,-0.187948][0.580814,0.26547,-0.120894][0.792703,2.01528,-0.575931][0.0732284,0.995548,-0.059346][0.604792,0.260611,-0.214219][0.931877,2.01528,-0.302785][0.0879833,0.995548,-0.0338126][0.591901,0.260611,-0.349756][0.931877,2.01528,-0.302785][0.0879833,0.995548,-0.0338126][0.591901,0.260611,-0.349756][1.23619,1.96461,-0.401662][0.291269,0.951082,-0.102981][0.563713,0.26547,-0.300692][1.05157,1.96461,-0.764006][0.24519,0.951082,-0.187948][0.580814,0.26547,-0.120894][0.764008,1.96461,-1.05156][0.175111,0.951082,-0.254517][0.60745,0.26547,0.0217943][0.575933,2.01528,-0.792701][0.0513055,0.995548,-0.0790703][0.624871,0.260611,-0.106656][0.792703,2.01528,-0.575931][0.0732284,0.995548,-0.059346][0.604792,0.260611,-0.214219][0.792703,2.01528,-0.575931][0.0732284,0.995548,-0.059346][0.604792,0.260611,-0.214219][1.05157,1.96461,-0.764006][0.24519,0.951082,-0.187948][0.580814,0.26547,-0.120894][0.764008,1.96461,-1.05156][0.175111,0.951082,-0.254517][0.60745,0.26547,0.0217943][0.401663,1.96461,-1.23619][0.08789,0.951082,-0.296172][0.641013,0.26547,0.113406][0.302786,2.01528,-0.931876][0.0243603,0.995548,-0.0910546][0.650172,0.260611,-0.037596][0.575933,2.01528,-0.792701][0.0513055,0.995548,-0.0790703][0.624871,0.260611,-0.106656][0.575933,2.01528,-0.792701][0.0513055,0.995548,-0.0790703][0.624871,0.260611,-0.106656][0.764008,1.96461,-1.05156][0.175111,0.951082,-0.254517][0.60745,0.26547,0.0217943][0.401663,1.96461,-1.23619][0.08789,0.951082,-0.296172][0.641013,0.26547,0.113406][1.43051e-006,1.96461,-1.2998][-0.0079339,0.951082,-0.308836][0.678218,0.26547,0.144973][1.54972e-006,2.01528,-0.979832][-0.00496936,0.995548,-0.0941258][0.678218,0.260611,-0.0137997][0.302786,2.01528,-0.931876][0.0243603,0.995548,-0.0910546][0.650172,0.260611,-0.037596][0.302786,2.01528,-0.931876][0.0243603,0.995548,-0.0910546][0.650172,0.260611,-0.037596][0.401663,1.96461,-1.23619][0.08789,0.951082,-0.296172][0.641013,0.26547,0.113406][1.43051e-006,1.96461,-1.2998][-0.0079339,0.951082,-0.308836][0.678218,0.26547,0.144973][-0.40166,1.96461,-1.23619][-0.102981,0.951082,-0.291269][0.715423,0.26547,0.113406][-0.302783,2.01528,-0.931876][-0.0338126,0.995548,-0.0879833][0.706264,0.260611,-0.037596][1.54972e-006,2.01528,-0.979832][-0.00496936,0.995548,-0.0941258][0.678218,0.260611,-0.0137997][1.54972e-006,2.01528,-0.979832][-0.00496936,0.995548,-0.0941258][0.678218,0.260611,-0.0137997][1.43051e-006,1.96461,-1.2998][-0.0079339,0.951082,-0.308836][0.678218,0.26547,0.144973][-0.40166,1.96461,-1.23619][-0.102981,0.951082,-0.291269][0.715423,0.26547,0.113406][-0.764005,1.96461,-1.05156][-0.187948,0.951082,-0.24519][0.748986,0.26547,0.0217942][-0.575929,2.01528,-0.792701][-0.059346,0.995548,-0.0732284][0.731565,0.260611,-0.106656][-0.302783,2.01528,-0.931876][-0.0338126,0.995548,-0.0879833][0.706264,0.260611,-0.037596][-0.302783,2.01528,-0.931876][-0.0338126,0.995548,-0.0879833][0.706264,0.260611,-0.037596][-0.40166,1.96461,-1.23619][-0.102981,0.951082,-0.291269][0.715423,0.26547,0.113406][-0.764005,1.96461,-1.05156][-0.187948,0.951082,-0.24519][0.748986,0.26547,0.0217942][-1.05156,1.96461,-0.764006][-0.254517,0.951082,-0.175111][0.775621,0.26547,-0.120894][-0.7927,2.01528,-0.575931][-0.0790703,0.995548,-0.0513054][0.751644,0.260611,-0.214219][-0.575929,2.01528,-0.792701][-0.059346,0.995548,-0.0732284][0.731565,0.260611,-0.106656][-0.575929,2.01528,-0.792701][-0.059346,0.995548,-0.0732284][0.731565,0.260611,-0.106656][-0.764005,1.96461,-1.05156][-0.187948,0.951082,-0.24519][0.748986,0.26547,0.0217942][-1.05156,1.96461,-0.764006][-0.254517,0.951082,-0.175111][0.775621,0.26547,-0.120894][-1.23619,1.96461,-0.401662][-0.296172,0.951082,-0.08789][0.792722,0.26547,-0.300692][-0.931874,2.01528,-0.302785][-0.0910545,0.995548,-0.0243603][0.764535,0.260611,-0.349756][-0.7927,2.01528,-0.575931][-0.0790703,0.995548,-0.0513054][0.751644,0.260611,-0.214219][-0.7927,2.01528,-0.575931][-0.0790703,0.995548,-0.0513054][0.751644,0.260611,-0.214219][-1.05156,1.96461,-0.764006][-0.254517,0.951082,-0.175111][0.775621,0.26547,-0.120894][-1.23619,1.96461,-0.401662][-0.296172,0.951082,-0.08789][0.792722,0.26547,-0.300692][-1.2998,1.96461,0][-0.308836,0.951082,0.0079339][0.798615,0.26547,-0.5][-0.979831,2.01528,0][-0.0941258,0.995548,0.00496935][0.768977,0.260611,-0.5][-0.931874,2.01528,-0.302785][-0.0910545,0.995548,-0.0243603][0.764535,0.260611,-0.349756][-0.931874,2.01528,-0.302785][-0.0910545,0.995548,-0.0243603][0.764535,0.260611,-0.349756][-1.23619,1.96461,-0.401662][-0.296172,0.951082,-0.08789][0.792722,0.26547,-0.300692][-1.2998,1.96461,0][-0.308836,0.951082,0.0079339][0.798615,0.26547,-0.5][-1.23619,1.96461,0.401662][-0.291269,0.951082,0.102981][0.0413755,0.800939,0.300692][-0.931874,2.01528,0.302785][-0.0879833,0.995548,0.0338126][0.0378195,0.816806,0.349756][-0.979831,2.01528,0][-0.0941258,0.995548,0.00496935][0.0378195,0.814306,0.5][-0.979831,2.01528,0][-0.0941258,0.995548,0.00496935][0.0378195,0.814306,0.5][-1.2998,1.96461,0][-0.308836,0.951082,0.0079339][0.0413755,0.797621,0.5][-1.23619,1.96461,0.401662][-0.291269,0.951082,0.102981][0.0413755,0.800939,0.300692][-1.05156,1.96461,0.764006][-0.24519,0.951082,0.187948][0.0413755,0.810565,0.120894][-0.792699,2.01528,0.575931][-0.0732284,0.995548,0.059346][0.0378195,0.824063,0.214218][-0.931874,2.01528,0.302785][-0.0879833,0.995548,0.0338126][0.0378195,0.816806,0.349756][-0.931874,2.01528,0.302785][-0.0879833,0.995548,0.0338126][0.0378195,0.816806,0.349756][-1.23619,1.96461,0.401662][-0.291269,0.951082,0.102981][0.0413755,0.800939,0.300692][-1.05156,1.96461,0.764006][-0.24519,0.951082,0.187948][0.0413755,0.810565,0.120894][-0.764005,1.96461,1.05156][-0.175111,0.951082,0.254517][0.0413755,0.825559,-0.0217944][-0.575929,2.01528,0.792701][-0.0513054,0.995548,0.0790702][0.0378195,0.835366,0.106656][-0.792699,2.01528,0.575931][-0.0732284,0.995548,0.059346][0.0378195,0.824063,0.214218][-0.792699,2.01528,0.575931][-0.0732284,0.995548,0.059346][0.0378195,0.824063,0.214218][-1.05156,1.96461,0.764006][-0.24519,0.951082,0.187948][0.0413755,0.810565,0.120894][-0.764005,1.96461,1.05156][-0.175111,0.951082,0.254517][0.0413755,0.825559,-0.0217944][-0.40166,1.96461,1.23619][-0.08789,0.951082,0.296172][0.0413755,0.844453,-0.113406][-0.302783,2.01528,0.931876][-0.0243603,0.995548,0.0910545][0.0378195,0.849609,0.037596][-0.575929,2.01528,0.792701][-0.0513054,0.995548,0.0790702][0.0378195,0.835366,0.106656][-0.575929,2.01528,0.792701][-0.0513054,0.995548,0.0790702][0.0378195,0.835366,0.106656][-0.764005,1.96461,1.05156][-0.175111,0.951082,0.254517][0.0413755,0.825559,-0.0217944][-0.40166,1.96461,1.23619][-0.08789,0.951082,0.296172][0.0413755,0.844453,-0.113406][1.78814e-006,1.96461,1.29981][0.00793392,0.951082,0.308836][0.0413755,0.865397,-0.144973][1.66893e-006,2.01528,0.979832][0.00496935,0.995548,0.0941257][0.0378195,0.865397,0.0137997][-0.302783,2.01528,0.931876][-0.0243603,0.995548,0.0910545][0.0378195,0.849609,0.037596][-0.302783,2.01528,0.931876][-0.0243603,0.995548,0.0910545][0.0378195,0.849609,0.037596][-0.40166,1.96461,1.23619][-0.08789,0.951082,0.296172][0.0413755,0.844453,-0.113406][1.78814e-006,1.96461,1.29981][0.00793392,0.951082,0.308836][0.0413755,0.865397,-0.144973][0.401663,1.96461,1.23619][0.102981,0.951082,0.291269][0.0413755,0.88634,-0.113406][0.302786,2.01528,0.931876][0.0338126,0.995548,0.0879833][0.0378195,0.881185,0.037596][1.66893e-006,2.01528,0.979832][0.00496935,0.995548,0.0941257][0.0378195,0.865397,0.0137997][1.66893e-006,2.01528,0.979832][0.00496935,0.995548,0.0941257][0.0378195,0.865397,0.0137997][1.78814e-006,1.96461,1.29981][0.00793392,0.951082,0.308836][0.0413755,0.865397,-0.144973][0.401663,1.96461,1.23619][0.102981,0.951082,0.291269][0.0413755,0.88634,-0.113406][0.764008,1.96461,1.05156][0.187948,0.951082,0.24519][0.0413755,0.905234,-0.0217941][0.575933,2.01528,0.792701][0.059346,0.995548,0.0732284][0.0378195,0.895427,0.106656][0.302786,2.01528,0.931876][0.0338126,0.995548,0.0879833][0.0378195,0.881185,0.037596][0.302786,2.01528,0.931876][0.0338126,0.995548,0.0879833][0.0378195,0.881185,0.037596][0.401663,1.96461,1.23619][0.102981,0.951082,0.291269][0.0413755,0.88634,-0.113406][0.764008,1.96461,1.05156][0.187948,0.951082,0.24519][0.0413755,0.905234,-0.0217941][1.05157,1.96461,0.764006][0.254517,0.951082,0.175111][0.0413755,0.920228,0.120894][0.792703,2.01528,0.575931][0.0790703,0.995548,0.0513054][0.0378195,0.90673,0.214219][0.575933,2.01528,0.792701][0.059346,0.995548,0.0732284][0.0378195,0.895427,0.106656][0.575933,2.01528,0.792701][0.059346,0.995548,0.0732284][0.0378195,0.895427,0.106656][0.764008,1.96461,1.05156][0.187948,0.951082,0.24519][0.0413755,0.905234,-0.0217941][1.05157,1.96461,0.764006][0.254517,0.951082,0.175111][0.0413755,0.920228,0.120894][1.23619,1.96461,0.401661][0.296172,0.951082,0.0878899][0.0413755,0.929855,0.300692][0.931877,2.01528,0.302785][0.0910546,0.995548,0.0243603][0.0378195,0.913987,0.349756][0.792703,2.01528,0.575931][0.0790703,0.995548,0.0513054][0.0378195,0.90673,0.214219][0.792703,2.01528,0.575931][0.0790703,0.995548,0.0513054][0.0378195,0.90673,0.214219][1.05157,1.96461,0.764006][0.254517,0.951082,0.175111][0.0413755,0.920228,0.120894][1.23619,1.96461,0.401661][0.296172,0.951082,0.0878899][0.0413755,0.929855,0.300692][1.29981,1.96461,0][0.308836,0.951082,-0.0079339][0.0413755,0.933172,0.5][0.979834,2.01528,0][0.0941258,0.995548,-0.00496935][0.0378195,0.916488,0.5][0.931877,2.01528,0.302785][0.0910546,0.995548,0.0243603][0.0378195,0.913987,0.349756][0.931877,2.01528,0.302785][0.0910546,0.995548,0.0243603][0.0378195,0.913987,0.349756][1.23619,1.96461,0.401661][0.296172,0.951082,0.0878899][0.0413755,0.929855,0.300692][1.29981,1.96461,0][0.308836,0.951082,-0.0079339][0.0413755,0.933172,0.5][1.51071,1.81753,-0.49086][0.556709,0.809169,-0.187939][0.538285,0.279572,-0.256431][1.23619,1.96461,-0.401662][0.291269,0.951082,-0.102981][0.563713,0.26547,-0.300692][1.29981,1.96461,0][0.308836,0.951082,-0.0079339][0.55782,0.26547,-0.5][1.29981,1.96461,0][0.308836,0.951082,-0.0079339][0.55782,0.26547,-0.5][1.58846,1.81753,0][0.587538,0.809169,-0.00670793][0.531083,0.279572,-0.5][1.51071,1.81753,-0.49086][0.556709,0.809169,-0.187939][0.538285,0.279572,-0.256431][1.28509,1.81753,-0.933671][0.471385,0.809169,-0.350773][0.559183,0.279572,-0.0367051][1.05157,1.96461,-0.764006][0.24519,0.951082,-0.187948][0.580814,0.26547,-0.120894][1.23619,1.96461,-0.401662][0.291269,0.951082,-0.102981][0.563713,0.26547,-0.300692][1.23619,1.96461,-0.401662][0.291269,0.951082,-0.102981][0.563713,0.26547,-0.300692][1.51071,1.81753,-0.49086][0.556709,0.809169,-0.187939][0.538285,0.279572,-0.256431][1.28509,1.81753,-0.933671][0.471385,0.809169,-0.350773][0.559183,0.279572,-0.0367051][0.933673,1.81753,-1.28509][0.339919,0.809169,-0.479271][0.591734,0.279572,0.137671][0.764008,1.96461,-1.05156][0.175111,0.951082,-0.254517][0.60745,0.26547,0.0217943][1.05157,1.96461,-0.764006][0.24519,0.951082,-0.187948][0.580814,0.26547,-0.120894][1.05157,1.96461,-0.764006][0.24519,0.951082,-0.187948][0.580814,0.26547,-0.120894][1.28509,1.81753,-0.933671][0.471385,0.809169,-0.350773][0.559183,0.279572,-0.0367051][0.933673,1.81753,-1.28509][0.339919,0.809169,-0.479271][0.591734,0.279572,0.137671][0.490862,1.81753,-1.51071][0.175179,0.809169,-0.560854][0.632751,0.279572,0.249627][0.401663,1.96461,-1.23619][0.08789,0.951082,-0.296172][0.641013,0.26547,0.113406][0.764008,1.96461,-1.05156][0.175111,0.951082,-0.254517][0.60745,0.26547,0.0217943][0.764008,1.96461,-1.05156][0.175111,0.951082,-0.254517][0.60745,0.26547,0.0217943][0.933673,1.81753,-1.28509][0.339919,0.809169,-0.479271][0.591734,0.279572,0.137671][0.490862,1.81753,-1.51071][0.175179,0.809169,-0.560854][0.632751,0.279572,0.249627][1.43051e-006,1.81753,-1.58846][-0.00670806,0.809169,-0.587538][0.678218,0.279572,0.288204][1.43051e-006,1.96461,-1.2998][-0.0079339,0.951082,-0.308836][0.678218,0.26547,0.144973][0.401663,1.96461,-1.23619][0.08789,0.951082,-0.296172][0.641013,0.26547,0.113406][0.401663,1.96461,-1.23619][0.08789,0.951082,-0.296172][0.641013,0.26547,0.113406][0.490862,1.81753,-1.51071][0.175179,0.809169,-0.560854][0.632751,0.279572,0.249627][1.43051e-006,1.81753,-1.58846][-0.00670806,0.809169,-0.587538][0.678218,0.279572,0.288204][-0.490859,1.81753,-1.51071][-0.187939,0.809169,-0.556709][0.723685,0.279572,0.249627][-0.40166,1.96461,-1.23619][-0.102981,0.951082,-0.291269][0.715423,0.26547,0.113406][1.43051e-006,1.96461,-1.2998][-0.0079339,0.951082,-0.308836][0.678218,0.26547,0.144973][1.43051e-006,1.96461,-1.2998][-0.0079339,0.951082,-0.308836][0.678218,0.26547,0.144973][1.43051e-006,1.81753,-1.58846][-0.00670806,0.809169,-0.587538][0.678218,0.279572,0.288204][-0.490859,1.81753,-1.51071][-0.187939,0.809169,-0.556709][0.723685,0.279572,0.249627][-0.93367,1.81753,-1.28509][-0.350773,0.809169,-0.471385][0.764701,0.279572,0.137671][-0.764005,1.96461,-1.05156][-0.187948,0.951082,-0.24519][0.748986,0.26547,0.0217942][-0.40166,1.96461,-1.23619][-0.102981,0.951082,-0.291269][0.715423,0.26547,0.113406][-0.40166,1.96461,-1.23619][-0.102981,0.951082,-0.291269][0.715423,0.26547,0.113406][-0.490859,1.81753,-1.51071][-0.187939,0.809169,-0.556709][0.723685,0.279572,0.249627][-0.93367,1.81753,-1.28509][-0.350773,0.809169,-0.471385][0.764701,0.279572,0.137671][-1.28509,1.81753,-0.933671][-0.479271,0.809169,-0.339919][0.797252,0.279572,-0.0367053][-1.05156,1.96461,-0.764006][-0.254517,0.951082,-0.175111][0.775621,0.26547,-0.120894][-0.764005,1.96461,-1.05156][-0.187948,0.951082,-0.24519][0.748986,0.26547,0.0217942][-0.764005,1.96461,-1.05156][-0.187948,0.951082,-0.24519][0.748986,0.26547,0.0217942][-0.93367,1.81753,-1.28509][-0.350773,0.809169,-0.471385][0.764701,0.279572,0.137671][-1.28509,1.81753,-0.933671][-0.479271,0.809169,-0.339919][0.797252,0.279572,-0.0367053][-1.51071,1.81753,-0.49086][-0.560854,0.809169,-0.175179][0.818151,0.279572,-0.256432][-1.23619,1.96461,-0.401662][-0.296172,0.951082,-0.08789][0.792722,0.26547,-0.300692][-1.05156,1.96461,-0.764006][-0.254517,0.951082,-0.175111][0.775621,0.26547,-0.120894][-1.05156,1.96461,-0.764006][-0.254517,0.951082,-0.175111][0.775621,0.26547,-0.120894][-1.28509,1.81753,-0.933671][-0.479271,0.809169,-0.339919][0.797252,0.279572,-0.0367053][-1.51071,1.81753,-0.49086][-0.560854,0.809169,-0.175179][0.818151,0.279572,-0.256432][-1.58845,1.81753,0][-0.587538,0.809169,0.00670803][0.825352,0.279572,-0.5][-1.2998,1.96461,0][-0.308836,0.951082,0.0079339][0.798615,0.26547,-0.5][-1.23619,1.96461,-0.401662][-0.296172,0.951082,-0.08789][0.792722,0.26547,-0.300692][-1.23619,1.96461,-0.401662][-0.296172,0.951082,-0.08789][0.792722,0.26547,-0.300692][-1.51071,1.81753,-0.49086][-0.560854,0.809169,-0.175179][0.818151,0.279572,-0.256432][-1.58845,1.81753,0][-0.587538,0.809169,0.00670803][0.825352,0.279572,-0.5][-1.51071,1.81753,0.49086][-0.556709,0.809169,0.187939][0.0516957,0.786624,0.256431][-1.23619,1.96461,0.401662][-0.291269,0.951082,0.102981][0.0413755,0.800939,0.300692][-1.2998,1.96461,0][-0.308836,0.951082,0.0079339][0.0413755,0.797621,0.5][-1.2998,1.96461,0][-0.308836,0.951082,0.0079339][0.0413755,0.797621,0.5][-1.58845,1.81753,0][-0.587538,0.809169,0.00670803][0.0516957,0.78257,0.5][-1.51071,1.81753,0.49086][-0.556709,0.809169,0.187939][0.0516957,0.786624,0.256431][-1.28509,1.81753,0.933671][-0.471385,0.809169,0.350773][0.0516957,0.798389,0.036705][-1.05156,1.96461,0.764006][-0.24519,0.951082,0.187948][0.0413755,0.810565,0.120894][-1.23619,1.96461,0.401662][-0.291269,0.951082,0.102981][0.0413755,0.800939,0.300692][-1.23619,1.96461,0.401662][-0.291269,0.951082,0.102981][0.0413755,0.800939,0.300692][-1.51071,1.81753,0.49086][-0.556709,0.809169,0.187939][0.0516957,0.786624,0.256431][-1.28509,1.81753,0.933671][-0.471385,0.809169,0.350773][0.0516957,0.798389,0.036705][-0.93367,1.81753,1.28509][-0.339919,0.809169,0.479271][0.0516957,0.816713,-0.137671][-0.764005,1.96461,1.05156][-0.175111,0.951082,0.254517][0.0413755,0.825559,-0.0217944][-1.05156,1.96461,0.764006][-0.24519,0.951082,0.187948][0.0413755,0.810565,0.120894][-1.05156,1.96461,0.764006][-0.24519,0.951082,0.187948][0.0413755,0.810565,0.120894][-1.28509,1.81753,0.933671][-0.471385,0.809169,0.350773][0.0516957,0.798389,0.036705][-0.93367,1.81753,1.28509][-0.339919,0.809169,0.479271][0.0516957,0.816713,-0.137671][-0.490858,1.81753,1.51071][-0.175179,0.809169,0.560855][0.0516957,0.839802,-0.249627][-0.40166,1.96461,1.23619][-0.08789,0.951082,0.296172][0.0413755,0.844453,-0.113406][-0.764005,1.96461,1.05156][-0.175111,0.951082,0.254517][0.0413755,0.825559,-0.0217944][-0.764005,1.96461,1.05156][-0.175111,0.951082,0.254517][0.0413755,0.825559,-0.0217944][-0.93367,1.81753,1.28509][-0.339919,0.809169,0.479271][0.0516957,0.816713,-0.137671][-0.490858,1.81753,1.51071][-0.175179,0.809169,0.560855][0.0516957,0.839802,-0.249627][1.78814e-006,1.81753,1.58846][0.00670801,0.809169,0.587538][0.0516957,0.865397,-0.288204][1.78814e-006,1.96461,1.29981][0.00793392,0.951082,0.308836][0.0413755,0.865397,-0.144973][-0.40166,1.96461,1.23619][-0.08789,0.951082,0.296172][0.0413755,0.844453,-0.113406][-0.40166,1.96461,1.23619][-0.08789,0.951082,0.296172][0.0413755,0.844453,-0.113406][-0.490858,1.81753,1.51071][-0.175179,0.809169,0.560855][0.0516957,0.839802,-0.249627][1.78814e-006,1.81753,1.58846][0.00670801,0.809169,0.587538][0.0516957,0.865397,-0.288204][0.490862,1.81753,1.51071][0.187939,0.809169,0.556709][0.0516957,0.890991,-0.249627][0.401663,1.96461,1.23619][0.102981,0.951082,0.291269][0.0413755,0.88634,-0.113406][1.78814e-006,1.96461,1.29981][0.00793392,0.951082,0.308836][0.0413755,0.865397,-0.144973][1.78814e-006,1.96461,1.29981][0.00793392,0.951082,0.308836][0.0413755,0.865397,-0.144973][1.78814e-006,1.81753,1.58846][0.00670801,0.809169,0.587538][0.0516957,0.865397,-0.288204][0.490862,1.81753,1.51071][0.187939,0.809169,0.556709][0.0516957,0.890991,-0.249627][0.933673,1.81753,1.28509][0.350773,0.809169,0.471385][0.0516957,0.914081,-0.137671][0.764008,1.96461,1.05156][0.187948,0.951082,0.24519][0.0413755,0.905234,-0.0217941][0.401663,1.96461,1.23619][0.102981,0.951082,0.291269][0.0413755,0.88634,-0.113406][0.401663,1.96461,1.23619][0.102981,0.951082,0.291269][0.0413755,0.88634,-0.113406][0.490862,1.81753,1.51071][0.187939,0.809169,0.556709][0.0516957,0.890991,-0.249627][0.933673,1.81753,1.28509][0.350773,0.809169,0.471385][0.0516957,0.914081,-0.137671][1.28509,1.81753,0.933671][0.479271,0.809169,0.339919][0.0516957,0.932405,0.0367053][1.05157,1.96461,0.764006][0.254517,0.951082,0.175111][0.0413755,0.920228,0.120894][0.764008,1.96461,1.05156][0.187948,0.951082,0.24519][0.0413755,0.905234,-0.0217941][0.764008,1.96461,1.05156][0.187948,0.951082,0.24519][0.0413755,0.905234,-0.0217941][0.933673,1.81753,1.28509][0.350773,0.809169,0.471385][0.0516957,0.914081,-0.137671][1.28509,1.81753,0.933671][0.479271,0.809169,0.339919][0.0516957,0.932405,0.0367053][1.51071,1.81753,0.49086][0.560854,0.809169,0.175179][0.0516957,0.944169,0.256432][1.23619,1.96461,0.401661][0.296172,0.951082,0.0878899][0.0413755,0.929855,0.300692][1.05157,1.96461,0.764006][0.254517,0.951082,0.175111][0.0413755,0.920228,0.120894][1.05157,1.96461,0.764006][0.254517,0.951082,0.175111][0.0413755,0.920228,0.120894][1.28509,1.81753,0.933671][0.479271,0.809169,0.339919][0.0516957,0.932405,0.0367053][1.51071,1.81753,0.49086][0.560854,0.809169,0.175179][0.0516957,0.944169,0.256432][1.58846,1.81753,0][0.587538,0.809169,-0.00670793][0.0516957,0.948223,0.5][1.29981,1.96461,0][0.308836,0.951082,-0.0079339][0.0413755,0.933172,0.5][1.23619,1.96461,0.401661][0.296172,0.951082,0.0878899][0.0413755,0.929855,0.300692][1.23619,1.96461,0.401661][0.296172,0.951082,0.0878899][0.0413755,0.929855,0.300692][1.51071,1.81753,0.49086][0.560854,0.809169,0.175179][0.0516957,0.944169,0.256432][1.58846,1.81753,0][0.587538,0.809169,-0.00670793][0.0516957,0.948223,0.5][1.72858,1.58846,-0.561648][0.767756,0.588011,-0.254546][0.518104,0.301537,-0.221306][1.51071,1.81753,-0.49086][0.556709,0.809169,-0.187939][0.538285,0.279572,-0.256431][1.58846,1.81753,0][0.587538,0.809169,-0.00670793][0.531083,0.279572,-0.5][1.58846,1.81753,0][0.587538,0.809169,-0.00670793][0.531083,0.279572,-0.5][1.81753,1.58846,0][0.808839,0.58801,-0.00483748][0.509865,0.301537,-0.5][1.72858,1.58846,-0.561648][0.767756,0.588011,-0.254546][0.518104,0.301537,-0.221306][1.47042,1.58846,-1.06832][0.651521,0.588011,-0.479337][0.542017,0.301537,0.0301077][1.28509,1.81753,-0.933671][0.471385,0.809169,-0.350773][0.559183,0.279572,-0.0367051][1.51071,1.81753,-0.49086][0.556709,0.809169,-0.187939][0.538285,0.279572,-0.256431][1.51071,1.81753,-0.49086][0.556709,0.809169,-0.187939][0.538285,0.279572,-0.256431][1.72858,1.58846,-0.561648][0.767756,0.588011,-0.254546][0.518104,0.301537,-0.221306][1.47042,1.58846,-1.06832][0.651521,0.588011,-0.479337][0.542017,0.301537,0.0301077][1.06832,1.58846,-1.47041][0.47151,0.588011,-0.657208][0.579262,0.301537,0.229631][0.933673,1.81753,-1.28509][0.339919,0.809169,-0.479271][0.591734,0.279572,0.137671][1.28509,1.81753,-0.933671][0.471385,0.809169,-0.350773][0.559183,0.279572,-0.0367051][1.28509,1.81753,-0.933671][0.471385,0.809169,-0.350773][0.559183,0.279572,-0.0367051][1.47042,1.58846,-1.06832][0.651521,0.588011,-0.479337][0.542017,0.301537,0.0301077][1.06832,1.58846,-1.47041][0.47151,0.588011,-0.657208][0.579262,0.301537,0.229631][0.56165,1.58846,-1.72858][0.245344,0.588011,-0.770746][0.626194,0.301537,0.357732][0.490862,1.81753,-1.51071][0.175179,0.809169,-0.560854][0.632751,0.279572,0.249627][0.933673,1.81753,-1.28509][0.339919,0.809169,-0.479271][0.591734,0.279572,0.137671][0.933673,1.81753,-1.28509][0.339919,0.809169,-0.479271][0.591734,0.279572,0.137671][1.06832,1.58846,-1.47041][0.47151,0.588011,-0.657208][0.579262,0.301537,0.229631][0.56165,1.58846,-1.72858][0.245344,0.588011,-0.770746][0.626194,0.301537,0.357732][1.43051e-006,1.58846,-1.81753][-0.00483764,0.588011,-0.808839][0.678218,0.301537,0.401873][1.43051e-006,1.81753,-1.58846][-0.00670806,0.809169,-0.587538][0.678218,0.279572,0.288204][0.490862,1.81753,-1.51071][0.175179,0.809169,-0.560854][0.632751,0.279572,0.249627][0.490862,1.81753,-1.51071][0.175179,0.809169,-0.560854][0.632751,0.279572,0.249627][0.56165,1.58846,-1.72858][0.245344,0.588011,-0.770746][0.626194,0.301537,0.357732][1.43051e-006,1.58846,-1.81753][-0.00483764,0.588011,-0.808839][0.678218,0.301537,0.401873][-0.561647,1.58846,-1.72858][-0.254546,0.588011,-0.767756][0.730242,0.301537,0.357732][-0.490859,1.81753,-1.51071][-0.187939,0.809169,-0.556709][0.723685,0.279572,0.249627][1.43051e-006,1.81753,-1.58846][-0.00670806,0.809169,-0.587538][0.678218,0.279572,0.288204][1.43051e-006,1.81753,-1.58846][-0.00670806,0.809169,-0.587538][0.678218,0.279572,0.288204][1.43051e-006,1.58846,-1.81753][-0.00483764,0.588011,-0.808839][0.678218,0.301537,0.401873][-0.561647,1.58846,-1.72858][-0.254546,0.588011,-0.767756][0.730242,0.301537,0.357732][-1.06832,1.58846,-1.47041][-0.479337,0.588011,-0.651521][0.777173,0.301537,0.22963][-0.93367,1.81753,-1.28509][-0.350773,0.809169,-0.471385][0.764701,0.279572,0.137671][-0.490859,1.81753,-1.51071][-0.187939,0.809169,-0.556709][0.723685,0.279572,0.249627][-0.490859,1.81753,-1.51071][-0.187939,0.809169,-0.556709][0.723685,0.279572,0.249627][-0.561647,1.58846,-1.72858][-0.254546,0.588011,-0.767756][0.730242,0.301537,0.357732][-1.06832,1.58846,-1.47041][-0.479337,0.588011,-0.651521][0.777173,0.301537,0.22963][-1.47041,1.58846,-1.06832][-0.657208,0.588011,-0.47151][0.814418,0.301537,0.0301075][-1.28509,1.81753,-0.933671][-0.479271,0.809169,-0.339919][0.797252,0.279572,-0.0367053][-0.93367,1.81753,-1.28509][-0.350773,0.809169,-0.471385][0.764701,0.279572,0.137671][-0.93367,1.81753,-1.28509][-0.350773,0.809169,-0.471385][0.764701,0.279572,0.137671][-1.06832,1.58846,-1.47041][-0.479337,0.588011,-0.651521][0.777173,0.301537,0.22963][-1.47041,1.58846,-1.06832][-0.657208,0.588011,-0.47151][0.814418,0.301537,0.0301075][-1.72857,1.58846,-0.561648][-0.770746,0.588011,-0.245344][0.838331,0.301537,-0.221306][-1.51071,1.81753,-0.49086][-0.560854,0.809169,-0.175179][0.818151,0.279572,-0.256432][-1.28509,1.81753,-0.933671][-0.479271,0.809169,-0.339919][0.797252,0.279572,-0.0367053][-1.28509,1.81753,-0.933671][-0.479271,0.809169,-0.339919][0.797252,0.279572,-0.0367053][-1.47041,1.58846,-1.06832][-0.657208,0.588011,-0.47151][0.814418,0.301537,0.0301075][-1.72857,1.58846,-0.561648][-0.770746,0.588011,-0.245344][0.838331,0.301537,-0.221306][-1.81753,1.58846,0][-0.808839,0.588011,0.00483762][0.846571,0.301537,-0.5][-1.58845,1.81753,0][-0.587538,0.809169,0.00670803][0.825352,0.279572,-0.5][-1.51071,1.81753,-0.49086][-0.560854,0.809169,-0.175179][0.818151,0.279572,-0.256432][-1.51071,1.81753,-0.49086][-0.560854,0.809169,-0.175179][0.818151,0.279572,-0.256432][-1.72857,1.58846,-0.561648][-0.770746,0.588011,-0.245344][0.838331,0.301537,-0.221306][-1.81753,1.58846,0][-0.808839,0.588011,0.00483762][0.846571,0.301537,-0.5][-1.72857,1.58846,0.561648][-0.767756,0.588011,0.254546][0.0677696,0.775264,0.221306][-1.51071,1.81753,0.49086][-0.556709,0.809169,0.187939][0.0516957,0.786624,0.256431][-1.58845,1.81753,0][-0.587538,0.809169,0.00670803][0.0516957,0.78257,0.5][-1.58845,1.81753,0][-0.587538,0.809169,0.00670803][0.0516957,0.78257,0.5][-1.81753,1.58846,0][-0.808839,0.588011,0.00483762][0.0677696,0.770626,0.5][-1.72857,1.58846,0.561648][-0.767756,0.588011,0.254546][0.0677696,0.775264,0.221306][-1.47041,1.58846,1.06832][-0.651521,0.588011,0.479337][0.0677696,0.788725,-0.0301079][-1.28509,1.81753,0.933671][-0.471385,0.809169,0.350773][0.0516957,0.798389,0.036705][-1.51071,1.81753,0.49086][-0.556709,0.809169,0.187939][0.0516957,0.786624,0.256431][-1.51071,1.81753,0.49086][-0.556709,0.809169,0.187939][0.0516957,0.786624,0.256431][-1.72857,1.58846,0.561648][-0.767756,0.588011,0.254546][0.0677696,0.775264,0.221306][-1.47041,1.58846,1.06832][-0.651521,0.588011,0.479337][0.0677696,0.788725,-0.0301079][-1.06832,1.58846,1.47041][-0.47151,0.588011,0.657208][0.0677696,0.809692,-0.229631][-0.93367,1.81753,1.28509][-0.339919,0.809169,0.479271][0.0516957,0.816713,-0.137671][-1.28509,1.81753,0.933671][-0.471385,0.809169,0.350773][0.0516957,0.798389,0.036705][-1.28509,1.81753,0.933671][-0.471385,0.809169,0.350773][0.0516957,0.798389,0.036705][-1.47041,1.58846,1.06832][-0.651521,0.588011,0.479337][0.0677696,0.788725,-0.0301079][-1.06832,1.58846,1.47041][-0.47151,0.588011,0.657208][0.0677696,0.809692,-0.229631][-0.561646,1.58846,1.72858][-0.245344,0.588011,0.770746][0.0677696,0.836111,-0.357732][-0.490858,1.81753,1.51071][-0.175179,0.809169,0.560855][0.0516957,0.839802,-0.249627][-0.93367,1.81753,1.28509][-0.339919,0.809169,0.479271][0.0516957,0.816713,-0.137671][-0.93367,1.81753,1.28509][-0.339919,0.809169,0.479271][0.0516957,0.816713,-0.137671][-1.06832,1.58846,1.47041][-0.47151,0.588011,0.657208][0.0677696,0.809692,-0.229631][-0.561646,1.58846,1.72858][-0.245344,0.588011,0.770746][0.0677696,0.836111,-0.357732][1.78814e-006,1.58846,1.81753][0.00483757,0.588011,0.808839][0.0677696,0.865397,-0.401873][1.78814e-006,1.81753,1.58846][0.00670801,0.809169,0.587538][0.0516957,0.865397,-0.288204][-0.490858,1.81753,1.51071][-0.175179,0.809169,0.560855][0.0516957,0.839802,-0.249627][-0.490858,1.81753,1.51071][-0.175179,0.809169,0.560855][0.0516957,0.839802,-0.249627][-0.561646,1.58846,1.72858][-0.245344,0.588011,0.770746][0.0677696,0.836111,-0.357732][1.78814e-006,1.58846,1.81753][0.00483757,0.588011,0.808839][0.0677696,0.865397,-0.401873][0.56165,1.58846,1.72858][0.254546,0.588011,0.767756][0.0677696,0.894682,-0.357732][0.490862,1.81753,1.51071][0.187939,0.809169,0.556709][0.0516957,0.890991,-0.249627][1.78814e-006,1.81753,1.58846][0.00670801,0.809169,0.587538][0.0516957,0.865397,-0.288204][1.78814e-006,1.81753,1.58846][0.00670801,0.809169,0.587538][0.0516957,0.865397,-0.288204][1.78814e-006,1.58846,1.81753][0.00483757,0.588011,0.808839][0.0677696,0.865397,-0.401873][0.56165,1.58846,1.72858][0.254546,0.588011,0.767756][0.0677696,0.894682,-0.357732][1.06832,1.58846,1.47041][0.479337,0.588011,0.651521][0.0677696,0.921102,-0.229631][0.933673,1.81753,1.28509][0.350773,0.809169,0.471385][0.0516957,0.914081,-0.137671][0.490862,1.81753,1.51071][0.187939,0.809169,0.556709][0.0516957,0.890991,-0.249627][0.490862,1.81753,1.51071][0.187939,0.809169,0.556709][0.0516957,0.890991,-0.249627][0.56165,1.58846,1.72858][0.254546,0.588011,0.767756][0.0677696,0.894682,-0.357732][1.06832,1.58846,1.47041][0.479337,0.588011,0.651521][0.0677696,0.921102,-0.229631][1.47042,1.58846,1.06832][0.657208,0.588011,0.47151][0.0677696,0.942068,-0.0301076][1.28509,1.81753,0.933671][0.479271,0.809169,0.339919][0.0516957,0.932405,0.0367053][0.933673,1.81753,1.28509][0.350773,0.809169,0.471385][0.0516957,0.914081,-0.137671][0.933673,1.81753,1.28509][0.350773,0.809169,0.471385][0.0516957,0.914081,-0.137671][1.06832,1.58846,1.47041][0.479337,0.588011,0.651521][0.0677696,0.921102,-0.229631][1.47042,1.58846,1.06832][0.657208,0.588011,0.47151][0.0677696,0.942068,-0.0301076][1.72858,1.58846,0.561648][0.770746,0.588011,0.245344][0.0677696,0.955529,0.221306][1.51071,1.81753,0.49086][0.560854,0.809169,0.175179][0.0516957,0.944169,0.256432][1.28509,1.81753,0.933671][0.479271,0.809169,0.339919][0.0516957,0.932405,0.0367053][1.28509,1.81753,0.933671][0.479271,0.809169,0.339919][0.0516957,0.932405,0.0367053][1.47042,1.58846,1.06832][0.657208,0.588011,0.47151][0.0677696,0.942068,-0.0301076][1.72858,1.58846,0.561648][0.770746,0.588011,0.245344][0.0677696,0.955529,0.221306][1.81753,1.58846,0][0.808839,0.58801,-0.00483748][0.0677696,0.960167,0.5][1.58846,1.81753,0][0.587538,0.809169,-0.00670793][0.0516957,0.948223,0.5][1.51071,1.81753,0.49086][0.560854,0.809169,0.175179][0.0516957,0.944169,0.256432][1.51071,1.81753,0.49086][0.560854,0.809169,0.175179][0.0516957,0.944169,0.256432][1.72858,1.58846,0.561648][0.770746,0.588011,0.245344][0.0677696,0.955529,0.221306][1.81753,1.58846,0][0.808839,0.58801,-0.00483748][0.0677696,0.960167,0.5][1.86845,1.2998,-0.607097][0.903673,0.309184,-0.296279][0.505148,0.329214,-0.198754][1.72858,1.58846,-0.561648][0.767756,0.588011,-0.254546][0.518104,0.301537,-0.221306][1.81753,1.58846,0][0.808839,0.58801,-0.00483748][0.509865,0.301537,-0.5][1.81753,1.58846,0][0.808839,0.58801,-0.00483748][0.509865,0.301537,-0.5][1.96461,1.2998,0][0.950999,0.309183,-0.00252786][0.496242,0.329214,-0.5][1.86845,1.2998,-0.607097][0.903673,0.309184,-0.296279][0.505148,0.329214,-0.198754][1.5894,1.2998,-1.15477][0.767888,0.309184,-0.561028][0.530996,0.329214,0.0730042][1.47042,1.58846,-1.06832][0.651521,0.588011,-0.479337][0.542017,0.301537,0.0301077][1.72858,1.58846,-0.561648][0.767756,0.588011,-0.254546][0.518104,0.301537,-0.221306][1.72858,1.58846,-0.561648][0.767756,0.588011,-0.254546][0.518104,0.301537,-0.221306][1.86845,1.2998,-0.607097][0.903673,0.309184,-0.296279][0.505148,0.329214,-0.198754][1.5894,1.2998,-1.15477][0.767888,0.309184,-0.561028][0.530996,0.329214,0.0730042][1.15477,1.2998,-1.5894][0.556938,0.309184,-0.77086][0.571255,0.329214,0.288673][1.06832,1.58846,-1.47041][0.47151,0.588011,-0.657208][0.579262,0.301537,0.229631][1.47042,1.58846,-1.06832][0.651521,0.588011,-0.479337][0.542017,0.301537,0.0301077][1.47042,1.58846,-1.06832][0.651521,0.588011,-0.479337][0.542017,0.301537,0.0301077][1.5894,1.2998,-1.15477][0.767888,0.309184,-0.561028][0.530996,0.329214,0.0730042][1.15477,1.2998,-1.5894][0.556938,0.309184,-0.77086][0.571255,0.329214,0.288673][0.607098,1.2998,-1.86845][0.291471,0.309183,-0.905235][0.621984,0.329214,0.42714][0.56165,1.58846,-1.72858][0.245344,0.588011,-0.770746][0.626194,0.301537,0.357732][1.06832,1.58846,-1.47041][0.47151,0.588011,-0.657208][0.579262,0.301537,0.229631][1.06832,1.58846,-1.47041][0.47151,0.588011,-0.657208][0.579262,0.301537,0.229631][1.15477,1.2998,-1.5894][0.556938,0.309184,-0.77086][0.571255,0.329214,0.288673][0.607098,1.2998,-1.86845][0.291471,0.309183,-0.905235][0.621984,0.329214,0.42714][1.43051e-006,1.2998,-1.96461][-0.00252805,0.309183,-0.950999][0.678218,0.329214,0.474853][1.43051e-006,1.58846,-1.81753][-0.00483764,0.588011,-0.808839][0.678218,0.301537,0.401873][0.56165,1.58846,-1.72858][0.245344,0.588011,-0.770746][0.626194,0.301537,0.357732][0.56165,1.58846,-1.72858][0.245344,0.588011,-0.770746][0.626194,0.301537,0.357732][0.607098,1.2998,-1.86845][0.291471,0.309183,-0.905235][0.621984,0.329214,0.42714][1.43051e-006,1.2998,-1.96461][-0.00252805,0.309183,-0.950999][0.678218,0.329214,0.474853][-0.607095,1.2998,-1.86845][-0.296279,0.309184,-0.903673][0.734452,0.329214,0.42714][-0.561647,1.58846,-1.72858][-0.254546,0.588011,-0.767756][0.730242,0.301537,0.357732][1.43051e-006,1.58846,-1.81753][-0.00483764,0.588011,-0.808839][0.678218,0.301537,0.401873][1.43051e-006,1.58846,-1.81753][-0.00483764,0.588011,-0.808839][0.678218,0.301537,0.401873][1.43051e-006,1.2998,-1.96461][-0.00252805,0.309183,-0.950999][0.678218,0.329214,0.474853][-0.607095,1.2998,-1.86845][-0.296279,0.309184,-0.903673][0.734452,0.329214,0.42714][-1.15477,1.2998,-1.5894][-0.561028,0.309184,-0.767888][0.785181,0.329214,0.288672][-1.06832,1.58846,-1.47041][-0.479337,0.588011,-0.651521][0.777173,0.301537,0.22963][-0.561647,1.58846,-1.72858][-0.254546,0.588011,-0.767756][0.730242,0.301537,0.357732][-0.561647,1.58846,-1.72858][-0.254546,0.588011,-0.767756][0.730242,0.301537,0.357732][-0.607095,1.2998,-1.86845][-0.296279,0.309184,-0.903673][0.734452,0.329214,0.42714][-1.15477,1.2998,-1.5894][-0.561028,0.309184,-0.767888][0.785181,0.329214,0.288672][-1.5894,1.2998,-1.15477][-0.77086,0.309183,-0.556938][0.82544,0.329214,0.073004][-1.47041,1.58846,-1.06832][-0.657208,0.588011,-0.47151][0.814418,0.301537,0.0301075][-1.06832,1.58846,-1.47041][-0.479337,0.588011,-0.651521][0.777173,0.301537,0.22963][-1.06832,1.58846,-1.47041][-0.479337,0.588011,-0.651521][0.777173,0.301537,0.22963][-1.15477,1.2998,-1.5894][-0.561028,0.309184,-0.767888][0.785181,0.329214,0.288672][-1.5894,1.2998,-1.15477][-0.77086,0.309183,-0.556938][0.82544,0.329214,0.073004][-1.86845,1.2998,-0.607097][-0.905235,0.309183,-0.29147][0.851287,0.329214,-0.198754][-1.72857,1.58846,-0.561648][-0.770746,0.588011,-0.245344][0.838331,0.301537,-0.221306][-1.47041,1.58846,-1.06832][-0.657208,0.588011,-0.47151][0.814418,0.301537,0.0301075][-1.47041,1.58846,-1.06832][-0.657208,0.588011,-0.47151][0.814418,0.301537,0.0301075][-1.5894,1.2998,-1.15477][-0.77086,0.309183,-0.556938][0.82544,0.329214,0.073004][-1.86845,1.2998,-0.607097][-0.905235,0.309183,-0.29147][0.851287,0.329214,-0.198754][-1.96461,1.2998,0][-0.950999,0.309183,0.00252799][0.860194,0.329214,-0.5][-1.81753,1.58846,0][-0.808839,0.588011,0.00483762][0.846571,0.301537,-0.5][-1.72857,1.58846,-0.561648][-0.770746,0.588011,-0.245344][0.838331,0.301537,-0.221306][-1.72857,1.58846,-0.561648][-0.770746,0.588011,-0.245344][0.838331,0.301537,-0.221306][-1.86845,1.2998,-0.607097][-0.905235,0.309183,-0.29147][0.851287,0.329214,-0.198754][-1.96461,1.2998,0][-0.950999,0.309183,0.00252799][0.860194,0.329214,-0.5][-1.86845,1.2998,0.607097][-0.903673,0.309184,0.296279][0.088024,0.767971,0.198754][-1.72857,1.58846,0.561648][-0.767756,0.588011,0.254546][0.0677696,0.775264,0.221306][-1.81753,1.58846,0][-0.808839,0.588011,0.00483762][0.0677696,0.770626,0.5][-1.81753,1.58846,0][-0.808839,0.588011,0.00483762][0.0677696,0.770626,0.5][-1.96461,1.2998,0][-0.950999,0.309183,0.00252799][0.088024,0.762957,0.5][-1.86845,1.2998,0.607097][-0.903673,0.309184,0.296279][0.088024,0.767971,0.198754][-1.5894,1.2998,1.15477][-0.767888,0.309184,0.561028][0.088024,0.782521,-0.0730044][-1.47041,1.58846,1.06832][-0.651521,0.588011,0.479337][0.0677696,0.788725,-0.0301079][-1.72857,1.58846,0.561648][-0.767756,0.588011,0.254546][0.0677696,0.775264,0.221306][-1.72857,1.58846,0.561648][-0.767756,0.588011,0.254546][0.0677696,0.775264,0.221306][-1.86845,1.2998,0.607097][-0.903673,0.309184,0.296279][0.088024,0.767971,0.198754][-1.5894,1.2998,1.15477][-0.767888,0.309184,0.561028][0.088024,0.782521,-0.0730044][-1.15477,1.2998,1.5894][-0.556938,0.309184,0.77086][0.088024,0.805184,-0.288673][-1.06832,1.58846,1.47041][-0.47151,0.588011,0.657208][0.0677696,0.809692,-0.229631][-1.47041,1.58846,1.06832][-0.651521,0.588011,0.479337][0.0677696,0.788725,-0.0301079][-1.47041,1.58846,1.06832][-0.651521,0.588011,0.479337][0.0677696,0.788725,-0.0301079][-1.5894,1.2998,1.15477][-0.767888,0.309184,0.561028][0.088024,0.782521,-0.0730044][-1.15477,1.2998,1.5894][-0.556938,0.309184,0.77086][0.088024,0.805184,-0.288673][-0.607095,1.2998,1.86845][-0.29147,0.309183,0.905235][0.088024,0.833741,-0.42714][-0.561646,1.58846,1.72858][-0.245344,0.588011,0.770746][0.0677696,0.836111,-0.357732][-1.06832,1.58846,1.47041][-0.47151,0.588011,0.657208][0.0677696,0.809692,-0.229631][-1.06832,1.58846,1.47041][-0.47151,0.588011,0.657208][0.0677696,0.809692,-0.229631][-1.15477,1.2998,1.5894][-0.556938,0.309184,0.77086][0.088024,0.805184,-0.288673][-0.607095,1.2998,1.86845][-0.29147,0.309183,0.905235][0.088024,0.833741,-0.42714][1.90735e-006,1.2998,1.96461][0.00252797,0.309183,0.950999][0.088024,0.865397,-0.474853][1.78814e-006,1.58846,1.81753][0.00483757,0.588011,0.808839][0.0677696,0.865397,-0.401873][-0.561646,1.58846,1.72858][-0.245344,0.588011,0.770746][0.0677696,0.836111,-0.357732][-0.561646,1.58846,1.72858][-0.245344,0.588011,0.770746][0.0677696,0.836111,-0.357732][-0.607095,1.2998,1.86845][-0.29147,0.309183,0.905235][0.088024,0.833741,-0.42714][1.90735e-006,1.2998,1.96461][0.00252797,0.309183,0.950999][0.088024,0.865397,-0.474853][0.607099,1.2998,1.86845][0.296279,0.309184,0.903673][0.088024,0.897052,-0.42714][0.56165,1.58846,1.72858][0.254546,0.588011,0.767756][0.0677696,0.894682,-0.357732][1.78814e-006,1.58846,1.81753][0.00483757,0.588011,0.808839][0.0677696,0.865397,-0.401873][1.78814e-006,1.58846,1.81753][0.00483757,0.588011,0.808839][0.0677696,0.865397,-0.401873][1.90735e-006,1.2998,1.96461][0.00252797,0.309183,0.950999][0.088024,0.865397,-0.474853][0.607099,1.2998,1.86845][0.296279,0.309184,0.903673][0.088024,0.897052,-0.42714][1.15477,1.2998,1.5894][0.561029,0.309184,0.767888][0.088024,0.925609,-0.288672][1.06832,1.58846,1.47041][0.479337,0.588011,0.651521][0.0677696,0.921102,-0.229631][0.56165,1.58846,1.72858][0.254546,0.588011,0.767756][0.0677696,0.894682,-0.357732][0.56165,1.58846,1.72858][0.254546,0.588011,0.767756][0.0677696,0.894682,-0.357732][0.607099,1.2998,1.86845][0.296279,0.309184,0.903673][0.088024,0.897052,-0.42714][1.15477,1.2998,1.5894][0.561029,0.309184,0.767888][0.088024,0.925609,-0.288672][1.5894,1.2998,1.15477][0.77086,0.309184,0.556938][0.088024,0.948272,-0.0730041][1.47042,1.58846,1.06832][0.657208,0.588011,0.47151][0.0677696,0.942068,-0.0301076][1.06832,1.58846,1.47041][0.479337,0.588011,0.651521][0.0677696,0.921102,-0.229631][1.06832,1.58846,1.47041][0.479337,0.588011,0.651521][0.0677696,0.921102,-0.229631][1.15477,1.2998,1.5894][0.561029,0.309184,0.767888][0.088024,0.925609,-0.288672][1.5894,1.2998,1.15477][0.77086,0.309184,0.556938][0.088024,0.948272,-0.0730041][1.86845,1.2998,0.607096][0.905235,0.309184,0.29147][0.088024,0.962823,0.198754][1.72858,1.58846,0.561648][0.770746,0.588011,0.245344][0.0677696,0.955529,0.221306][1.47042,1.58846,1.06832][0.657208,0.588011,0.47151][0.0677696,0.942068,-0.0301076][1.47042,1.58846,1.06832][0.657208,0.588011,0.47151][0.0677696,0.942068,-0.0301076][1.5894,1.2998,1.15477][0.77086,0.309184,0.556938][0.088024,0.948272,-0.0730041][1.86845,1.2998,0.607096][0.905235,0.309184,0.29147][0.088024,0.962823,0.198754][1.96461,1.2998,0][0.950999,0.309183,-0.00252786][0.088024,0.967836,0.5][1.81753,1.58846,0][0.808839,0.58801,-0.00483748][0.0677696,0.960167,0.5][1.72858,1.58846,0.561648][0.770746,0.588011,0.245344][0.0677696,0.955529,0.221306][1.72858,1.58846,0.561648][0.770746,0.588011,0.245344][0.0677696,0.955529,0.221306][1.86845,1.2998,0.607096][0.905235,0.309184,0.29147][0.088024,0.962823,0.198754][1.96461,1.2998,0][0.950999,0.309183,-0.00252786][0.088024,0.967836,0.5][1.91665,0.979833,-0.622758][0.948025,0.0784716,-0.308367][0.500684,0.359894,-0.190983][1.86845,1.2998,-0.607097][0.903673,0.309184,-0.296279][0.505148,0.329214,-0.198754][1.96461,1.2998,0][0.950999,0.309183,-0.00252786][0.496242,0.329214,-0.5][1.96461,1.2998,0][0.950999,0.309183,-0.00252786][0.496242,0.329214,-0.5][2.01529,0.979833,0][0.996916,0.0784713,-0.000317951][0.491547,0.359894,-0.5][1.91665,0.979833,-0.622758][0.948025,0.0784716,-0.308367][0.500684,0.359894,-0.190983][1.6304,0.979833,-1.18456][0.806335,0.0784714,-0.58623][0.527198,0.359894,0.0877852][1.5894,1.2998,-1.15477][0.767888,0.309184,-0.561028][0.530996,0.329214,0.0730042][1.86845,1.2998,-0.607097][0.903673,0.309184,-0.296279][0.505148,0.329214,-0.198754][1.86845,1.2998,-0.607097][0.903673,0.309184,-0.296279][0.505148,0.329214,-0.198754][1.91665,0.979833,-0.622758][0.948025,0.0784716,-0.308367][0.500684,0.359894,-0.190983][1.6304,0.979833,-1.18456][0.806335,0.0784714,-0.58623][0.527198,0.359894,0.0877852][1.18456,0.979833,-1.6304][0.585715,0.0784714,-0.806709][0.568496,0.359894,0.309017][1.15477,1.2998,-1.5894][0.556938,0.309184,-0.77086][0.571255,0.329214,0.288673][1.5894,1.2998,-1.15477][0.767888,0.309184,-0.561028][0.530996,0.329214,0.0730042][1.5894,1.2998,-1.15477][0.767888,0.309184,-0.561028][0.530996,0.329214,0.0730042][1.6304,0.979833,-1.18456][0.806335,0.0784714,-0.58623][0.527198,0.359894,0.0877852][1.18456,0.979833,-1.6304][0.585715,0.0784714,-0.806709][0.568496,0.359894,0.309017][0.622759,0.979833,-1.91665][0.307762,0.0784713,-0.948222][0.620533,0.359894,0.451057][0.607098,1.2998,-1.86845][0.291471,0.309183,-0.905235][0.621984,0.329214,0.42714][1.15477,1.2998,-1.5894][0.556938,0.309184,-0.77086][0.571255,0.329214,0.288673][1.15477,1.2998,-1.5894][0.556938,0.309184,-0.77086][0.571255,0.329214,0.288673][1.18456,0.979833,-1.6304][0.585715,0.0784714,-0.806709][0.568496,0.359894,0.309017][0.622759,0.979833,-1.91665][0.307762,0.0784713,-0.948222][0.620533,0.359894,0.451057][1.43051e-006,0.979833,-2.01529][-0.000318264,0.0784713,-0.996916][0.678218,0.359894,0.5][1.43051e-006,1.2998,-1.96461][-0.00252805,0.309183,-0.950999][0.678218,0.329214,0.474853][0.607098,1.2998,-1.86845][0.291471,0.309183,-0.905235][0.621984,0.329214,0.42714][0.607098,1.2998,-1.86845][0.291471,0.309183,-0.905235][0.621984,0.329214,0.42714][0.622759,0.979833,-1.91665][0.307762,0.0784713,-0.948222][0.620533,0.359894,0.451057][1.43051e-006,0.979833,-2.01529][-0.000318264,0.0784713,-0.996916][0.678218,0.359894,0.5][-0.622756,0.979833,-1.91665][-0.308367,0.0784712,-0.948025][0.735902,0.359894,0.451056][-0.607095,1.2998,-1.86845][-0.296279,0.309184,-0.903673][0.734452,0.329214,0.42714][1.43051e-006,1.2998,-1.96461][-0.00252805,0.309183,-0.950999][0.678218,0.329214,0.474853][1.43051e-006,1.2998,-1.96461][-0.00252805,0.309183,-0.950999][0.678218,0.329214,0.474853][1.43051e-006,0.979833,-2.01529][-0.000318264,0.0784713,-0.996916][0.678218,0.359894,0.5][-0.622756,0.979833,-1.91665][-0.308367,0.0784712,-0.948025][0.735902,0.359894,0.451056][-1.18455,0.979833,-1.6304][-0.58623,0.0784712,-0.806335][0.78794,0.359894,0.309017][-1.15477,1.2998,-1.5894][-0.561028,0.309184,-0.767888][0.785181,0.329214,0.288672][-0.607095,1.2998,-1.86845][-0.296279,0.309184,-0.903673][0.734452,0.329214,0.42714][-0.607095,1.2998,-1.86845][-0.296279,0.309184,-0.903673][0.734452,0.329214,0.42714][-0.622756,0.979833,-1.91665][-0.308367,0.0784712,-0.948025][0.735902,0.359894,0.451056][-1.18455,0.979833,-1.6304][-0.58623,0.0784712,-0.806335][0.78794,0.359894,0.309017][-1.6304,0.979833,-1.18455][-0.806709,0.0784712,-0.585715][0.829237,0.359894,0.0877852][-1.5894,1.2998,-1.15477][-0.77086,0.309183,-0.556938][0.82544,0.329214,0.073004][-1.15477,1.2998,-1.5894][-0.561028,0.309184,-0.767888][0.785181,0.329214,0.288672][-1.15477,1.2998,-1.5894][-0.561028,0.309184,-0.767888][0.785181,0.329214,0.288672][-1.18455,0.979833,-1.6304][-0.58623,0.0784712,-0.806335][0.78794,0.359894,0.309017][-1.6304,0.979833,-1.18455][-0.806709,0.0784712,-0.585715][0.829237,0.359894,0.0877852][-1.91665,0.979833,-0.622757][-0.948222,0.0784712,-0.307761][0.855752,0.359894,-0.190983][-1.86845,1.2998,-0.607097][-0.905235,0.309183,-0.29147][0.851287,0.329214,-0.198754][-1.5894,1.2998,-1.15477][-0.77086,0.309183,-0.556938][0.82544,0.329214,0.073004][-1.5894,1.2998,-1.15477][-0.77086,0.309183,-0.556938][0.82544,0.329214,0.073004][-1.6304,0.979833,-1.18455][-0.806709,0.0784712,-0.585715][0.829237,0.359894,0.0877852][-1.91665,0.979833,-0.622757][-0.948222,0.0784712,-0.307761][0.855752,0.359894,-0.190983][-2.01528,0.979833,0][-0.996916,0.0784712,0.000318171][0.864888,0.359894,-0.5][-1.96461,1.2998,0][-0.950999,0.309183,0.00252799][0.860194,0.329214,-0.5][-1.86845,1.2998,-0.607097][-0.905235,0.309183,-0.29147][0.851287,0.329214,-0.198754][-1.86845,1.2998,-0.607097][-0.905235,0.309183,-0.29147][0.851287,0.329214,-0.198754][-1.91665,0.979833,-0.622757][-0.948222,0.0784712,-0.307761][0.855752,0.359894,-0.190983][-2.01528,0.979833,0][-0.996916,0.0784712,0.000318171][0.864888,0.359894,-0.5][-1.91665,0.979833,0.622758][-0.948025,0.0784711,0.308367][0.110476,0.765458,0.190983][-1.86845,1.2998,0.607097][-0.903673,0.309184,0.296279][0.088024,0.767971,0.198754][-1.96461,1.2998,0][-0.950999,0.309183,0.00252799][0.088024,0.762957,0.5][-1.96461,1.2998,0][-0.950999,0.309183,0.00252799][0.088024,0.762957,0.5][-2.01528,0.979833,0][-0.996916,0.0784712,0.000318171][0.110476,0.760314,0.5][-1.91665,0.979833,0.622758][-0.948025,0.0784711,0.308367][0.110476,0.765458,0.190983][-1.6304,0.979833,1.18456][-0.806335,0.0784712,0.58623][0.110476,0.780383,-0.0877855][-1.5894,1.2998,1.15477][-0.767888,0.309184,0.561028][0.088024,0.782521,-0.0730044][-1.86845,1.2998,0.607097][-0.903673,0.309184,0.296279][0.088024,0.767971,0.198754][-1.86845,1.2998,0.607097][-0.903673,0.309184,0.296279][0.088024,0.767971,0.198754][-1.91665,0.979833,0.622758][-0.948025,0.0784711,0.308367][0.110476,0.765458,0.190983][-1.6304,0.979833,1.18456][-0.806335,0.0784712,0.58623][0.110476,0.780383,-0.0877855][-1.18455,0.979833,1.6304][-0.585715,0.0784713,0.806709][0.110476,0.803631,-0.309017][-1.15477,1.2998,1.5894][-0.556938,0.309184,0.77086][0.088024,0.805184,-0.288673][-1.5894,1.2998,1.15477][-0.767888,0.309184,0.561028][0.088024,0.782521,-0.0730044][-1.5894,1.2998,1.15477][-0.767888,0.309184,0.561028][0.088024,0.782521,-0.0730044][-1.6304,0.979833,1.18456][-0.806335,0.0784712,0.58623][0.110476,0.780383,-0.0877855][-1.18455,0.979833,1.6304][-0.585715,0.0784713,0.806709][0.110476,0.803631,-0.309017][-0.622756,0.979833,1.91665][-0.307761,0.0784714,0.948222][0.110476,0.832924,-0.451057][-0.607095,1.2998,1.86845][-0.29147,0.309183,0.905235][0.088024,0.833741,-0.42714][-1.15477,1.2998,1.5894][-0.556938,0.309184,0.77086][0.088024,0.805184,-0.288673][-1.15477,1.2998,1.5894][-0.556938,0.309184,0.77086][0.088024,0.805184,-0.288673][-1.18455,0.979833,1.6304][-0.585715,0.0784713,0.806709][0.110476,0.803631,-0.309017][-0.622756,0.979833,1.91665][-0.307761,0.0784714,0.948222][0.110476,0.832924,-0.451057][1.90735e-006,0.979833,2.01529][0.000318188,0.0784711,0.996916][0.110476,0.865397,-0.5][1.90735e-006,1.2998,1.96461][0.00252797,0.309183,0.950999][0.088024,0.865397,-0.474853][-0.607095,1.2998,1.86845][-0.29147,0.309183,0.905235][0.088024,0.833741,-0.42714][-0.607095,1.2998,1.86845][-0.29147,0.309183,0.905235][0.088024,0.833741,-0.42714][-0.622756,0.979833,1.91665][-0.307761,0.0784714,0.948222][0.110476,0.832924,-0.451057][1.90735e-006,0.979833,2.01529][0.000318188,0.0784711,0.996916][0.110476,0.865397,-0.5][0.622759,0.979833,1.91665][0.308367,0.0784711,0.948025][0.110476,0.897869,-0.451057][0.607099,1.2998,1.86845][0.296279,0.309184,0.903673][0.088024,0.897052,-0.42714][1.90735e-006,1.2998,1.96461][0.00252797,0.309183,0.950999][0.088024,0.865397,-0.474853][1.90735e-006,1.2998,1.96461][0.00252797,0.309183,0.950999][0.088024,0.865397,-0.474853][1.90735e-006,0.979833,2.01529][0.000318188,0.0784711,0.996916][0.110476,0.865397,-0.5][0.622759,0.979833,1.91665][0.308367,0.0784711,0.948025][0.110476,0.897869,-0.451057][1.18456,0.979833,1.6304][0.58623,0.0784713,0.806335][0.110476,0.927162,-0.309017][1.15477,1.2998,1.5894][0.561029,0.309184,0.767888][0.088024,0.925609,-0.288672][0.607099,1.2998,1.86845][0.296279,0.309184,0.903673][0.088024,0.897052,-0.42714][0.607099,1.2998,1.86845][0.296279,0.309184,0.903673][0.088024,0.897052,-0.42714][0.622759,0.979833,1.91665][0.308367,0.0784711,0.948025][0.110476,0.897869,-0.451057][1.18456,0.979833,1.6304][0.58623,0.0784713,0.806335][0.110476,0.927162,-0.309017][1.6304,0.979833,1.18455][0.806709,0.0784714,0.585715][0.110476,0.95041,-0.0877852][1.5894,1.2998,1.15477][0.77086,0.309184,0.556938][0.088024,0.948272,-0.0730041][1.15477,1.2998,1.5894][0.561029,0.309184,0.767888][0.088024,0.925609,-0.288672][1.15477,1.2998,1.5894][0.561029,0.309184,0.767888][0.088024,0.925609,-0.288672][1.18456,0.979833,1.6304][0.58623,0.0784713,0.806335][0.110476,0.927162,-0.309017][1.6304,0.979833,1.18455][0.806709,0.0784714,0.585715][0.110476,0.95041,-0.0877852][1.91665,0.979833,0.622757][0.948222,0.0784717,0.307761][0.110476,0.965336,0.190983][1.86845,1.2998,0.607096][0.905235,0.309184,0.29147][0.088024,0.962823,0.198754][1.5894,1.2998,1.15477][0.77086,0.309184,0.556938][0.088024,0.948272,-0.0730041][1.5894,1.2998,1.15477][0.77086,0.309184,0.556938][0.088024,0.948272,-0.0730041][1.6304,0.979833,1.18455][0.806709,0.0784714,0.585715][0.110476,0.95041,-0.0877852][1.91665,0.979833,0.622757][0.948222,0.0784717,0.307761][0.110476,0.965336,0.190983][2.01529,0.979833,0][0.996916,0.0784713,-0.000317951][0.110476,0.970479,0.5][1.96461,1.2998,0][0.950999,0.309183,-0.00252786][0.088024,0.967836,0.5][1.86845,1.2998,0.607096][0.905235,0.309184,0.29147][0.088024,0.962823,0.198754][1.86845,1.2998,0.607096][0.905235,0.309184,0.29147][0.088024,0.962823,0.198754][1.91665,0.979833,0.622757][0.948222,0.0784717,0.307761][0.110476,0.965336,0.190983][2.01529,0.979833,0][0.996916,0.0784713,-0.000317951][0.110476,0.970479,0.5][1.91665,-0.979834,-0.622757][0.948222,-0.0784714,-0.307761][0.500684,0.547796,-0.190983][1.91665,0.979833,-0.622758][0.948025,0.0784716,-0.308367][0.500684,0.359894,-0.190983][2.01529,0.979833,0][0.996916,0.0784713,-0.000317951][0.491547,0.359894,-0.5][2.01529,0.979833,0][0.996916,0.0784713,-0.000317951][0.491547,0.359894,-0.5][2.01529,-0.979834,0][0.996916,-0.0784711,0.00031805][0.491547,0.547796,-0.5][1.91665,-0.979834,-0.622757][0.948222,-0.0784714,-0.307761][0.500684,0.547796,-0.190983][1.6304,-0.979834,-1.18455][0.806709,-0.0784711,-0.585716][0.527198,0.547796,0.0877854][1.6304,0.979833,-1.18456][0.806335,0.0784714,-0.58623][0.527198,0.359894,0.0877852][1.91665,0.979833,-0.622758][0.948025,0.0784716,-0.308367][0.500684,0.359894,-0.190983][1.91665,0.979833,-0.622758][0.948025,0.0784716,-0.308367][0.500684,0.359894,-0.190983][1.91665,-0.979834,-0.622757][0.948222,-0.0784714,-0.307761][0.500684,0.547796,-0.190983][1.6304,-0.979834,-1.18455][0.806709,-0.0784711,-0.585716][0.527198,0.547796,0.0877854][1.18456,-0.979834,-1.6304][0.58623,-0.0784712,-0.806335][0.568496,0.547796,0.309017][1.18456,0.979833,-1.6304][0.585715,0.0784714,-0.806709][0.568496,0.359894,0.309017][1.6304,0.979833,-1.18456][0.806335,0.0784714,-0.58623][0.527198,0.359894,0.0877852][1.6304,0.979833,-1.18456][0.806335,0.0784714,-0.58623][0.527198,0.359894,0.0877852][1.6304,-0.979834,-1.18455][0.806709,-0.0784711,-0.585716][0.527198,0.547796,0.0877854][1.18456,-0.979834,-1.6304][0.58623,-0.0784712,-0.806335][0.568496,0.547796,0.309017][0.622759,-0.979834,-1.91665][0.308367,-0.0784711,-0.948025][0.620533,0.547796,0.451057][0.622759,0.979833,-1.91665][0.307762,0.0784713,-0.948222][0.620533,0.359894,0.451057][1.18456,0.979833,-1.6304][0.585715,0.0784714,-0.806709][0.568496,0.359894,0.309017][1.18456,0.979833,-1.6304][0.585715,0.0784714,-0.806709][0.568496,0.359894,0.309017][1.18456,-0.979834,-1.6304][0.58623,-0.0784712,-0.806335][0.568496,0.547796,0.309017][0.622759,-0.979834,-1.91665][0.308367,-0.0784711,-0.948025][0.620533,0.547796,0.451057][1.43051e-006,-0.979834,-2.01529][0.000318032,-0.0784711,-0.996916][0.678218,0.547796,0.5][1.43051e-006,0.979833,-2.01529][-0.000318264,0.0784713,-0.996916][0.678218,0.359894,0.5][0.622759,0.979833,-1.91665][0.307762,0.0784713,-0.948222][0.620533,0.359894,0.451057][0.622759,0.979833,-1.91665][0.307762,0.0784713,-0.948222][0.620533,0.359894,0.451057][0.622759,-0.979834,-1.91665][0.308367,-0.0784711,-0.948025][0.620533,0.547796,0.451057][1.43051e-006,-0.979834,-2.01529][0.000318032,-0.0784711,-0.996916][0.678218,0.547796,0.5][-0.622756,-0.979834,-1.91665][-0.307762,-0.078471,-0.948222][0.735902,0.547796,0.451057][-0.622756,0.979833,-1.91665][-0.308367,0.0784712,-0.948025][0.735902,0.359894,0.451056][1.43051e-006,0.979833,-2.01529][-0.000318264,0.0784713,-0.996916][0.678218,0.359894,0.5][1.43051e-006,0.979833,-2.01529][-0.000318264,0.0784713,-0.996916][0.678218,0.359894,0.5][1.43051e-006,-0.979834,-2.01529][0.000318032,-0.0784711,-0.996916][0.678218,0.547796,0.5][-0.622756,-0.979834,-1.91665][-0.307762,-0.078471,-0.948222][0.735902,0.547796,0.451057][-1.18455,-0.979834,-1.6304][-0.585715,-0.078471,-0.806709][0.78794,0.547796,0.309017][-1.18455,0.979833,-1.6304][-0.58623,0.0784712,-0.806335][0.78794,0.359894,0.309017][-0.622756,0.979833,-1.91665][-0.308367,0.0784712,-0.948025][0.735902,0.359894,0.451056][-0.622756,0.979833,-1.91665][-0.308367,0.0784712,-0.948025][0.735902,0.359894,0.451056][-0.622756,-0.979834,-1.91665][-0.307762,-0.078471,-0.948222][0.735902,0.547796,0.451057][-1.18455,-0.979834,-1.6304][-0.585715,-0.078471,-0.806709][0.78794,0.547796,0.309017][-1.6304,-0.979834,-1.18455][-0.806335,-0.078471,-0.58623][0.829237,0.547796,0.0877852][-1.6304,0.979833,-1.18455][-0.806709,0.0784712,-0.585715][0.829237,0.359894,0.0877852][-1.18455,0.979833,-1.6304][-0.58623,0.0784712,-0.806335][0.78794,0.359894,0.309017][-1.18455,0.979833,-1.6304][-0.58623,0.0784712,-0.806335][0.78794,0.359894,0.309017][-1.18455,-0.979834,-1.6304][-0.585715,-0.078471,-0.806709][0.78794,0.547796,0.309017][-1.6304,-0.979834,-1.18455][-0.806335,-0.078471,-0.58623][0.829237,0.547796,0.0877852][-1.91665,-0.979834,-0.622757][-0.948026,-0.078471,-0.308367][0.855752,0.547796,-0.190983][-1.91665,0.979833,-0.622757][-0.948222,0.0784712,-0.307761][0.855752,0.359894,-0.190983][-1.6304,0.979833,-1.18455][-0.806709,0.0784712,-0.585715][0.829237,0.359894,0.0877852][-1.6304,0.979833,-1.18455][-0.806709,0.0784712,-0.585715][0.829237,0.359894,0.0877852][-1.6304,-0.979834,-1.18455][-0.806335,-0.078471,-0.58623][0.829237,0.547796,0.0877852][-1.91665,-0.979834,-0.622757][-0.948026,-0.078471,-0.308367][0.855752,0.547796,-0.190983][-2.01528,-0.979834,1.96073e-007][-0.996916,-0.0784709,-0.000318047][0.864888,0.547796,-0.5][-2.01528,0.979833,0][-0.996916,0.0784712,0.000318171][0.864888,0.359894,-0.5][-1.91665,0.979833,-0.622757][-0.948222,0.0784712,-0.307761][0.855752,0.359894,-0.190983][-1.91665,0.979833,-0.622757][-0.948222,0.0784712,-0.307761][0.855752,0.359894,-0.190983][-1.91665,-0.979834,-0.622757][-0.948026,-0.078471,-0.308367][0.855752,0.547796,-0.190983][-2.01528,-0.979834,1.96073e-007][-0.996916,-0.0784709,-0.000318047][0.864888,0.547796,-0.5][-1.91665,-0.979834,0.622758][-0.948222,-0.0784709,0.307761][0.247984,0.765458,0.190983][-1.91665,0.979833,0.622758][-0.948025,0.0784711,0.308367][0.110476,0.765458,0.190983][-2.01528,0.979833,0][-0.996916,0.0784712,0.000318171][0.110476,0.760314,0.5][-2.01528,0.979833,0][-0.996916,0.0784712,0.000318171][0.110476,0.760314,0.5][-2.01528,-0.979834,1.96073e-007][-0.996916,-0.0784709,-0.000318047][0.247984,0.760314,0.5][-1.91665,-0.979834,0.622758][-0.948222,-0.0784709,0.307761][0.247984,0.765458,0.190983][-1.6304,-0.979834,1.18456][-0.806709,-0.078471,0.585715][0.247984,0.780383,-0.0877855][-1.6304,0.979833,1.18456][-0.806335,0.0784712,0.58623][0.110476,0.780383,-0.0877855][-1.91665,0.979833,0.622758][-0.948025,0.0784711,0.308367][0.110476,0.765458,0.190983][-1.91665,0.979833,0.622758][-0.948025,0.0784711,0.308367][0.110476,0.765458,0.190983][-1.91665,-0.979834,0.622758][-0.948222,-0.0784709,0.307761][0.247984,0.765458,0.190983][-1.6304,-0.979834,1.18456][-0.806709,-0.078471,0.585715][0.247984,0.780383,-0.0877855][-1.18455,-0.979834,1.6304][-0.58623,-0.078471,0.806335][0.247984,0.803631,-0.309017][-1.18455,0.979833,1.6304][-0.585715,0.0784713,0.806709][0.110476,0.803631,-0.309017][-1.6304,0.979833,1.18456][-0.806335,0.0784712,0.58623][0.110476,0.780383,-0.0877855][-1.6304,0.979833,1.18456][-0.806335,0.0784712,0.58623][0.110476,0.780383,-0.0877855][-1.6304,-0.979834,1.18456][-0.806709,-0.078471,0.585715][0.247984,0.780383,-0.0877855][-1.18455,-0.979834,1.6304][-0.58623,-0.078471,0.806335][0.247984,0.803631,-0.309017][-0.622756,-0.979834,1.91665][-0.308366,-0.078471,0.948026][0.247984,0.832924,-0.451057][-0.622756,0.979833,1.91665][-0.307761,0.0784714,0.948222][0.110476,0.832924,-0.451057][-1.18455,0.979833,1.6304][-0.585715,0.0784713,0.806709][0.110476,0.803631,-0.309017][-1.18455,0.979833,1.6304][-0.585715,0.0784713,0.806709][0.110476,0.803631,-0.309017][-1.18455,-0.979834,1.6304][-0.58623,-0.078471,0.806335][0.247984,0.803631,-0.309017][-0.622756,-0.979834,1.91665][-0.308366,-0.078471,0.948026][0.247984,0.832924,-0.451057][1.90735e-006,-0.979834,2.01529][-0.000317888,-0.0784706,0.996916][0.247984,0.865397,-0.5][1.90735e-006,0.979833,2.01529][0.000318188,0.0784711,0.996916][0.110476,0.865397,-0.5][-0.622756,0.979833,1.91665][-0.307761,0.0784714,0.948222][0.110476,0.832924,-0.451057][-0.622756,0.979833,1.91665][-0.307761,0.0784714,0.948222][0.110476,0.832924,-0.451057][-0.622756,-0.979834,1.91665][-0.308366,-0.078471,0.948026][0.247984,0.832924,-0.451057][1.90735e-006,-0.979834,2.01529][-0.000317888,-0.0784706,0.996916][0.247984,0.865397,-0.5][0.622759,-0.979834,1.91665][0.307762,-0.078471,0.948222][0.247984,0.897869,-0.451056][0.622759,0.979833,1.91665][0.308367,0.0784711,0.948025][0.110476,0.897869,-0.451057][1.90735e-006,0.979833,2.01529][0.000318188,0.0784711,0.996916][0.110476,0.865397,-0.5][1.90735e-006,0.979833,2.01529][0.000318188,0.0784711,0.996916][0.110476,0.865397,-0.5][1.90735e-006,-0.979834,2.01529][-0.000317888,-0.0784706,0.996916][0.247984,0.865397,-0.5][0.622759,-0.979834,1.91665][0.307762,-0.078471,0.948222][0.247984,0.897869,-0.451056][1.18456,-0.979834,1.6304][0.585715,-0.078471,0.806709][0.247984,0.927162,-0.309017][1.18456,0.979833,1.6304][0.58623,0.0784713,0.806335][0.110476,0.927162,-0.309017][0.622759,0.979833,1.91665][0.308367,0.0784711,0.948025][0.110476,0.897869,-0.451057][0.622759,0.979833,1.91665][0.308367,0.0784711,0.948025][0.110476,0.897869,-0.451057][0.622759,-0.979834,1.91665][0.307762,-0.078471,0.948222][0.247984,0.897869,-0.451056][1.18456,-0.979834,1.6304][0.585715,-0.078471,0.806709][0.247984,0.927162,-0.309017][1.6304,-0.979834,1.18455][0.806335,-0.0784713,0.58623][0.247984,0.95041,-0.0877851][1.6304,0.979833,1.18455][0.806709,0.0784714,0.585715][0.110476,0.95041,-0.0877852][1.18456,0.979833,1.6304][0.58623,0.0784713,0.806335][0.110476,0.927162,-0.309017][1.18456,0.979833,1.6304][0.58623,0.0784713,0.806335][0.110476,0.927162,-0.309017][1.18456,-0.979834,1.6304][0.585715,-0.078471,0.806709][0.247984,0.927162,-0.309017][1.6304,-0.979834,1.18455][0.806335,-0.0784713,0.58623][0.247984,0.95041,-0.0877851][1.91665,-0.979834,0.622757][0.948026,-0.0784713,0.308367][0.247984,0.965336,0.190983][1.91665,0.979833,0.622757][0.948222,0.0784717,0.307761][0.110476,0.965336,0.190983][1.6304,0.979833,1.18455][0.806709,0.0784714,0.585715][0.110476,0.95041,-0.0877852][1.6304,0.979833,1.18455][0.806709,0.0784714,0.585715][0.110476,0.95041,-0.0877852][1.6304,-0.979834,1.18455][0.806335,-0.0784713,0.58623][0.247984,0.95041,-0.0877851][1.91665,-0.979834,0.622757][0.948026,-0.0784713,0.308367][0.247984,0.965336,0.190983][2.01529,-0.979834,0][0.996916,-0.0784711,0.00031805][0.247984,0.970479,0.5][2.01529,0.979833,0][0.996916,0.0784713,-0.000317951][0.110476,0.970479,0.5][1.91665,0.979833,0.622757][0.948222,0.0784717,0.307761][0.110476,0.965336,0.190983][1.91665,0.979833,0.622757][0.948222,0.0784717,0.307761][0.110476,0.965336,0.190983][1.91665,-0.979834,0.622757][0.948026,-0.0784713,0.308367][0.247984,0.965336,0.190983][2.01529,-0.979834,0][0.996916,-0.0784711,0.00031805][0.247984,0.970479,0.5][1.86845,-1.29981,-0.607097][0.905235,-0.309184,-0.29147][0.505148,0.578476,-0.198754][1.91665,-0.979834,-0.622757][0.948222,-0.0784714,-0.307761][0.500684,0.547796,-0.190983][2.01529,-0.979834,0][0.996916,-0.0784711,0.00031805][0.491547,0.547796,-0.5][2.01529,-0.979834,0][0.996916,-0.0784711,0.00031805][0.491547,0.547796,-0.5][1.96461,-1.29981,0][0.950999,-0.309184,0.00252795][0.496241,0.578476,-0.5][1.86845,-1.29981,-0.607097][0.905235,-0.309184,-0.29147][0.505148,0.578476,-0.198754][1.5894,-1.29981,-1.15477][0.77086,-0.309184,-0.556938][0.530996,0.578476,0.0730042][1.6304,-0.979834,-1.18455][0.806709,-0.0784711,-0.585716][0.527198,0.547796,0.0877854][1.91665,-0.979834,-0.622757][0.948222,-0.0784714,-0.307761][0.500684,0.547796,-0.190983][1.91665,-0.979834,-0.622757][0.948222,-0.0784714,-0.307761][0.500684,0.547796,-0.190983][1.86845,-1.29981,-0.607097][0.905235,-0.309184,-0.29147][0.505148,0.578476,-0.198754][1.5894,-1.29981,-1.15477][0.77086,-0.309184,-0.556938][0.530996,0.578476,0.0730042][1.15477,-1.29981,-1.5894][0.561028,-0.309184,-0.767888][0.571255,0.578476,0.288673][1.18456,-0.979834,-1.6304][0.58623,-0.0784712,-0.806335][0.568496,0.547796,0.309017][1.6304,-0.979834,-1.18455][0.806709,-0.0784711,-0.585716][0.527198,0.547796,0.0877854][1.6304,-0.979834,-1.18455][0.806709,-0.0784711,-0.585716][0.527198,0.547796,0.0877854][1.5894,-1.29981,-1.15477][0.77086,-0.309184,-0.556938][0.530996,0.578476,0.0730042][1.15477,-1.29981,-1.5894][0.561028,-0.309184,-0.767888][0.571255,0.578476,0.288673][0.607098,-1.29981,-1.86845][0.296279,-0.309184,-0.903673][0.621984,0.578476,0.42714][0.622759,-0.979834,-1.91665][0.308367,-0.0784711,-0.948025][0.620533,0.547796,0.451057][1.18456,-0.979834,-1.6304][0.58623,-0.0784712,-0.806335][0.568496,0.547796,0.309017][1.18456,-0.979834,-1.6304][0.58623,-0.0784712,-0.806335][0.568496,0.547796,0.309017][1.15477,-1.29981,-1.5894][0.561028,-0.309184,-0.767888][0.571255,0.578476,0.288673][0.607098,-1.29981,-1.86845][0.296279,-0.309184,-0.903673][0.621984,0.578476,0.42714][1.43051e-006,-1.29981,-1.96461][0.00252796,-0.309184,-0.950999][0.678218,0.578476,0.474853][1.43051e-006,-0.979834,-2.01529][0.000318032,-0.0784711,-0.996916][0.678218,0.547796,0.5][0.622759,-0.979834,-1.91665][0.308367,-0.0784711,-0.948025][0.620533,0.547796,0.451057][0.622759,-0.979834,-1.91665][0.308367,-0.0784711,-0.948025][0.620533,0.547796,0.451057][0.607098,-1.29981,-1.86845][0.296279,-0.309184,-0.903673][0.621984,0.578476,0.42714][1.43051e-006,-1.29981,-1.96461][0.00252796,-0.309184,-0.950999][0.678218,0.578476,0.474853][-0.607095,-1.29981,-1.86845][-0.291471,-0.309184,-0.905235][0.734452,0.578476,0.42714][-0.622756,-0.979834,-1.91665][-0.307762,-0.078471,-0.948222][0.735902,0.547796,0.451057][1.43051e-006,-0.979834,-2.01529][0.000318032,-0.0784711,-0.996916][0.678218,0.547796,0.5][1.43051e-006,-0.979834,-2.01529][0.000318032,-0.0784711,-0.996916][0.678218,0.547796,0.5][1.43051e-006,-1.29981,-1.96461][0.00252796,-0.309184,-0.950999][0.678218,0.578476,0.474853][-0.607095,-1.29981,-1.86845][-0.291471,-0.309184,-0.905235][0.734452,0.578476,0.42714][-1.15477,-1.29981,-1.5894][-0.556938,-0.309184,-0.77086][0.785181,0.578476,0.288672][-1.18455,-0.979834,-1.6304][-0.585715,-0.078471,-0.806709][0.78794,0.547796,0.309017][-0.622756,-0.979834,-1.91665][-0.307762,-0.078471,-0.948222][0.735902,0.547796,0.451057][-0.622756,-0.979834,-1.91665][-0.307762,-0.078471,-0.948222][0.735902,0.547796,0.451057][-0.607095,-1.29981,-1.86845][-0.291471,-0.309184,-0.905235][0.734452,0.578476,0.42714][-1.15477,-1.29981,-1.5894][-0.556938,-0.309184,-0.77086][0.785181,0.578476,0.288672][-1.5894,-1.29981,-1.15477][-0.767888,-0.309184,-0.561028][0.82544,0.578476,0.073004][-1.6304,-0.979834,-1.18455][-0.806335,-0.078471,-0.58623][0.829237,0.547796,0.0877852][-1.18455,-0.979834,-1.6304][-0.585715,-0.078471,-0.806709][0.78794,0.547796,0.309017][-1.18455,-0.979834,-1.6304][-0.585715,-0.078471,-0.806709][0.78794,0.547796,0.309017][-1.15477,-1.29981,-1.5894][-0.556938,-0.309184,-0.77086][0.785181,0.578476,0.288672][-1.5894,-1.29981,-1.15477][-0.767888,-0.309184,-0.561028][0.82544,0.578476,0.073004][-1.86845,-1.29981,-0.607097][-0.903673,-0.309184,-0.296279][0.851287,0.578476,-0.198754][-1.91665,-0.979834,-0.622757][-0.948026,-0.078471,-0.308367][0.855752,0.547796,-0.190983][-1.6304,-0.979834,-1.18455][-0.806335,-0.078471,-0.58623][0.829237,0.547796,0.0877852][-1.6304,-0.979834,-1.18455][-0.806335,-0.078471,-0.58623][0.829237,0.547796,0.0877852][-1.5894,-1.29981,-1.15477][-0.767888,-0.309184,-0.561028][0.82544,0.578476,0.073004][-1.86845,-1.29981,-0.607097][-0.903673,-0.309184,-0.296279][0.851287,0.578476,-0.198754][-1.96461,-1.29981,2.05629e-007][-0.950999,-0.309184,-0.00252795][0.860194,0.578476,-0.5][-2.01528,-0.979834,1.96073e-007][-0.996916,-0.0784709,-0.000318047][0.864888,0.547796,-0.5][-1.91665,-0.979834,-0.622757][-0.948026,-0.078471,-0.308367][0.855752,0.547796,-0.190983][-1.91665,-0.979834,-0.622757][-0.948026,-0.078471,-0.308367][0.855752,0.547796,-0.190983][-1.86845,-1.29981,-0.607097][-0.903673,-0.309184,-0.296279][0.851287,0.578476,-0.198754][-1.96461,-1.29981,2.05629e-007][-0.950999,-0.309184,-0.00252795][0.860194,0.578476,-0.5][-1.86845,-1.29981,0.607097][-0.905235,-0.309184,0.291471][0.270436,0.767971,0.198754][-1.91665,-0.979834,0.622758][-0.948222,-0.0784709,0.307761][0.247984,0.765458,0.190983][-2.01528,-0.979834,1.96073e-007][-0.996916,-0.0784709,-0.000318047][0.247984,0.760314,0.5][-2.01528,-0.979834,1.96073e-007][-0.996916,-0.0784709,-0.000318047][0.247984,0.760314,0.5][-1.96461,-1.29981,2.05629e-007][-0.950999,-0.309184,-0.00252795][0.270436,0.762957,0.5][-1.86845,-1.29981,0.607097][-0.905235,-0.309184,0.291471][0.270436,0.767971,0.198754][-1.5894,-1.29981,1.15477][-0.77086,-0.309184,0.556938][0.270436,0.782521,-0.0730044][-1.6304,-0.979834,1.18456][-0.806709,-0.078471,0.585715][0.247984,0.780383,-0.0877855][-1.91665,-0.979834,0.622758][-0.948222,-0.0784709,0.307761][0.247984,0.765458,0.190983][-1.91665,-0.979834,0.622758][-0.948222,-0.0784709,0.307761][0.247984,0.765458,0.190983][-1.86845,-1.29981,0.607097][-0.905235,-0.309184,0.291471][0.270436,0.767971,0.198754][-1.5894,-1.29981,1.15477][-0.77086,-0.309184,0.556938][0.270436,0.782521,-0.0730044][-1.15477,-1.29981,1.5894][-0.561028,-0.309184,0.767888][0.270436,0.805184,-0.288673][-1.18455,-0.979834,1.6304][-0.58623,-0.078471,0.806335][0.247984,0.803631,-0.309017][-1.6304,-0.979834,1.18456][-0.806709,-0.078471,0.585715][0.247984,0.780383,-0.0877855][-1.6304,-0.979834,1.18456][-0.806709,-0.078471,0.585715][0.247984,0.780383,-0.0877855][-1.5894,-1.29981,1.15477][-0.77086,-0.309184,0.556938][0.270436,0.782521,-0.0730044][-1.15477,-1.29981,1.5894][-0.561028,-0.309184,0.767888][0.270436,0.805184,-0.288673][-0.607095,-1.29981,1.86845][-0.296279,-0.309184,0.903673][0.270436,0.833741,-0.42714][-0.622756,-0.979834,1.91665][-0.308366,-0.078471,0.948026][0.247984,0.832924,-0.451057][-1.18455,-0.979834,1.6304][-0.58623,-0.078471,0.806335][0.247984,0.803631,-0.309017][-1.18455,-0.979834,1.6304][-0.58623,-0.078471,0.806335][0.247984,0.803631,-0.309017][-1.15477,-1.29981,1.5894][-0.561028,-0.309184,0.767888][0.270436,0.805184,-0.288673][-0.607095,-1.29981,1.86845][-0.296279,-0.309184,0.903673][0.270436,0.833741,-0.42714][1.90735e-006,-1.29981,1.96461][-0.00252784,-0.309184,0.950999][0.270436,0.865397,-0.474853][1.90735e-006,-0.979834,2.01529][-0.000317888,-0.0784706,0.996916][0.247984,0.865397,-0.5][-0.622756,-0.979834,1.91665][-0.308366,-0.078471,0.948026][0.247984,0.832924,-0.451057][-0.622756,-0.979834,1.91665][-0.308366,-0.078471,0.948026][0.247984,0.832924,-0.451057][-0.607095,-1.29981,1.86845][-0.296279,-0.309184,0.903673][0.270436,0.833741,-0.42714][1.90735e-006,-1.29981,1.96461][-0.00252784,-0.309184,0.950999][0.270436,0.865397,-0.474853][0.607099,-1.29981,1.86845][0.291471,-0.309184,0.905235][0.270436,0.897052,-0.42714][0.622759,-0.979834,1.91665][0.307762,-0.078471,0.948222][0.247984,0.897869,-0.451056][1.90735e-006,-0.979834,2.01529][-0.000317888,-0.0784706,0.996916][0.247984,0.865397,-0.5][1.90735e-006,-0.979834,2.01529][-0.000317888,-0.0784706,0.996916][0.247984,0.865397,-0.5][1.90735e-006,-1.29981,1.96461][-0.00252784,-0.309184,0.950999][0.270436,0.865397,-0.474853][0.607099,-1.29981,1.86845][0.291471,-0.309184,0.905235][0.270436,0.897052,-0.42714][1.15477,-1.29981,1.5894][0.556938,-0.309184,0.77086][0.270436,0.925609,-0.288672][1.18456,-0.979834,1.6304][0.585715,-0.078471,0.806709][0.247984,0.927162,-0.309017][0.622759,-0.979834,1.91665][0.307762,-0.078471,0.948222][0.247984,0.897869,-0.451056][0.622759,-0.979834,1.91665][0.307762,-0.078471,0.948222][0.247984,0.897869,-0.451056][0.607099,-1.29981,1.86845][0.291471,-0.309184,0.905235][0.270436,0.897052,-0.42714][1.15477,-1.29981,1.5894][0.556938,-0.309184,0.77086][0.270436,0.925609,-0.288672][1.5894,-1.29981,1.15477][0.767888,-0.309184,0.561028][0.270436,0.948272,-0.073004][1.6304,-0.979834,1.18455][0.806335,-0.0784713,0.58623][0.247984,0.95041,-0.0877851][1.18456,-0.979834,1.6304][0.585715,-0.078471,0.806709][0.247984,0.927162,-0.309017][1.18456,-0.979834,1.6304][0.585715,-0.078471,0.806709][0.247984,0.927162,-0.309017][1.15477,-1.29981,1.5894][0.556938,-0.309184,0.77086][0.270436,0.925609,-0.288672][1.5894,-1.29981,1.15477][0.767888,-0.309184,0.561028][0.270436,0.948272,-0.073004][1.86845,-1.29981,0.607097][0.903672,-0.309184,0.296279][0.270436,0.962823,0.198754][1.91665,-0.979834,0.622757][0.948026,-0.0784713,0.308367][0.247984,0.965336,0.190983][1.6304,-0.979834,1.18455][0.806335,-0.0784713,0.58623][0.247984,0.95041,-0.0877851][1.6304,-0.979834,1.18455][0.806335,-0.0784713,0.58623][0.247984,0.95041,-0.0877851][1.5894,-1.29981,1.15477][0.767888,-0.309184,0.561028][0.270436,0.948272,-0.073004][1.86845,-1.29981,0.607097][0.903672,-0.309184,0.296279][0.270436,0.962823,0.198754][1.96461,-1.29981,0][0.950999,-0.309184,0.00252795][0.270436,0.967836,0.5][2.01529,-0.979834,0][0.996916,-0.0784711,0.00031805][0.247984,0.970479,0.5][1.91665,-0.979834,0.622757][0.948026,-0.0784713,0.308367][0.247984,0.965336,0.190983][1.91665,-0.979834,0.622757][0.948026,-0.0784713,0.308367][0.247984,0.965336,0.190983][1.86845,-1.29981,0.607097][0.903672,-0.309184,0.296279][0.270436,0.962823,0.198754][1.96461,-1.29981,0][0.950999,-0.309184,0.00252795][0.270436,0.967836,0.5][1.72858,-1.58846,-0.561648][0.770746,-0.58801,-0.245344][0.518104,0.606153,-0.221306][1.86845,-1.29981,-0.607097][0.905235,-0.309184,-0.29147][0.505148,0.578476,-0.198754][1.96461,-1.29981,0][0.950999,-0.309184,0.00252795][0.496241,0.578476,-0.5][1.96461,-1.29981,0][0.950999,-0.309184,0.00252795][0.496241,0.578476,-0.5][1.81753,-1.58846,0][0.808839,-0.58801,0.00483746][0.509865,0.606153,-0.5][1.72858,-1.58846,-0.561648][0.770746,-0.58801,-0.245344][0.518104,0.606153,-0.221306][1.47042,-1.58846,-1.06832][0.657208,-0.58801,-0.47151][0.542017,0.606153,0.0301077][1.5894,-1.29981,-1.15477][0.77086,-0.309184,-0.556938][0.530996,0.578476,0.0730042][1.86845,-1.29981,-0.607097][0.905235,-0.309184,-0.29147][0.505148,0.578476,-0.198754][1.86845,-1.29981,-0.607097][0.905235,-0.309184,-0.29147][0.505148,0.578476,-0.198754][1.72858,-1.58846,-0.561648][0.770746,-0.58801,-0.245344][0.518104,0.606153,-0.221306][1.47042,-1.58846,-1.06832][0.657208,-0.58801,-0.47151][0.542017,0.606153,0.0301077][1.06832,-1.58846,-1.47041][0.479337,-0.58801,-0.651521][0.579262,0.606153,0.229631][1.15477,-1.29981,-1.5894][0.561028,-0.309184,-0.767888][0.571255,0.578476,0.288673][1.5894,-1.29981,-1.15477][0.77086,-0.309184,-0.556938][0.530996,0.578476,0.0730042][1.5894,-1.29981,-1.15477][0.77086,-0.309184,-0.556938][0.530996,0.578476,0.0730042][1.47042,-1.58846,-1.06832][0.657208,-0.58801,-0.47151][0.542017,0.606153,0.0301077][1.06832,-1.58846,-1.47041][0.479337,-0.58801,-0.651521][0.579262,0.606153,0.229631][0.56165,-1.58846,-1.72858][0.254546,-0.58801,-0.767757][0.626194,0.606153,0.357732][0.607098,-1.29981,-1.86845][0.296279,-0.309184,-0.903673][0.621984,0.578476,0.42714][1.15477,-1.29981,-1.5894][0.561028,-0.309184,-0.767888][0.571255,0.578476,0.288673][1.15477,-1.29981,-1.5894][0.561028,-0.309184,-0.767888][0.571255,0.578476,0.288673][1.06832,-1.58846,-1.47041][0.479337,-0.58801,-0.651521][0.579262,0.606153,0.229631][0.56165,-1.58846,-1.72858][0.254546,-0.58801,-0.767757][0.626194,0.606153,0.357732][1.43051e-006,-1.58846,-1.81753][0.00483731,-0.58801,-0.808839][0.678218,0.606153,0.401873][1.43051e-006,-1.29981,-1.96461][0.00252796,-0.309184,-0.950999][0.678218,0.578476,0.474853][0.607098,-1.29981,-1.86845][0.296279,-0.309184,-0.903673][0.621984,0.578476,0.42714][0.607098,-1.29981,-1.86845][0.296279,-0.309184,-0.903673][0.621984,0.578476,0.42714][0.56165,-1.58846,-1.72858][0.254546,-0.58801,-0.767757][0.626194,0.606153,0.357732][1.43051e-006,-1.58846,-1.81753][0.00483731,-0.58801,-0.808839][0.678218,0.606153,0.401873][-0.561647,-1.58846,-1.72857][-0.245344,-0.58801,-0.770746][0.730242,0.606153,0.357732][-0.607095,-1.29981,-1.86845][-0.291471,-0.309184,-0.905235][0.734452,0.578476,0.42714][1.43051e-006,-1.29981,-1.96461][0.00252796,-0.309184,-0.950999][0.678218,0.578476,0.474853][1.43051e-006,-1.29981,-1.96461][0.00252796,-0.309184,-0.950999][0.678218,0.578476,0.474853][1.43051e-006,-1.58846,-1.81753][0.00483731,-0.58801,-0.808839][0.678218,0.606153,0.401873][-0.561647,-1.58846,-1.72857][-0.245344,-0.58801,-0.770746][0.730242,0.606153,0.357732][-1.06832,-1.58846,-1.47041][-0.47151,-0.58801,-0.657208][0.777173,0.606153,0.229631][-1.15477,-1.29981,-1.5894][-0.556938,-0.309184,-0.77086][0.785181,0.578476,0.288672][-0.607095,-1.29981,-1.86845][-0.291471,-0.309184,-0.905235][0.734452,0.578476,0.42714][-0.607095,-1.29981,-1.86845][-0.291471,-0.309184,-0.905235][0.734452,0.578476,0.42714][-0.561647,-1.58846,-1.72857][-0.245344,-0.58801,-0.770746][0.730242,0.606153,0.357732][-1.06832,-1.58846,-1.47041][-0.47151,-0.58801,-0.657208][0.777173,0.606153,0.229631][-1.47041,-1.58846,-1.06832][-0.651521,-0.58801,-0.479337][0.814418,0.606153,0.0301076][-1.5894,-1.29981,-1.15477][-0.767888,-0.309184,-0.561028][0.82544,0.578476,0.073004][-1.15477,-1.29981,-1.5894][-0.556938,-0.309184,-0.77086][0.785181,0.578476,0.288672][-1.15477,-1.29981,-1.5894][-0.556938,-0.309184,-0.77086][0.785181,0.578476,0.288672][-1.06832,-1.58846,-1.47041][-0.47151,-0.58801,-0.657208][0.777173,0.606153,0.229631][-1.47041,-1.58846,-1.06832][-0.651521,-0.58801,-0.479337][0.814418,0.606153,0.0301076][-1.72857,-1.58846,-0.561648][-0.767757,-0.58801,-0.254546][0.838331,0.606153,-0.221306][-1.86845,-1.29981,-0.607097][-0.903673,-0.309184,-0.296279][0.851287,0.578476,-0.198754][-1.5894,-1.29981,-1.15477][-0.767888,-0.309184,-0.561028][0.82544,0.578476,0.073004][-1.5894,-1.29981,-1.15477][-0.767888,-0.309184,-0.561028][0.82544,0.578476,0.073004][-1.47041,-1.58846,-1.06832][-0.651521,-0.58801,-0.479337][0.814418,0.606153,0.0301076][-1.72857,-1.58846,-0.561648][-0.767757,-0.58801,-0.254546][0.838331,0.606153,-0.221306][-1.81753,-1.58846,2.05389e-007][-0.808839,-0.58801,-0.00483735][0.846571,0.606153,-0.5][-1.96461,-1.29981,2.05629e-007][-0.950999,-0.309184,-0.00252795][0.860194,0.578476,-0.5][-1.86845,-1.29981,-0.607097][-0.903673,-0.309184,-0.296279][0.851287,0.578476,-0.198754][-1.86845,-1.29981,-0.607097][-0.903673,-0.309184,-0.296279][0.851287,0.578476,-0.198754][-1.72857,-1.58846,-0.561648][-0.767757,-0.58801,-0.254546][0.838331,0.606153,-0.221306][-1.81753,-1.58846,2.05389e-007][-0.808839,-0.58801,-0.00483735][0.846571,0.606153,-0.5][-1.72857,-1.58846,0.561648][-0.770746,-0.58801,0.245344][0.29069,0.775264,0.221306][-1.86845,-1.29981,0.607097][-0.905235,-0.309184,0.291471][0.270436,0.767971,0.198754][-1.96461,-1.29981,2.05629e-007][-0.950999,-0.309184,-0.00252795][0.270436,0.762957,0.5][-1.96461,-1.29981,2.05629e-007][-0.950999,-0.309184,-0.00252795][0.270436,0.762957,0.5][-1.81753,-1.58846,2.05389e-007][-0.808839,-0.58801,-0.00483735][0.29069,0.770626,0.5][-1.72857,-1.58846,0.561648][-0.770746,-0.58801,0.245344][0.29069,0.775264,0.221306][-1.47041,-1.58846,1.06832][-0.657208,-0.58801,0.47151][0.29069,0.788725,-0.0301079][-1.5894,-1.29981,1.15477][-0.77086,-0.309184,0.556938][0.270436,0.782521,-0.0730044][-1.86845,-1.29981,0.607097][-0.905235,-0.309184,0.291471][0.270436,0.767971,0.198754][-1.86845,-1.29981,0.607097][-0.905235,-0.309184,0.291471][0.270436,0.767971,0.198754][-1.72857,-1.58846,0.561648][-0.770746,-0.58801,0.245344][0.29069,0.775264,0.221306][-1.47041,-1.58846,1.06832][-0.657208,-0.58801,0.47151][0.29069,0.788725,-0.0301079][-1.06832,-1.58846,1.47041][-0.479337,-0.58801,0.651521][0.29069,0.809692,-0.229631][-1.15477,-1.29981,1.5894][-0.561028,-0.309184,0.767888][0.270436,0.805184,-0.288673][-1.5894,-1.29981,1.15477][-0.77086,-0.309184,0.556938][0.270436,0.782521,-0.0730044][-1.5894,-1.29981,1.15477][-0.77086,-0.309184,0.556938][0.270436,0.782521,-0.0730044][-1.47041,-1.58846,1.06832][-0.657208,-0.58801,0.47151][0.29069,0.788725,-0.0301079][-1.06832,-1.58846,1.47041][-0.479337,-0.58801,0.651521][0.29069,0.809692,-0.229631][-0.561646,-1.58846,1.72858][-0.254546,-0.58801,0.767757][0.29069,0.836111,-0.357732][-0.607095,-1.29981,1.86845][-0.296279,-0.309184,0.903673][0.270436,0.833741,-0.42714][-1.15477,-1.29981,1.5894][-0.561028,-0.309184,0.767888][0.270436,0.805184,-0.288673][-1.15477,-1.29981,1.5894][-0.561028,-0.309184,0.767888][0.270436,0.805184,-0.288673][-1.06832,-1.58846,1.47041][-0.479337,-0.58801,0.651521][0.29069,0.809692,-0.229631][-0.561646,-1.58846,1.72858][-0.254546,-0.58801,0.767757][0.29069,0.836111,-0.357732][1.78814e-006,-1.58846,1.81753][-0.00483737,-0.58801,0.808839][0.29069,0.865397,-0.401873][1.90735e-006,-1.29981,1.96461][-0.00252784,-0.309184,0.950999][0.270436,0.865397,-0.474853][-0.607095,-1.29981,1.86845][-0.296279,-0.309184,0.903673][0.270436,0.833741,-0.42714][-0.607095,-1.29981,1.86845][-0.296279,-0.309184,0.903673][0.270436,0.833741,-0.42714][-0.561646,-1.58846,1.72858][-0.254546,-0.58801,0.767757][0.29069,0.836111,-0.357732][1.78814e-006,-1.58846,1.81753][-0.00483737,-0.58801,0.808839][0.29069,0.865397,-0.401873][0.56165,-1.58846,1.72858][0.245344,-0.58801,0.770746][0.29069,0.894682,-0.357732][0.607099,-1.29981,1.86845][0.291471,-0.309184,0.905235][0.270436,0.897052,-0.42714][1.90735e-006,-1.29981,1.96461][-0.00252784,-0.309184,0.950999][0.270436,0.865397,-0.474853][1.90735e-006,-1.29981,1.96461][-0.00252784,-0.309184,0.950999][0.270436,0.865397,-0.474853][1.78814e-006,-1.58846,1.81753][-0.00483737,-0.58801,0.808839][0.29069,0.865397,-0.401873][0.56165,-1.58846,1.72858][0.245344,-0.58801,0.770746][0.29069,0.894682,-0.357732][1.06832,-1.58846,1.47041][0.47151,-0.58801,0.657208][0.29069,0.921102,-0.22963][1.15477,-1.29981,1.5894][0.556938,-0.309184,0.77086][0.270436,0.925609,-0.288672][0.607099,-1.29981,1.86845][0.291471,-0.309184,0.905235][0.270436,0.897052,-0.42714][0.607099,-1.29981,1.86845][0.291471,-0.309184,0.905235][0.270436,0.897052,-0.42714][0.56165,-1.58846,1.72858][0.245344,-0.58801,0.770746][0.29069,0.894682,-0.357732][1.06832,-1.58846,1.47041][0.47151,-0.58801,0.657208][0.29069,0.921102,-0.22963][1.47042,-1.58846,1.06832][0.651521,-0.58801,0.479337][0.29069,0.942068,-0.0301075][1.5894,-1.29981,1.15477][0.767888,-0.309184,0.561028][0.270436,0.948272,-0.073004][1.15477,-1.29981,1.5894][0.556938,-0.309184,0.77086][0.270436,0.925609,-0.288672][1.15477,-1.29981,1.5894][0.556938,-0.309184,0.77086][0.270436,0.925609,-0.288672][1.06832,-1.58846,1.47041][0.47151,-0.58801,0.657208][0.29069,0.921102,-0.22963][1.47042,-1.58846,1.06832][0.651521,-0.58801,0.479337][0.29069,0.942068,-0.0301075][1.72858,-1.58846,0.561648][0.767757,-0.58801,0.254546][0.29069,0.955529,0.221306][1.86845,-1.29981,0.607097][0.903672,-0.309184,0.296279][0.270436,0.962823,0.198754][1.5894,-1.29981,1.15477][0.767888,-0.309184,0.561028][0.270436,0.948272,-0.073004][1.5894,-1.29981,1.15477][0.767888,-0.309184,0.561028][0.270436,0.948272,-0.073004][1.47042,-1.58846,1.06832][0.651521,-0.58801,0.479337][0.29069,0.942068,-0.0301075][1.72858,-1.58846,0.561648][0.767757,-0.58801,0.254546][0.29069,0.955529,0.221306][1.81753,-1.58846,0][0.808839,-0.58801,0.00483746][0.29069,0.960167,0.5][1.96461,-1.29981,0][0.950999,-0.309184,0.00252795][0.270436,0.967836,0.5][1.86845,-1.29981,0.607097][0.903672,-0.309184,0.296279][0.270436,0.962823,0.198754][1.86845,-1.29981,0.607097][0.903672,-0.309184,0.296279][0.270436,0.962823,0.198754][1.72858,-1.58846,0.561648][0.767757,-0.58801,0.254546][0.29069,0.955529,0.221306][1.81753,-1.58846,0][0.808839,-0.58801,0.00483746][0.29069,0.960167,0.5][1.51071,-1.81753,-0.49086][0.560855,-0.809168,-0.17518][0.538285,0.628118,-0.256431][1.72858,-1.58846,-0.561648][0.770746,-0.58801,-0.245344][0.518104,0.606153,-0.221306][1.81753,-1.58846,0][0.808839,-0.58801,0.00483746][0.509865,0.606153,-0.5][1.81753,-1.58846,0][0.808839,-0.58801,0.00483746][0.509865,0.606153,-0.5][1.58846,-1.81753,0][0.587539,-0.809168,0.00670802][0.531083,0.628118,-0.5][1.51071,-1.81753,-0.49086][0.560855,-0.809168,-0.17518][0.538285,0.628118,-0.256431][1.28509,-1.81753,-0.933671][0.479272,-0.809168,-0.33992][0.559183,0.628118,-0.0367051][1.47042,-1.58846,-1.06832][0.657208,-0.58801,-0.47151][0.542017,0.606153,0.0301077][1.72858,-1.58846,-0.561648][0.770746,-0.58801,-0.245344][0.518104,0.606153,-0.221306][1.72858,-1.58846,-0.561648][0.770746,-0.58801,-0.245344][0.518104,0.606153,-0.221306][1.51071,-1.81753,-0.49086][0.560855,-0.809168,-0.17518][0.538285,0.628118,-0.256431][1.28509,-1.81753,-0.933671][0.479272,-0.809168,-0.33992][0.559183,0.628118,-0.0367051][0.933673,-1.81753,-1.28509][0.350773,-0.809168,-0.471386][0.591734,0.628118,0.137671][1.06832,-1.58846,-1.47041][0.479337,-0.58801,-0.651521][0.579262,0.606153,0.229631][1.47042,-1.58846,-1.06832][0.657208,-0.58801,-0.47151][0.542017,0.606153,0.0301077][1.47042,-1.58846,-1.06832][0.657208,-0.58801,-0.47151][0.542017,0.606153,0.0301077][1.28509,-1.81753,-0.933671][0.479272,-0.809168,-0.33992][0.559183,0.628118,-0.0367051][0.933673,-1.81753,-1.28509][0.350773,-0.809168,-0.471386][0.591734,0.628118,0.137671][0.490862,-1.81753,-1.51071][0.187939,-0.809168,-0.556709][0.632751,0.628118,0.249627][0.56165,-1.58846,-1.72858][0.254546,-0.58801,-0.767757][0.626194,0.606153,0.357732][1.06832,-1.58846,-1.47041][0.479337,-0.58801,-0.651521][0.579262,0.606153,0.229631][1.06832,-1.58846,-1.47041][0.479337,-0.58801,-0.651521][0.579262,0.606153,0.229631][0.933673,-1.81753,-1.28509][0.350773,-0.809168,-0.471386][0.591734,0.628118,0.137671][0.490862,-1.81753,-1.51071][0.187939,-0.809168,-0.556709][0.632751,0.628118,0.249627][1.43051e-006,-1.81753,-1.58846][0.00670801,-0.809168,-0.587539][0.678218,0.628118,0.288204][1.43051e-006,-1.58846,-1.81753][0.00483731,-0.58801,-0.808839][0.678218,0.606153,0.401873][0.56165,-1.58846,-1.72858][0.254546,-0.58801,-0.767757][0.626194,0.606153,0.357732][0.56165,-1.58846,-1.72858][0.254546,-0.58801,-0.767757][0.626194,0.606153,0.357732][0.490862,-1.81753,-1.51071][0.187939,-0.809168,-0.556709][0.632751,0.628118,0.249627][1.43051e-006,-1.81753,-1.58846][0.00670801,-0.809168,-0.587539][0.678218,0.628118,0.288204][-0.490859,-1.81753,-1.51071][-0.17518,-0.809168,-0.560855][0.723685,0.628118,0.249627][-0.561647,-1.58846,-1.72857][-0.245344,-0.58801,-0.770746][0.730242,0.606153,0.357732][1.43051e-006,-1.58846,-1.81753][0.00483731,-0.58801,-0.808839][0.678218,0.606153,0.401873][1.43051e-006,-1.58846,-1.81753][0.00483731,-0.58801,-0.808839][0.678218,0.606153,0.401873][1.43051e-006,-1.81753,-1.58846][0.00670801,-0.809168,-0.587539][0.678218,0.628118,0.288204][-0.490859,-1.81753,-1.51071][-0.17518,-0.809168,-0.560855][0.723685,0.628118,0.249627][-0.93367,-1.81753,-1.28509][-0.33992,-0.809168,-0.479272][0.764701,0.628118,0.137671][-1.06832,-1.58846,-1.47041][-0.47151,-0.58801,-0.657208][0.777173,0.606153,0.229631][-0.561647,-1.58846,-1.72857][-0.245344,-0.58801,-0.770746][0.730242,0.606153,0.357732][-0.561647,-1.58846,-1.72857][-0.245344,-0.58801,-0.770746][0.730242,0.606153,0.357732][-0.490859,-1.81753,-1.51071][-0.17518,-0.809168,-0.560855][0.723685,0.628118,0.249627][-0.93367,-1.81753,-1.28509][-0.33992,-0.809168,-0.479272][0.764701,0.628118,0.137671][-1.28509,-1.81753,-0.933671][-0.471386,-0.809168,-0.350773][0.797252,0.628118,-0.0367053][-1.47041,-1.58846,-1.06832][-0.651521,-0.58801,-0.479337][0.814418,0.606153,0.0301076][-1.06832,-1.58846,-1.47041][-0.47151,-0.58801,-0.657208][0.777173,0.606153,0.229631][-1.06832,-1.58846,-1.47041][-0.47151,-0.58801,-0.657208][0.777173,0.606153,0.229631][-0.93367,-1.81753,-1.28509][-0.33992,-0.809168,-0.479272][0.764701,0.628118,0.137671][-1.28509,-1.81753,-0.933671][-0.471386,-0.809168,-0.350773][0.797252,0.628118,-0.0367053][-1.51071,-1.81753,-0.49086][-0.55671,-0.809168,-0.187939][0.818151,0.628118,-0.256432][-1.72857,-1.58846,-0.561648][-0.767757,-0.58801,-0.254546][0.838331,0.606153,-0.221306][-1.47041,-1.58846,-1.06832][-0.651521,-0.58801,-0.479337][0.814418,0.606153,0.0301076][-1.47041,-1.58846,-1.06832][-0.651521,-0.58801,-0.479337][0.814418,0.606153,0.0301076][-1.28509,-1.81753,-0.933671][-0.471386,-0.809168,-0.350773][0.797252,0.628118,-0.0367053][-1.51071,-1.81753,-0.49086][-0.55671,-0.809168,-0.187939][0.818151,0.628118,-0.256432][-1.58845,-1.81753,1.95375e-007][-0.587538,-0.809168,-0.00670802][0.825352,0.628118,-0.5][-1.81753,-1.58846,2.05389e-007][-0.808839,-0.58801,-0.00483735][0.846571,0.606153,-0.5][-1.72857,-1.58846,-0.561648][-0.767757,-0.58801,-0.254546][0.838331,0.606153,-0.221306][-1.72857,-1.58846,-0.561648][-0.767757,-0.58801,-0.254546][0.838331,0.606153,-0.221306][-1.51071,-1.81753,-0.49086][-0.55671,-0.809168,-0.187939][0.818151,0.628118,-0.256432][-1.58845,-1.81753,1.95375e-007][-0.587538,-0.809168,-0.00670802][0.825352,0.628118,-0.5][-1.51071,-1.81753,0.49086][-0.560855,-0.809168,0.17518][0.306764,0.786624,0.256431][-1.72857,-1.58846,0.561648][-0.770746,-0.58801,0.245344][0.29069,0.775264,0.221306][-1.81753,-1.58846,2.05389e-007][-0.808839,-0.58801,-0.00483735][0.29069,0.770626,0.5][-1.81753,-1.58846,2.05389e-007][-0.808839,-0.58801,-0.00483735][0.29069,0.770626,0.5][-1.58845,-1.81753,1.95375e-007][-0.587538,-0.809168,-0.00670802][0.306764,0.78257,0.5][-1.51071,-1.81753,0.49086][-0.560855,-0.809168,0.17518][0.306764,0.786624,0.256431][-1.28509,-1.81753,0.933672][-0.479272,-0.809168,0.33992][0.306764,0.798389,0.036705][-1.47041,-1.58846,1.06832][-0.657208,-0.58801,0.47151][0.29069,0.788725,-0.0301079][-1.72857,-1.58846,0.561648][-0.770746,-0.58801,0.245344][0.29069,0.775264,0.221306][-1.72857,-1.58846,0.561648][-0.770746,-0.58801,0.245344][0.29069,0.775264,0.221306][-1.51071,-1.81753,0.49086][-0.560855,-0.809168,0.17518][0.306764,0.786624,0.256431][-1.28509,-1.81753,0.933672][-0.479272,-0.809168,0.33992][0.306764,0.798389,0.036705][-0.93367,-1.81753,1.28509][-0.350773,-0.809168,0.471386][0.306764,0.816713,-0.137671][-1.06832,-1.58846,1.47041][-0.479337,-0.58801,0.651521][0.29069,0.809692,-0.229631][-1.47041,-1.58846,1.06832][-0.657208,-0.58801,0.47151][0.29069,0.788725,-0.0301079][-1.47041,-1.58846,1.06832][-0.657208,-0.58801,0.47151][0.29069,0.788725,-0.0301079][-1.28509,-1.81753,0.933672][-0.479272,-0.809168,0.33992][0.306764,0.798389,0.036705][-0.93367,-1.81753,1.28509][-0.350773,-0.809168,0.471386][0.306764,0.816713,-0.137671][-0.490858,-1.81753,1.51071][-0.187939,-0.809168,0.55671][0.306764,0.839802,-0.249627][-0.561646,-1.58846,1.72858][-0.254546,-0.58801,0.767757][0.29069,0.836111,-0.357732][-1.06832,-1.58846,1.47041][-0.479337,-0.58801,0.651521][0.29069,0.809692,-0.229631][-1.06832,-1.58846,1.47041][-0.479337,-0.58801,0.651521][0.29069,0.809692,-0.229631][-0.93367,-1.81753,1.28509][-0.350773,-0.809168,0.471386][0.306764,0.816713,-0.137671][-0.490858,-1.81753,1.51071][-0.187939,-0.809168,0.55671][0.306764,0.839802,-0.249627][1.78814e-006,-1.81753,1.58846][-0.00670801,-0.809168,0.587539][0.306764,0.865397,-0.288204][1.78814e-006,-1.58846,1.81753][-0.00483737,-0.58801,0.808839][0.29069,0.865397,-0.401873][-0.561646,-1.58846,1.72858][-0.254546,-0.58801,0.767757][0.29069,0.836111,-0.357732][-0.561646,-1.58846,1.72858][-0.254546,-0.58801,0.767757][0.29069,0.836111,-0.357732][-0.490858,-1.81753,1.51071][-0.187939,-0.809168,0.55671][0.306764,0.839802,-0.249627][1.78814e-006,-1.81753,1.58846][-0.00670801,-0.809168,0.587539][0.306764,0.865397,-0.288204][0.490862,-1.81753,1.51071][0.17518,-0.809168,0.560855][0.306764,0.890991,-0.249627][0.56165,-1.58846,1.72858][0.245344,-0.58801,0.770746][0.29069,0.894682,-0.357732][1.78814e-006,-1.58846,1.81753][-0.00483737,-0.58801,0.808839][0.29069,0.865397,-0.401873][1.78814e-006,-1.58846,1.81753][-0.00483737,-0.58801,0.808839][0.29069,0.865397,-0.401873][1.78814e-006,-1.81753,1.58846][-0.00670801,-0.809168,0.587539][0.306764,0.865397,-0.288204][0.490862,-1.81753,1.51071][0.17518,-0.809168,0.560855][0.306764,0.890991,-0.249627][0.933673,-1.81753,1.28509][0.33992,-0.809168,0.479272][0.306764,0.914081,-0.13767][1.06832,-1.58846,1.47041][0.47151,-0.58801,0.657208][0.29069,0.921102,-0.22963][0.56165,-1.58846,1.72858][0.245344,-0.58801,0.770746][0.29069,0.894682,-0.357732][0.56165,-1.58846,1.72858][0.245344,-0.58801,0.770746][0.29069,0.894682,-0.357732][0.490862,-1.81753,1.51071][0.17518,-0.809168,0.560855][0.306764,0.890991,-0.249627][0.933673,-1.81753,1.28509][0.33992,-0.809168,0.479272][0.306764,0.914081,-0.13767][1.28509,-1.81753,0.933671][0.471386,-0.809168,0.350773][0.306764,0.932405,0.0367053][1.47042,-1.58846,1.06832][0.651521,-0.58801,0.479337][0.29069,0.942068,-0.0301075][1.06832,-1.58846,1.47041][0.47151,-0.58801,0.657208][0.29069,0.921102,-0.22963][1.06832,-1.58846,1.47041][0.47151,-0.58801,0.657208][0.29069,0.921102,-0.22963][0.933673,-1.81753,1.28509][0.33992,-0.809168,0.479272][0.306764,0.914081,-0.13767][1.28509,-1.81753,0.933671][0.471386,-0.809168,0.350773][0.306764,0.932405,0.0367053][1.51071,-1.81753,0.49086][0.556709,-0.809168,0.187939][0.306764,0.944169,0.256432][1.72858,-1.58846,0.561648][0.767757,-0.58801,0.254546][0.29069,0.955529,0.221306][1.47042,-1.58846,1.06832][0.651521,-0.58801,0.479337][0.29069,0.942068,-0.0301075][1.47042,-1.58846,1.06832][0.651521,-0.58801,0.479337][0.29069,0.942068,-0.0301075][1.28509,-1.81753,0.933671][0.471386,-0.809168,0.350773][0.306764,0.932405,0.0367053][1.51071,-1.81753,0.49086][0.556709,-0.809168,0.187939][0.306764,0.944169,0.256432][1.58846,-1.81753,0][0.587539,-0.809168,0.00670802][0.306764,0.948223,0.5][1.81753,-1.58846,0][0.808839,-0.58801,0.00483746][0.29069,0.960167,0.5][1.72858,-1.58846,0.561648][0.767757,-0.58801,0.254546][0.29069,0.955529,0.221306][1.72858,-1.58846,0.561648][0.767757,-0.58801,0.254546][0.29069,0.955529,0.221306][1.51071,-1.81753,0.49086][0.556709,-0.809168,0.187939][0.306764,0.944169,0.256432][1.58846,-1.81753,0][0.587539,-0.809168,0.00670802][0.306764,0.948223,0.5][1.23619,-1.96461,-0.401662][0.296172,-0.951082,-0.08789][0.563713,0.64222,-0.300692][1.51071,-1.81753,-0.49086][0.560855,-0.809168,-0.17518][0.538285,0.628118,-0.256431][1.58846,-1.81753,0][0.587539,-0.809168,0.00670802][0.531083,0.628118,-0.5][1.58846,-1.81753,0][0.587539,-0.809168,0.00670802][0.531083,0.628118,-0.5][1.29981,-1.96461,0][0.308836,-0.951082,0.00793392][0.55782,0.64222,-0.5][1.23619,-1.96461,-0.401662][0.296172,-0.951082,-0.08789][0.563713,0.64222,-0.300692][1.05157,-1.96461,-0.764006][0.254517,-0.951082,-0.175111][0.580814,0.64222,-0.120894][1.28509,-1.81753,-0.933671][0.479272,-0.809168,-0.33992][0.559183,0.628118,-0.0367051][1.51071,-1.81753,-0.49086][0.560855,-0.809168,-0.17518][0.538285,0.628118,-0.256431][1.51071,-1.81753,-0.49086][0.560855,-0.809168,-0.17518][0.538285,0.628118,-0.256431][1.23619,-1.96461,-0.401662][0.296172,-0.951082,-0.08789][0.563713,0.64222,-0.300692][1.05157,-1.96461,-0.764006][0.254517,-0.951082,-0.175111][0.580814,0.64222,-0.120894][0.764008,-1.96461,-1.05156][0.187948,-0.951082,-0.24519][0.60745,0.64222,0.0217943][0.933673,-1.81753,-1.28509][0.350773,-0.809168,-0.471386][0.591734,0.628118,0.137671][1.28509,-1.81753,-0.933671][0.479272,-0.809168,-0.33992][0.559183,0.628118,-0.0367051][1.28509,-1.81753,-0.933671][0.479272,-0.809168,-0.33992][0.559183,0.628118,-0.0367051][1.05157,-1.96461,-0.764006][0.254517,-0.951082,-0.175111][0.580814,0.64222,-0.120894][0.764008,-1.96461,-1.05156][0.187948,-0.951082,-0.24519][0.60745,0.64222,0.0217943][0.401663,-1.96461,-1.23619][0.102981,-0.951082,-0.291269][0.641013,0.64222,0.113406][0.490862,-1.81753,-1.51071][0.187939,-0.809168,-0.556709][0.632751,0.628118,0.249627][0.933673,-1.81753,-1.28509][0.350773,-0.809168,-0.471386][0.591734,0.628118,0.137671][0.933673,-1.81753,-1.28509][0.350773,-0.809168,-0.471386][0.591734,0.628118,0.137671][0.764008,-1.96461,-1.05156][0.187948,-0.951082,-0.24519][0.60745,0.64222,0.0217943][0.401663,-1.96461,-1.23619][0.102981,-0.951082,-0.291269][0.641013,0.64222,0.113406][1.43051e-006,-1.96461,-1.2998][0.00793389,-0.951082,-0.308836][0.678218,0.64222,0.144973][1.43051e-006,-1.81753,-1.58846][0.00670801,-0.809168,-0.587539][0.678218,0.628118,0.288204][0.490862,-1.81753,-1.51071][0.187939,-0.809168,-0.556709][0.632751,0.628118,0.249627][0.490862,-1.81753,-1.51071][0.187939,-0.809168,-0.556709][0.632751,0.628118,0.249627][0.401663,-1.96461,-1.23619][0.102981,-0.951082,-0.291269][0.641013,0.64222,0.113406][1.43051e-006,-1.96461,-1.2998][0.00793389,-0.951082,-0.308836][0.678218,0.64222,0.144973][-0.40166,-1.96461,-1.23619][-0.08789,-0.951082,-0.296172][0.715423,0.64222,0.113406][-0.490859,-1.81753,-1.51071][-0.17518,-0.809168,-0.560855][0.723685,0.628118,0.249627][1.43051e-006,-1.81753,-1.58846][0.00670801,-0.809168,-0.587539][0.678218,0.628118,0.288204][1.43051e-006,-1.81753,-1.58846][0.00670801,-0.809168,-0.587539][0.678218,0.628118,0.288204][1.43051e-006,-1.96461,-1.2998][0.00793389,-0.951082,-0.308836][0.678218,0.64222,0.144973][-0.40166,-1.96461,-1.23619][-0.08789,-0.951082,-0.296172][0.715423,0.64222,0.113406][-0.764005,-1.96461,-1.05156][-0.175111,-0.951082,-0.254517][0.748986,0.64222,0.0217943][-0.93367,-1.81753,-1.28509][-0.33992,-0.809168,-0.479272][0.764701,0.628118,0.137671][-0.490859,-1.81753,-1.51071][-0.17518,-0.809168,-0.560855][0.723685,0.628118,0.249627][-0.490859,-1.81753,-1.51071][-0.17518,-0.809168,-0.560855][0.723685,0.628118,0.249627][-0.40166,-1.96461,-1.23619][-0.08789,-0.951082,-0.296172][0.715423,0.64222,0.113406][-0.764005,-1.96461,-1.05156][-0.175111,-0.951082,-0.254517][0.748986,0.64222,0.0217943][-1.05156,-1.96461,-0.764006][-0.24519,-0.951082,-0.187948][0.775621,0.64222,-0.120894][-1.28509,-1.81753,-0.933671][-0.471386,-0.809168,-0.350773][0.797252,0.628118,-0.0367053][-0.93367,-1.81753,-1.28509][-0.33992,-0.809168,-0.479272][0.764701,0.628118,0.137671][-0.93367,-1.81753,-1.28509][-0.33992,-0.809168,-0.479272][0.764701,0.628118,0.137671][-0.764005,-1.96461,-1.05156][-0.175111,-0.951082,-0.254517][0.748986,0.64222,0.0217943][-1.05156,-1.96461,-0.764006][-0.24519,-0.951082,-0.187948][0.775621,0.64222,-0.120894][-1.23619,-1.96461,-0.401662][-0.291269,-0.951082,-0.102981][0.792722,0.64222,-0.300692][-1.51071,-1.81753,-0.49086][-0.55671,-0.809168,-0.187939][0.818151,0.628118,-0.256432][-1.28509,-1.81753,-0.933671][-0.471386,-0.809168,-0.350773][0.797252,0.628118,-0.0367053][-1.28509,-1.81753,-0.933671][-0.471386,-0.809168,-0.350773][0.797252,0.628118,-0.0367053][-1.05156,-1.96461,-0.764006][-0.24519,-0.951082,-0.187948][0.775621,0.64222,-0.120894][-1.23619,-1.96461,-0.401662][-0.291269,-0.951082,-0.102981][0.792722,0.64222,-0.300692][-1.2998,-1.96461,1.7657e-007][-0.308836,-0.951082,-0.0079339][0.798615,0.64222,-0.5][-1.58845,-1.81753,1.95375e-007][-0.587538,-0.809168,-0.00670802][0.825352,0.628118,-0.5][-1.51071,-1.81753,-0.49086][-0.55671,-0.809168,-0.187939][0.818151,0.628118,-0.256432][-1.51071,-1.81753,-0.49086][-0.55671,-0.809168,-0.187939][0.818151,0.628118,-0.256432][-1.23619,-1.96461,-0.401662][-0.291269,-0.951082,-0.102981][0.792722,0.64222,-0.300692][-1.2998,-1.96461,1.7657e-007][-0.308836,-0.951082,-0.0079339][0.798615,0.64222,-0.5][-1.23619,-1.96461,0.401662][-0.296172,-0.951082,0.08789][0.317085,0.800939,0.300692][-1.51071,-1.81753,0.49086][-0.560855,-0.809168,0.17518][0.306764,0.786624,0.256431][-1.58845,-1.81753,1.95375e-007][-0.587538,-0.809168,-0.00670802][0.306764,0.78257,0.5][-1.58845,-1.81753,1.95375e-007][-0.587538,-0.809168,-0.00670802][0.306764,0.78257,0.5][-1.2998,-1.96461,1.7657e-007][-0.308836,-0.951082,-0.0079339][0.317085,0.797621,0.5][-1.23619,-1.96461,0.401662][-0.296172,-0.951082,0.08789][0.317085,0.800939,0.300692][-1.05156,-1.96461,0.764006][-0.254517,-0.951082,0.175111][0.317085,0.810565,0.120894][-1.28509,-1.81753,0.933672][-0.479272,-0.809168,0.33992][0.306764,0.798389,0.036705][-1.51071,-1.81753,0.49086][-0.560855,-0.809168,0.17518][0.306764,0.786624,0.256431][-1.51071,-1.81753,0.49086][-0.560855,-0.809168,0.17518][0.306764,0.786624,0.256431][-1.23619,-1.96461,0.401662][-0.296172,-0.951082,0.08789][0.317085,0.800939,0.300692][-1.05156,-1.96461,0.764006][-0.254517,-0.951082,0.175111][0.317085,0.810565,0.120894][-0.764005,-1.96461,1.05156][-0.187948,-0.951082,0.24519][0.317085,0.825559,-0.0217943][-0.93367,-1.81753,1.28509][-0.350773,-0.809168,0.471386][0.306764,0.816713,-0.137671][-1.28509,-1.81753,0.933672][-0.479272,-0.809168,0.33992][0.306764,0.798389,0.036705][-1.28509,-1.81753,0.933672][-0.479272,-0.809168,0.33992][0.306764,0.798389,0.036705][-1.05156,-1.96461,0.764006][-0.254517,-0.951082,0.175111][0.317085,0.810565,0.120894][-0.764005,-1.96461,1.05156][-0.187948,-0.951082,0.24519][0.317085,0.825559,-0.0217943][-0.40166,-1.96461,1.23619][-0.102981,-0.951082,0.291269][0.317085,0.844453,-0.113406][-0.490858,-1.81753,1.51071][-0.187939,-0.809168,0.55671][0.306764,0.839802,-0.249627][-0.93367,-1.81753,1.28509][-0.350773,-0.809168,0.471386][0.306764,0.816713,-0.137671][-0.93367,-1.81753,1.28509][-0.350773,-0.809168,0.471386][0.306764,0.816713,-0.137671][-0.764005,-1.96461,1.05156][-0.187948,-0.951082,0.24519][0.317085,0.825559,-0.0217943][-0.40166,-1.96461,1.23619][-0.102981,-0.951082,0.291269][0.317085,0.844453,-0.113406][1.78814e-006,-1.96461,1.29981][-0.00793389,-0.951082,0.308836][0.317085,0.865397,-0.144973][1.78814e-006,-1.81753,1.58846][-0.00670801,-0.809168,0.587539][0.306764,0.865397,-0.288204][-0.490858,-1.81753,1.51071][-0.187939,-0.809168,0.55671][0.306764,0.839802,-0.249627][-0.490858,-1.81753,1.51071][-0.187939,-0.809168,0.55671][0.306764,0.839802,-0.249627][-0.40166,-1.96461,1.23619][-0.102981,-0.951082,0.291269][0.317085,0.844453,-0.113406][1.78814e-006,-1.96461,1.29981][-0.00793389,-0.951082,0.308836][0.317085,0.865397,-0.144973][0.401663,-1.96461,1.23619][0.0878901,-0.951082,0.296172][0.317085,0.88634,-0.113406][0.490862,-1.81753,1.51071][0.17518,-0.809168,0.560855][0.306764,0.890991,-0.249627][1.78814e-006,-1.81753,1.58846][-0.00670801,-0.809168,0.587539][0.306764,0.865397,-0.288204][1.78814e-006,-1.81753,1.58846][-0.00670801,-0.809168,0.587539][0.306764,0.865397,-0.288204][1.78814e-006,-1.96461,1.29981][-0.00793389,-0.951082,0.308836][0.317085,0.865397,-0.144973][0.401663,-1.96461,1.23619][0.0878901,-0.951082,0.296172][0.317085,0.88634,-0.113406][0.764008,-1.96461,1.05156][0.175111,-0.951082,0.254517][0.317085,0.905234,-0.0217941][0.933673,-1.81753,1.28509][0.33992,-0.809168,0.479272][0.306764,0.914081,-0.13767][0.490862,-1.81753,1.51071][0.17518,-0.809168,0.560855][0.306764,0.890991,-0.249627][0.490862,-1.81753,1.51071][0.17518,-0.809168,0.560855][0.306764,0.890991,-0.249627][0.401663,-1.96461,1.23619][0.0878901,-0.951082,0.296172][0.317085,0.88634,-0.113406][0.764008,-1.96461,1.05156][0.175111,-0.951082,0.254517][0.317085,0.905234,-0.0217941][1.05157,-1.96461,0.764006][0.24519,-0.951082,0.187948][0.317085,0.920228,0.120894][1.28509,-1.81753,0.933671][0.471386,-0.809168,0.350773][0.306764,0.932405,0.0367053][0.933673,-1.81753,1.28509][0.33992,-0.809168,0.479272][0.306764,0.914081,-0.13767][0.933673,-1.81753,1.28509][0.33992,-0.809168,0.479272][0.306764,0.914081,-0.13767][0.764008,-1.96461,1.05156][0.175111,-0.951082,0.254517][0.317085,0.905234,-0.0217941][1.05157,-1.96461,0.764006][0.24519,-0.951082,0.187948][0.317085,0.920228,0.120894][1.23619,-1.96461,0.401662][0.291269,-0.951082,0.102981][0.317085,0.929855,0.300692][1.51071,-1.81753,0.49086][0.556709,-0.809168,0.187939][0.306764,0.944169,0.256432][1.28509,-1.81753,0.933671][0.471386,-0.809168,0.350773][0.306764,0.932405,0.0367053][1.28509,-1.81753,0.933671][0.471386,-0.809168,0.350773][0.306764,0.932405,0.0367053][1.05157,-1.96461,0.764006][0.24519,-0.951082,0.187948][0.317085,0.920228,0.120894][1.23619,-1.96461,0.401662][0.291269,-0.951082,0.102981][0.317085,0.929855,0.300692][1.29981,-1.96461,0][0.308836,-0.951082,0.00793392][0.317085,0.933172,0.5][1.58846,-1.81753,0][0.587539,-0.809168,0.00670802][0.306764,0.948223,0.5][1.51071,-1.81753,0.49086][0.556709,-0.809168,0.187939][0.306764,0.944169,0.256432][1.51071,-1.81753,0.49086][0.556709,-0.809168,0.187939][0.306764,0.944169,0.256432][1.23619,-1.96461,0.401662][0.291269,-0.951082,0.102981][0.317085,0.929855,0.300692][1.29981,-1.96461,0][0.308836,-0.951082,0.00793392][0.317085,0.933172,0.5][0.931877,-2.01529,-0.302785][0.0910546,-0.995548,-0.0243603][0.591901,0.64708,-0.349756][1.23619,-1.96461,-0.401662][0.296172,-0.951082,-0.08789][0.563713,0.64222,-0.300692][1.29981,-1.96461,0][0.308836,-0.951082,0.00793392][0.55782,0.64222,-0.5][1.29981,-1.96461,0][0.308836,-0.951082,0.00793392][0.55782,0.64222,-0.5][0.979834,-2.01529,0][0.0941258,-0.995548,0.00496936][0.587458,0.64708,-0.5][0.931877,-2.01529,-0.302785][0.0910546,-0.995548,-0.0243603][0.591901,0.64708,-0.349756][0.792703,-2.01529,-0.575931][0.0790703,-0.995548,-0.0513054][0.604792,0.64708,-0.214219][1.05157,-1.96461,-0.764006][0.254517,-0.951082,-0.175111][0.580814,0.64222,-0.120894][1.23619,-1.96461,-0.401662][0.296172,-0.951082,-0.08789][0.563713,0.64222,-0.300692][1.23619,-1.96461,-0.401662][0.296172,-0.951082,-0.08789][0.563713,0.64222,-0.300692][0.931877,-2.01529,-0.302785][0.0910546,-0.995548,-0.0243603][0.591901,0.64708,-0.349756][0.792703,-2.01529,-0.575931][0.0790703,-0.995548,-0.0513054][0.604792,0.64708,-0.214219][0.575933,-2.01529,-0.792701][0.059346,-0.995548,-0.0732284][0.624871,0.64708,-0.106656][0.764008,-1.96461,-1.05156][0.187948,-0.951082,-0.24519][0.60745,0.64222,0.0217943][1.05157,-1.96461,-0.764006][0.254517,-0.951082,-0.175111][0.580814,0.64222,-0.120894][1.05157,-1.96461,-0.764006][0.254517,-0.951082,-0.175111][0.580814,0.64222,-0.120894][0.792703,-2.01529,-0.575931][0.0790703,-0.995548,-0.0513054][0.604792,0.64708,-0.214219][0.575933,-2.01529,-0.792701][0.059346,-0.995548,-0.0732284][0.624871,0.64708,-0.106656][0.302786,-2.01529,-0.931876][0.0338126,-0.995548,-0.0879833][0.650172,0.64708,-0.037596][0.401663,-1.96461,-1.23619][0.102981,-0.951082,-0.291269][0.641013,0.64222,0.113406][0.764008,-1.96461,-1.05156][0.187948,-0.951082,-0.24519][0.60745,0.64222,0.0217943][0.764008,-1.96461,-1.05156][0.187948,-0.951082,-0.24519][0.60745,0.64222,0.0217943][0.575933,-2.01529,-0.792701][0.059346,-0.995548,-0.0732284][0.624871,0.64708,-0.106656][0.302786,-2.01529,-0.931876][0.0338126,-0.995548,-0.0879833][0.650172,0.64708,-0.037596][1.54972e-006,-2.01529,-0.979832][0.00496935,-0.995548,-0.0941258][0.678218,0.64708,-0.0137997][1.43051e-006,-1.96461,-1.2998][0.00793389,-0.951082,-0.308836][0.678218,0.64222,0.144973][0.401663,-1.96461,-1.23619][0.102981,-0.951082,-0.291269][0.641013,0.64222,0.113406][0.401663,-1.96461,-1.23619][0.102981,-0.951082,-0.291269][0.641013,0.64222,0.113406][0.302786,-2.01529,-0.931876][0.0338126,-0.995548,-0.0879833][0.650172,0.64708,-0.037596][1.54972e-006,-2.01529,-0.979832][0.00496935,-0.995548,-0.0941258][0.678218,0.64708,-0.0137997][-0.302783,-2.01529,-0.931876][-0.0243604,-0.995548,-0.0910546][0.706264,0.64708,-0.037596][-0.40166,-1.96461,-1.23619][-0.08789,-0.951082,-0.296172][0.715423,0.64222,0.113406][1.43051e-006,-1.96461,-1.2998][0.00793389,-0.951082,-0.308836][0.678218,0.64222,0.144973][1.43051e-006,-1.96461,-1.2998][0.00793389,-0.951082,-0.308836][0.678218,0.64222,0.144973][1.54972e-006,-2.01529,-0.979832][0.00496935,-0.995548,-0.0941258][0.678218,0.64708,-0.0137997][-0.302783,-2.01529,-0.931876][-0.0243604,-0.995548,-0.0910546][0.706264,0.64708,-0.037596][-0.575929,-2.01529,-0.792701][-0.0513055,-0.995548,-0.0790703][0.731565,0.64708,-0.106656][-0.764005,-1.96461,-1.05156][-0.175111,-0.951082,-0.254517][0.748986,0.64222,0.0217943][-0.40166,-1.96461,-1.23619][-0.08789,-0.951082,-0.296172][0.715423,0.64222,0.113406][-0.40166,-1.96461,-1.23619][-0.08789,-0.951082,-0.296172][0.715423,0.64222,0.113406][-0.302783,-2.01529,-0.931876][-0.0243604,-0.995548,-0.0910546][0.706264,0.64708,-0.037596][-0.575929,-2.01529,-0.792701][-0.0513055,-0.995548,-0.0790703][0.731565,0.64708,-0.106656][-0.7927,-2.01529,-0.575931][-0.0732284,-0.995548,-0.059346][0.751644,0.64708,-0.214219][-1.05156,-1.96461,-0.764006][-0.24519,-0.951082,-0.187948][0.775621,0.64222,-0.120894][-0.764005,-1.96461,-1.05156][-0.175111,-0.951082,-0.254517][0.748986,0.64222,0.0217943][-0.764005,-1.96461,-1.05156][-0.175111,-0.951082,-0.254517][0.748986,0.64222,0.0217943][-0.575929,-2.01529,-0.792701][-0.0513055,-0.995548,-0.0790703][0.731565,0.64708,-0.106656][-0.7927,-2.01529,-0.575931][-0.0732284,-0.995548,-0.059346][0.751644,0.64708,-0.214219][-0.931874,-2.01529,-0.302785][-0.0879833,-0.995548,-0.0338126][0.764535,0.64708,-0.349756][-1.23619,-1.96461,-0.401662][-0.291269,-0.951082,-0.102981][0.792722,0.64222,-0.300692][-1.05156,-1.96461,-0.764006][-0.24519,-0.951082,-0.187948][0.775621,0.64222,-0.120894][-1.05156,-1.96461,-0.764006][-0.24519,-0.951082,-0.187948][0.775621,0.64222,-0.120894][-0.7927,-2.01529,-0.575931][-0.0732284,-0.995548,-0.059346][0.751644,0.64708,-0.214219][-0.931874,-2.01529,-0.302785][-0.0879833,-0.995548,-0.0338126][0.764535,0.64708,-0.349756][-0.979831,-2.01529,1.50812e-007][-0.0941258,-0.995548,-0.00496935][0.768977,0.64708,-0.5][-1.2998,-1.96461,1.7657e-007][-0.308836,-0.951082,-0.0079339][0.798615,0.64222,-0.5][-1.23619,-1.96461,-0.401662][-0.291269,-0.951082,-0.102981][0.792722,0.64222,-0.300692][-1.23619,-1.96461,-0.401662][-0.291269,-0.951082,-0.102981][0.792722,0.64222,-0.300692][-0.931874,-2.01529,-0.302785][-0.0879833,-0.995548,-0.0338126][0.764535,0.64708,-0.349756][-0.979831,-2.01529,1.50812e-007][-0.0941258,-0.995548,-0.00496935][0.768977,0.64708,-0.5][-0.931874,-2.01529,0.302785][-0.0910545,-0.995548,0.0243603][0.320641,0.816806,0.349756][-1.23619,-1.96461,0.401662][-0.296172,-0.951082,0.08789][0.317085,0.800939,0.300692][-1.2998,-1.96461,1.7657e-007][-0.308836,-0.951082,-0.0079339][0.317085,0.797621,0.5][-1.2998,-1.96461,1.7657e-007][-0.308836,-0.951082,-0.0079339][0.317085,0.797621,0.5][-0.979831,-2.01529,1.50812e-007][-0.0941258,-0.995548,-0.00496935][0.320641,0.814306,0.5][-0.931874,-2.01529,0.302785][-0.0910545,-0.995548,0.0243603][0.320641,0.816806,0.349756][-0.792699,-2.01529,0.575931][-0.0790702,-0.995548,0.0513054][0.320641,0.824063,0.214218][-1.05156,-1.96461,0.764006][-0.254517,-0.951082,0.175111][0.317085,0.810565,0.120894][-1.23619,-1.96461,0.401662][-0.296172,-0.951082,0.08789][0.317085,0.800939,0.300692][-1.23619,-1.96461,0.401662][-0.296172,-0.951082,0.08789][0.317085,0.800939,0.300692][-0.931874,-2.01529,0.302785][-0.0910545,-0.995548,0.0243603][0.320641,0.816806,0.349756][-0.792699,-2.01529,0.575931][-0.0790702,-0.995548,0.0513054][0.320641,0.824063,0.214218][-0.575929,-2.01529,0.792701][-0.059346,-0.995548,0.0732284][0.320641,0.835366,0.106656][-0.764005,-1.96461,1.05156][-0.187948,-0.951082,0.24519][0.317085,0.825559,-0.0217943][-1.05156,-1.96461,0.764006][-0.254517,-0.951082,0.175111][0.317085,0.810565,0.120894][-1.05156,-1.96461,0.764006][-0.254517,-0.951082,0.175111][0.317085,0.810565,0.120894][-0.792699,-2.01529,0.575931][-0.0790702,-0.995548,0.0513054][0.320641,0.824063,0.214218][-0.575929,-2.01529,0.792701][-0.059346,-0.995548,0.0732284][0.320641,0.835366,0.106656][-0.302783,-2.01529,0.931876][-0.0338126,-0.995548,0.0879833][0.320641,0.849609,0.037596][-0.40166,-1.96461,1.23619][-0.102981,-0.951082,0.291269][0.317085,0.844453,-0.113406][-0.764005,-1.96461,1.05156][-0.187948,-0.951082,0.24519][0.317085,0.825559,-0.0217943][-0.764005,-1.96461,1.05156][-0.187948,-0.951082,0.24519][0.317085,0.825559,-0.0217943][-0.575929,-2.01529,0.792701][-0.059346,-0.995548,0.0732284][0.320641,0.835366,0.106656][-0.302783,-2.01529,0.931876][-0.0338126,-0.995548,0.0879833][0.320641,0.849609,0.037596][1.66893e-006,-2.01529,0.979832][-0.00496935,-0.995548,0.0941257][0.320641,0.865397,0.0137997][1.78814e-006,-1.96461,1.29981][-0.00793389,-0.951082,0.308836][0.317085,0.865397,-0.144973][-0.40166,-1.96461,1.23619][-0.102981,-0.951082,0.291269][0.317085,0.844453,-0.113406][-0.40166,-1.96461,1.23619][-0.102981,-0.951082,0.291269][0.317085,0.844453,-0.113406][-0.302783,-2.01529,0.931876][-0.0338126,-0.995548,0.0879833][0.320641,0.849609,0.037596][1.66893e-006,-2.01529,0.979832][-0.00496935,-0.995548,0.0941257][0.320641,0.865397,0.0137997][0.302786,-2.01529,0.931876][0.0243603,-0.995548,0.0910545][0.320641,0.881185,0.037596][0.401663,-1.96461,1.23619][0.0878901,-0.951082,0.296172][0.317085,0.88634,-0.113406][1.78814e-006,-1.96461,1.29981][-0.00793389,-0.951082,0.308836][0.317085,0.865397,-0.144973][1.78814e-006,-1.96461,1.29981][-0.00793389,-0.951082,0.308836][0.317085,0.865397,-0.144973][1.66893e-006,-2.01529,0.979832][-0.00496935,-0.995548,0.0941257][0.320641,0.865397,0.0137997][0.302786,-2.01529,0.931876][0.0243603,-0.995548,0.0910545][0.320641,0.881185,0.037596][0.575933,-2.01529,0.792701][0.0513055,-0.995548,0.0790702][0.320641,0.895427,0.106656][0.764008,-1.96461,1.05156][0.175111,-0.951082,0.254517][0.317085,0.905234,-0.0217941][0.401663,-1.96461,1.23619][0.0878901,-0.951082,0.296172][0.317085,0.88634,-0.113406][0.401663,-1.96461,1.23619][0.0878901,-0.951082,0.296172][0.317085,0.88634,-0.113406][0.302786,-2.01529,0.931876][0.0243603,-0.995548,0.0910545][0.320641,0.881185,0.037596][0.575933,-2.01529,0.792701][0.0513055,-0.995548,0.0790702][0.320641,0.895427,0.106656][0.792703,-2.01529,0.575931][0.0732284,-0.995548,0.059346][0.320641,0.90673,0.214219][1.05157,-1.96461,0.764006][0.24519,-0.951082,0.187948][0.317085,0.920228,0.120894][0.764008,-1.96461,1.05156][0.175111,-0.951082,0.254517][0.317085,0.905234,-0.0217941][0.764008,-1.96461,1.05156][0.175111,-0.951082,0.254517][0.317085,0.905234,-0.0217941][0.575933,-2.01529,0.792701][0.0513055,-0.995548,0.0790702][0.320641,0.895427,0.106656][0.792703,-2.01529,0.575931][0.0732284,-0.995548,0.059346][0.320641,0.90673,0.214219][0.931877,-2.01529,0.302785][0.0879834,-0.995548,0.0338126][0.320641,0.913987,0.349756][1.23619,-1.96461,0.401662][0.291269,-0.951082,0.102981][0.317085,0.929855,0.300692][1.05157,-1.96461,0.764006][0.24519,-0.951082,0.187948][0.317085,0.920228,0.120894][1.05157,-1.96461,0.764006][0.24519,-0.951082,0.187948][0.317085,0.920228,0.120894][0.792703,-2.01529,0.575931][0.0732284,-0.995548,0.059346][0.320641,0.90673,0.214219][0.931877,-2.01529,0.302785][0.0879834,-0.995548,0.0338126][0.320641,0.913987,0.349756][0.979834,-2.01529,0][0.0941258,-0.995548,0.00496936][0.320641,0.916488,0.5][1.29981,-1.96461,0][0.308836,-0.951082,0.00793392][0.317085,0.933172,0.5][1.23619,-1.96461,0.401662][0.291269,-0.951082,0.102981][0.317085,0.929855,0.300692][1.23619,-1.96461,0.401662][0.291269,-0.951082,0.102981][0.317085,0.929855,0.300692][0.931877,-2.01529,0.302785][0.0879834,-0.995548,0.0338126][0.320641,0.913987,0.349756][0.979834,-2.01529,0][0.0941258,-0.995548,0.00496936][0.320641,0.916488,0.5][0.979834,-2.01529,0][0.0941258,-0.995548,0.00496936][0.587458,0.64708,-0.5][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][0.931877,-2.01529,-0.302785][0.0910546,-0.995548,-0.0243603][0.591901,0.64708,-0.349756][0.931877,-2.01529,-0.302785][0.0910546,-0.995548,-0.0243603][0.591901,0.64708,-0.349756][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][0.792703,-2.01529,-0.575931][0.0790703,-0.995548,-0.0513054][0.604792,0.64708,-0.214219][0.792703,-2.01529,-0.575931][0.0790703,-0.995548,-0.0513054][0.604792,0.64708,-0.214219][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][0.575933,-2.01529,-0.792701][0.059346,-0.995548,-0.0732284][0.624871,0.64708,-0.106656][0.575933,-2.01529,-0.792701][0.059346,-0.995548,-0.0732284][0.624871,0.64708,-0.106656][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][0.302786,-2.01529,-0.931876][0.0338126,-0.995548,-0.0879833][0.650172,0.64708,-0.037596][0.302786,-2.01529,-0.931876][0.0338126,-0.995548,-0.0879833][0.650172,0.64708,-0.037596][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][1.54972e-006,-2.01529,-0.979832][0.00496935,-0.995548,-0.0941258][0.678218,0.64708,-0.0137997][1.54972e-006,-2.01529,-0.979832][0.00496935,-0.995548,-0.0941258][0.678218,0.64708,-0.0137997][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][-0.302783,-2.01529,-0.931876][-0.0243604,-0.995548,-0.0910546][0.706264,0.64708,-0.037596][-0.302783,-2.01529,-0.931876][-0.0243604,-0.995548,-0.0910546][0.706264,0.64708,-0.037596][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][-0.575929,-2.01529,-0.792701][-0.0513055,-0.995548,-0.0790703][0.731565,0.64708,-0.106656][-0.575929,-2.01529,-0.792701][-0.0513055,-0.995548,-0.0790703][0.731565,0.64708,-0.106656][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][-0.7927,-2.01529,-0.575931][-0.0732284,-0.995548,-0.059346][0.751644,0.64708,-0.214219][-0.7927,-2.01529,-0.575931][-0.0732284,-0.995548,-0.059346][0.751644,0.64708,-0.214219][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][-0.931874,-2.01529,-0.302785][-0.0879833,-0.995548,-0.0338126][0.764535,0.64708,-0.349756][-0.931874,-2.01529,-0.302785][-0.0879833,-0.995548,-0.0338126][0.764535,0.64708,-0.349756][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][-0.979831,-2.01529,1.50812e-007][-0.0941258,-0.995548,-0.00496935][0.768977,0.64708,-0.5][-0.979831,-2.01529,1.50812e-007][-0.0941258,-0.995548,-0.00496935][0.320641,0.814306,0.5][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][-0.931874,-2.01529,0.302785][-0.0910545,-0.995548,0.0243603][0.320641,0.816806,0.349756][-0.931874,-2.01529,0.302785][-0.0910545,-0.995548,0.0243603][0.320641,0.816806,0.349756][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][-0.792699,-2.01529,0.575931][-0.0790702,-0.995548,0.0513054][0.320641,0.824063,0.214218][-0.792699,-2.01529,0.575931][-0.0790702,-0.995548,0.0513054][0.320641,0.824063,0.214218][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][-0.575929,-2.01529,0.792701][-0.059346,-0.995548,0.0732284][0.320641,0.835366,0.106656][-0.575929,-2.01529,0.792701][-0.059346,-0.995548,0.0732284][0.320641,0.835366,0.106656][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][-0.302783,-2.01529,0.931876][-0.0338126,-0.995548,0.0879833][0.320641,0.849609,0.037596][-0.302783,-2.01529,0.931876][-0.0338126,-0.995548,0.0879833][0.320641,0.849609,0.037596][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][1.66893e-006,-2.01529,0.979832][-0.00496935,-0.995548,0.0941257][0.320641,0.865397,0.0137997][1.66893e-006,-2.01529,0.979832][-0.00496935,-0.995548,0.0941257][0.320641,0.865397,0.0137997][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][0.302786,-2.01529,0.931876][0.0243603,-0.995548,0.0910545][0.320641,0.881185,0.037596][0.302786,-2.01529,0.931876][0.0243603,-0.995548,0.0910545][0.320641,0.881185,0.037596][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][0.575933,-2.01529,0.792701][0.0513055,-0.995548,0.0790702][0.320641,0.895427,0.106656][0.575933,-2.01529,0.792701][0.0513055,-0.995548,0.0790702][0.320641,0.895427,0.106656][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][0.792703,-2.01529,0.575931][0.0732284,-0.995548,0.059346][0.320641,0.90673,0.214219][0.792703,-2.01529,0.575931][0.0732284,-0.995548,0.059346][0.320641,0.90673,0.214219][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][0.931877,-2.01529,0.302785][0.0879834,-0.995548,0.0338126][0.320641,0.913987,0.349756][0.931877,-2.01529,0.302785][0.0879834,-0.995548,0.0338126][0.320641,0.913987,0.349756][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][0.979834,-2.01529,0][0.0941258,-0.995548,0.00496936][0.320641,0.916488,0.5] \ No newline at end of file diff --git a/cut/charcustom/hats/sounds/Activation.wav b/charcustom/hats/sounds/Activation.wav similarity index 100% rename from cut/charcustom/hats/sounds/Activation.wav rename to charcustom/hats/sounds/Activation.wav diff --git a/cut/charcustom/hats/sounds/Katon.mp3 b/charcustom/hats/sounds/Katon.mp3 similarity index 100% rename from cut/charcustom/hats/sounds/Katon.mp3 rename to charcustom/hats/sounds/Katon.mp3 diff --git a/cut/charcustom/hats/sounds/gravityhammerswing.mp3 b/charcustom/hats/sounds/gravityhammerswing.mp3 similarity index 100% rename from cut/charcustom/hats/sounds/gravityhammerswing.mp3 rename to charcustom/hats/sounds/gravityhammerswing.mp3 diff --git a/cut/charcustom/hats/sounds/hurray.wav b/charcustom/hats/sounds/hurray.wav similarity index 100% rename from cut/charcustom/hats/sounds/hurray.wav rename to charcustom/hats/sounds/hurray.wav diff --git a/charcustom/hats/textures/ArrowHat.png b/charcustom/hats/textures/ArrowHat.png new file mode 100644 index 0000000..6728e1c Binary files /dev/null and b/charcustom/hats/textures/ArrowHat.png differ diff --git a/charcustom/hats/textures/BiggerHead.png b/charcustom/hats/textures/BiggerHead.png new file mode 100644 index 0000000..5673525 Binary files /dev/null and b/charcustom/hats/textures/BiggerHead.png differ diff --git a/charcustom/hats/textures/Bighead.png b/charcustom/hats/textures/Bighead.png new file mode 100644 index 0000000..db9eac1 Binary files /dev/null and b/charcustom/hats/textures/Bighead.png differ diff --git a/charcustom/hats/textures/BusinessFedora.png b/charcustom/hats/textures/BusinessFedora.png new file mode 100644 index 0000000..981852f Binary files /dev/null and b/charcustom/hats/textures/BusinessFedora.png differ diff --git a/charcustom/hats/textures/ChristmasBaseballCap.png b/charcustom/hats/textures/ChristmasBaseballCap.png new file mode 100644 index 0000000..e1db568 Binary files /dev/null and b/charcustom/hats/textures/ChristmasBaseballCap.png differ diff --git a/charcustom/hats/textures/CrimsonCatseye.png b/charcustom/hats/textures/CrimsonCatseye.png new file mode 100644 index 0000000..7238d61 Binary files /dev/null and b/charcustom/hats/textures/CrimsonCatseye.png differ diff --git a/charcustom/hats/textures/EmeraldEye.png b/charcustom/hats/textures/EmeraldEye.png new file mode 100644 index 0000000..9abc70a Binary files /dev/null and b/charcustom/hats/textures/EmeraldEye.png differ diff --git a/charcustom/hats/textures/EvilDuck.png b/charcustom/hats/textures/EvilDuck.png new file mode 100644 index 0000000..ae423b8 Binary files /dev/null and b/charcustom/hats/textures/EvilDuck.png differ diff --git a/charcustom/hats/textures/FirefighterHat.png b/charcustom/hats/textures/FirefighterHat.png new file mode 100644 index 0000000..10f2b0d Binary files /dev/null and b/charcustom/hats/textures/FirefighterHat.png differ diff --git a/charcustom/hats/textures/GoldTeapot.png b/charcustom/hats/textures/GoldTeapot.png new file mode 100644 index 0000000..b993ac7 Binary files /dev/null and b/charcustom/hats/textures/GoldTeapot.png differ diff --git a/charcustom/hats/textures/HalloweenBaseballCap.png b/charcustom/hats/textures/HalloweenBaseballCap.png new file mode 100644 index 0000000..ffb30ad Binary files /dev/null and b/charcustom/hats/textures/HalloweenBaseballCap.png differ diff --git a/charcustom/hats/textures/HalloweenSantaHat.png b/charcustom/hats/textures/HalloweenSantaHat.png new file mode 100644 index 0000000..fa3974e Binary files /dev/null and b/charcustom/hats/textures/HalloweenSantaHat.png differ diff --git a/charcustom/hats/textures/HalloweenSombrero.png b/charcustom/hats/textures/HalloweenSombrero.png new file mode 100644 index 0000000..64082dd Binary files /dev/null and b/charcustom/hats/textures/HalloweenSombrero.png differ diff --git a/charcustom/hats/textures/Lightbulb.png b/charcustom/hats/textures/Lightbulb.png new file mode 100644 index 0000000..4f27db1 Binary files /dev/null and b/charcustom/hats/textures/Lightbulb.png differ diff --git a/charcustom/hats/textures/PaperBag.png b/charcustom/hats/textures/PaperBag.png new file mode 100644 index 0000000..fe62059 Binary files /dev/null and b/charcustom/hats/textures/PaperBag.png differ diff --git a/charcustom/hats/textures/PurpleBaseballCap.png b/charcustom/hats/textures/PurpleBaseballCap.png new file mode 100644 index 0000000..69fc140 Binary files /dev/null and b/charcustom/hats/textures/PurpleBaseballCap.png differ diff --git a/charcustom/hats/textures/RedRobloxCap.png b/charcustom/hats/textures/RedRobloxCap.png new file mode 100644 index 0000000..5206df0 Binary files /dev/null and b/charcustom/hats/textures/RedRobloxCap.png differ diff --git a/charcustom/hats/textures/RubberDuckie.png b/charcustom/hats/textures/RubberDuckie.png new file mode 100644 index 0000000..a623b4f Binary files /dev/null and b/charcustom/hats/textures/RubberDuckie.png differ diff --git a/charcustom/hats/textures/SantaHat.png b/charcustom/hats/textures/SantaHat.png new file mode 100644 index 0000000..df6ef9d Binary files /dev/null and b/charcustom/hats/textures/SantaHat.png differ diff --git a/charcustom/hats/textures/SapphireEye.png b/charcustom/hats/textures/SapphireEye.png new file mode 100644 index 0000000..4b87536 Binary files /dev/null and b/charcustom/hats/textures/SapphireEye.png differ diff --git a/cut/charcustom/hats/textures/Satellite.png b/charcustom/hats/textures/Satellite.png similarity index 100% rename from cut/charcustom/hats/textures/Satellite.png rename to charcustom/hats/textures/Satellite.png diff --git a/charcustom/hats/textures/Shaggy.png b/charcustom/hats/textures/Shaggy.png new file mode 100644 index 0000000..559e69e Binary files /dev/null and b/charcustom/hats/textures/Shaggy.png differ diff --git a/charcustom/hats/textures/SpaceHat.png b/charcustom/hats/textures/SpaceHat.png new file mode 100644 index 0000000..e878fac Binary files /dev/null and b/charcustom/hats/textures/SpaceHat.png differ diff --git a/charcustom/hats/textures/StageProp.png b/charcustom/hats/textures/StageProp.png new file mode 100644 index 0000000..1f3b1fc Binary files /dev/null and b/charcustom/hats/textures/StageProp.png differ diff --git a/charcustom/hats/textures/Swordpack.png b/charcustom/hats/textures/Swordpack.png new file mode 100644 index 0000000..e889a90 Binary files /dev/null and b/charcustom/hats/textures/Swordpack.png differ diff --git a/charcustom/hats/textures/TeapotTurret.png b/charcustom/hats/textures/TeapotTurret.png new file mode 100644 index 0000000..df6dcbe Binary files /dev/null and b/charcustom/hats/textures/TeapotTurret.png differ diff --git a/charcustom/hats/textures/YellowBaseballCap.png b/charcustom/hats/textures/YellowBaseballCap.png new file mode 100644 index 0000000..f3bbd78 Binary files /dev/null and b/charcustom/hats/textures/YellowBaseballCap.png differ diff --git a/cut/charcustom/hats/textures/gravityhammer.png b/charcustom/hats/textures/gravityhammer.png similarity index 100% rename from cut/charcustom/hats/textures/gravityhammer.png rename to charcustom/hats/textures/gravityhammer.png diff --git a/cut/charcustom/hats/textures/gravityhammericon.png b/charcustom/hats/textures/gravityhammericon.png similarity index 100% rename from cut/charcustom/hats/textures/gravityhammericon.png rename to charcustom/hats/textures/gravityhammericon.png