package Savage.AircraftHelicopters.Mi24HindRussia;

import org.web3d.x3d.jsail.Core.*;
import org.web3d.x3d.jsail.EnvironmentalEffects.*;
import org.web3d.x3d.jsail.fields.*;
import org.web3d.x3d.jsail.Geometry3D.*;
import org.web3d.x3d.jsail.Grouping.*;
import org.web3d.x3d.jsail.Navigation.*;
import org.web3d.x3d.jsail.Rendering.*;
import org.web3d.x3d.jsail.Shape.*;
import org.web3d.x3d.jsail.Texturing.*;

// Javadoc metadata annotations follow, see below for X3DJSAIL Java source code.
/**
 * <p> Soviet Mi-24 Hind Attack Helicopter. </p>
 <p> Related links: Catalog page <a href="../../../../AircraftHelicopters/Mi24HindRussia/Mi24Index.html" target="_blank">Mi24</a>,  source <a href="../../../../AircraftHelicopters/Mi24HindRussia/Mi24.java">Mi24.java</a>, <a href="https://www.web3d.org/x3d/content/examples/X3dResources.html" target="_blank">X3D Resources</a>, <a href="https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html" target="_blank">X3D Scene Authoring Hints</a>, and <a href="https://www.web3d.org/x3d/content/X3dTooltips.html" target="_blank">X3D Tooltips</a>. </p>
	<table style="color:black; border:0px solid; border-spacing:10px 0px;">
        <caption>Scene Meta Information</caption>
		<tr style="background-color:silver; border-color:silver;">
			<td style="text-align:center; padding:10px 0px;"><i>meta tags</i></td>
			<td style="text-align:left;   padding:10px 0px;">&nbsp; Document Metadata </td>
		</tr>

		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> title </i> </td>
			<td> <a href="../../../../AircraftHelicopters/Mi24HindRussia/Mi24.x3d">Mi24.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> description </i> </td>
			<td> Soviet Mi-24 Hind Attack Helicopter </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> creator </i> </td>
			<td> Mr. D. </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> created </i> </td>
			<td> TODO </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> modified </i> </td>
			<td> 20 October 2019 </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> reference </i> </td>
			<td> <a href="http://3dr.adlnet.gov/Public/Model.aspx?ContentObjectID=adl:620" target="_blank">http://3dr.adlnet.gov/Public/Model.aspx?ContentObjectID=adl:620</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> reference </i> </td>
			<td> <a href="https://en.wikipedia.org/wiki/Mil_Mi-24" target="_blank">https://en.wikipedia.org/wiki/Mil_Mi-24</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> reference </i> </td>
			<td> <a href="https://www.fas.org/man/dod-101/sys/ac/row/mi-24.htm" target="_blank">https://www.fas.org/man/dod-101/sys/ac/row/mi-24.htm</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> identifier </i> </td>
			<td> <a href="https://www.web3d.org/x3d/content/examples/Savage/AircraftHelicopters/Mi24HindRussia/Mi24.x3d" target="_blank">https://www.web3d.org/x3d/content/examples/Savage/AircraftHelicopters/Mi24HindRussia/Mi24.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> generator </i> </td>
			<td> 3DS Max </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> license </i> </td>
			<td> <a href="../../../../AircraftHelicopters/Mi24HindRussia/../../license.html">../../license.html</a> </td>
		</tr>
		<tr style="background-color:silver; border-color:silver;">
			<td style="text-align:center;" colspan="2">  &nbsp; </td>
		</tr>
	</table>

	<p>
		This program uses the
		<a href="https://www.web3d.org/specifications/java/X3DJSAIL.html" target="_blank">X3D Java Scene Access Interface Library (X3DJSAIL)</a>.
		It has been produced using the 
		<a href="https://www.web3d.org/x3d/stylesheets/X3dToJava.xslt" target="_blank">X3dToJava.xslt</a>
		stylesheet
	       (<a href="https://sourceforge.net/p/x3d/code/HEAD/tree/www.web3d.org/x3d/stylesheets/X3dToJava.xslt" target="_blank">version control</a>)
                which is used to create Java source code from an original <code>.x3d</code> model.
	</p>

	* @author Mr. D.
 */

public class Mi24
{
	/** Default constructor to create this object. */
	public Mi24 ()
	{
	  initialize();
	}

	/** Create and initialize the X3D model for this object. */
	public final void initialize()
	{
            try { // catch-all
  x3dModel = new X3D().setProfile(X3D.PROFILE_INTERCHANGE).setVersion(X3D.VERSION_3_3)
  .setHead(new head()
    .addMeta(new meta().setName(meta.NAME_TITLE      ).setContent("Mi24.x3d"))
    .addMeta(new meta().setName(meta.NAME_DESCRIPTION).setContent("Soviet Mi-24 Hind Attack Helicopter"))
    .addMeta(new meta().setName(meta.NAME_CREATOR    ).setContent("Mr. D."))
    .addMeta(new meta().setName(meta.NAME_CREATED    ).setContent(meta.NAME_TODO       ))
    .addMeta(new meta().setName(meta.NAME_MODIFIED   ).setContent("20 October 2019"))
    .addMeta(new meta().setName(meta.NAME_REFERENCE  ).setContent("http://3dr.adlnet.gov/Public/Model.aspx?ContentObjectID=adl:620"))
    .addMeta(new meta().setName(meta.NAME_REFERENCE  ).setContent("https://en.wikipedia.org/wiki/Mil_Mi-24"))
    .addMeta(new meta().setName(meta.NAME_REFERENCE  ).setContent("https://www.fas.org/man/dod-101/sys/ac/row/mi-24.htm"))
    .addMeta(new meta().setName(meta.NAME_IDENTIFIER ).setContent("https://www.web3d.org/x3d/content/examples/Savage/AircraftHelicopters/Mi24HindRussia/Mi24.x3d"))
    .addMeta(new meta().setName(meta.NAME_GENERATOR  ).setContent("3DS Max"))
    .addMeta(new meta().setName(meta.NAME_LICENSE    ).setContent("../../license.html")))
  .setScene(new Scene()
    .addChild(new WorldInfo().setTitle("Mi24.x3d"))
    .addChild(new Viewpoint().setDescription("Starboard side 25m").setPosition(0.0,0.0,25.0))
    .addChild(new Background().setSkyColor(new MFColor(new double[] {0.0,0.0,1.0})))
    .addComments(" Wikipedia: length 17.5m = model 24m * 0.73 ")
    .addChild(new Transform("Overall").setRotation(0.0,1.0,0.0,-1.5708).setScale(0.73,0.73,0.73).setTranslation(1.0,-1.5,0.0)
      .addChild(new Transform("Mi24").setTranslation(0.129,3.646,0.375)
        .addChild(new Shape()
          .setAppearance(new Appearance("_09_-_Default")
            .setMaterial(new Material().setDiffuseColor(0.588,0.588,0.588).setShininess(0.145).setSpecularColor(0.000,0.000,0.000).setTransparency(0.000))
            .setTexture(new ImageTexture().setUrl(new String[] {"Texture/Hind24.png","https://www.web3d.org/x3d/content/examples/Savage/AircraftHelicopters/Mi24HindRussia/Texture/Hind24.png"})))
          .setGeometry(new IndexedFaceSet("Mi24_0-GEOMETRY").setDEF("Mi24_0-GEOMETRY").setSolid(false).setCoordIndex(getMi24_0_GEOMETRY_6_19_coordIndex()).setNormalIndex(getMi24_0_GEOMETRY_6_19_normalIndex()).setTexCoordIndex(getMi24_0_GEOMETRY_6_19_texCoordIndex())
            .setCoord(new Coordinate().setPoint(getCoordinate_7_19_point()))
            .setNormal(new Normal().setVector(getNormal_7_20_vector()))
            .setTexCoord(new TextureCoordinate().setPoint(getTextureCoordinate_7_21_point()))))
        .addChild(new Shape()
          .setAppearance(new Appearance().setUSE("_09_-_Default"))
          .setGeometry(new IndexedFaceSet("Mi24_1-GEOMETRY").setDEF("Mi24_1-GEOMETRY").setSolid(false).setCoordIndex(getMi24_1_GEOMETRY_6_25_coordIndex()).setNormalIndex(getMi24_1_GEOMETRY_6_25_normalIndex()).setTexCoordIndex(getMi24_1_GEOMETRY_6_25_texCoordIndex())
            .setCoord(new Coordinate().setPoint(getCoordinate_7_25_point()))
            .setNormal(new Normal().setVector(getNormal_7_26_vector()))
            .setTexCoord(new TextureCoordinate().setPoint(getTextureCoordinate_7_27_point()))))
        .addChild(new Shape()
          .setAppearance(new Appearance().setUSE("_09_-_Default"))
          .setGeometry(new IndexedFaceSet("Mi24_2-GEOMETRY").setDEF("Mi24_2-GEOMETRY").setSolid(false).setCoordIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1}).setNormalIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1}).setTexCoordIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1})
            .setCoord(new Coordinate().setPoint(getCoordinate_7_31_point()))
            .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.160748,0.0,0.986995,-0.160748,0.854764,0.493497,-0.669950,0.642943,0.371202,-0.669950,0.642943,0.371202,-0.669950,0.0,0.742406,-0.160748,0.0,0.986995,-0.160748,0.854764,0.493497,-0.160748,0.854763,-0.493498,-0.669950,0.642942,-0.371204,-0.669950,0.642942,-0.371204,-0.669950,0.642943,0.371202,-0.160748,0.854764,0.493497,-0.160748,0.854763,-0.493498,-0.160748,0.0,-0.986995,-0.669951,0.0,-0.742405,-0.669951,0.0,-0.742405,-0.669950,0.642942,-0.371204,-0.160748,0.854763,-0.493498,-0.160748,0.0,-0.986995,-0.160748,-0.854763,-0.493498,-0.669950,-0.642942,-0.371204,-0.669950,-0.642942,-0.371204,-0.669951,0.0,-0.742405,-0.160748,0.0,-0.986995,-0.160748,-0.854763,-0.493498,-0.160748,-0.854764,0.493497,-0.669950,-0.642943,0.371202,-0.669950,-0.642943,0.371202,-0.669950,-0.642942,-0.371204,-0.160748,-0.854763,-0.493498,-0.160748,-0.854764,0.493497,-0.160748,0.0,0.986995,-0.669950,0.0,0.742406,-0.669950,0.0,0.742406,-0.669950,-0.642943,0.371202,-0.160748,-0.854764,0.493497})))
            .setTexCoord(new TextureCoordinate().setPoint(new MFVec2f(new double[] {0.098812,0.425634,0.098715,0.436857,0.027032,0.436232,0.027032,0.436232,0.027130,0.425008,0.098812,0.425634,0.099341,0.365104,0.099223,0.378534,0.027541,0.377908,0.027541,0.377908,0.027659,0.364478,0.099341,0.365104,0.099223,0.378534,0.099126,0.389757,0.027443,0.389131,0.027443,0.389131,0.027541,0.377908,0.099223,0.378534,0.099126,0.389757,0.099028,0.400981,0.027345,0.400355,0.027345,0.400355,0.027443,0.389131,0.099126,0.389757,0.099028,0.400981,0.098910,0.414410,0.027228,0.413785,0.027228,0.413785,0.027345,0.400355,0.099028,0.400981,0.098910,0.414410,0.098812,0.425634,0.027130,0.425008,0.027130,0.425008,0.027228,0.413785,0.098910,0.414410}))))))
      .addChild(new Transform("Mi24Brotor").setTranslation(0.130012,3.882666,0.385059)
        .addChild(new Shape()
          .setAppearance(new Appearance().setUSE("_09_-_Default"))
          .setGeometry(new IndexedFaceSet("Mi24Brotor_0-GEOMETRY").setDEF("Mi24Brotor_0-GEOMETRY").setSolid(false).setCoordIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1}).setNormalIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1}).setTexCoordIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1})
            .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {0.0,1.065905,0.0,0.161134,1.065905,0.078966,0.163427,1.065905,-0.081694,0.0,1.065905,0.0,0.068096,1.065905,0.193368,0.161134,1.065905,0.078966,0.0,1.065905,0.0,-0.066341,1.065905,0.194498,0.068096,1.065905,0.193368,0.0,1.065905,0.0,-0.163427,1.065905,0.081693,-0.066341,1.065905,0.194498,0.0,1.065905,0.0,-0.161134,1.065904,-0.078966,-0.163427,1.065905,0.081693,0.0,1.065905,0.0,-0.064451,1.065904,-0.193368,-0.161134,1.065904,-0.078966,0.0,1.065905,0.0,0.069986,1.065904,-0.194498,-0.064451,1.065904,-0.193368,0.0,1.065905,0.0,0.163427,1.065905,-0.081694,0.069986,1.065904,-0.194498})))
            .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0})))
            .setTexCoord(new TextureCoordinate().setPoint(new MFVec2f(new double[] {0.571902,0.956578,0.594711,0.933861,0.604159,0.956578,0.571902,0.956578,0.572518,0.924192,0.594711,0.933861,0.571902,0.956578,0.549709,0.933601,0.572518,0.924192,0.571902,0.956578,0.539645,0.956578,0.549709,0.933601,0.571902,0.956578,0.549093,0.979295,0.539645,0.956578,0.571902,0.956578,0.571902,0.988705,0.549093,0.979295,0.571902,0.956578,0.594711,0.979295,0.571902,0.988705,0.571902,0.956578,0.604159,0.956578,0.594711,0.979295})))))
        .addChild(new Shape()
          .setAppearance(new Appearance().setUSE("_09_-_Default"))
          .setGeometry(new IndexedFaceSet("Mi24Brotor_1-GEOMETRY").setDEF("Mi24Brotor_1-GEOMETRY").setSolid(false).setCoordIndex(getMi24Brotor_1_GEOMETRY_6_44_coordIndex()).setNormalIndex(getMi24Brotor_1_GEOMETRY_6_44_normalIndex()).setTexCoordIndex(getMi24Brotor_1_GEOMETRY_6_44_texCoordIndex())
            .setCoord(new Coordinate().setPoint(getCoordinate_7_44_point()))
            .setNormal(new Normal().setVector(getNormal_7_45_vector()))
            .setTexCoord(new TextureCoordinate().setPoint(getTextureCoordinate_7_46_point())))))
      .addChild(new Transform("Mi24Gun").setTranslation(0.129179,-0.208359,-6.619586)
        .addChild(new Shape()
          .setAppearance(new Appearance().setUSE("_09_-_Default"))
          .setGeometry(new IndexedFaceSet("Mi24Gun_0-GEOMETRY").setDEF("Mi24Gun_0-GEOMETRY").setSolid(false).setCoordIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1}).setNormalIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1}).setTexCoordIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1})
            .setCoord(new Coordinate().setPoint(getCoordinate_7_51_point()))
            .setNormal(new Normal().setVector(getNormal_7_52_vector()))
            .setTexCoord(new TextureCoordinate().setPoint(getTextureCoordinate_7_53_point())))))
      .addChild(new Transform("Mi24GunBall").setTranslation(0.129179,-0.154533,-6.511789)
        .addChild(new Shape()
          .setAppearance(new Appearance().setUSE("_09_-_Default"))
          .setGeometry(new IndexedFaceSet("Mi24GunBall_0-GEOMETRY").setDEF("Mi24GunBall_0-GEOMETRY").setSolid(false).setCoordIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,114,115,116,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,147,148,149,-1,150,151,152,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,162,163,164,-1,165,166,167,-1}).setNormalIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,114,115,116,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,147,148,149,-1,150,151,152,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,162,163,164,-1,165,166,167,-1}).setTexCoordIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,114,115,116,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,147,148,149,-1,150,151,152,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,162,163,164,-1,165,166,167,-1})
            .setCoord(new Coordinate().setPoint(getCoordinate_7_58_point()))
            .setNormal(new Normal().setVector(getNormal_7_59_vector()))
            .setTexCoord(new TextureCoordinate().setPoint(getTextureCoordinate_7_60_point())))))
      .addChild(new Transform("Mi24Trotor").setTranslation(-0.274626,4.569413,14.282905)
        .addChild(new Shape()
          .setAppearance(new Appearance().setUSE("_09_-_Default"))
          .setGeometry(new IndexedFaceSet("Mi24Trotor_0-GEOMETRY").setDEF("Mi24Trotor_0-GEOMETRY").setSolid(false).setCoordIndex(getMi24Trotor_0_GEOMETRY_6_65_coordIndex()).setNormalIndex(getMi24Trotor_0_GEOMETRY_6_65_normalIndex()).setTexCoordIndex(getMi24Trotor_0_GEOMETRY_6_65_texCoordIndex())
            .setCoord(new Coordinate().setPoint(getCoordinate_7_65_point()))
            .setNormal(new Normal().setVector(getNormal_7_66_vector()))
            .setTexCoord(new TextureCoordinate().setPoint(getTextureCoordinate_7_67_point()))))
        .addChild(new Shape()
          .setAppearance(new Appearance().setUSE("_09_-_Default"))
          .setGeometry(new IndexedFaceSet("Mi24Trotor_1-GEOMETRY").setDEF("Mi24Trotor_1-GEOMETRY").setSolid(false).setCoordIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1}).setNormalIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1}).setTexCoordIndex(new int[] {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1})
            .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-0.179887,0.0,-0.004652,-0.179887,0.0,0.157496,-0.179887,0.140892,0.074024,-0.179887,0.0,-0.004652,-0.179887,0.140892,0.074024,-0.179887,0.140892,-0.092434,-0.179887,0.0,-0.004652,-0.179887,0.140892,-0.092434,-0.179887,0.0,-0.171552,-0.179887,0.0,-0.004652,-0.179887,0.0,-0.171552,-0.179887,-0.140892,-0.092434,-0.179887,0.0,-0.004652,-0.179887,-0.140892,-0.092434,-0.179887,-0.140892,0.074024,-0.179887,0.0,-0.004652,-0.179887,-0.140892,0.074024,-0.179887,0.0,0.157496})))
            .setNormal(new Normal().setVector(new MFVec3f(new double[] {-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0})))
            .setTexCoord(new TextureCoordinate().setPoint(new MFVec2f(new double[] {0.581255,0.673847,0.623371,0.673847,0.602313,0.715963,0.581255,0.673847,0.602313,0.715963,0.560197,0.715963,0.581255,0.673847,0.560197,0.715963,0.539139,0.673847,0.581255,0.673847,0.539139,0.673847,0.560197,0.631731,0.581255,0.673847,0.560197,0.631731,0.602313,0.631731,0.581255,0.673847,0.602313,0.631731,0.623371,0.673847}))))))));
            }
            catch (Exception ex)
            {       
                System.err.println ("*** Further hints on X3DJSAIL errors and exceptions at");
                System.err.println ("*** https://www.web3d.org/specifications/java/X3DJSAIL.html");
                throw (ex);
            }
	}
	// end of initialize() method

		/** Define subarrays using type int[] */
		private int[] getMi24_0_GEOMETRY_6_19_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,114,115,116,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,147,148,149,-1,150,151,152,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,162,163,164,-1,165,166,167,-1,168,169,170,-1,171,172,173,-1,174,175,176,-1,177,178,179,-1,180,181,182,-1,183,184,185,-1,186,187,188,-1,189,190,191,-1,192,193,194,-1,195,196,197,-1,198,199,200,-1,201,202,203,-1,204,205,206,-1,207,208,209,-1,210,211,212,-1,213,214,215,-1,216,217,218,-1,219,220,221,-1,222,223,224,-1,225,226,227,-1,228,229,230,-1,231,232,233,-1,234,235,236,-1,237,238,239,-1,240,241,242,-1,243,244,245,-1,246,247,248,-1,249,250,251,-1,252,253,254,-1,255,256,257,-1,258,259,260,-1,261,262,263,-1,264,265,266,-1,267,268,269,-1,270,271,272,-1,273,274,275,-1,276,277,278,-1,279,280,281,-1,282,283,284,-1,285,286,287,-1,288,289,290,-1,291,292,293,-1,294,295,296,-1,297,298,299,-1,300,301,302,-1,303,304,305,-1,306,307,308,-1,309,310,311,-1,312,313,314,-1,315,316,317,-1,318,319,320,-1,321,322,323,-1,324,325,326,-1,327,328,329,-1,330,331,332,-1,333,334,335,-1,336,337,338,-1,339,340,341,-1,342,343,344,-1,345,346,347,-1,348,349,350,-1,351,352,353,-1,354,355,356,-1,357,358,359,-1,360,361,362,-1,363,364,365,-1,366,367,368,-1,369,370,371,-1,372,373,374,-1,375,376,377,-1,378,379,380,-1,381,382,383,-1,384,385,386,-1,387,388,389,-1,390,391,392,-1,393,394,395,-1,396,397,398,-1,399,400,401,-1,402,403,404,-1,405,406,407,-1,408,409,410,-1,411,412,413,-1,414,415,416,-1,417,418,419,-1,420,421,422,-1,423,424,425,-1,426,427,428,-1,429,430,431,-1,432,433,434,-1,435,436,437,-1,438,439,440,-1,441,442,443,-1,444,445,446,-1,447,448,449,-1,450,451,452,-1,453,454,455,-1,456,457,458,-1,459,460,461,-1,462,463,464,-1,465,466,467,-1,468,469,470,-1,471,472,473,-1,474,475,476,-1,477,478,479,-1,480,481,482,-1,483,484,485,-1,486,487,488,-1,489,490,491,-1,492,493,494,-1,495,496,497,-1,498,499,500,-1,501,502,503,-1,504,505,506,-1,507,508,509,-1,510,511,512,-1,513,514,515,-1,516,517,518,-1,519,520,521,-1,522,523,524,-1,525,526,527,-1,528,529,530,-1,531,532,533,-1,534,535,536,-1,537,538,539,-1,540,541,542,-1,543,544,545,-1,546,547,548,-1,549,550,551,-1,552,553,554,-1,555,556,557,-1,558,559,560,-1,561,562,563,-1,564,565,566,-1,567,568,569,-1,570,571,572,-1,573,574,575,-1,576,577,578,-1,579,580,581,-1,582,583,584,-1,585,586,587,-1,588,589,590,-1,591,592,593,-1,594,595,596,-1,597,598,599,-1,600,601,602,-1,603,604,605,-1,606,607,608,-1,609,610,611,-1,612,613,614,-1,615,616,617,-1,618,619,620,-1,621,622,623,-1,624,625,626,-1,627,628,629,-1,630,631,632,-1,633,634,635,-1,636,637,638,-1,639,640,641,-1,642,643,644,-1,645,646,647,-1,648,649,650,-1,651,652,653,-1,654,655,656,-1,657,658,659,-1,660,661,662,-1,663,664,665,-1,666,667,668,-1,669,670,671,-1,672,673,674,-1,675,676,677,-1,678,679,680,-1,681,682,683,-1,684,685,686,-1,687,688,689,-1,690,691,692,-1,693,694,695,-1,696,697,698,-1,699,700,701,-1,702,703,704,-1,705,706,707,-1,708,709,710,-1,711,712,713,-1,714,715,716,-1,717,718,719,-1,720,721,722,-1,723,724,725,-1,726,727,728,-1,729,730,731,-1,732,733,734,-1,735,736,737,-1,738,739,740,-1,741,742,743,-1,744,745,746,-1,747,748,749,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_coordIndex_2()
		{
			int[] value = {750,751,752,-1,753,754,755,-1,756,757,758,-1,759,760,761,-1,762,763,764,-1,765,766,767,-1,768,769,770,-1,771,772,773,-1,774,775,776,-1,777,778,779,-1,780,781,782,-1,783,784,785,-1,786,787,788,-1,789,790,791,-1,792,793,794,-1,795,796,797,-1,798,799,800,-1,801,802,803,-1,804,805,806,-1,807,808,809,-1,810,811,812,-1,813,814,815,-1,816,817,818,-1,819,820,821,-1,822,823,824,-1,825,826,827,-1,828,829,830,-1,831,832,833,-1,834,835,836,-1,837,838,839,-1,840,841,842,-1,843,844,845,-1,846,847,848,-1,849,850,851,-1,852,853,854,-1,855,856,857,-1,858,859,860,-1,861,862,863,-1,864,865,866,-1,867,868,869,-1,870,871,872,-1,873,874,875,-1,876,877,878,-1,879,880,881,-1,882,883,884,-1,885,886,887,-1,888,889,890,-1,891,892,893,-1,894,895,896,-1,897,898,899,-1,900,901,902,-1,903,904,905,-1,906,907,908,-1,909,910,911,-1,912,913,914,-1,915,916,917,-1,918,919,920,-1,921,922,923,-1,924,925,926,-1,927,928,929,-1,930,931,932,-1,933,934,935,-1,936,937,938,-1,939,940,941,-1,942,943,944,-1,945,946,947,-1,948,949,950,-1,951,952,953,-1,954,955,956,-1,957,958,959,-1,960,961,962,-1,963,964,965,-1,966,967,968,-1,969,970,971,-1,972,973,974,-1,975,976,977,-1,978,979,980,-1,981,982,983,-1,984,985,986,-1,987,988,989,-1,990,991,992,-1,993,994,995,-1,996,997,998,-1,999,1000,1001,-1,1002,1003,1004,-1,1005,1006,1007,-1,1008,1009,1010,-1,1011,1012,1013,-1,1014,1015,1016,-1,1017,1018,1019,-1,1020,1021,1022,-1,1023,1024,1025,-1,1026,1027,1028,-1,1029,1030,1031,-1,1032,1033,1034,-1,1035,1036,1037,-1,1038,1039,1040,-1,1041,1042,1043,-1,1044,1045,1046,-1,1047,1048,1049,-1,1050,1051,1052,-1,1053,1054,1055,-1,1056,1057,1058,-1,1059,1060,1061,-1,1062,1063,1064,-1,1065,1066,1067,-1,1068,1069,1070,-1,1071,1072,1073,-1,1074,1075,1076,-1,1077,1078,1079,-1,1080,1081,1082,-1,1083,1084,1085,-1,1086,1087,1088,-1,1089,1090,1091,-1,1092,1093,1094,-1,1095,1096,1097,-1,1098,1099,1100,-1,1101,1102,1103,-1,1104,1105,1106,-1,1107,1108,1109,-1,1110,1111,1112,-1,1113,1114,1115,-1,1116,1117,1118,-1,1119,1120,1121,-1,1122,1123,1124,-1,1125,1126,1127,-1,1128,1129,1130,-1,1131,1132,1133,-1,1134,1135,1136,-1,1137,1138,1139,-1,1140,1141,1142,-1,1143,1144,1145,-1,1146,1147,1148,-1,1149,1150,1151,-1,1152,1153,1154,-1,1155,1156,1157,-1,1158,1159,1160,-1,1161,1162,1163,-1,1164,1165,1166,-1,1167,1168,1169,-1,1170,1171,1172,-1,1173,1174,1175,-1,1176,1177,1178,-1,1179,1180,1181,-1,1182,1183,1184,-1,1185,1186,1187,-1,1188,1189,1190,-1,1191,1192,1193,-1,1194,1195,1196,-1,1197,1198,1199,-1,1200,1201,1202,-1,1203,1204,1205,-1,1206,1207,1208,-1,1209,1210,1211,-1,1212,1213,1214,-1,1215,1216,1217,-1,1218,1219,1220,-1,1221,1222,1223,-1,1224,1225,1226,-1,1227,1228,1229,-1,1230,1231,1232,-1,1233,1234,1235,-1,1236,1237,1238,-1,1239,1240,1241,-1,1242,1243,1244,-1,1245,1246,1247,-1,1248,1249,1250,-1,1251,1252,1253,-1,1254,1255,1256,-1,1257,1258,1259,-1,1260,1261,1262,-1,1263,1264,1265,-1,1266,1267,1268,-1,1269,1270,1271,-1,1272,1273,1274,-1,1275,1276,1277,-1,1278,1279,1280,-1,1281,1282,1283,-1,1284,1285,1286,-1,1287,1288,1289,-1,1290,1291,1292,-1,1293,1294,1295,-1,1296,1297,1298,-1,1299,1300,1301,-1,1302,1303,1304,-1,1305,1306,1307,-1,1308,1309,1310,-1,1311,1312,1313,-1,1314,1315,1316,-1,1317,1318,1319,-1,1320,1321,1322,-1,1323,1324,1325,-1,1326,1327,1328,-1,1329,1330,1331,-1,1332,1333,1334,-1,1335,1336,1337,-1,1338,1339,1340,-1,1341,1342,1343,-1,1344,1345,1346,-1,1347,1348,1349,-1,1350,1351,1352,-1,1353,1354,1355,-1,1356,1357,1358,-1,1359,1360,1361,-1,1362,1363,1364,-1,1365,1366,1367,-1,1368,1369,1370,-1,1371,1372,1373,-1,1374,1375,1376,-1,1377,1378,1379,-1,1380,1381,1382,-1,1383,1384,1385,-1,1386,1387,1388,-1,1389,1390,1391,-1,1392,1393,1394,-1,1395,1396,1397,-1,1398,1399,1400,-1,1401,1402,1403,-1,1404,1405,1406,-1,1407,1408,1409,-1,1410,1411,1412,-1,1413,1414,1415,-1,1416,1417,1418,-1,1419,1420,1421,-1,1422,1423,1424,-1,1425,1426,1427,-1,1428,1429,1430,-1,1431,1432,1433,-1,1434,1435,1436,-1,1437,1438,1439,-1,1440,1441,1442,-1,1443,1444,1445,-1,1446,1447,1448,-1,1449,1450,1451,-1,1452,1453,1454,-1,1455,1456,1457,-1,1458,1459,1460,-1,1461,1462,1463,-1,1464,1465,1466,-1,1467,1468,1469,-1,1470,1471,1472,-1,1473,1474,1475,-1,1476,1477,1478,-1,1479,1480,1481,-1,1482,1483,1484,-1,1485,1486,1487,-1,1488,1489,1490,-1,1491,1492,1493,-1,1494,1495,1496,-1,1497,1498,1499,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_coordIndex_3()
		{
			int[] value = {1500,1501,1502,-1,1503,1504,1505,-1,1506,1507,1508,-1,1509,1510,1511,-1,1512,1513,1514,-1,1515,1516,1517,-1,1518,1519,1520,-1,1521,1522,1523,-1,1524,1525,1526,-1,1527,1528,1529,-1,1530,1531,1532,-1,1533,1534,1535,-1,1536,1537,1538,-1,1539,1540,1541,-1,1542,1543,1544,-1,1545,1546,1547,-1,1548,1549,1550,-1,1551,1552,1553,-1,1554,1555,1556,-1,1557,1558,1559,-1,1560,1561,1562,-1,1563,1564,1565,-1,1566,1567,1568,-1,1569,1570,1571,-1,1572,1573,1574,-1,1575,1576,1577,-1,1578,1579,1580,-1,1581,1582,1583,-1,1584,1585,1586,-1,1587,1588,1589,-1,1590,1591,1592,-1,1593,1594,1595,-1,1596,1597,1598,-1,1599,1600,1601,-1,1602,1603,1604,-1,1605,1606,1607,-1,1608,1609,1610,-1,1611,1612,1613,-1,1614,1615,1616,-1,1617,1618,1619,-1,1620,1621,1622,-1,1623,1624,1625,-1,1626,1627,1628,-1,1629,1630,1631,-1,1632,1633,1634,-1,1635,1636,1637,-1,1638,1639,1640,-1,1641,1642,1643,-1,1644,1645,1646,-1,1647,1648,1649,-1,1650,1651,1652,-1,1653,1654,1655,-1,1656,1657,1658,-1,1659,1660,1661,-1,1662,1663,1664,-1,1665,1666,1667,-1,1668,1669,1670,-1,1671,1672,1673,-1,1674,1675,1676,-1,1677,1678,1679,-1,1680,1681,1682,-1,1683,1684,1685,-1,1686,1687,1688,-1,1689,1690,1691,-1,1692,1693,1694,-1,1695,1696,1697,-1,1698,1699,1700,-1,1701,1702,1703,-1,1704,1705,1706,-1,1707,1708,1709,-1,1710,1711,1712,-1,1713,1714,1715,-1,1716,1717,1718,-1,1719,1720,1721,-1,1722,1723,1724,-1,1725,1726,1727,-1,1728,1729,1730,-1,1731,1732,1733,-1,1734,1735,1736,-1,1737,1738,1739,-1,1740,1741,1742,-1,1743,1744,1745,-1,1746,1747,1748,-1,1749,1750,1751,-1,1752,1753,1754,-1,1755,1756,1757,-1,1758,1759,1760,-1,1761,1762,1763,-1,1764,1765,1766,-1,1767,1768,1769,-1,1770,1771,1772,-1,1773,1774,1775,-1,1776,1777,1778,-1,1779,1780,1781,-1,1782,1783,1784,-1,1785,1786,1787,-1,1788,1789,1790,-1,1791,1792,1793,-1,1794,1795,1796,-1,1797,1798,1799,-1,1800,1801,1802,-1,1803,1804,1805,-1,1806,1807,1808,-1,1809,1810,1811,-1,1812,1813,1814,-1,1815,1816,1817,-1,1818,1819,1820,-1,1821,1822,1823,-1,1824,1825,1826,-1,1827,1828,1829,-1,1830,1831,1832,-1,1833,1834,1835,-1,1836,1837,1838,-1,1839,1840,1841,-1,1842,1843,1844,-1,1845,1846,1847,-1,1848,1849,1850,-1,1851,1852,1853,-1,1854,1855,1856,-1,1857,1858,1859,-1,1860,1861,1862,-1,1863,1864,1865,-1,1866,1867,1868,-1,1869,1870,1871,-1,1872,1873,1874,-1,1875,1876,1877,-1,1878,1879,1880,-1,1881,1882,1883,-1,1884,1885,1886,-1,1887,1888,1889,-1,1890,1891,1892,-1,1893,1894,1895,-1,1896,1897,1898,-1,1899,1900,1901,-1,1902,1903,1904,-1,1905,1906,1907,-1,1908,1909,1910,-1,1911,1912,1913,-1,1914,1915,1916,-1,1917,1918,1919,-1,1920,1921,1922,-1,1923,1924,1925,-1,1926,1927,1928,-1,1929,1930,1931,-1,1932,1933,1934,-1,1935,1936,1937,-1,1938,1939,1940,-1,1941,1942,1943,-1,1944,1945,1946,-1,1947,1948,1949,-1,1950,1951,1952,-1,1953,1954,1955,-1,1956,1957,1958,-1,1959,1960,1961,-1,1962,1963,1964,-1,1965,1966,1967,-1,1968,1969,1970,-1,1971,1972,1973,-1,1974,1975,1976,-1,1977,1978,1979,-1,1980,1981,1982,-1,1983,1984,1985,-1,1986,1987,1988,-1,1989,1990,1991,-1,1992,1993,1994,-1,1995,1996,1997,-1,1998,1999,2000,-1,2001,2002,2003,-1,2004,2005,2006,-1,2007,2008,2009,-1,2010,2011,2012,-1,2013,2014,2015,-1,2016,2017,2018,-1,2019,2020,2021,-1,2022,2023,2024,-1,2025,2026,2027,-1,2028,2029,2030,-1,2031,2032,2033,-1,2034,2035,2036,-1,2037,2038,2039,-1,2040,2041,2042,-1,2043,2044,2045,-1,2046,2047,2048,-1,2049,2050,2051,-1,2052,2053,2054,-1,2055,2056,2057,-1,2058,2059,2060,-1,2061,2062,2063,-1,2064,2065,2066,-1,2067,2068,2069,-1,2070,2071,2072,-1,2073,2074,2075,-1,2076,2077,2078,-1,2079,2080,2081,-1,2082,2083,2084,-1,2085,2086,2087,-1,2088,2089,2090,-1,2091,2092,2093,-1,2094,2095,2096,-1,2097,2098,2099,-1,2100,2101,2102,-1,2103,2104,2105,-1,2106,2107,2108,-1,2109,2110,2111,-1,2112,2113,2114,-1,2115,2116,2117,-1,2118,2119,2120,-1,2121,2122,2123,-1,2124,2125,2126,-1,2127,2128,2129,-1,2130,2131,2132,-1,2133,2134,2135,-1,2136,2137,2138,-1,2139,2140,2141,-1,2142,2143,2144,-1,2145,2146,2147,-1,2148,2149,2150,-1,2151,2152,2153,-1,2154,2155,2156,-1,2157,2158,2159,-1,2160,2161,2162,-1,2163,2164,2165,-1,2166,2167,2168,-1,2169,2170,2171,-1,2172,2173,2174,-1,2175,2176,2177,-1,2178,2179,2180,-1,2181,2182,2183,-1,2184,2185,2186,-1,2187,2188,2189,-1,2190,2191,2192,-1,2193,2194,2195,-1,2196,2197,2198,-1,2199,2200,2201,-1,2202,2203,2204,-1,2205,2206,2207,-1,2208,2209,2210,-1,2211,2212,2213,-1,2214,2215,2216,-1,2217,2218,2219,-1,2220,2221,2222,-1,2223,2224,2225,-1,2226,2227,2228,-1,2229,2230,2231,-1,2232,2233,2234,-1,2235,2236,2237,-1,2238,2239,2240,-1,2241,2242,2243,-1,2244,2245,2246,-1,2247,2248,2249,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_coordIndex_4()
		{
			int[] value = {2250,2251,2252,-1,2253,2254,2255,-1,2256,2257,2258,-1,2259,2260,2261,-1,2262,2263,2264,-1,2265,2266,2267,-1,2268,2269,2270,-1,2271,2272,2273,-1,2274,2275,2276,-1,2277,2278,2279,-1,2280,2281,2282,-1,2283,2284,2285,-1,2286,2287,2288,-1,2289,2290,2291,-1,2292,2293,2294,-1,2295,2296,2297,-1,2298,2299,2300,-1,2301,2302,2303,-1,2304,2305,2306,-1,2307,2308,2309,-1,2310,2311,2312,-1,2313,2314,2315,-1,2316,2317,2318,-1,2319,2320,2321,-1,2322,2323,2324,-1,2325,2326,2327,-1,2328,2329,2330,-1,2331,2332,2333,-1,2334,2335,2336,-1,2337,2338,2339,-1,2340,2341,2342,-1,2343,2344,2345,-1,2346,2347,2348,-1,2349,2350,2351,-1,2352,2353,2354,-1,2355,2356,2357,-1,2358,2359,2360,-1,2361,2362,2363,-1,2364,2365,2366,-1,2367,2368,2369,-1,2370,2371,2372,-1,2373,2374,2375,-1,2376,2377,2378,-1,2379,2380,2381,-1,2382,2383,2384,-1,2385,2386,2387,-1,2388,2389,2390,-1,2391,2392,2393,-1,2394,2395,2396,-1,2397,2398,2399,-1,2400,2401,2402,-1,2403,2404,2405,-1,2406,2407,2408,-1,2409,2410,2411,-1,2412,2413,2414,-1,2415,2416,2417,-1,2418,2419,2420,-1,2421,2422,2423,-1,2424,2425,2426,-1,2427,2428,2429,-1,2430,2431,2432,-1,2433,2434,2435,-1,2436,2437,2438,-1,2439,2440,2441,-1,2442,2443,2444,-1,2445,2446,2447,-1,2448,2449,2450,-1,2451,2452,2453,-1,2454,2455,2456,-1,2457,2458,2459,-1,2460,2461,2462,-1,2463,2464,2465,-1,2466,2467,2468,-1,2469,2470,2471,-1,2472,2473,2474,-1,2475,2476,2477,-1,2478,2479,2480,-1,2481,2482,2483,-1,2484,2485,2486,-1,2487,2488,2489,-1,2490,2491,2492,-1,2493,2494,2495,-1,2496,2497,2498,-1,2499,2500,2501,-1,2502,2503,2504,-1,2505,2506,2507,-1,2508,2509,2510,-1,2511,2512,2513,-1,2514,2515,2516,-1,2517,2518,2519,-1,2520,2521,2522,-1,2523,2524,2525,-1,2526,2527,2528,-1,2529,2530,2531,-1,2532,2533,2534,-1,2535,2536,2537,-1,2538,2539,2540,-1,2541,2542,2543,-1,2544,2545,2546,-1,2547,2548,2549,-1,2550,2551,2552,-1,2553,2554,2555,-1,2556,2557,2558,-1,2559,2560,2561,-1,2562,2563,2564,-1,2565,2566,2567,-1,2568,2569,2570,-1,2571,2572,2573,-1,2574,2575,2576,-1,2577,2578,2579,-1,2580,2581,2582,-1,2583,2584,2585,-1,2586,2587,2588,-1,2589,2590,2591,-1,2592,2593,2594,-1,2595,2596,2597,-1,2598,2599,2600,-1,2601,2602,2603,-1,2604,2605,2606,-1,2607,2608,2609,-1,2610,2611,2612,-1,2613,2614,2615,-1,2616,2617,2618,-1,2619,2620,2621,-1,2622,2623,2624,-1,2625,2626,2627,-1,2628,2629,2630,-1,2631,2632,2633,-1,2634,2635,2636,-1,2637,2638,2639,-1,2640,2641,2642,-1,2643,2644,2645,-1,2646,2647,2648,-1,2649,2650,2651,-1,2652,2653,2654,-1,2655,2656,2657,-1,2658,2659,2660,-1,2661,2662,2663,-1,2664,2665,2666,-1,2667,2668,2669,-1,2670,2671,2672,-1,2673,2674,2675,-1,2676,2677,2678,-1,2679,2680,2681,-1,2682,2683,2684,-1,2685,2686,2687,-1,2688,2689,2690,-1,2691,2692,2693,-1,2694,2695,2696,-1,2697,2698,2699,-1,2700,2701,2702,-1,2703,2704,2705,-1,2706,2707,2708,-1,2709,2710,2711,-1,2712,2713,2714,-1,2715,2716,2717,-1,2718,2719,2720,-1,2721,2722,2723,-1,2724,2725,2726,-1,2727,2728,2729,-1,2730,2731,2732,-1,2733,2734,2735,-1,2736,2737,2738,-1,2739,2740,2741,-1,2742,2743,2744,-1,2745,2746,2747,-1,2748,2749,2750,-1,2751,2752,2753,-1,2754,2755,2756,-1,2757,2758,2759,-1,2760,2761,2762,-1,2763,2764,2765,-1,2766,2767,2768,-1,2769,2770,2771,-1,2772,2773,2774,-1,2775,2776,2777,-1,2778,2779,2780,-1,2781,2782,2783,-1,2784,2785,2786,-1,2787,2788,2789,-1,2790,2791,2792,-1,2793,2794,2795,-1,2796,2797,2798,-1,2799,2800,2801,-1,2802,2803,2804,-1,2805,2806,2807,-1,2808,2809,2810,-1,2811,2812,2813,-1,2814,2815,2816,-1,2817,2818,2819,-1,2820,2821,2822,-1,2823,2824,2825,-1,2826,2827,2828,-1,2829,2830,2831,-1,2832,2833,2834,-1,2835,2836,2837,-1,2838,2839,2840,-1,2841,2842,2843,-1,2844,2845,2846,-1,2847,2848,2849,-1,2850,2851,2852,-1,2853,2854,2855,-1,2856,2857,2858,-1,2859,2860,2861,-1,2862,2863,2864,-1,2865,2866,2867,-1,2868,2869,2870,-1,2871,2872,2873,-1,2874,2875,2876,-1,2877,2878,2879,-1,2880,2881,2882,-1,2883,2884,2885,-1,2886,2887,2888,-1,2889,2890,2891,-1,2892,2893,2894,-1,2895,2896,2897,-1,2898,2899,2900,-1,2901,2902,2903,-1,2904,2905,2906,-1,2907,2908,2909,-1,2910,2911,2912,-1,2913,2914,2915,-1,2916,2917,2918,-1,2919,2920,2921,-1,2922,2923,2924,-1,2925,2926,2927,-1,2928,2929,2930,-1,2931,2932,2933,-1,2934,2935,2936,-1,2937,2938,2939,-1,2940,2941,2942,-1,2943,2944,2945,-1,2946,2947,2948,-1,2949,2950,2951,-1,2952,2953,2954,-1,2955,2956,2957,-1,2958,2959,2960,-1,2961,2962,2963,-1,2964,2965,2966,-1,2967,2968,2969,-1,2970,2971,2972,-1,2973,2974,2975,-1,2976,2977,2978,-1,2979,2980,2981,-1,2982,2983,2984,-1,2985,2986,2987,-1,2988,2989,2990,-1,2991,2992,2993,-1,2994,2995,2996,-1,2997,2998,2999,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_coordIndex_5()
		{
			int[] value = {3000,3001,3002,-1,3003,3004,3005,-1,3006,3007,3008,-1,3009,3010,3011,-1,3012,3013,3014,-1,3015,3016,3017,-1,3018,3019,3020,-1,3021,3022,3023,-1,3024,3025,3026,-1,3027,3028,3029,-1,3030,3031,3032,-1,3033,3034,3035,-1,3036,3037,3038,-1,3039,3040,3041,-1,3042,3043,3044,-1,3045,3046,3047,-1,3048,3049,3050,-1,3051,3052,3053,-1,3054,3055,3056,-1,3057,3058,3059,-1,3060,3061,3062,-1,3063,3064,3065,-1,3066,3067,3068,-1,3069,3070,3071,-1,3072,3073,3074,-1,3075,3076,3077,-1,3078,3079,3080,-1,3081,3082,3083,-1,3084,3085,3086,-1,3087,3088,3089,-1,3090,3091,3092,-1,3093,3094,3095,-1,3096,3097,3098,-1,3099,3100,3101,-1,3102,3103,3104,-1,3105,3106,3107,-1,3108,3109,3110,-1,3111,3112,3113,-1,3114,3115,3116,-1,3117,3118,3119,-1,3120,3121,3122,-1,3123,3124,3125,-1,3126,3127,3128,-1,3129,3130,3131,-1,3132,3133,3134,-1,3135,3136,3137,-1,3138,3139,3140,-1,3141,3142,3143,-1,3144,3145,3146,-1,3147,3148,3149,-1,3150,3151,3152,-1,3153,3154,3155,-1,3156,3157,3158,-1,3159,3160,3161,-1,3162,3163,3164,-1,3165,3166,3167,-1,3168,3169,3170,-1,3171,3172,3173,-1,3174,3175,3176,-1,3177,3178,3179,-1,3180,3181,3182,-1,3183,3184,3185,-1,3186,3187,3188,-1,3189,3190,3191,-1,3192,3193,3194,-1,3195,3196,3197,-1,3198,3199,3200,-1,3201,3202,3203,-1,3204,3205,3206,-1,3207,3208,3209,-1,3210,3211,3212,-1,3213,3214,3215,-1,3216,3217,3218,-1,3219,3220,3221,-1,3222,3223,3224,-1,3225,3226,3227,-1,3228,3229,3230,-1,3231,3232,3233,-1,3234,3235,3236,-1,3237,3238,3239,-1,3240,3241,3242,-1,3243,3244,3245,-1,3246,3247,3248,-1,3249,3250,3251,-1,3252,3253,3254,-1,3255,3256,3257,-1,3258,3259,3260,-1,3261,3262,3263,-1,3264,3265,3266,-1,3267,3268,3269,-1,3270,3271,3272,-1,3273,3274,3275,-1,3276,3277,3278,-1,3279,3280,3281,-1,3282,3283,3284,-1,3285,3286,3287,-1,3288,3289,3290,-1,3291,3292,3293,-1,3294,3295,3296,-1,3297,3298,3299,-1,3300,3301,3302,-1,3303,3304,3305,-1,3306,3307,3308,-1,3309,3310,3311,-1,3312,3313,3314,-1,3315,3316,3317,-1,3318,3319,3320,-1,3321,3322,3323,-1,3324,3325,3326,-1,3327,3328,3329,-1,3330,3331,3332,-1,3333,3334,3335,-1,3336,3337,3338,-1,3339,3340,3341,-1,3342,3343,3344,-1,3345,3346,3347,-1,3348,3349,3350,-1,3351,3352,3353,-1,3354,3355,3356,-1,3357,3358,3359,-1,3360,3361,3362,-1,3363,3364,3365,-1,3366,3367,3368,-1,3369,3370,3371,-1,3372,3373,3374,-1,3375,3376,3377,-1,3378,3379,3380,-1,3381,3382,3383,-1,3384,3385,3386,-1,3387,3388,3389,-1,3390,3391,3392,-1,3393,3394,3395,-1,3396,3397,3398,-1,3399,3400,3401,-1,3402,3403,3404,-1,3405,3406,3407,-1,3408,3409,3410,-1,3411,3412,3413,-1,3414,3415,3416,-1,3417,3418,3419,-1,3420,3421,3422,-1,3423,3424,3425,-1,3426,3427,3428,-1,3429,3430,3431,-1,3432,3433,3434,-1,3435,3436,3437,-1,3438,3439,3440,-1,3441,3442,3443,-1,3444,3445,3446,-1,3447,3448,3449,-1,3450,3451,3452,-1,3453,3454,3455,-1,3456,3457,3458,-1,3459,3460,3461,-1,3462,3463,3464,-1,3465,3466,3467,-1,3468,3469,3470,-1,3471,3472,3473,-1,3474,3475,3476,-1,3477,3478,3479,-1,3480,3481,3482,-1,3483,3484,3485,-1,3486,3487,3488,-1,3489,3490,3491,-1,3492,3493,3494,-1,3495,3496,3497,-1,3498,3499,3500,-1,3501,3502,3503,-1,3504,3505,3506,-1,3507,3508,3509,-1,3510,3511,3512,-1,3513,3514,3515,-1,3516,3517,3518,-1,3519,3520,3521,-1,3522,3523,3524,-1,3525,3526,3527,-1,3528,3529,3530,-1,3531,3532,3533,-1,3534,3535,3536,-1,3537,3538,3539,-1,3540,3541,3542,-1,3543,3544,3545,-1,3546,3547,3548,-1,3549,3550,3551,-1,3552,3553,3554,-1,3555,3556,3557,-1,3558,3559,3560,-1,3561,3562,3563,-1,3564,3565,3566,-1,3567,3568,3569,-1,3570,3571,3572,-1,3573,3574,3575,-1,3576,3577,3578,-1,3579,3580,3581,-1,3582,3583,3584,-1,3585,3586,3587,-1,3588,3589,3590,-1,3591,3592,3593,-1,3594,3595,3596,-1,3597,3598,3599,-1,3600,3601,3602,-1,3603,3604,3605,-1,3606,3607,3608,-1,3609,3610,3611,-1,3612,3613,3614,-1,3615,3616,3617,-1,3618,3619,3620,-1,3621,3622,3623,-1,3624,3625,3626,-1,3627,3628,3629,-1,3630,3631,3632,-1,3633,3634,3635,-1,3636,3637,3638,-1,3639,3640,3641,-1,3642,3643,3644,-1,3645,3646,3647,-1,3648,3649,3650,-1,3651,3652,3653,-1,3654,3655,3656,-1,3657,3658,3659,-1,3660,3661,3662,-1,3663,3664,3665,-1,3666,3667,3668,-1,3669,3670,3671,-1,3672,3673,3674,-1,3675,3676,3677,-1,3678,3679,3680,-1,3681,3682,3683,-1,3684,3685,3686,-1,3687,3688,3689,-1,3690,3691,3692,-1,3693,3694,3695,-1,3696,3697,3698,-1,3699,3700,3701,-1,3702,3703,3704,-1,3705,3706,3707,-1,3708,3709,3710,-1,3711,3712,3713,-1,3714,3715,3716,-1,3717,3718,3719,-1,3720,3721,3722,-1,3723,3724,3725,-1,3726,3727,3728,-1,3729,3730,3731,-1,3732,3733,3734,-1,3735,3736,3737,-1,3738,3739,3740,-1,3741,3742,3743,-1,3744,3745,3746,-1,3747,3748,3749,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_coordIndex_6()
		{
			int[] value = {3750,3751,3752,-1,3753,3754,3755,-1,3756,3757,3758,-1,3759,3760,3761,-1,3762,3763,3764,-1,3765,3766,3767,-1,3768,3769,3770,-1,3771,3772,3773,-1,3774,3775,3776,-1,3777,3778,3779,-1,3780,3781,3782,-1,3783,3784,3785,-1,3786,3787,3788,-1,3789,3790,3791,-1,3792,3793,3794,-1,3795,3796,3797,-1,3798,3799,3800,-1,3801,3802,3803,-1,3804,3805,3806,-1,3807,3808,3809,-1,3810,3811,3812,-1,3813,3814,3815,-1,3816,3817,3818,-1,3819,3820,3821,-1,3822,3823,3824,-1,3825,3826,3827,-1,3828,3829,3830,-1,3831,3832,3833,-1,3834,3835,3836,-1,3837,3838,3839,-1,3840,3841,3842,-1,3843,3844,3845,-1,3846,3847,3848,-1,3849,3850,3851,-1,3852,3853,3854,-1,3855,3856,3857,-1,3858,3859,3860,-1,3861,3862,3863,-1,3864,3865,3866,-1,3867,3868,3869,-1,3870,3871,3872,-1,3873,3874,3875,-1,3876,3877,3878,-1,3879,3880,3881,-1,3882,3883,3884,-1,3885,3886,3887,-1,3888,3889,3890,-1,3891,3892,3893,-1,3894,3895,3896,-1,3897,3898,3899,-1,3900,3901,3902,-1,3903,3904,3905,-1,3906,3907,3908,-1,3909,3910,3911,-1,3912,3913,3914,-1,3915,3916,3917,-1,3918,3919,3920,-1,3921,3922,3923,-1,3924,3925,3926,-1,3927,3928,3929,-1,3930,3931,3932,-1,3933,3934,3935,-1,3936,3937,3938,-1,3939,3940,3941,-1,3942,3943,3944,-1,3945,3946,3947,-1,3948,3949,3950,-1,3951,3952,3953,-1,3954,3955,3956,-1,3957,3958,3959,-1,3960,3961,3962,-1,3963,3964,3965,-1,3966,3967,3968,-1,3969,3970,3971,-1,3972,3973,3974,-1,3975,3976,3977,-1,3978,3979,3980,-1,3981,3982,3983,-1,3984,3985,3986,-1,3987,3988,3989,-1,3990,3991,3992,-1,3993,3994,3995,-1,3996,3997,3998,-1,3999,4000,4001,-1,4002,4003,4004,-1,4005,4006,4007,-1,4008,4009,4010,-1,4011,4012,4013,-1,4014,4015,4016,-1,4017,4018,4019,-1,4020,4021,4022,-1,4023,4024,4025,-1,4026,4027,4028,-1,4029,4030,4031,-1,4032,4033,4034,-1,4035,4036,4037,-1,4038,4039,4040,-1,4041,4042,4043,-1,4044,4045,4046,-1,4047,4048,4049,-1,4050,4051,4052,-1,4053,4054,4055,-1,4056,4057,4058,-1,4059,4060,4061,-1,4062,4063,4064,-1,4065,4066,4067,-1,4068,4069,4070,-1,4071,4072,4073,-1,4074,4075,4076,-1,4077,4078,4079,-1,4080,4081,4082,-1,4083,4084,4085,-1,4086,4087,4088,-1,4089,4090,4091,-1,4092,4093,4094,-1,4095,4096,4097,-1,4098,4099,4100,-1,4101,4102,4103,-1,4104,4105,4106,-1,4107,4108,4109,-1,4110,4111,4112,-1,4113,4114,4115,-1,4116,4117,4118,-1,4119,4120,4121,-1,4122,4123,4124,-1,4125,4126,4127,-1,4128,4129,4130,-1,4131,4132,4133,-1,4134,4135,4136,-1,4137,4138,4139,-1,4140,4141,4142,-1,4143,4144,4145,-1,4146,4147,4148,-1,4149,4150,4151,-1,4152,4153,4154,-1,4155,4156,4157,-1,4158,4159,4160,-1,4161,4162,4163,-1,4164,4165,4166,-1,4167,4168,4169,-1,4170,4171,4172,-1,4173,4174,4175,-1,4176,4177,4178,-1,4179,4180,4181,-1,4182,4183,4184,-1,4185,4186,4187,-1,4188,4189,4190,-1,4191,4192,4193,-1,4194,4195,4196,-1,4197,4198,4199,-1,4200,4201,4202,-1,4203,4204,4205,-1,4206,4207,4208,-1,4209,4210,4211,-1,4212,4213,4214,-1,4215,4216,4217,-1,4218,4219,4220,-1,4221,4222,4223,-1,4224,4225,4226,-1,4227,4228,4229,-1,4230,4231,4232,-1,4233,4234,4235,-1,4236,4237,4238,-1,4239,4240,4241,-1,4242,4243,4244,-1,4245,4246,4247,-1,4248,4249,4250,-1,4251,4252,4253,-1,4254,4255,4256,-1,4257,4258,4259,-1,4260,4261,4262,-1,4263,4264,4265,-1,4266,4267,4268,-1,4269,4270,4271,-1,4272,4273,4274,-1,4275,4276,4277,-1,4278,4279,4280,-1,4281,4282,4283,-1,4284,4285,4286,-1,4287,4288,4289,-1,4290,4291,4292,-1,4293,4294,4295,-1,4296,4297,4298,-1,4299,4300,4301,-1,4302,4303,4304,-1,4305,4306,4307,-1,4308,4309,4310,-1,4311,4312,4313,-1,4314,4315,4316,-1,4317,4318,4319,-1,4320,4321,4322,-1,4323,4324,4325,-1,4326,4327,4328,-1,4329,4330,4331,-1,4332,4333,4334,-1,4335,4336,4337,-1,4338,4339,4340,-1,4341,4342,4343,-1,4344,4345,4346,-1,4347,4348,4349,-1,4350,4351,4352,-1,4353,4354,4355,-1,4356,4357,4358,-1,4359,4360,4361,-1,4362,4363,4364,-1,4365,4366,4367,-1,4368,4369,4370,-1,4371,4372,4373,-1,4374,4375,4376,-1,4377,4378,4379,-1,4380,4381,4382,-1,4383,4384,4385,-1,4386,4387,4388,-1,4389,4390,4391,-1,4392,4393,4394,-1,4395,4396,4397,-1,4398,4399,4400,-1,4401,4402,4403,-1,4404,4405,4406,-1,4407,4408,4409,-1,4410,4411,4412,-1,4413,4414,4415,-1,4416,4417,4418,-1,4419,4420,4421,-1,4422,4423,4424,-1,4425,4426,4427,-1,4428,4429,4430,-1,4431,4432,4433,-1,4434,4435,4436,-1,4437,4438,4439,-1,4440,4441,4442,-1,4443,4444,4445,-1,4446,4447,4448,-1,4449,4450,4451,-1,4452,4453,4454,-1,4455,4456,4457,-1,4458,4459,4460,-1,4461,4462,4463,-1,4464,4465,4466,-1,4467,4468,4469,-1,4470,4471,4472,-1,4473,4474,4475,-1,4476,4477,4478,-1,4479,4480,4481,-1,4482,4483,4484,-1,4485,4486,4487,-1,4488,4489,4490,-1,4491,4492,4493,-1,4494,4495,4496,-1,4497,4498,4499,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_coordIndex_7()
		{
			int[] value = {4500,4501,4502,-1,4503,4504,4505,-1,4506,4507,4508,-1,4509,4510,4511,-1,4512,4513,4514,-1,4515,4516,4517,-1,4518,4519,4520,-1,4521,4522,4523,-1,4524,4525,4526,-1,4527,4528,4529,-1,4530,4531,4532,-1,4533,4534,4535,-1,4536,4537,4538,-1,4539,4540,4541,-1,4542,4543,4544,-1,4545,4546,4547,-1,4548,4549,4550,-1,4551,4552,4553,-1,4554,4555,4556,-1,4557,4558,4559,-1,4560,4561,4562,-1,4563,4564,4565,-1,4566,4567,4568,-1,4569,4570,4571,-1,4572,4573,4574,-1,4575,4576,4577,-1,4578,4579,4580,-1,4581,4582,4583,-1,4584,4585,4586,-1,4587,4588,4589,-1,4590,4591,4592,-1,4593,4594,4595,-1,4596,4597,4598,-1,4599,4600,4601,-1,4602,4603,4604,-1,4605,4606,4607,-1,4608,4609,4610,-1,4611,4612,4613,-1,4614,4615,4616,-1,4617,4618,4619,-1,4620,4621,4622,-1,4623,4624,4625,-1,4626,4627,4628,-1,4629,4630,4631,-1,4632,4633,4634,-1,4635,4636,4637,-1,4638,4639,4640,-1,4641,4642,4643,-1,4644,4645,4646,-1,4647,4648,4649,-1,4650,4651,4652,-1,4653,4654,4655,-1,4656,4657,4658,-1,4659,4660,4661,-1,4662,4663,4664,-1,4665,4666,4667,-1,4668,4669,4670,-1,4671,4672,4673,-1,4674,4675,4676,-1,4677,4678,4679,-1,4680,4681,4682,-1,4683,4684,4685,-1,4686,4687,4688,-1,4689,4690,4691,-1,4692,4693,4694,-1,4695,4696,4697,-1,4698,4699,4700,-1,4701,4702,4703,-1,4704,4705,4706,-1,4707,4708,4709,-1,4710,4711,4712,-1,4713,4714,4715,-1,4716,4717,4718,-1,4719,4720,4721,-1,4722,4723,4724,-1,4725,4726,4727,-1,4728,4729,4730,-1,4731,4732,4733,-1,4734,4735,4736,-1,4737,4738,4739,-1,4740,4741,4742,-1,4743,4744,4745,-1,4746,4747,4748,-1,4749,4750,4751,-1,4752,4753,4754,-1,4755,4756,4757,-1,4758,4759,4760,-1,4761,4762,4763,-1,4764,4765,4766,-1,4767,4768,4769,-1,4770,4771,4772,-1,4773,4774,4775,-1,4776,4777,4778,-1,4779,4780,4781,-1,4782,4783,4784,-1,4785,4786,4787,-1,4788,4789,4790,-1,4791,4792,4793,-1,4794,4795,4796,-1,4797,4798,4799,-1,4800,4801,4802,-1,4803,4804,4805,-1,4806,4807,4808,-1,4809,4810,4811,-1,4812,4813,4814,-1,4815,4816,4817,-1,4818,4819,4820,-1,4821,4822,4823,-1,4824,4825,4826,-1,4827,4828,4829,-1,4830,4831,4832,-1,4833,4834,4835,-1,4836,4837,4838,-1,4839,4840,4841,-1,4842,4843,4844,-1,4845,4846,4847,-1,4848,4849,4850,-1,4851,4852,4853,-1,4854,4855,4856,-1,4857,4858,4859,-1,4860,4861,4862,-1,4863,4864,4865,-1,4866,4867,4868,-1,4869,4870,4871,-1,4872,4873,4874,-1,4875,4876,4877,-1,4878,4879,4880,-1,4881,4882,4883,-1,4884,4885,4886,-1,4887,4888,4889,-1,4890,4891,4892,-1,4893,4894,4895,-1,4896,4897,4898,-1,4899,4900,4901,-1,4902,4903,4904,-1,4905,4906,4907,-1,4908,4909,4910,-1,4911,4912,4913,-1,4914,4915,4916,-1,4917,4918,4919,-1,4920,4921,4922,-1,4923,4924,4925,-1,4926,4927,4928,-1,4929,4930,4931,-1,4932,4933,4934,-1,4935,4936,4937,-1,4938,4939,4940,-1,4941,4942,4943,-1,4944,4945,4946,-1,4947,4948,4949,-1,4950,4951,4952,-1,4953,4954,4955,-1,4956,4957,4958,-1,4959,4960,4961,-1,4962,4963,4964,-1,4965,4966,4967,-1,4968,4969,4970,-1,4971,4972,4973,-1,4974,4975,4976,-1,4977,4978,4979,-1,4980,4981,4982,-1,4983,4984,4985,-1,4986,4987,4988,-1,4989,4990,4991,-1,4992,4993,4994,-1,4995,4996,4997,-1,4998,4999,5000,-1,5001,5002,5003,-1,5004,5005,5006,-1,5007,5008,5009,-1,5010,5011,5012,-1,5013,5014,5015,-1,5016,5017,5018,-1,5019,5020,5021,-1,5022,5023,5024,-1,5025,5026,5027,-1,5028,5029,5030,-1,5031,5032,5033,-1,5034,5035,5036,-1,5037,5038,5039,-1,5040,5041,5042,-1,5043,5044,5045,-1,5046,5047,5048,-1,5049,5050,5051,-1,5052,5053,5054,-1,5055,5056,5057,-1,5058,5059,5060,-1,5061,5062,5063,-1,5064,5065,5066,-1,5067,5068,5069,-1,5070,5071,5072,-1,5073,5074,5075,-1,5076,5077,5078,-1,5079,5080,5081,-1,5082,5083,5084,-1,5085,5086,5087,-1,5088,5089,5090,-1,5091,5092,5093,-1,5094,5095,5096,-1,5097,5098,5099,-1,5100,5101,5102,-1,5103,5104,5105,-1,5106,5107,5108,-1,5109,5110,5111,-1,5112,5113,5114,-1,5115,5116,5117,-1,5118,5119,5120,-1,5121,5122,5123,-1,5124,5125,5126,-1,5127,5128,5129,-1,5130,5131,5132,-1,5133,5134,5135,-1,5136,5137,5138,-1,5139,5140,5141,-1,5142,5143,5144,-1,5145,5146,5147,-1,5148,5149,5150,-1,5151,5152,5153,-1,5154,5155,5156,-1,5157,5158,5159,-1,5160,5161,5162,-1,5163,5164,5165,-1,5166,5167,5168,-1,5169,5170,5171,-1,5172,5173,5174,-1,5175,5176,5177,-1,5178,5179,5180,-1,5181,5182,5183,-1,5184,5185,5186,-1,5187,5188,5189,-1,5190,5191,5192,-1,5193,5194,5195,-1,5196,5197,5198,-1,5199,5200,5201,-1,5202,5203,5204,-1,5205,5206,5207,-1,5208,5209,5210,-1,5211,5212,5213,-1,5214,5215,5216,-1,5217,5218,5219,-1,5220,5221,5222,-1,5223,5224,5225,-1,5226,5227,5228,-1,5229,5230,5231,-1,5232,5233,5234,-1,5235,5236,5237,-1,5238,5239,5240,-1,5241,5242,5243,-1,5244,5245,5246,-1,5247,5248,5249,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_coordIndex_8()
		{
			int[] value = {5250,5251,5252,-1,5253,5254,5255,-1,5256,5257,5258,-1,5259,5260,5261,-1,5262,5263,5264,-1,5265,5266,5267,-1,5268,5269,5270,-1,5271,5272,5273,-1,5274,5275,5276,-1,5277,5278,5279,-1,5280,5281,5282,-1,5283,5284,5285,-1,5286,5287,5288,-1,5289,5290,5291,-1,5292,5293,5294,-1,5295,5296,5297,-1,5298,5299,5300,-1,5301,5302,5303,-1,5304,5305,5306,-1,5307,5308,5309,-1,5310,5311,5312,-1,5313,5314,5315,-1,5316,5317,5318,-1,5319,5320,5321,-1,5322,5323,5324,-1,5325,5326,5327,-1,5328,5329,5330,-1,5331,5332,5333,-1,5334,5335,5336,-1,5337,5338,5339,-1,5340,5341,5342,-1,5343,5344,5345,-1,5346,5347,5348,-1,5349,5350,5351,-1,5352,5353,5354,-1,5355,5356,5357,-1,5358,5359,5360,-1,5361,5362,5363,-1,5364,5365,5366,-1,5367,5368,5369,-1,5370,5371,5372,-1,5373,5374,5375,-1,5376,5377,5378,-1,5379,5380,5381,-1,5382,5383,5384,-1,5385,5386,5387,-1,5388,5389,5390,-1,5391,5392,5393,-1,5394,5395,5396,-1,5397,5398,5399,-1,5400,5401,5402,-1,5403,5404,5405,-1,5406,5407,5408,-1,5409,5410,5411,-1,5412,5413,5414,-1,5415,5416,5417,-1,5418,5419,5420,-1,5421,5422,5423,-1,5424,5425,5426,-1,5427,5428,5429,-1,5430,5431,5432,-1,5433,5434,5435,-1,5436,5437,5438,-1,5439,5440,5441,-1,5442,5443,5444,-1,5445,5446,5447,-1,5448,5449,5450,-1,5451,5452,5453,-1,5454,5455,5456,-1,5457,5458,5459,-1,5460,5461,5462,-1,5463,5464,5465,-1,5466,5467,5468,-1,5469,5470,5471,-1,5472,5473,5474,-1,5475,5476,5477,-1,5478,5479,5480,-1,5481,5482,5483,-1,5484,5485,5486,-1,5487,5488,5489,-1,5490,5491,5492,-1,5493,5494,5495,-1,5496,5497,5498,-1,5499,5500,5501,-1,5502,5503,5504,-1,5505,5506,5507,-1,5508,5509,5510,-1,5511,5512,5513,-1,5514,5515,5516,-1,5517,5518,5519,-1,5520,5521,5522,-1,5523,5524,5525,-1,5526,5527,5528,-1,5529,5530,5531,-1,5532,5533,5534,-1,5535,5536,5537,-1,5538,5539,5540,-1,5541,5542,5543,-1,5544,5545,5546,-1,5547,5548,5549,-1,5550,5551,5552,-1,5553,5554,5555,-1,5556,5557,5558,-1,5559,5560,5561,-1,5562,5563,5564,-1,5565,5566,5567,-1,5568,5569,5570,-1,5571,5572,5573,-1,5574,5575,5576,-1,5577,5578,5579,-1,5580,5581,5582,-1,5583,5584,5585,-1,5586,5587,5588,-1,5589,5590,5591,-1,5592,5593,5594,-1,5595,5596,5597,-1,5598,5599,5600,-1,5601,5602,5603,-1,5604,5605,5606,-1,5607,5608,5609,-1,5610,5611,5612,-1,5613,5614,5615,-1,5616,5617,5618,-1,5619,5620,5621,-1,5622,5623,5624,-1,5625,5626,5627,-1,5628,5629,5630,-1,5631,5632,5633,-1,5634,5635,5636,-1,5637,5638,5639,-1,5640,5641,5642,-1,5643,5644,5645,-1,5646,5647,5648,-1,5649,5650,5651,-1,5652,5653,5654,-1,5655,5656,5657,-1,5658,5659,5660,-1,5661,5662,5663,-1,5664,5665,5666,-1,5667,5668,5669,-1,5670,5671,5672,-1,5673,5674,5675,-1,5676,5677,5678,-1,5679,5680,5681,-1,5682,5683,5684,-1,5685,5686,5687,-1,5688,5689,5690,-1,5691,5692,5693,-1,5694,5695,5696,-1,5697,5698,5699,-1,5700,5701,5702,-1,5703,5704,5705,-1,5706,5707,5708,-1,5709,5710,5711,-1,5712,5713,5714,-1,5715,5716,5717,-1,5718,5719,5720,-1,5721,5722,5723,-1,5724,5725,5726,-1,5727,5728,5729,-1,5730,5731,5732,-1,5733,5734,5735,-1,5736,5737,5738,-1,5739,5740,5741,-1,5742,5743,5744,-1,5745,5746,5747,-1,5748,5749,5750,-1,5751,5752,5753,-1,5754,5755,5756,-1,5757,5758,5759,-1,5760,5761,5762,-1,5763,5764,5765,-1,5766,5767,5768,-1,5769,5770,5771,-1,5772,5773,5774,-1,5775,5776,5777,-1,5778,5779,5780,-1,5781,5782,5783,-1,5784,5785,5786,-1,5787,5788,5789,-1,5790,5791,5792,-1,5793,5794,5795,-1,5796,5797,5798,-1,5799,5800,5801,-1,5802,5803,5804,-1,5805,5806,5807,-1,5808,5809,5810,-1,5811,5812,5813,-1,5814,5815,5816,-1,5817,5818,5819,-1,5820,5821,5822,-1,5823,5824,5825,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getMi24_0_GEOMETRY_6_19_normalIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,114,115,116,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,147,148,149,-1,150,151,152,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,162,163,164,-1,165,166,167,-1,168,169,170,-1,171,172,173,-1,174,175,176,-1,177,178,179,-1,180,181,182,-1,183,184,185,-1,186,187,188,-1,189,190,191,-1,192,193,194,-1,195,196,197,-1,198,199,200,-1,201,202,203,-1,204,205,206,-1,207,208,209,-1,210,211,212,-1,213,214,215,-1,216,217,218,-1,219,220,221,-1,222,223,224,-1,225,226,227,-1,228,229,230,-1,231,232,233,-1,234,235,236,-1,237,238,239,-1,240,241,242,-1,243,244,245,-1,246,247,248,-1,249,250,251,-1,252,253,254,-1,255,256,257,-1,258,259,260,-1,261,262,263,-1,264,265,266,-1,267,268,269,-1,270,271,272,-1,273,274,275,-1,276,277,278,-1,279,280,281,-1,282,283,284,-1,285,286,287,-1,288,289,290,-1,291,292,293,-1,294,295,296,-1,297,298,299,-1,300,301,302,-1,303,304,305,-1,306,307,308,-1,309,310,311,-1,312,313,314,-1,315,316,317,-1,318,319,320,-1,321,322,323,-1,324,325,326,-1,327,328,329,-1,330,331,332,-1,333,334,335,-1,336,337,338,-1,339,340,341,-1,342,343,344,-1,345,346,347,-1,348,349,350,-1,351,352,353,-1,354,355,356,-1,357,358,359,-1,360,361,362,-1,363,364,365,-1,366,367,368,-1,369,370,371,-1,372,373,374,-1,375,376,377,-1,378,379,380,-1,381,382,383,-1,384,385,386,-1,387,388,389,-1,390,391,392,-1,393,394,395,-1,396,397,398,-1,399,400,401,-1,402,403,404,-1,405,406,407,-1,408,409,410,-1,411,412,413,-1,414,415,416,-1,417,418,419,-1,420,421,422,-1,423,424,425,-1,426,427,428,-1,429,430,431,-1,432,433,434,-1,435,436,437,-1,438,439,440,-1,441,442,443,-1,444,445,446,-1,447,448,449,-1,450,451,452,-1,453,454,455,-1,456,457,458,-1,459,460,461,-1,462,463,464,-1,465,466,467,-1,468,469,470,-1,471,472,473,-1,474,475,476,-1,477,478,479,-1,480,481,482,-1,483,484,485,-1,486,487,488,-1,489,490,491,-1,492,493,494,-1,495,496,497,-1,498,499,500,-1,501,502,503,-1,504,505,506,-1,507,508,509,-1,510,511,512,-1,513,514,515,-1,516,517,518,-1,519,520,521,-1,522,523,524,-1,525,526,527,-1,528,529,530,-1,531,532,533,-1,534,535,536,-1,537,538,539,-1,540,541,542,-1,543,544,545,-1,546,547,548,-1,549,550,551,-1,552,553,554,-1,555,556,557,-1,558,559,560,-1,561,562,563,-1,564,565,566,-1,567,568,569,-1,570,571,572,-1,573,574,575,-1,576,577,578,-1,579,580,581,-1,582,583,584,-1,585,586,587,-1,588,589,590,-1,591,592,593,-1,594,595,596,-1,597,598,599,-1,600,601,602,-1,603,604,605,-1,606,607,608,-1,609,610,611,-1,612,613,614,-1,615,616,617,-1,618,619,620,-1,621,622,623,-1,624,625,626,-1,627,628,629,-1,630,631,632,-1,633,634,635,-1,636,637,638,-1,639,640,641,-1,642,643,644,-1,645,646,647,-1,648,649,650,-1,651,652,653,-1,654,655,656,-1,657,658,659,-1,660,661,662,-1,663,664,665,-1,666,667,668,-1,669,670,671,-1,672,673,674,-1,675,676,677,-1,678,679,680,-1,681,682,683,-1,684,685,686,-1,687,688,689,-1,690,691,692,-1,693,694,695,-1,696,697,698,-1,699,700,701,-1,702,703,704,-1,705,706,707,-1,708,709,710,-1,711,712,713,-1,714,715,716,-1,717,718,719,-1,720,721,722,-1,723,724,725,-1,726,727,728,-1,729,730,731,-1,732,733,734,-1,735,736,737,-1,738,739,740,-1,741,742,743,-1,744,745,746,-1,747,748,749,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_normalIndex_2()
		{
			int[] value = {750,751,752,-1,753,754,755,-1,756,757,758,-1,759,760,761,-1,762,763,764,-1,765,766,767,-1,768,769,770,-1,771,772,773,-1,774,775,776,-1,777,778,779,-1,780,781,782,-1,783,784,785,-1,786,787,788,-1,789,790,791,-1,792,793,794,-1,795,796,797,-1,798,799,800,-1,801,802,803,-1,804,805,806,-1,807,808,809,-1,810,811,812,-1,813,814,815,-1,816,817,818,-1,819,820,821,-1,822,823,824,-1,825,826,827,-1,828,829,830,-1,831,832,833,-1,834,835,836,-1,837,838,839,-1,840,841,842,-1,843,844,845,-1,846,847,848,-1,849,850,851,-1,852,853,854,-1,855,856,857,-1,858,859,860,-1,861,862,863,-1,864,865,866,-1,867,868,869,-1,870,871,872,-1,873,874,875,-1,876,877,878,-1,879,880,881,-1,882,883,884,-1,885,886,887,-1,888,889,890,-1,891,892,893,-1,894,895,896,-1,897,898,899,-1,900,901,902,-1,903,904,905,-1,906,907,908,-1,909,910,911,-1,912,913,914,-1,915,916,917,-1,918,919,920,-1,921,922,923,-1,924,925,926,-1,927,928,929,-1,930,931,932,-1,933,934,935,-1,936,937,938,-1,939,940,941,-1,942,943,944,-1,945,946,947,-1,948,949,950,-1,951,952,953,-1,954,955,956,-1,957,958,959,-1,960,961,962,-1,963,964,965,-1,966,967,968,-1,969,970,971,-1,972,973,974,-1,975,976,977,-1,978,979,980,-1,981,982,983,-1,984,985,986,-1,987,988,989,-1,990,991,992,-1,993,994,995,-1,996,997,998,-1,999,1000,1001,-1,1002,1003,1004,-1,1005,1006,1007,-1,1008,1009,1010,-1,1011,1012,1013,-1,1014,1015,1016,-1,1017,1018,1019,-1,1020,1021,1022,-1,1023,1024,1025,-1,1026,1027,1028,-1,1029,1030,1031,-1,1032,1033,1034,-1,1035,1036,1037,-1,1038,1039,1040,-1,1041,1042,1043,-1,1044,1045,1046,-1,1047,1048,1049,-1,1050,1051,1052,-1,1053,1054,1055,-1,1056,1057,1058,-1,1059,1060,1061,-1,1062,1063,1064,-1,1065,1066,1067,-1,1068,1069,1070,-1,1071,1072,1073,-1,1074,1075,1076,-1,1077,1078,1079,-1,1080,1081,1082,-1,1083,1084,1085,-1,1086,1087,1088,-1,1089,1090,1091,-1,1092,1093,1094,-1,1095,1096,1097,-1,1098,1099,1100,-1,1101,1102,1103,-1,1104,1105,1106,-1,1107,1108,1109,-1,1110,1111,1112,-1,1113,1114,1115,-1,1116,1117,1118,-1,1119,1120,1121,-1,1122,1123,1124,-1,1125,1126,1127,-1,1128,1129,1130,-1,1131,1132,1133,-1,1134,1135,1136,-1,1137,1138,1139,-1,1140,1141,1142,-1,1143,1144,1145,-1,1146,1147,1148,-1,1149,1150,1151,-1,1152,1153,1154,-1,1155,1156,1157,-1,1158,1159,1160,-1,1161,1162,1163,-1,1164,1165,1166,-1,1167,1168,1169,-1,1170,1171,1172,-1,1173,1174,1175,-1,1176,1177,1178,-1,1179,1180,1181,-1,1182,1183,1184,-1,1185,1186,1187,-1,1188,1189,1190,-1,1191,1192,1193,-1,1194,1195,1196,-1,1197,1198,1199,-1,1200,1201,1202,-1,1203,1204,1205,-1,1206,1207,1208,-1,1209,1210,1211,-1,1212,1213,1214,-1,1215,1216,1217,-1,1218,1219,1220,-1,1221,1222,1223,-1,1224,1225,1226,-1,1227,1228,1229,-1,1230,1231,1232,-1,1233,1234,1235,-1,1236,1237,1238,-1,1239,1240,1241,-1,1242,1243,1244,-1,1245,1246,1247,-1,1248,1249,1250,-1,1251,1252,1253,-1,1254,1255,1256,-1,1257,1258,1259,-1,1260,1261,1262,-1,1263,1264,1265,-1,1266,1267,1268,-1,1269,1270,1271,-1,1272,1273,1274,-1,1275,1276,1277,-1,1278,1279,1280,-1,1281,1282,1283,-1,1284,1285,1286,-1,1287,1288,1289,-1,1290,1291,1292,-1,1293,1294,1295,-1,1296,1297,1298,-1,1299,1300,1301,-1,1302,1303,1304,-1,1305,1306,1307,-1,1308,1309,1310,-1,1311,1312,1313,-1,1314,1315,1316,-1,1317,1318,1319,-1,1320,1321,1322,-1,1323,1324,1325,-1,1326,1327,1328,-1,1329,1330,1331,-1,1332,1333,1334,-1,1335,1336,1337,-1,1338,1339,1340,-1,1341,1342,1343,-1,1344,1345,1346,-1,1347,1348,1349,-1,1350,1351,1352,-1,1353,1354,1355,-1,1356,1357,1358,-1,1359,1360,1361,-1,1362,1363,1364,-1,1365,1366,1367,-1,1368,1369,1370,-1,1371,1372,1373,-1,1374,1375,1376,-1,1377,1378,1379,-1,1380,1381,1382,-1,1383,1384,1385,-1,1386,1387,1388,-1,1389,1390,1391,-1,1392,1393,1394,-1,1395,1396,1397,-1,1398,1399,1400,-1,1401,1402,1403,-1,1404,1405,1406,-1,1407,1408,1409,-1,1410,1411,1412,-1,1413,1414,1415,-1,1416,1417,1418,-1,1419,1420,1421,-1,1422,1423,1424,-1,1425,1426,1427,-1,1428,1429,1430,-1,1431,1432,1433,-1,1434,1435,1436,-1,1437,1438,1439,-1,1440,1441,1442,-1,1443,1444,1445,-1,1446,1447,1448,-1,1449,1450,1451,-1,1452,1453,1454,-1,1455,1456,1457,-1,1458,1459,1460,-1,1461,1462,1463,-1,1464,1465,1466,-1,1467,1468,1469,-1,1470,1471,1472,-1,1473,1474,1475,-1,1476,1477,1478,-1,1479,1480,1481,-1,1482,1483,1484,-1,1485,1486,1487,-1,1488,1489,1490,-1,1491,1492,1493,-1,1494,1495,1496,-1,1497,1498,1499,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_normalIndex_3()
		{
			int[] value = {1500,1501,1502,-1,1503,1504,1505,-1,1506,1507,1508,-1,1509,1510,1511,-1,1512,1513,1514,-1,1515,1516,1517,-1,1518,1519,1520,-1,1521,1522,1523,-1,1524,1525,1526,-1,1527,1528,1529,-1,1530,1531,1532,-1,1533,1534,1535,-1,1536,1537,1538,-1,1539,1540,1541,-1,1542,1543,1544,-1,1545,1546,1547,-1,1548,1549,1550,-1,1551,1552,1553,-1,1554,1555,1556,-1,1557,1558,1559,-1,1560,1561,1562,-1,1563,1564,1565,-1,1566,1567,1568,-1,1569,1570,1571,-1,1572,1573,1574,-1,1575,1576,1577,-1,1578,1579,1580,-1,1581,1582,1583,-1,1584,1585,1586,-1,1587,1588,1589,-1,1590,1591,1592,-1,1593,1594,1595,-1,1596,1597,1598,-1,1599,1600,1601,-1,1602,1603,1604,-1,1605,1606,1607,-1,1608,1609,1610,-1,1611,1612,1613,-1,1614,1615,1616,-1,1617,1618,1619,-1,1620,1621,1622,-1,1623,1624,1625,-1,1626,1627,1628,-1,1629,1630,1631,-1,1632,1633,1634,-1,1635,1636,1637,-1,1638,1639,1640,-1,1641,1642,1643,-1,1644,1645,1646,-1,1647,1648,1649,-1,1650,1651,1652,-1,1653,1654,1655,-1,1656,1657,1658,-1,1659,1660,1661,-1,1662,1663,1664,-1,1665,1666,1667,-1,1668,1669,1670,-1,1671,1672,1673,-1,1674,1675,1676,-1,1677,1678,1679,-1,1680,1681,1682,-1,1683,1684,1685,-1,1686,1687,1688,-1,1689,1690,1691,-1,1692,1693,1694,-1,1695,1696,1697,-1,1698,1699,1700,-1,1701,1702,1703,-1,1704,1705,1706,-1,1707,1708,1709,-1,1710,1711,1712,-1,1713,1714,1715,-1,1716,1717,1718,-1,1719,1720,1721,-1,1722,1723,1724,-1,1725,1726,1727,-1,1728,1729,1730,-1,1731,1732,1733,-1,1734,1735,1736,-1,1737,1738,1739,-1,1740,1741,1742,-1,1743,1744,1745,-1,1746,1747,1748,-1,1749,1750,1751,-1,1752,1753,1754,-1,1755,1756,1757,-1,1758,1759,1760,-1,1761,1762,1763,-1,1764,1765,1766,-1,1767,1768,1769,-1,1770,1771,1772,-1,1773,1774,1775,-1,1776,1777,1778,-1,1779,1780,1781,-1,1782,1783,1784,-1,1785,1786,1787,-1,1788,1789,1790,-1,1791,1792,1793,-1,1794,1795,1796,-1,1797,1798,1799,-1,1800,1801,1802,-1,1803,1804,1805,-1,1806,1807,1808,-1,1809,1810,1811,-1,1812,1813,1814,-1,1815,1816,1817,-1,1818,1819,1820,-1,1821,1822,1823,-1,1824,1825,1826,-1,1827,1828,1829,-1,1830,1831,1832,-1,1833,1834,1835,-1,1836,1837,1838,-1,1839,1840,1841,-1,1842,1843,1844,-1,1845,1846,1847,-1,1848,1849,1850,-1,1851,1852,1853,-1,1854,1855,1856,-1,1857,1858,1859,-1,1860,1861,1862,-1,1863,1864,1865,-1,1866,1867,1868,-1,1869,1870,1871,-1,1872,1873,1874,-1,1875,1876,1877,-1,1878,1879,1880,-1,1881,1882,1883,-1,1884,1885,1886,-1,1887,1888,1889,-1,1890,1891,1892,-1,1893,1894,1895,-1,1896,1897,1898,-1,1899,1900,1901,-1,1902,1903,1904,-1,1905,1906,1907,-1,1908,1909,1910,-1,1911,1912,1913,-1,1914,1915,1916,-1,1917,1918,1919,-1,1920,1921,1922,-1,1923,1924,1925,-1,1926,1927,1928,-1,1929,1930,1931,-1,1932,1933,1934,-1,1935,1936,1937,-1,1938,1939,1940,-1,1941,1942,1943,-1,1944,1945,1946,-1,1947,1948,1949,-1,1950,1951,1952,-1,1953,1954,1955,-1,1956,1957,1958,-1,1959,1960,1961,-1,1962,1963,1964,-1,1965,1966,1967,-1,1968,1969,1970,-1,1971,1972,1973,-1,1974,1975,1976,-1,1977,1978,1979,-1,1980,1981,1982,-1,1983,1984,1985,-1,1986,1987,1988,-1,1989,1990,1991,-1,1992,1993,1994,-1,1995,1996,1997,-1,1998,1999,2000,-1,2001,2002,2003,-1,2004,2005,2006,-1,2007,2008,2009,-1,2010,2011,2012,-1,2013,2014,2015,-1,2016,2017,2018,-1,2019,2020,2021,-1,2022,2023,2024,-1,2025,2026,2027,-1,2028,2029,2030,-1,2031,2032,2033,-1,2034,2035,2036,-1,2037,2038,2039,-1,2040,2041,2042,-1,2043,2044,2045,-1,2046,2047,2048,-1,2049,2050,2051,-1,2052,2053,2054,-1,2055,2056,2057,-1,2058,2059,2060,-1,2061,2062,2063,-1,2064,2065,2066,-1,2067,2068,2069,-1,2070,2071,2072,-1,2073,2074,2075,-1,2076,2077,2078,-1,2079,2080,2081,-1,2082,2083,2084,-1,2085,2086,2087,-1,2088,2089,2090,-1,2091,2092,2093,-1,2094,2095,2096,-1,2097,2098,2099,-1,2100,2101,2102,-1,2103,2104,2105,-1,2106,2107,2108,-1,2109,2110,2111,-1,2112,2113,2114,-1,2115,2116,2117,-1,2118,2119,2120,-1,2121,2122,2123,-1,2124,2125,2126,-1,2127,2128,2129,-1,2130,2131,2132,-1,2133,2134,2135,-1,2136,2137,2138,-1,2139,2140,2141,-1,2142,2143,2144,-1,2145,2146,2147,-1,2148,2149,2150,-1,2151,2152,2153,-1,2154,2155,2156,-1,2157,2158,2159,-1,2160,2161,2162,-1,2163,2164,2165,-1,2166,2167,2168,-1,2169,2170,2171,-1,2172,2173,2174,-1,2175,2176,2177,-1,2178,2179,2180,-1,2181,2182,2183,-1,2184,2185,2186,-1,2187,2188,2189,-1,2190,2191,2192,-1,2193,2194,2195,-1,2196,2197,2198,-1,2199,2200,2201,-1,2202,2203,2204,-1,2205,2206,2207,-1,2208,2209,2210,-1,2211,2212,2213,-1,2214,2215,2216,-1,2217,2218,2219,-1,2220,2221,2222,-1,2223,2224,2225,-1,2226,2227,2228,-1,2229,2230,2231,-1,2232,2233,2234,-1,2235,2236,2237,-1,2238,2239,2240,-1,2241,2242,2243,-1,2244,2245,2246,-1,2247,2248,2249,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_normalIndex_4()
		{
			int[] value = {2250,2251,2252,-1,2253,2254,2255,-1,2256,2257,2258,-1,2259,2260,2261,-1,2262,2263,2264,-1,2265,2266,2267,-1,2268,2269,2270,-1,2271,2272,2273,-1,2274,2275,2276,-1,2277,2278,2279,-1,2280,2281,2282,-1,2283,2284,2285,-1,2286,2287,2288,-1,2289,2290,2291,-1,2292,2293,2294,-1,2295,2296,2297,-1,2298,2299,2300,-1,2301,2302,2303,-1,2304,2305,2306,-1,2307,2308,2309,-1,2310,2311,2312,-1,2313,2314,2315,-1,2316,2317,2318,-1,2319,2320,2321,-1,2322,2323,2324,-1,2325,2326,2327,-1,2328,2329,2330,-1,2331,2332,2333,-1,2334,2335,2336,-1,2337,2338,2339,-1,2340,2341,2342,-1,2343,2344,2345,-1,2346,2347,2348,-1,2349,2350,2351,-1,2352,2353,2354,-1,2355,2356,2357,-1,2358,2359,2360,-1,2361,2362,2363,-1,2364,2365,2366,-1,2367,2368,2369,-1,2370,2371,2372,-1,2373,2374,2375,-1,2376,2377,2378,-1,2379,2380,2381,-1,2382,2383,2384,-1,2385,2386,2387,-1,2388,2389,2390,-1,2391,2392,2393,-1,2394,2395,2396,-1,2397,2398,2399,-1,2400,2401,2402,-1,2403,2404,2405,-1,2406,2407,2408,-1,2409,2410,2411,-1,2412,2413,2414,-1,2415,2416,2417,-1,2418,2419,2420,-1,2421,2422,2423,-1,2424,2425,2426,-1,2427,2428,2429,-1,2430,2431,2432,-1,2433,2434,2435,-1,2436,2437,2438,-1,2439,2440,2441,-1,2442,2443,2444,-1,2445,2446,2447,-1,2448,2449,2450,-1,2451,2452,2453,-1,2454,2455,2456,-1,2457,2458,2459,-1,2460,2461,2462,-1,2463,2464,2465,-1,2466,2467,2468,-1,2469,2470,2471,-1,2472,2473,2474,-1,2475,2476,2477,-1,2478,2479,2480,-1,2481,2482,2483,-1,2484,2485,2486,-1,2487,2488,2489,-1,2490,2491,2492,-1,2493,2494,2495,-1,2496,2497,2498,-1,2499,2500,2501,-1,2502,2503,2504,-1,2505,2506,2507,-1,2508,2509,2510,-1,2511,2512,2513,-1,2514,2515,2516,-1,2517,2518,2519,-1,2520,2521,2522,-1,2523,2524,2525,-1,2526,2527,2528,-1,2529,2530,2531,-1,2532,2533,2534,-1,2535,2536,2537,-1,2538,2539,2540,-1,2541,2542,2543,-1,2544,2545,2546,-1,2547,2548,2549,-1,2550,2551,2552,-1,2553,2554,2555,-1,2556,2557,2558,-1,2559,2560,2561,-1,2562,2563,2564,-1,2565,2566,2567,-1,2568,2569,2570,-1,2571,2572,2573,-1,2574,2575,2576,-1,2577,2578,2579,-1,2580,2581,2582,-1,2583,2584,2585,-1,2586,2587,2588,-1,2589,2590,2591,-1,2592,2593,2594,-1,2595,2596,2597,-1,2598,2599,2600,-1,2601,2602,2603,-1,2604,2605,2606,-1,2607,2608,2609,-1,2610,2611,2612,-1,2613,2614,2615,-1,2616,2617,2618,-1,2619,2620,2621,-1,2622,2623,2624,-1,2625,2626,2627,-1,2628,2629,2630,-1,2631,2632,2633,-1,2634,2635,2636,-1,2637,2638,2639,-1,2640,2641,2642,-1,2643,2644,2645,-1,2646,2647,2648,-1,2649,2650,2651,-1,2652,2653,2654,-1,2655,2656,2657,-1,2658,2659,2660,-1,2661,2662,2663,-1,2664,2665,2666,-1,2667,2668,2669,-1,2670,2671,2672,-1,2673,2674,2675,-1,2676,2677,2678,-1,2679,2680,2681,-1,2682,2683,2684,-1,2685,2686,2687,-1,2688,2689,2690,-1,2691,2692,2693,-1,2694,2695,2696,-1,2697,2698,2699,-1,2700,2701,2702,-1,2703,2704,2705,-1,2706,2707,2708,-1,2709,2710,2711,-1,2712,2713,2714,-1,2715,2716,2717,-1,2718,2719,2720,-1,2721,2722,2723,-1,2724,2725,2726,-1,2727,2728,2729,-1,2730,2731,2732,-1,2733,2734,2735,-1,2736,2737,2738,-1,2739,2740,2741,-1,2742,2743,2744,-1,2745,2746,2747,-1,2748,2749,2750,-1,2751,2752,2753,-1,2754,2755,2756,-1,2757,2758,2759,-1,2760,2761,2762,-1,2763,2764,2765,-1,2766,2767,2768,-1,2769,2770,2771,-1,2772,2773,2774,-1,2775,2776,2777,-1,2778,2779,2780,-1,2781,2782,2783,-1,2784,2785,2786,-1,2787,2788,2789,-1,2790,2791,2792,-1,2793,2794,2795,-1,2796,2797,2798,-1,2799,2800,2801,-1,2802,2803,2804,-1,2805,2806,2807,-1,2808,2809,2810,-1,2811,2812,2813,-1,2814,2815,2816,-1,2817,2818,2819,-1,2820,2821,2822,-1,2823,2824,2825,-1,2826,2827,2828,-1,2829,2830,2831,-1,2832,2833,2834,-1,2835,2836,2837,-1,2838,2839,2840,-1,2841,2842,2843,-1,2844,2845,2846,-1,2847,2848,2849,-1,2850,2851,2852,-1,2853,2854,2855,-1,2856,2857,2858,-1,2859,2860,2861,-1,2862,2863,2864,-1,2865,2866,2867,-1,2868,2869,2870,-1,2871,2872,2873,-1,2874,2875,2876,-1,2877,2878,2879,-1,2880,2881,2882,-1,2883,2884,2885,-1,2886,2887,2888,-1,2889,2890,2891,-1,2892,2893,2894,-1,2895,2896,2897,-1,2898,2899,2900,-1,2901,2902,2903,-1,2904,2905,2906,-1,2907,2908,2909,-1,2910,2911,2912,-1,2913,2914,2915,-1,2916,2917,2918,-1,2919,2920,2921,-1,2922,2923,2924,-1,2925,2926,2927,-1,2928,2929,2930,-1,2931,2932,2933,-1,2934,2935,2936,-1,2937,2938,2939,-1,2940,2941,2942,-1,2943,2944,2945,-1,2946,2947,2948,-1,2949,2950,2951,-1,2952,2953,2954,-1,2955,2956,2957,-1,2958,2959,2960,-1,2961,2962,2963,-1,2964,2965,2966,-1,2967,2968,2969,-1,2970,2971,2972,-1,2973,2974,2975,-1,2976,2977,2978,-1,2979,2980,2981,-1,2982,2983,2984,-1,2985,2986,2987,-1,2988,2989,2990,-1,2991,2992,2993,-1,2994,2995,2996,-1,2997,2998,2999,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_normalIndex_5()
		{
			int[] value = {3000,3001,3002,-1,3003,3004,3005,-1,3006,3007,3008,-1,3009,3010,3011,-1,3012,3013,3014,-1,3015,3016,3017,-1,3018,3019,3020,-1,3021,3022,3023,-1,3024,3025,3026,-1,3027,3028,3029,-1,3030,3031,3032,-1,3033,3034,3035,-1,3036,3037,3038,-1,3039,3040,3041,-1,3042,3043,3044,-1,3045,3046,3047,-1,3048,3049,3050,-1,3051,3052,3053,-1,3054,3055,3056,-1,3057,3058,3059,-1,3060,3061,3062,-1,3063,3064,3065,-1,3066,3067,3068,-1,3069,3070,3071,-1,3072,3073,3074,-1,3075,3076,3077,-1,3078,3079,3080,-1,3081,3082,3083,-1,3084,3085,3086,-1,3087,3088,3089,-1,3090,3091,3092,-1,3093,3094,3095,-1,3096,3097,3098,-1,3099,3100,3101,-1,3102,3103,3104,-1,3105,3106,3107,-1,3108,3109,3110,-1,3111,3112,3113,-1,3114,3115,3116,-1,3117,3118,3119,-1,3120,3121,3122,-1,3123,3124,3125,-1,3126,3127,3128,-1,3129,3130,3131,-1,3132,3133,3134,-1,3135,3136,3137,-1,3138,3139,3140,-1,3141,3142,3143,-1,3144,3145,3146,-1,3147,3148,3149,-1,3150,3151,3152,-1,3153,3154,3155,-1,3156,3157,3158,-1,3159,3160,3161,-1,3162,3163,3164,-1,3165,3166,3167,-1,3168,3169,3170,-1,3171,3172,3173,-1,3174,3175,3176,-1,3177,3178,3179,-1,3180,3181,3182,-1,3183,3184,3185,-1,3186,3187,3188,-1,3189,3190,3191,-1,3192,3193,3194,-1,3195,3196,3197,-1,3198,3199,3200,-1,3201,3202,3203,-1,3204,3205,3206,-1,3207,3208,3209,-1,3210,3211,3212,-1,3213,3214,3215,-1,3216,3217,3218,-1,3219,3220,3221,-1,3222,3223,3224,-1,3225,3226,3227,-1,3228,3229,3230,-1,3231,3232,3233,-1,3234,3235,3236,-1,3237,3238,3239,-1,3240,3241,3242,-1,3243,3244,3245,-1,3246,3247,3248,-1,3249,3250,3251,-1,3252,3253,3254,-1,3255,3256,3257,-1,3258,3259,3260,-1,3261,3262,3263,-1,3264,3265,3266,-1,3267,3268,3269,-1,3270,3271,3272,-1,3273,3274,3275,-1,3276,3277,3278,-1,3279,3280,3281,-1,3282,3283,3284,-1,3285,3286,3287,-1,3288,3289,3290,-1,3291,3292,3293,-1,3294,3295,3296,-1,3297,3298,3299,-1,3300,3301,3302,-1,3303,3304,3305,-1,3306,3307,3308,-1,3309,3310,3311,-1,3312,3313,3314,-1,3315,3316,3317,-1,3318,3319,3320,-1,3321,3322,3323,-1,3324,3325,3326,-1,3327,3328,3329,-1,3330,3331,3332,-1,3333,3334,3335,-1,3336,3337,3338,-1,3339,3340,3341,-1,3342,3343,3344,-1,3345,3346,3347,-1,3348,3349,3350,-1,3351,3352,3353,-1,3354,3355,3356,-1,3357,3358,3359,-1,3360,3361,3362,-1,3363,3364,3365,-1,3366,3367,3368,-1,3369,3370,3371,-1,3372,3373,3374,-1,3375,3376,3377,-1,3378,3379,3380,-1,3381,3382,3383,-1,3384,3385,3386,-1,3387,3388,3389,-1,3390,3391,3392,-1,3393,3394,3395,-1,3396,3397,3398,-1,3399,3400,3401,-1,3402,3403,3404,-1,3405,3406,3407,-1,3408,3409,3410,-1,3411,3412,3413,-1,3414,3415,3416,-1,3417,3418,3419,-1,3420,3421,3422,-1,3423,3424,3425,-1,3426,3427,3428,-1,3429,3430,3431,-1,3432,3433,3434,-1,3435,3436,3437,-1,3438,3439,3440,-1,3441,3442,3443,-1,3444,3445,3446,-1,3447,3448,3449,-1,3450,3451,3452,-1,3453,3454,3455,-1,3456,3457,3458,-1,3459,3460,3461,-1,3462,3463,3464,-1,3465,3466,3467,-1,3468,3469,3470,-1,3471,3472,3473,-1,3474,3475,3476,-1,3477,3478,3479,-1,3480,3481,3482,-1,3483,3484,3485,-1,3486,3487,3488,-1,3489,3490,3491,-1,3492,3493,3494,-1,3495,3496,3497,-1,3498,3499,3500,-1,3501,3502,3503,-1,3504,3505,3506,-1,3507,3508,3509,-1,3510,3511,3512,-1,3513,3514,3515,-1,3516,3517,3518,-1,3519,3520,3521,-1,3522,3523,3524,-1,3525,3526,3527,-1,3528,3529,3530,-1,3531,3532,3533,-1,3534,3535,3536,-1,3537,3538,3539,-1,3540,3541,3542,-1,3543,3544,3545,-1,3546,3547,3548,-1,3549,3550,3551,-1,3552,3553,3554,-1,3555,3556,3557,-1,3558,3559,3560,-1,3561,3562,3563,-1,3564,3565,3566,-1,3567,3568,3569,-1,3570,3571,3572,-1,3573,3574,3575,-1,3576,3577,3578,-1,3579,3580,3581,-1,3582,3583,3584,-1,3585,3586,3587,-1,3588,3589,3590,-1,3591,3592,3593,-1,3594,3595,3596,-1,3597,3598,3599,-1,3600,3601,3602,-1,3603,3604,3605,-1,3606,3607,3608,-1,3609,3610,3611,-1,3612,3613,3614,-1,3615,3616,3617,-1,3618,3619,3620,-1,3621,3622,3623,-1,3624,3625,3626,-1,3627,3628,3629,-1,3630,3631,3632,-1,3633,3634,3635,-1,3636,3637,3638,-1,3639,3640,3641,-1,3642,3643,3644,-1,3645,3646,3647,-1,3648,3649,3650,-1,3651,3652,3653,-1,3654,3655,3656,-1,3657,3658,3659,-1,3660,3661,3662,-1,3663,3664,3665,-1,3666,3667,3668,-1,3669,3670,3671,-1,3672,3673,3674,-1,3675,3676,3677,-1,3678,3679,3680,-1,3681,3682,3683,-1,3684,3685,3686,-1,3687,3688,3689,-1,3690,3691,3692,-1,3693,3694,3695,-1,3696,3697,3698,-1,3699,3700,3701,-1,3702,3703,3704,-1,3705,3706,3707,-1,3708,3709,3710,-1,3711,3712,3713,-1,3714,3715,3716,-1,3717,3718,3719,-1,3720,3721,3722,-1,3723,3724,3725,-1,3726,3727,3728,-1,3729,3730,3731,-1,3732,3733,3734,-1,3735,3736,3737,-1,3738,3739,3740,-1,3741,3742,3743,-1,3744,3745,3746,-1,3747,3748,3749,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_normalIndex_6()
		{
			int[] value = {3750,3751,3752,-1,3753,3754,3755,-1,3756,3757,3758,-1,3759,3760,3761,-1,3762,3763,3764,-1,3765,3766,3767,-1,3768,3769,3770,-1,3771,3772,3773,-1,3774,3775,3776,-1,3777,3778,3779,-1,3780,3781,3782,-1,3783,3784,3785,-1,3786,3787,3788,-1,3789,3790,3791,-1,3792,3793,3794,-1,3795,3796,3797,-1,3798,3799,3800,-1,3801,3802,3803,-1,3804,3805,3806,-1,3807,3808,3809,-1,3810,3811,3812,-1,3813,3814,3815,-1,3816,3817,3818,-1,3819,3820,3821,-1,3822,3823,3824,-1,3825,3826,3827,-1,3828,3829,3830,-1,3831,3832,3833,-1,3834,3835,3836,-1,3837,3838,3839,-1,3840,3841,3842,-1,3843,3844,3845,-1,3846,3847,3848,-1,3849,3850,3851,-1,3852,3853,3854,-1,3855,3856,3857,-1,3858,3859,3860,-1,3861,3862,3863,-1,3864,3865,3866,-1,3867,3868,3869,-1,3870,3871,3872,-1,3873,3874,3875,-1,3876,3877,3878,-1,3879,3880,3881,-1,3882,3883,3884,-1,3885,3886,3887,-1,3888,3889,3890,-1,3891,3892,3893,-1,3894,3895,3896,-1,3897,3898,3899,-1,3900,3901,3902,-1,3903,3904,3905,-1,3906,3907,3908,-1,3909,3910,3911,-1,3912,3913,3914,-1,3915,3916,3917,-1,3918,3919,3920,-1,3921,3922,3923,-1,3924,3925,3926,-1,3927,3928,3929,-1,3930,3931,3932,-1,3933,3934,3935,-1,3936,3937,3938,-1,3939,3940,3941,-1,3942,3943,3944,-1,3945,3946,3947,-1,3948,3949,3950,-1,3951,3952,3953,-1,3954,3955,3956,-1,3957,3958,3959,-1,3960,3961,3962,-1,3963,3964,3965,-1,3966,3967,3968,-1,3969,3970,3971,-1,3972,3973,3974,-1,3975,3976,3977,-1,3978,3979,3980,-1,3981,3982,3983,-1,3984,3985,3986,-1,3987,3988,3989,-1,3990,3991,3992,-1,3993,3994,3995,-1,3996,3997,3998,-1,3999,4000,4001,-1,4002,4003,4004,-1,4005,4006,4007,-1,4008,4009,4010,-1,4011,4012,4013,-1,4014,4015,4016,-1,4017,4018,4019,-1,4020,4021,4022,-1,4023,4024,4025,-1,4026,4027,4028,-1,4029,4030,4031,-1,4032,4033,4034,-1,4035,4036,4037,-1,4038,4039,4040,-1,4041,4042,4043,-1,4044,4045,4046,-1,4047,4048,4049,-1,4050,4051,4052,-1,4053,4054,4055,-1,4056,4057,4058,-1,4059,4060,4061,-1,4062,4063,4064,-1,4065,4066,4067,-1,4068,4069,4070,-1,4071,4072,4073,-1,4074,4075,4076,-1,4077,4078,4079,-1,4080,4081,4082,-1,4083,4084,4085,-1,4086,4087,4088,-1,4089,4090,4091,-1,4092,4093,4094,-1,4095,4096,4097,-1,4098,4099,4100,-1,4101,4102,4103,-1,4104,4105,4106,-1,4107,4108,4109,-1,4110,4111,4112,-1,4113,4114,4115,-1,4116,4117,4118,-1,4119,4120,4121,-1,4122,4123,4124,-1,4125,4126,4127,-1,4128,4129,4130,-1,4131,4132,4133,-1,4134,4135,4136,-1,4137,4138,4139,-1,4140,4141,4142,-1,4143,4144,4145,-1,4146,4147,4148,-1,4149,4150,4151,-1,4152,4153,4154,-1,4155,4156,4157,-1,4158,4159,4160,-1,4161,4162,4163,-1,4164,4165,4166,-1,4167,4168,4169,-1,4170,4171,4172,-1,4173,4174,4175,-1,4176,4177,4178,-1,4179,4180,4181,-1,4182,4183,4184,-1,4185,4186,4187,-1,4188,4189,4190,-1,4191,4192,4193,-1,4194,4195,4196,-1,4197,4198,4199,-1,4200,4201,4202,-1,4203,4204,4205,-1,4206,4207,4208,-1,4209,4210,4211,-1,4212,4213,4214,-1,4215,4216,4217,-1,4218,4219,4220,-1,4221,4222,4223,-1,4224,4225,4226,-1,4227,4228,4229,-1,4230,4231,4232,-1,4233,4234,4235,-1,4236,4237,4238,-1,4239,4240,4241,-1,4242,4243,4244,-1,4245,4246,4247,-1,4248,4249,4250,-1,4251,4252,4253,-1,4254,4255,4256,-1,4257,4258,4259,-1,4260,4261,4262,-1,4263,4264,4265,-1,4266,4267,4268,-1,4269,4270,4271,-1,4272,4273,4274,-1,4275,4276,4277,-1,4278,4279,4280,-1,4281,4282,4283,-1,4284,4285,4286,-1,4287,4288,4289,-1,4290,4291,4292,-1,4293,4294,4295,-1,4296,4297,4298,-1,4299,4300,4301,-1,4302,4303,4304,-1,4305,4306,4307,-1,4308,4309,4310,-1,4311,4312,4313,-1,4314,4315,4316,-1,4317,4318,4319,-1,4320,4321,4322,-1,4323,4324,4325,-1,4326,4327,4328,-1,4329,4330,4331,-1,4332,4333,4334,-1,4335,4336,4337,-1,4338,4339,4340,-1,4341,4342,4343,-1,4344,4345,4346,-1,4347,4348,4349,-1,4350,4351,4352,-1,4353,4354,4355,-1,4356,4357,4358,-1,4359,4360,4361,-1,4362,4363,4364,-1,4365,4366,4367,-1,4368,4369,4370,-1,4371,4372,4373,-1,4374,4375,4376,-1,4377,4378,4379,-1,4380,4381,4382,-1,4383,4384,4385,-1,4386,4387,4388,-1,4389,4390,4391,-1,4392,4393,4394,-1,4395,4396,4397,-1,4398,4399,4400,-1,4401,4402,4403,-1,4404,4405,4406,-1,4407,4408,4409,-1,4410,4411,4412,-1,4413,4414,4415,-1,4416,4417,4418,-1,4419,4420,4421,-1,4422,4423,4424,-1,4425,4426,4427,-1,4428,4429,4430,-1,4431,4432,4433,-1,4434,4435,4436,-1,4437,4438,4439,-1,4440,4441,4442,-1,4443,4444,4445,-1,4446,4447,4448,-1,4449,4450,4451,-1,4452,4453,4454,-1,4455,4456,4457,-1,4458,4459,4460,-1,4461,4462,4463,-1,4464,4465,4466,-1,4467,4468,4469,-1,4470,4471,4472,-1,4473,4474,4475,-1,4476,4477,4478,-1,4479,4480,4481,-1,4482,4483,4484,-1,4485,4486,4487,-1,4488,4489,4490,-1,4491,4492,4493,-1,4494,4495,4496,-1,4497,4498,4499,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_normalIndex_7()
		{
			int[] value = {4500,4501,4502,-1,4503,4504,4505,-1,4506,4507,4508,-1,4509,4510,4511,-1,4512,4513,4514,-1,4515,4516,4517,-1,4518,4519,4520,-1,4521,4522,4523,-1,4524,4525,4526,-1,4527,4528,4529,-1,4530,4531,4532,-1,4533,4534,4535,-1,4536,4537,4538,-1,4539,4540,4541,-1,4542,4543,4544,-1,4545,4546,4547,-1,4548,4549,4550,-1,4551,4552,4553,-1,4554,4555,4556,-1,4557,4558,4559,-1,4560,4561,4562,-1,4563,4564,4565,-1,4566,4567,4568,-1,4569,4570,4571,-1,4572,4573,4574,-1,4575,4576,4577,-1,4578,4579,4580,-1,4581,4582,4583,-1,4584,4585,4586,-1,4587,4588,4589,-1,4590,4591,4592,-1,4593,4594,4595,-1,4596,4597,4598,-1,4599,4600,4601,-1,4602,4603,4604,-1,4605,4606,4607,-1,4608,4609,4610,-1,4611,4612,4613,-1,4614,4615,4616,-1,4617,4618,4619,-1,4620,4621,4622,-1,4623,4624,4625,-1,4626,4627,4628,-1,4629,4630,4631,-1,4632,4633,4634,-1,4635,4636,4637,-1,4638,4639,4640,-1,4641,4642,4643,-1,4644,4645,4646,-1,4647,4648,4649,-1,4650,4651,4652,-1,4653,4654,4655,-1,4656,4657,4658,-1,4659,4660,4661,-1,4662,4663,4664,-1,4665,4666,4667,-1,4668,4669,4670,-1,4671,4672,4673,-1,4674,4675,4676,-1,4677,4678,4679,-1,4680,4681,4682,-1,4683,4684,4685,-1,4686,4687,4688,-1,4689,4690,4691,-1,4692,4693,4694,-1,4695,4696,4697,-1,4698,4699,4700,-1,4701,4702,4703,-1,4704,4705,4706,-1,4707,4708,4709,-1,4710,4711,4712,-1,4713,4714,4715,-1,4716,4717,4718,-1,4719,4720,4721,-1,4722,4723,4724,-1,4725,4726,4727,-1,4728,4729,4730,-1,4731,4732,4733,-1,4734,4735,4736,-1,4737,4738,4739,-1,4740,4741,4742,-1,4743,4744,4745,-1,4746,4747,4748,-1,4749,4750,4751,-1,4752,4753,4754,-1,4755,4756,4757,-1,4758,4759,4760,-1,4761,4762,4763,-1,4764,4765,4766,-1,4767,4768,4769,-1,4770,4771,4772,-1,4773,4774,4775,-1,4776,4777,4778,-1,4779,4780,4781,-1,4782,4783,4784,-1,4785,4786,4787,-1,4788,4789,4790,-1,4791,4792,4793,-1,4794,4795,4796,-1,4797,4798,4799,-1,4800,4801,4802,-1,4803,4804,4805,-1,4806,4807,4808,-1,4809,4810,4811,-1,4812,4813,4814,-1,4815,4816,4817,-1,4818,4819,4820,-1,4821,4822,4823,-1,4824,4825,4826,-1,4827,4828,4829,-1,4830,4831,4832,-1,4833,4834,4835,-1,4836,4837,4838,-1,4839,4840,4841,-1,4842,4843,4844,-1,4845,4846,4847,-1,4848,4849,4850,-1,4851,4852,4853,-1,4854,4855,4856,-1,4857,4858,4859,-1,4860,4861,4862,-1,4863,4864,4865,-1,4866,4867,4868,-1,4869,4870,4871,-1,4872,4873,4874,-1,4875,4876,4877,-1,4878,4879,4880,-1,4881,4882,4883,-1,4884,4885,4886,-1,4887,4888,4889,-1,4890,4891,4892,-1,4893,4894,4895,-1,4896,4897,4898,-1,4899,4900,4901,-1,4902,4903,4904,-1,4905,4906,4907,-1,4908,4909,4910,-1,4911,4912,4913,-1,4914,4915,4916,-1,4917,4918,4919,-1,4920,4921,4922,-1,4923,4924,4925,-1,4926,4927,4928,-1,4929,4930,4931,-1,4932,4933,4934,-1,4935,4936,4937,-1,4938,4939,4940,-1,4941,4942,4943,-1,4944,4945,4946,-1,4947,4948,4949,-1,4950,4951,4952,-1,4953,4954,4955,-1,4956,4957,4958,-1,4959,4960,4961,-1,4962,4963,4964,-1,4965,4966,4967,-1,4968,4969,4970,-1,4971,4972,4973,-1,4974,4975,4976,-1,4977,4978,4979,-1,4980,4981,4982,-1,4983,4984,4985,-1,4986,4987,4988,-1,4989,4990,4991,-1,4992,4993,4994,-1,4995,4996,4997,-1,4998,4999,5000,-1,5001,5002,5003,-1,5004,5005,5006,-1,5007,5008,5009,-1,5010,5011,5012,-1,5013,5014,5015,-1,5016,5017,5018,-1,5019,5020,5021,-1,5022,5023,5024,-1,5025,5026,5027,-1,5028,5029,5030,-1,5031,5032,5033,-1,5034,5035,5036,-1,5037,5038,5039,-1,5040,5041,5042,-1,5043,5044,5045,-1,5046,5047,5048,-1,5049,5050,5051,-1,5052,5053,5054,-1,5055,5056,5057,-1,5058,5059,5060,-1,5061,5062,5063,-1,5064,5065,5066,-1,5067,5068,5069,-1,5070,5071,5072,-1,5073,5074,5075,-1,5076,5077,5078,-1,5079,5080,5081,-1,5082,5083,5084,-1,5085,5086,5087,-1,5088,5089,5090,-1,5091,5092,5093,-1,5094,5095,5096,-1,5097,5098,5099,-1,5100,5101,5102,-1,5103,5104,5105,-1,5106,5107,5108,-1,5109,5110,5111,-1,5112,5113,5114,-1,5115,5116,5117,-1,5118,5119,5120,-1,5121,5122,5123,-1,5124,5125,5126,-1,5127,5128,5129,-1,5130,5131,5132,-1,5133,5134,5135,-1,5136,5137,5138,-1,5139,5140,5141,-1,5142,5143,5144,-1,5145,5146,5147,-1,5148,5149,5150,-1,5151,5152,5153,-1,5154,5155,5156,-1,5157,5158,5159,-1,5160,5161,5162,-1,5163,5164,5165,-1,5166,5167,5168,-1,5169,5170,5171,-1,5172,5173,5174,-1,5175,5176,5177,-1,5178,5179,5180,-1,5181,5182,5183,-1,5184,5185,5186,-1,5187,5188,5189,-1,5190,5191,5192,-1,5193,5194,5195,-1,5196,5197,5198,-1,5199,5200,5201,-1,5202,5203,5204,-1,5205,5206,5207,-1,5208,5209,5210,-1,5211,5212,5213,-1,5214,5215,5216,-1,5217,5218,5219,-1,5220,5221,5222,-1,5223,5224,5225,-1,5226,5227,5228,-1,5229,5230,5231,-1,5232,5233,5234,-1,5235,5236,5237,-1,5238,5239,5240,-1,5241,5242,5243,-1,5244,5245,5246,-1,5247,5248,5249,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_normalIndex_8()
		{
			int[] value = {5250,5251,5252,-1,5253,5254,5255,-1,5256,5257,5258,-1,5259,5260,5261,-1,5262,5263,5264,-1,5265,5266,5267,-1,5268,5269,5270,-1,5271,5272,5273,-1,5274,5275,5276,-1,5277,5278,5279,-1,5280,5281,5282,-1,5283,5284,5285,-1,5286,5287,5288,-1,5289,5290,5291,-1,5292,5293,5294,-1,5295,5296,5297,-1,5298,5299,5300,-1,5301,5302,5303,-1,5304,5305,5306,-1,5307,5308,5309,-1,5310,5311,5312,-1,5313,5314,5315,-1,5316,5317,5318,-1,5319,5320,5321,-1,5322,5323,5324,-1,5325,5326,5327,-1,5328,5329,5330,-1,5331,5332,5333,-1,5334,5335,5336,-1,5337,5338,5339,-1,5340,5341,5342,-1,5343,5344,5345,-1,5346,5347,5348,-1,5349,5350,5351,-1,5352,5353,5354,-1,5355,5356,5357,-1,5358,5359,5360,-1,5361,5362,5363,-1,5364,5365,5366,-1,5367,5368,5369,-1,5370,5371,5372,-1,5373,5374,5375,-1,5376,5377,5378,-1,5379,5380,5381,-1,5382,5383,5384,-1,5385,5386,5387,-1,5388,5389,5390,-1,5391,5392,5393,-1,5394,5395,5396,-1,5397,5398,5399,-1,5400,5401,5402,-1,5403,5404,5405,-1,5406,5407,5408,-1,5409,5410,5411,-1,5412,5413,5414,-1,5415,5416,5417,-1,5418,5419,5420,-1,5421,5422,5423,-1,5424,5425,5426,-1,5427,5428,5429,-1,5430,5431,5432,-1,5433,5434,5435,-1,5436,5437,5438,-1,5439,5440,5441,-1,5442,5443,5444,-1,5445,5446,5447,-1,5448,5449,5450,-1,5451,5452,5453,-1,5454,5455,5456,-1,5457,5458,5459,-1,5460,5461,5462,-1,5463,5464,5465,-1,5466,5467,5468,-1,5469,5470,5471,-1,5472,5473,5474,-1,5475,5476,5477,-1,5478,5479,5480,-1,5481,5482,5483,-1,5484,5485,5486,-1,5487,5488,5489,-1,5490,5491,5492,-1,5493,5494,5495,-1,5496,5497,5498,-1,5499,5500,5501,-1,5502,5503,5504,-1,5505,5506,5507,-1,5508,5509,5510,-1,5511,5512,5513,-1,5514,5515,5516,-1,5517,5518,5519,-1,5520,5521,5522,-1,5523,5524,5525,-1,5526,5527,5528,-1,5529,5530,5531,-1,5532,5533,5534,-1,5535,5536,5537,-1,5538,5539,5540,-1,5541,5542,5543,-1,5544,5545,5546,-1,5547,5548,5549,-1,5550,5551,5552,-1,5553,5554,5555,-1,5556,5557,5558,-1,5559,5560,5561,-1,5562,5563,5564,-1,5565,5566,5567,-1,5568,5569,5570,-1,5571,5572,5573,-1,5574,5575,5576,-1,5577,5578,5579,-1,5580,5581,5582,-1,5583,5584,5585,-1,5586,5587,5588,-1,5589,5590,5591,-1,5592,5593,5594,-1,5595,5596,5597,-1,5598,5599,5600,-1,5601,5602,5603,-1,5604,5605,5606,-1,5607,5608,5609,-1,5610,5611,5612,-1,5613,5614,5615,-1,5616,5617,5618,-1,5619,5620,5621,-1,5622,5623,5624,-1,5625,5626,5627,-1,5628,5629,5630,-1,5631,5632,5633,-1,5634,5635,5636,-1,5637,5638,5639,-1,5640,5641,5642,-1,5643,5644,5645,-1,5646,5647,5648,-1,5649,5650,5651,-1,5652,5653,5654,-1,5655,5656,5657,-1,5658,5659,5660,-1,5661,5662,5663,-1,5664,5665,5666,-1,5667,5668,5669,-1,5670,5671,5672,-1,5673,5674,5675,-1,5676,5677,5678,-1,5679,5680,5681,-1,5682,5683,5684,-1,5685,5686,5687,-1,5688,5689,5690,-1,5691,5692,5693,-1,5694,5695,5696,-1,5697,5698,5699,-1,5700,5701,5702,-1,5703,5704,5705,-1,5706,5707,5708,-1,5709,5710,5711,-1,5712,5713,5714,-1,5715,5716,5717,-1,5718,5719,5720,-1,5721,5722,5723,-1,5724,5725,5726,-1,5727,5728,5729,-1,5730,5731,5732,-1,5733,5734,5735,-1,5736,5737,5738,-1,5739,5740,5741,-1,5742,5743,5744,-1,5745,5746,5747,-1,5748,5749,5750,-1,5751,5752,5753,-1,5754,5755,5756,-1,5757,5758,5759,-1,5760,5761,5762,-1,5763,5764,5765,-1,5766,5767,5768,-1,5769,5770,5771,-1,5772,5773,5774,-1,5775,5776,5777,-1,5778,5779,5780,-1,5781,5782,5783,-1,5784,5785,5786,-1,5787,5788,5789,-1,5790,5791,5792,-1,5793,5794,5795,-1,5796,5797,5798,-1,5799,5800,5801,-1,5802,5803,5804,-1,5805,5806,5807,-1,5808,5809,5810,-1,5811,5812,5813,-1,5814,5815,5816,-1,5817,5818,5819,-1,5820,5821,5822,-1,5823,5824,5825,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getMi24_0_GEOMETRY_6_19_texCoordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,114,115,116,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,147,148,149,-1,150,151,152,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,162,163,164,-1,165,166,167,-1,168,169,170,-1,171,172,173,-1,174,175,176,-1,177,178,179,-1,180,181,182,-1,183,184,185,-1,186,187,188,-1,189,190,191,-1,192,193,194,-1,195,196,197,-1,198,199,200,-1,201,202,203,-1,204,205,206,-1,207,208,209,-1,210,211,212,-1,213,214,215,-1,216,217,218,-1,219,220,221,-1,222,223,224,-1,225,226,227,-1,228,229,230,-1,231,232,233,-1,234,235,236,-1,237,238,239,-1,240,241,242,-1,243,244,245,-1,246,247,248,-1,249,250,251,-1,252,253,254,-1,255,256,257,-1,258,259,260,-1,261,262,263,-1,264,265,266,-1,267,268,269,-1,270,271,272,-1,273,274,275,-1,276,277,278,-1,279,280,281,-1,282,283,284,-1,285,286,287,-1,288,289,290,-1,291,292,293,-1,294,295,296,-1,297,298,299,-1,300,301,302,-1,303,304,305,-1,306,307,308,-1,309,310,311,-1,312,313,314,-1,315,316,317,-1,318,319,320,-1,321,322,323,-1,324,325,326,-1,327,328,329,-1,330,331,332,-1,333,334,335,-1,336,337,338,-1,339,340,341,-1,342,343,344,-1,345,346,347,-1,348,349,350,-1,351,352,353,-1,354,355,356,-1,357,358,359,-1,360,361,362,-1,363,364,365,-1,366,367,368,-1,369,370,371,-1,372,373,374,-1,375,376,377,-1,378,379,380,-1,381,382,383,-1,384,385,386,-1,387,388,389,-1,390,391,392,-1,393,394,395,-1,396,397,398,-1,399,400,401,-1,402,403,404,-1,405,406,407,-1,408,409,410,-1,411,412,413,-1,414,415,416,-1,417,418,419,-1,420,421,422,-1,423,424,425,-1,426,427,428,-1,429,430,431,-1,432,433,434,-1,435,436,437,-1,438,439,440,-1,441,442,443,-1,444,445,446,-1,447,448,449,-1,450,451,452,-1,453,454,455,-1,456,457,458,-1,459,460,461,-1,462,463,464,-1,465,466,467,-1,468,469,470,-1,471,472,473,-1,474,475,476,-1,477,478,479,-1,480,481,482,-1,483,484,485,-1,486,487,488,-1,489,490,491,-1,492,493,494,-1,495,496,497,-1,498,499,500,-1,501,502,503,-1,504,505,506,-1,507,508,509,-1,510,511,512,-1,513,514,515,-1,516,517,518,-1,519,520,521,-1,522,523,524,-1,525,526,527,-1,528,529,530,-1,531,532,533,-1,534,535,536,-1,537,538,539,-1,540,541,542,-1,543,544,545,-1,546,547,548,-1,549,550,551,-1,552,553,554,-1,555,556,557,-1,558,559,560,-1,561,562,563,-1,564,565,566,-1,567,568,569,-1,570,571,572,-1,573,574,575,-1,576,577,578,-1,579,580,581,-1,582,583,584,-1,585,586,587,-1,588,589,590,-1,591,592,593,-1,594,595,596,-1,597,598,599,-1,600,601,602,-1,603,604,605,-1,606,607,608,-1,609,610,611,-1,612,613,614,-1,615,616,617,-1,618,619,620,-1,621,622,623,-1,624,625,626,-1,627,628,629,-1,630,631,632,-1,633,634,635,-1,636,637,638,-1,639,640,641,-1,642,643,644,-1,645,646,647,-1,648,649,650,-1,651,652,653,-1,654,655,656,-1,657,658,659,-1,660,661,662,-1,663,664,665,-1,666,667,668,-1,669,670,671,-1,672,673,674,-1,675,676,677,-1,678,679,680,-1,681,682,683,-1,684,685,686,-1,687,688,689,-1,690,691,692,-1,693,694,695,-1,696,697,698,-1,699,700,701,-1,702,703,704,-1,705,706,707,-1,708,709,710,-1,711,712,713,-1,714,715,716,-1,717,718,719,-1,720,721,722,-1,723,724,725,-1,726,727,728,-1,729,730,731,-1,732,733,734,-1,735,736,737,-1,738,739,740,-1,741,742,743,-1,744,745,746,-1,747,748,749,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_texCoordIndex_2()
		{
			int[] value = {750,751,752,-1,753,754,755,-1,756,757,758,-1,759,760,761,-1,762,763,764,-1,765,766,767,-1,768,769,770,-1,771,772,773,-1,774,775,776,-1,777,778,779,-1,780,781,782,-1,783,784,785,-1,786,787,788,-1,789,790,791,-1,792,793,794,-1,795,796,797,-1,798,799,800,-1,801,802,803,-1,804,805,806,-1,807,808,809,-1,810,811,812,-1,813,814,815,-1,816,817,818,-1,819,820,821,-1,822,823,824,-1,825,826,827,-1,828,829,830,-1,831,832,833,-1,834,835,836,-1,837,838,839,-1,840,841,842,-1,843,844,845,-1,846,847,848,-1,849,850,851,-1,852,853,854,-1,855,856,857,-1,858,859,860,-1,861,862,863,-1,864,865,866,-1,867,868,869,-1,870,871,872,-1,873,874,875,-1,876,877,878,-1,879,880,881,-1,882,883,884,-1,885,886,887,-1,888,889,890,-1,891,892,893,-1,894,895,896,-1,897,898,899,-1,900,901,902,-1,903,904,905,-1,906,907,908,-1,909,910,911,-1,912,913,914,-1,915,916,917,-1,918,919,920,-1,921,922,923,-1,924,925,926,-1,927,928,929,-1,930,931,932,-1,933,934,935,-1,936,937,938,-1,939,940,941,-1,942,943,944,-1,945,946,947,-1,948,949,950,-1,951,952,953,-1,954,955,956,-1,957,958,959,-1,960,961,962,-1,963,964,965,-1,966,967,968,-1,969,970,971,-1,972,973,974,-1,975,976,977,-1,978,979,980,-1,981,982,983,-1,984,985,986,-1,987,988,989,-1,990,991,992,-1,993,994,995,-1,996,997,998,-1,999,1000,1001,-1,1002,1003,1004,-1,1005,1006,1007,-1,1008,1009,1010,-1,1011,1012,1013,-1,1014,1015,1016,-1,1017,1018,1019,-1,1020,1021,1022,-1,1023,1024,1025,-1,1026,1027,1028,-1,1029,1030,1031,-1,1032,1033,1034,-1,1035,1036,1037,-1,1038,1039,1040,-1,1041,1042,1043,-1,1044,1045,1046,-1,1047,1048,1049,-1,1050,1051,1052,-1,1053,1054,1055,-1,1056,1057,1058,-1,1059,1060,1061,-1,1062,1063,1064,-1,1065,1066,1067,-1,1068,1069,1070,-1,1071,1072,1073,-1,1074,1075,1076,-1,1077,1078,1079,-1,1080,1081,1082,-1,1083,1084,1085,-1,1086,1087,1088,-1,1089,1090,1091,-1,1092,1093,1094,-1,1095,1096,1097,-1,1098,1099,1100,-1,1101,1102,1103,-1,1104,1105,1106,-1,1107,1108,1109,-1,1110,1111,1112,-1,1113,1114,1115,-1,1116,1117,1118,-1,1119,1120,1121,-1,1122,1123,1124,-1,1125,1126,1127,-1,1128,1129,1130,-1,1131,1132,1133,-1,1134,1135,1136,-1,1137,1138,1139,-1,1140,1141,1142,-1,1143,1144,1145,-1,1146,1147,1148,-1,1149,1150,1151,-1,1152,1153,1154,-1,1155,1156,1157,-1,1158,1159,1160,-1,1161,1162,1163,-1,1164,1165,1166,-1,1167,1168,1169,-1,1170,1171,1172,-1,1173,1174,1175,-1,1176,1177,1178,-1,1179,1180,1181,-1,1182,1183,1184,-1,1185,1186,1187,-1,1188,1189,1190,-1,1191,1192,1193,-1,1194,1195,1196,-1,1197,1198,1199,-1,1200,1201,1202,-1,1203,1204,1205,-1,1206,1207,1208,-1,1209,1210,1211,-1,1212,1213,1214,-1,1215,1216,1217,-1,1218,1219,1220,-1,1221,1222,1223,-1,1224,1225,1226,-1,1227,1228,1229,-1,1230,1231,1232,-1,1233,1234,1235,-1,1236,1237,1238,-1,1239,1240,1241,-1,1242,1243,1244,-1,1245,1246,1247,-1,1248,1249,1250,-1,1251,1252,1253,-1,1254,1255,1256,-1,1257,1258,1259,-1,1260,1261,1262,-1,1263,1264,1265,-1,1266,1267,1268,-1,1269,1270,1271,-1,1272,1273,1274,-1,1275,1276,1277,-1,1278,1279,1280,-1,1281,1282,1283,-1,1284,1285,1286,-1,1287,1288,1289,-1,1290,1291,1292,-1,1293,1294,1295,-1,1296,1297,1298,-1,1299,1300,1301,-1,1302,1303,1304,-1,1305,1306,1307,-1,1308,1309,1310,-1,1311,1312,1313,-1,1314,1315,1316,-1,1317,1318,1319,-1,1320,1321,1322,-1,1323,1324,1325,-1,1326,1327,1328,-1,1329,1330,1331,-1,1332,1333,1334,-1,1335,1336,1337,-1,1338,1339,1340,-1,1341,1342,1343,-1,1344,1345,1346,-1,1347,1348,1349,-1,1350,1351,1352,-1,1353,1354,1355,-1,1356,1357,1358,-1,1359,1360,1361,-1,1362,1363,1364,-1,1365,1366,1367,-1,1368,1369,1370,-1,1371,1372,1373,-1,1374,1375,1376,-1,1377,1378,1379,-1,1380,1381,1382,-1,1383,1384,1385,-1,1386,1387,1388,-1,1389,1390,1391,-1,1392,1393,1394,-1,1395,1396,1397,-1,1398,1399,1400,-1,1401,1402,1403,-1,1404,1405,1406,-1,1407,1408,1409,-1,1410,1411,1412,-1,1413,1414,1415,-1,1416,1417,1418,-1,1419,1420,1421,-1,1422,1423,1424,-1,1425,1426,1427,-1,1428,1429,1430,-1,1431,1432,1433,-1,1434,1435,1436,-1,1437,1438,1439,-1,1440,1441,1442,-1,1443,1444,1445,-1,1446,1447,1448,-1,1449,1450,1451,-1,1452,1453,1454,-1,1455,1456,1457,-1,1458,1459,1460,-1,1461,1462,1463,-1,1464,1465,1466,-1,1467,1468,1469,-1,1470,1471,1472,-1,1473,1474,1475,-1,1476,1477,1478,-1,1479,1480,1481,-1,1482,1483,1484,-1,1485,1486,1487,-1,1488,1489,1490,-1,1491,1492,1493,-1,1494,1495,1496,-1,1497,1498,1499,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_texCoordIndex_3()
		{
			int[] value = {1500,1501,1502,-1,1503,1504,1505,-1,1506,1507,1508,-1,1509,1510,1511,-1,1512,1513,1514,-1,1515,1516,1517,-1,1518,1519,1520,-1,1521,1522,1523,-1,1524,1525,1526,-1,1527,1528,1529,-1,1530,1531,1532,-1,1533,1534,1535,-1,1536,1537,1538,-1,1539,1540,1541,-1,1542,1543,1544,-1,1545,1546,1547,-1,1548,1549,1550,-1,1551,1552,1553,-1,1554,1555,1556,-1,1557,1558,1559,-1,1560,1561,1562,-1,1563,1564,1565,-1,1566,1567,1568,-1,1569,1570,1571,-1,1572,1573,1574,-1,1575,1576,1577,-1,1578,1579,1580,-1,1581,1582,1583,-1,1584,1585,1586,-1,1587,1588,1589,-1,1590,1591,1592,-1,1593,1594,1595,-1,1596,1597,1598,-1,1599,1600,1601,-1,1602,1603,1604,-1,1605,1606,1607,-1,1608,1609,1610,-1,1611,1612,1613,-1,1614,1615,1616,-1,1617,1618,1619,-1,1620,1621,1622,-1,1623,1624,1625,-1,1626,1627,1628,-1,1629,1630,1631,-1,1632,1633,1634,-1,1635,1636,1637,-1,1638,1639,1640,-1,1641,1642,1643,-1,1644,1645,1646,-1,1647,1648,1649,-1,1650,1651,1652,-1,1653,1654,1655,-1,1656,1657,1658,-1,1659,1660,1661,-1,1662,1663,1664,-1,1665,1666,1667,-1,1668,1669,1670,-1,1671,1672,1673,-1,1674,1675,1676,-1,1677,1678,1679,-1,1680,1681,1682,-1,1683,1684,1685,-1,1686,1687,1688,-1,1689,1690,1691,-1,1692,1693,1694,-1,1695,1696,1697,-1,1698,1699,1700,-1,1701,1702,1703,-1,1704,1705,1706,-1,1707,1708,1709,-1,1710,1711,1712,-1,1713,1714,1715,-1,1716,1717,1718,-1,1719,1720,1721,-1,1722,1723,1724,-1,1725,1726,1727,-1,1728,1729,1730,-1,1731,1732,1733,-1,1734,1735,1736,-1,1737,1738,1739,-1,1740,1741,1742,-1,1743,1744,1745,-1,1746,1747,1748,-1,1749,1750,1751,-1,1752,1753,1754,-1,1755,1756,1757,-1,1758,1759,1760,-1,1761,1762,1763,-1,1764,1765,1766,-1,1767,1768,1769,-1,1770,1771,1772,-1,1773,1774,1775,-1,1776,1777,1778,-1,1779,1780,1781,-1,1782,1783,1784,-1,1785,1786,1787,-1,1788,1789,1790,-1,1791,1792,1793,-1,1794,1795,1796,-1,1797,1798,1799,-1,1800,1801,1802,-1,1803,1804,1805,-1,1806,1807,1808,-1,1809,1810,1811,-1,1812,1813,1814,-1,1815,1816,1817,-1,1818,1819,1820,-1,1821,1822,1823,-1,1824,1825,1826,-1,1827,1828,1829,-1,1830,1831,1832,-1,1833,1834,1835,-1,1836,1837,1838,-1,1839,1840,1841,-1,1842,1843,1844,-1,1845,1846,1847,-1,1848,1849,1850,-1,1851,1852,1853,-1,1854,1855,1856,-1,1857,1858,1859,-1,1860,1861,1862,-1,1863,1864,1865,-1,1866,1867,1868,-1,1869,1870,1871,-1,1872,1873,1874,-1,1875,1876,1877,-1,1878,1879,1880,-1,1881,1882,1883,-1,1884,1885,1886,-1,1887,1888,1889,-1,1890,1891,1892,-1,1893,1894,1895,-1,1896,1897,1898,-1,1899,1900,1901,-1,1902,1903,1904,-1,1905,1906,1907,-1,1908,1909,1910,-1,1911,1912,1913,-1,1914,1915,1916,-1,1917,1918,1919,-1,1920,1921,1922,-1,1923,1924,1925,-1,1926,1927,1928,-1,1929,1930,1931,-1,1932,1933,1934,-1,1935,1936,1937,-1,1938,1939,1940,-1,1941,1942,1943,-1,1944,1945,1946,-1,1947,1948,1949,-1,1950,1951,1952,-1,1953,1954,1955,-1,1956,1957,1958,-1,1959,1960,1961,-1,1962,1963,1964,-1,1965,1966,1967,-1,1968,1969,1970,-1,1971,1972,1973,-1,1974,1975,1976,-1,1977,1978,1979,-1,1980,1981,1982,-1,1983,1984,1985,-1,1986,1987,1988,-1,1989,1990,1991,-1,1992,1993,1994,-1,1995,1996,1997,-1,1998,1999,2000,-1,2001,2002,2003,-1,2004,2005,2006,-1,2007,2008,2009,-1,2010,2011,2012,-1,2013,2014,2015,-1,2016,2017,2018,-1,2019,2020,2021,-1,2022,2023,2024,-1,2025,2026,2027,-1,2028,2029,2030,-1,2031,2032,2033,-1,2034,2035,2036,-1,2037,2038,2039,-1,2040,2041,2042,-1,2043,2044,2045,-1,2046,2047,2048,-1,2049,2050,2051,-1,2052,2053,2054,-1,2055,2056,2057,-1,2058,2059,2060,-1,2061,2062,2063,-1,2064,2065,2066,-1,2067,2068,2069,-1,2070,2071,2072,-1,2073,2074,2075,-1,2076,2077,2078,-1,2079,2080,2081,-1,2082,2083,2084,-1,2085,2086,2087,-1,2088,2089,2090,-1,2091,2092,2093,-1,2094,2095,2096,-1,2097,2098,2099,-1,2100,2101,2102,-1,2103,2104,2105,-1,2106,2107,2108,-1,2109,2110,2111,-1,2112,2113,2114,-1,2115,2116,2117,-1,2118,2119,2120,-1,2121,2122,2123,-1,2124,2125,2126,-1,2127,2128,2129,-1,2130,2131,2132,-1,2133,2134,2135,-1,2136,2137,2138,-1,2139,2140,2141,-1,2142,2143,2144,-1,2145,2146,2147,-1,2148,2149,2150,-1,2151,2152,2153,-1,2154,2155,2156,-1,2157,2158,2159,-1,2160,2161,2162,-1,2163,2164,2165,-1,2166,2167,2168,-1,2169,2170,2171,-1,2172,2173,2174,-1,2175,2176,2177,-1,2178,2179,2180,-1,2181,2182,2183,-1,2184,2185,2186,-1,2187,2188,2189,-1,2190,2191,2192,-1,2193,2194,2195,-1,2196,2197,2198,-1,2199,2200,2201,-1,2202,2203,2204,-1,2205,2206,2207,-1,2208,2209,2210,-1,2211,2212,2213,-1,2214,2215,2216,-1,2217,2218,2219,-1,2220,2221,2222,-1,2223,2224,2225,-1,2226,2227,2228,-1,2229,2230,2231,-1,2232,2233,2234,-1,2235,2236,2237,-1,2238,2239,2240,-1,2241,2242,2243,-1,2244,2245,2246,-1,2247,2248,2249,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_texCoordIndex_4()
		{
			int[] value = {2250,2251,2252,-1,2253,2254,2255,-1,2256,2257,2258,-1,2259,2260,2261,-1,2262,2263,2264,-1,2265,2266,2267,-1,2268,2269,2270,-1,2271,2272,2273,-1,2274,2275,2276,-1,2277,2278,2279,-1,2280,2281,2282,-1,2283,2284,2285,-1,2286,2287,2288,-1,2289,2290,2291,-1,2292,2293,2294,-1,2295,2296,2297,-1,2298,2299,2300,-1,2301,2302,2303,-1,2304,2305,2306,-1,2307,2308,2309,-1,2310,2311,2312,-1,2313,2314,2315,-1,2316,2317,2318,-1,2319,2320,2321,-1,2322,2323,2324,-1,2325,2326,2327,-1,2328,2329,2330,-1,2331,2332,2333,-1,2334,2335,2336,-1,2337,2338,2339,-1,2340,2341,2342,-1,2343,2344,2345,-1,2346,2347,2348,-1,2349,2350,2351,-1,2352,2353,2354,-1,2355,2356,2357,-1,2358,2359,2360,-1,2361,2362,2363,-1,2364,2365,2366,-1,2367,2368,2369,-1,2370,2371,2372,-1,2373,2374,2375,-1,2376,2377,2378,-1,2379,2380,2381,-1,2382,2383,2384,-1,2385,2386,2387,-1,2388,2389,2390,-1,2391,2392,2393,-1,2394,2395,2396,-1,2397,2398,2399,-1,2400,2401,2402,-1,2403,2404,2405,-1,2406,2407,2408,-1,2409,2410,2411,-1,2412,2413,2414,-1,2415,2416,2417,-1,2418,2419,2420,-1,2421,2422,2423,-1,2424,2425,2426,-1,2427,2428,2429,-1,2430,2431,2432,-1,2433,2434,2435,-1,2436,2437,2438,-1,2439,2440,2441,-1,2442,2443,2444,-1,2445,2446,2447,-1,2448,2449,2450,-1,2451,2452,2453,-1,2454,2455,2456,-1,2457,2458,2459,-1,2460,2461,2462,-1,2463,2464,2465,-1,2466,2467,2468,-1,2469,2470,2471,-1,2472,2473,2474,-1,2475,2476,2477,-1,2478,2479,2480,-1,2481,2482,2483,-1,2484,2485,2486,-1,2487,2488,2489,-1,2490,2491,2492,-1,2493,2494,2495,-1,2496,2497,2498,-1,2499,2500,2501,-1,2502,2503,2504,-1,2505,2506,2507,-1,2508,2509,2510,-1,2511,2512,2513,-1,2514,2515,2516,-1,2517,2518,2519,-1,2520,2521,2522,-1,2523,2524,2525,-1,2526,2527,2528,-1,2529,2530,2531,-1,2532,2533,2534,-1,2535,2536,2537,-1,2538,2539,2540,-1,2541,2542,2543,-1,2544,2545,2546,-1,2547,2548,2549,-1,2550,2551,2552,-1,2553,2554,2555,-1,2556,2557,2558,-1,2559,2560,2561,-1,2562,2563,2564,-1,2565,2566,2567,-1,2568,2569,2570,-1,2571,2572,2573,-1,2574,2575,2576,-1,2577,2578,2579,-1,2580,2581,2582,-1,2583,2584,2585,-1,2586,2587,2588,-1,2589,2590,2591,-1,2592,2593,2594,-1,2595,2596,2597,-1,2598,2599,2600,-1,2601,2602,2603,-1,2604,2605,2606,-1,2607,2608,2609,-1,2610,2611,2612,-1,2613,2614,2615,-1,2616,2617,2618,-1,2619,2620,2621,-1,2622,2623,2624,-1,2625,2626,2627,-1,2628,2629,2630,-1,2631,2632,2633,-1,2634,2635,2636,-1,2637,2638,2639,-1,2640,2641,2642,-1,2643,2644,2645,-1,2646,2647,2648,-1,2649,2650,2651,-1,2652,2653,2654,-1,2655,2656,2657,-1,2658,2659,2660,-1,2661,2662,2663,-1,2664,2665,2666,-1,2667,2668,2669,-1,2670,2671,2672,-1,2673,2674,2675,-1,2676,2677,2678,-1,2679,2680,2681,-1,2682,2683,2684,-1,2685,2686,2687,-1,2688,2689,2690,-1,2691,2692,2693,-1,2694,2695,2696,-1,2697,2698,2699,-1,2700,2701,2702,-1,2703,2704,2705,-1,2706,2707,2708,-1,2709,2710,2711,-1,2712,2713,2714,-1,2715,2716,2717,-1,2718,2719,2720,-1,2721,2722,2723,-1,2724,2725,2726,-1,2727,2728,2729,-1,2730,2731,2732,-1,2733,2734,2735,-1,2736,2737,2738,-1,2739,2740,2741,-1,2742,2743,2744,-1,2745,2746,2747,-1,2748,2749,2750,-1,2751,2752,2753,-1,2754,2755,2756,-1,2757,2758,2759,-1,2760,2761,2762,-1,2763,2764,2765,-1,2766,2767,2768,-1,2769,2770,2771,-1,2772,2773,2774,-1,2775,2776,2777,-1,2778,2779,2780,-1,2781,2782,2783,-1,2784,2785,2786,-1,2787,2788,2789,-1,2790,2791,2792,-1,2793,2794,2795,-1,2796,2797,2798,-1,2799,2800,2801,-1,2802,2803,2804,-1,2805,2806,2807,-1,2808,2809,2810,-1,2811,2812,2813,-1,2814,2815,2816,-1,2817,2818,2819,-1,2820,2821,2822,-1,2823,2824,2825,-1,2826,2827,2828,-1,2829,2830,2831,-1,2832,2833,2834,-1,2835,2836,2837,-1,2838,2839,2840,-1,2841,2842,2843,-1,2844,2845,2846,-1,2847,2848,2849,-1,2850,2851,2852,-1,2853,2854,2855,-1,2856,2857,2858,-1,2859,2860,2861,-1,2862,2863,2864,-1,2865,2866,2867,-1,2868,2869,2870,-1,2871,2872,2873,-1,2874,2875,2876,-1,2877,2878,2879,-1,2880,2881,2882,-1,2883,2884,2885,-1,2886,2887,2888,-1,2889,2890,2891,-1,2892,2893,2894,-1,2895,2896,2897,-1,2898,2899,2900,-1,2901,2902,2903,-1,2904,2905,2906,-1,2907,2908,2909,-1,2910,2911,2912,-1,2913,2914,2915,-1,2916,2917,2918,-1,2919,2920,2921,-1,2922,2923,2924,-1,2925,2926,2927,-1,2928,2929,2930,-1,2931,2932,2933,-1,2934,2935,2936,-1,2937,2938,2939,-1,2940,2941,2942,-1,2943,2944,2945,-1,2946,2947,2948,-1,2949,2950,2951,-1,2952,2953,2954,-1,2955,2956,2957,-1,2958,2959,2960,-1,2961,2962,2963,-1,2964,2965,2966,-1,2967,2968,2969,-1,2970,2971,2972,-1,2973,2974,2975,-1,2976,2977,2978,-1,2979,2980,2981,-1,2982,2983,2984,-1,2985,2986,2987,-1,2988,2989,2990,-1,2991,2992,2993,-1,2994,2995,2996,-1,2997,2998,2999,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_texCoordIndex_5()
		{
			int[] value = {3000,3001,3002,-1,3003,3004,3005,-1,3006,3007,3008,-1,3009,3010,3011,-1,3012,3013,3014,-1,3015,3016,3017,-1,3018,3019,3020,-1,3021,3022,3023,-1,3024,3025,3026,-1,3027,3028,3029,-1,3030,3031,3032,-1,3033,3034,3035,-1,3036,3037,3038,-1,3039,3040,3041,-1,3042,3043,3044,-1,3045,3046,3047,-1,3048,3049,3050,-1,3051,3052,3053,-1,3054,3055,3056,-1,3057,3058,3059,-1,3060,3061,3062,-1,3063,3064,3065,-1,3066,3067,3068,-1,3069,3070,3071,-1,3072,3073,3074,-1,3075,3076,3077,-1,3078,3079,3080,-1,3081,3082,3083,-1,3084,3085,3086,-1,3087,3088,3089,-1,3090,3091,3092,-1,3093,3094,3095,-1,3096,3097,3098,-1,3099,3100,3101,-1,3102,3103,3104,-1,3105,3106,3107,-1,3108,3109,3110,-1,3111,3112,3113,-1,3114,3115,3116,-1,3117,3118,3119,-1,3120,3121,3122,-1,3123,3124,3125,-1,3126,3127,3128,-1,3129,3130,3131,-1,3132,3133,3134,-1,3135,3136,3137,-1,3138,3139,3140,-1,3141,3142,3143,-1,3144,3145,3146,-1,3147,3148,3149,-1,3150,3151,3152,-1,3153,3154,3155,-1,3156,3157,3158,-1,3159,3160,3161,-1,3162,3163,3164,-1,3165,3166,3167,-1,3168,3169,3170,-1,3171,3172,3173,-1,3174,3175,3176,-1,3177,3178,3179,-1,3180,3181,3182,-1,3183,3184,3185,-1,3186,3187,3188,-1,3189,3190,3191,-1,3192,3193,3194,-1,3195,3196,3197,-1,3198,3199,3200,-1,3201,3202,3203,-1,3204,3205,3206,-1,3207,3208,3209,-1,3210,3211,3212,-1,3213,3214,3215,-1,3216,3217,3218,-1,3219,3220,3221,-1,3222,3223,3224,-1,3225,3226,3227,-1,3228,3229,3230,-1,3231,3232,3233,-1,3234,3235,3236,-1,3237,3238,3239,-1,3240,3241,3242,-1,3243,3244,3245,-1,3246,3247,3248,-1,3249,3250,3251,-1,3252,3253,3254,-1,3255,3256,3257,-1,3258,3259,3260,-1,3261,3262,3263,-1,3264,3265,3266,-1,3267,3268,3269,-1,3270,3271,3272,-1,3273,3274,3275,-1,3276,3277,3278,-1,3279,3280,3281,-1,3282,3283,3284,-1,3285,3286,3287,-1,3288,3289,3290,-1,3291,3292,3293,-1,3294,3295,3296,-1,3297,3298,3299,-1,3300,3301,3302,-1,3303,3304,3305,-1,3306,3307,3308,-1,3309,3310,3311,-1,3312,3313,3314,-1,3315,3316,3317,-1,3318,3319,3320,-1,3321,3322,3323,-1,3324,3325,3326,-1,3327,3328,3329,-1,3330,3331,3332,-1,3333,3334,3335,-1,3336,3337,3338,-1,3339,3340,3341,-1,3342,3343,3344,-1,3345,3346,3347,-1,3348,3349,3350,-1,3351,3352,3353,-1,3354,3355,3356,-1,3357,3358,3359,-1,3360,3361,3362,-1,3363,3364,3365,-1,3366,3367,3368,-1,3369,3370,3371,-1,3372,3373,3374,-1,3375,3376,3377,-1,3378,3379,3380,-1,3381,3382,3383,-1,3384,3385,3386,-1,3387,3388,3389,-1,3390,3391,3392,-1,3393,3394,3395,-1,3396,3397,3398,-1,3399,3400,3401,-1,3402,3403,3404,-1,3405,3406,3407,-1,3408,3409,3410,-1,3411,3412,3413,-1,3414,3415,3416,-1,3417,3418,3419,-1,3420,3421,3422,-1,3423,3424,3425,-1,3426,3427,3428,-1,3429,3430,3431,-1,3432,3433,3434,-1,3435,3436,3437,-1,3438,3439,3440,-1,3441,3442,3443,-1,3444,3445,3446,-1,3447,3448,3449,-1,3450,3451,3452,-1,3453,3454,3455,-1,3456,3457,3458,-1,3459,3460,3461,-1,3462,3463,3464,-1,3465,3466,3467,-1,3468,3469,3470,-1,3471,3472,3473,-1,3474,3475,3476,-1,3477,3478,3479,-1,3480,3481,3482,-1,3483,3484,3485,-1,3486,3487,3488,-1,3489,3490,3491,-1,3492,3493,3494,-1,3495,3496,3497,-1,3498,3499,3500,-1,3501,3502,3503,-1,3504,3505,3506,-1,3507,3508,3509,-1,3510,3511,3512,-1,3513,3514,3515,-1,3516,3517,3518,-1,3519,3520,3521,-1,3522,3523,3524,-1,3525,3526,3527,-1,3528,3529,3530,-1,3531,3532,3533,-1,3534,3535,3536,-1,3537,3538,3539,-1,3540,3541,3542,-1,3543,3544,3545,-1,3546,3547,3548,-1,3549,3550,3551,-1,3552,3553,3554,-1,3555,3556,3557,-1,3558,3559,3560,-1,3561,3562,3563,-1,3564,3565,3566,-1,3567,3568,3569,-1,3570,3571,3572,-1,3573,3574,3575,-1,3576,3577,3578,-1,3579,3580,3581,-1,3582,3583,3584,-1,3585,3586,3587,-1,3588,3589,3590,-1,3591,3592,3593,-1,3594,3595,3596,-1,3597,3598,3599,-1,3600,3601,3602,-1,3603,3604,3605,-1,3606,3607,3608,-1,3609,3610,3611,-1,3612,3613,3614,-1,3615,3616,3617,-1,3618,3619,3620,-1,3621,3622,3623,-1,3624,3625,3626,-1,3627,3628,3629,-1,3630,3631,3632,-1,3633,3634,3635,-1,3636,3637,3638,-1,3639,3640,3641,-1,3642,3643,3644,-1,3645,3646,3647,-1,3648,3649,3650,-1,3651,3652,3653,-1,3654,3655,3656,-1,3657,3658,3659,-1,3660,3661,3662,-1,3663,3664,3665,-1,3666,3667,3668,-1,3669,3670,3671,-1,3672,3673,3674,-1,3675,3676,3677,-1,3678,3679,3680,-1,3681,3682,3683,-1,3684,3685,3686,-1,3687,3688,3689,-1,3690,3691,3692,-1,3693,3694,3695,-1,3696,3697,3698,-1,3699,3700,3701,-1,3702,3703,3704,-1,3705,3706,3707,-1,3708,3709,3710,-1,3711,3712,3713,-1,3714,3715,3716,-1,3717,3718,3719,-1,3720,3721,3722,-1,3723,3724,3725,-1,3726,3727,3728,-1,3729,3730,3731,-1,3732,3733,3734,-1,3735,3736,3737,-1,3738,3739,3740,-1,3741,3742,3743,-1,3744,3745,3746,-1,3747,3748,3749,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_texCoordIndex_6()
		{
			int[] value = {3750,3751,3752,-1,3753,3754,3755,-1,3756,3757,3758,-1,3759,3760,3761,-1,3762,3763,3764,-1,3765,3766,3767,-1,3768,3769,3770,-1,3771,3772,3773,-1,3774,3775,3776,-1,3777,3778,3779,-1,3780,3781,3782,-1,3783,3784,3785,-1,3786,3787,3788,-1,3789,3790,3791,-1,3792,3793,3794,-1,3795,3796,3797,-1,3798,3799,3800,-1,3801,3802,3803,-1,3804,3805,3806,-1,3807,3808,3809,-1,3810,3811,3812,-1,3813,3814,3815,-1,3816,3817,3818,-1,3819,3820,3821,-1,3822,3823,3824,-1,3825,3826,3827,-1,3828,3829,3830,-1,3831,3832,3833,-1,3834,3835,3836,-1,3837,3838,3839,-1,3840,3841,3842,-1,3843,3844,3845,-1,3846,3847,3848,-1,3849,3850,3851,-1,3852,3853,3854,-1,3855,3856,3857,-1,3858,3859,3860,-1,3861,3862,3863,-1,3864,3865,3866,-1,3867,3868,3869,-1,3870,3871,3872,-1,3873,3874,3875,-1,3876,3877,3878,-1,3879,3880,3881,-1,3882,3883,3884,-1,3885,3886,3887,-1,3888,3889,3890,-1,3891,3892,3893,-1,3894,3895,3896,-1,3897,3898,3899,-1,3900,3901,3902,-1,3903,3904,3905,-1,3906,3907,3908,-1,3909,3910,3911,-1,3912,3913,3914,-1,3915,3916,3917,-1,3918,3919,3920,-1,3921,3922,3923,-1,3924,3925,3926,-1,3927,3928,3929,-1,3930,3931,3932,-1,3933,3934,3935,-1,3936,3937,3938,-1,3939,3940,3941,-1,3942,3943,3944,-1,3945,3946,3947,-1,3948,3949,3950,-1,3951,3952,3953,-1,3954,3955,3956,-1,3957,3958,3959,-1,3960,3961,3962,-1,3963,3964,3965,-1,3966,3967,3968,-1,3969,3970,3971,-1,3972,3973,3974,-1,3975,3976,3977,-1,3978,3979,3980,-1,3981,3982,3983,-1,3984,3985,3986,-1,3987,3988,3989,-1,3990,3991,3992,-1,3993,3994,3995,-1,3996,3997,3998,-1,3999,4000,4001,-1,4002,4003,4004,-1,4005,4006,4007,-1,4008,4009,4010,-1,4011,4012,4013,-1,4014,4015,4016,-1,4017,4018,4019,-1,4020,4021,4022,-1,4023,4024,4025,-1,4026,4027,4028,-1,4029,4030,4031,-1,4032,4033,4034,-1,4035,4036,4037,-1,4038,4039,4040,-1,4041,4042,4043,-1,4044,4045,4046,-1,4047,4048,4049,-1,4050,4051,4052,-1,4053,4054,4055,-1,4056,4057,4058,-1,4059,4060,4061,-1,4062,4063,4064,-1,4065,4066,4067,-1,4068,4069,4070,-1,4071,4072,4073,-1,4074,4075,4076,-1,4077,4078,4079,-1,4080,4081,4082,-1,4083,4084,4085,-1,4086,4087,4088,-1,4089,4090,4091,-1,4092,4093,4094,-1,4095,4096,4097,-1,4098,4099,4100,-1,4101,4102,4103,-1,4104,4105,4106,-1,4107,4108,4109,-1,4110,4111,4112,-1,4113,4114,4115,-1,4116,4117,4118,-1,4119,4120,4121,-1,4122,4123,4124,-1,4125,4126,4127,-1,4128,4129,4130,-1,4131,4132,4133,-1,4134,4135,4136,-1,4137,4138,4139,-1,4140,4141,4142,-1,4143,4144,4145,-1,4146,4147,4148,-1,4149,4150,4151,-1,4152,4153,4154,-1,4155,4156,4157,-1,4158,4159,4160,-1,4161,4162,4163,-1,4164,4165,4166,-1,4167,4168,4169,-1,4170,4171,4172,-1,4173,4174,4175,-1,4176,4177,4178,-1,4179,4180,4181,-1,4182,4183,4184,-1,4185,4186,4187,-1,4188,4189,4190,-1,4191,4192,4193,-1,4194,4195,4196,-1,4197,4198,4199,-1,4200,4201,4202,-1,4203,4204,4205,-1,4206,4207,4208,-1,4209,4210,4211,-1,4212,4213,4214,-1,4215,4216,4217,-1,4218,4219,4220,-1,4221,4222,4223,-1,4224,4225,4226,-1,4227,4228,4229,-1,4230,4231,4232,-1,4233,4234,4235,-1,4236,4237,4238,-1,4239,4240,4241,-1,4242,4243,4244,-1,4245,4246,4247,-1,4248,4249,4250,-1,4251,4252,4253,-1,4254,4255,4256,-1,4257,4258,4259,-1,4260,4261,4262,-1,4263,4264,4265,-1,4266,4267,4268,-1,4269,4270,4271,-1,4272,4273,4274,-1,4275,4276,4277,-1,4278,4279,4280,-1,4281,4282,4283,-1,4284,4285,4286,-1,4287,4288,4289,-1,4290,4291,4292,-1,4293,4294,4295,-1,4296,4297,4298,-1,4299,4300,4301,-1,4302,4303,4304,-1,4305,4306,4307,-1,4308,4309,4310,-1,4311,4312,4313,-1,4314,4315,4316,-1,4317,4318,4319,-1,4320,4321,4322,-1,4323,4324,4325,-1,4326,4327,4328,-1,4329,4330,4331,-1,4332,4333,4334,-1,4335,4336,4337,-1,4338,4339,4340,-1,4341,4342,4343,-1,4344,4345,4346,-1,4347,4348,4349,-1,4350,4351,4352,-1,4353,4354,4355,-1,4356,4357,4358,-1,4359,4360,4361,-1,4362,4363,4364,-1,4365,4366,4367,-1,4368,4369,4370,-1,4371,4372,4373,-1,4374,4375,4376,-1,4377,4378,4379,-1,4380,4381,4382,-1,4383,4384,4385,-1,4386,4387,4388,-1,4389,4390,4391,-1,4392,4393,4394,-1,4395,4396,4397,-1,4398,4399,4400,-1,4401,4402,4403,-1,4404,4405,4406,-1,4407,4408,4409,-1,4410,4411,4412,-1,4413,4414,4415,-1,4416,4417,4418,-1,4419,4420,4421,-1,4422,4423,4424,-1,4425,4426,4427,-1,4428,4429,4430,-1,4431,4432,4433,-1,4434,4435,4436,-1,4437,4438,4439,-1,4440,4441,4442,-1,4443,4444,4445,-1,4446,4447,4448,-1,4449,4450,4451,-1,4452,4453,4454,-1,4455,4456,4457,-1,4458,4459,4460,-1,4461,4462,4463,-1,4464,4465,4466,-1,4467,4468,4469,-1,4470,4471,4472,-1,4473,4474,4475,-1,4476,4477,4478,-1,4479,4480,4481,-1,4482,4483,4484,-1,4485,4486,4487,-1,4488,4489,4490,-1,4491,4492,4493,-1,4494,4495,4496,-1,4497,4498,4499,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_texCoordIndex_7()
		{
			int[] value = {4500,4501,4502,-1,4503,4504,4505,-1,4506,4507,4508,-1,4509,4510,4511,-1,4512,4513,4514,-1,4515,4516,4517,-1,4518,4519,4520,-1,4521,4522,4523,-1,4524,4525,4526,-1,4527,4528,4529,-1,4530,4531,4532,-1,4533,4534,4535,-1,4536,4537,4538,-1,4539,4540,4541,-1,4542,4543,4544,-1,4545,4546,4547,-1,4548,4549,4550,-1,4551,4552,4553,-1,4554,4555,4556,-1,4557,4558,4559,-1,4560,4561,4562,-1,4563,4564,4565,-1,4566,4567,4568,-1,4569,4570,4571,-1,4572,4573,4574,-1,4575,4576,4577,-1,4578,4579,4580,-1,4581,4582,4583,-1,4584,4585,4586,-1,4587,4588,4589,-1,4590,4591,4592,-1,4593,4594,4595,-1,4596,4597,4598,-1,4599,4600,4601,-1,4602,4603,4604,-1,4605,4606,4607,-1,4608,4609,4610,-1,4611,4612,4613,-1,4614,4615,4616,-1,4617,4618,4619,-1,4620,4621,4622,-1,4623,4624,4625,-1,4626,4627,4628,-1,4629,4630,4631,-1,4632,4633,4634,-1,4635,4636,4637,-1,4638,4639,4640,-1,4641,4642,4643,-1,4644,4645,4646,-1,4647,4648,4649,-1,4650,4651,4652,-1,4653,4654,4655,-1,4656,4657,4658,-1,4659,4660,4661,-1,4662,4663,4664,-1,4665,4666,4667,-1,4668,4669,4670,-1,4671,4672,4673,-1,4674,4675,4676,-1,4677,4678,4679,-1,4680,4681,4682,-1,4683,4684,4685,-1,4686,4687,4688,-1,4689,4690,4691,-1,4692,4693,4694,-1,4695,4696,4697,-1,4698,4699,4700,-1,4701,4702,4703,-1,4704,4705,4706,-1,4707,4708,4709,-1,4710,4711,4712,-1,4713,4714,4715,-1,4716,4717,4718,-1,4719,4720,4721,-1,4722,4723,4724,-1,4725,4726,4727,-1,4728,4729,4730,-1,4731,4732,4733,-1,4734,4735,4736,-1,4737,4738,4739,-1,4740,4741,4742,-1,4743,4744,4745,-1,4746,4747,4748,-1,4749,4750,4751,-1,4752,4753,4754,-1,4755,4756,4757,-1,4758,4759,4760,-1,4761,4762,4763,-1,4764,4765,4766,-1,4767,4768,4769,-1,4770,4771,4772,-1,4773,4774,4775,-1,4776,4777,4778,-1,4779,4780,4781,-1,4782,4783,4784,-1,4785,4786,4787,-1,4788,4789,4790,-1,4791,4792,4793,-1,4794,4795,4796,-1,4797,4798,4799,-1,4800,4801,4802,-1,4803,4804,4805,-1,4806,4807,4808,-1,4809,4810,4811,-1,4812,4813,4814,-1,4815,4816,4817,-1,4818,4819,4820,-1,4821,4822,4823,-1,4824,4825,4826,-1,4827,4828,4829,-1,4830,4831,4832,-1,4833,4834,4835,-1,4836,4837,4838,-1,4839,4840,4841,-1,4842,4843,4844,-1,4845,4846,4847,-1,4848,4849,4850,-1,4851,4852,4853,-1,4854,4855,4856,-1,4857,4858,4859,-1,4860,4861,4862,-1,4863,4864,4865,-1,4866,4867,4868,-1,4869,4870,4871,-1,4872,4873,4874,-1,4875,4876,4877,-1,4878,4879,4880,-1,4881,4882,4883,-1,4884,4885,4886,-1,4887,4888,4889,-1,4890,4891,4892,-1,4893,4894,4895,-1,4896,4897,4898,-1,4899,4900,4901,-1,4902,4903,4904,-1,4905,4906,4907,-1,4908,4909,4910,-1,4911,4912,4913,-1,4914,4915,4916,-1,4917,4918,4919,-1,4920,4921,4922,-1,4923,4924,4925,-1,4926,4927,4928,-1,4929,4930,4931,-1,4932,4933,4934,-1,4935,4936,4937,-1,4938,4939,4940,-1,4941,4942,4943,-1,4944,4945,4946,-1,4947,4948,4949,-1,4950,4951,4952,-1,4953,4954,4955,-1,4956,4957,4958,-1,4959,4960,4961,-1,4962,4963,4964,-1,4965,4966,4967,-1,4968,4969,4970,-1,4971,4972,4973,-1,4974,4975,4976,-1,4977,4978,4979,-1,4980,4981,4982,-1,4983,4984,4985,-1,4986,4987,4988,-1,4989,4990,4991,-1,4992,4993,4994,-1,4995,4996,4997,-1,4998,4999,5000,-1,5001,5002,5003,-1,5004,5005,5006,-1,5007,5008,5009,-1,5010,5011,5012,-1,5013,5014,5015,-1,5016,5017,5018,-1,5019,5020,5021,-1,5022,5023,5024,-1,5025,5026,5027,-1,5028,5029,5030,-1,5031,5032,5033,-1,5034,5035,5036,-1,5037,5038,5039,-1,5040,5041,5042,-1,5043,5044,5045,-1,5046,5047,5048,-1,5049,5050,5051,-1,5052,5053,5054,-1,5055,5056,5057,-1,5058,5059,5060,-1,5061,5062,5063,-1,5064,5065,5066,-1,5067,5068,5069,-1,5070,5071,5072,-1,5073,5074,5075,-1,5076,5077,5078,-1,5079,5080,5081,-1,5082,5083,5084,-1,5085,5086,5087,-1,5088,5089,5090,-1,5091,5092,5093,-1,5094,5095,5096,-1,5097,5098,5099,-1,5100,5101,5102,-1,5103,5104,5105,-1,5106,5107,5108,-1,5109,5110,5111,-1,5112,5113,5114,-1,5115,5116,5117,-1,5118,5119,5120,-1,5121,5122,5123,-1,5124,5125,5126,-1,5127,5128,5129,-1,5130,5131,5132,-1,5133,5134,5135,-1,5136,5137,5138,-1,5139,5140,5141,-1,5142,5143,5144,-1,5145,5146,5147,-1,5148,5149,5150,-1,5151,5152,5153,-1,5154,5155,5156,-1,5157,5158,5159,-1,5160,5161,5162,-1,5163,5164,5165,-1,5166,5167,5168,-1,5169,5170,5171,-1,5172,5173,5174,-1,5175,5176,5177,-1,5178,5179,5180,-1,5181,5182,5183,-1,5184,5185,5186,-1,5187,5188,5189,-1,5190,5191,5192,-1,5193,5194,5195,-1,5196,5197,5198,-1,5199,5200,5201,-1,5202,5203,5204,-1,5205,5206,5207,-1,5208,5209,5210,-1,5211,5212,5213,-1,5214,5215,5216,-1,5217,5218,5219,-1,5220,5221,5222,-1,5223,5224,5225,-1,5226,5227,5228,-1,5229,5230,5231,-1,5232,5233,5234,-1,5235,5236,5237,-1,5238,5239,5240,-1,5241,5242,5243,-1,5244,5245,5246,-1,5247,5248,5249,-1};
			return value;
		}
		private int[] getMi24_0_GEOMETRY_6_19_texCoordIndex_8()
		{
			int[] value = {5250,5251,5252,-1,5253,5254,5255,-1,5256,5257,5258,-1,5259,5260,5261,-1,5262,5263,5264,-1,5265,5266,5267,-1,5268,5269,5270,-1,5271,5272,5273,-1,5274,5275,5276,-1,5277,5278,5279,-1,5280,5281,5282,-1,5283,5284,5285,-1,5286,5287,5288,-1,5289,5290,5291,-1,5292,5293,5294,-1,5295,5296,5297,-1,5298,5299,5300,-1,5301,5302,5303,-1,5304,5305,5306,-1,5307,5308,5309,-1,5310,5311,5312,-1,5313,5314,5315,-1,5316,5317,5318,-1,5319,5320,5321,-1,5322,5323,5324,-1,5325,5326,5327,-1,5328,5329,5330,-1,5331,5332,5333,-1,5334,5335,5336,-1,5337,5338,5339,-1,5340,5341,5342,-1,5343,5344,5345,-1,5346,5347,5348,-1,5349,5350,5351,-1,5352,5353,5354,-1,5355,5356,5357,-1,5358,5359,5360,-1,5361,5362,5363,-1,5364,5365,5366,-1,5367,5368,5369,-1,5370,5371,5372,-1,5373,5374,5375,-1,5376,5377,5378,-1,5379,5380,5381,-1,5382,5383,5384,-1,5385,5386,5387,-1,5388,5389,5390,-1,5391,5392,5393,-1,5394,5395,5396,-1,5397,5398,5399,-1,5400,5401,5402,-1,5403,5404,5405,-1,5406,5407,5408,-1,5409,5410,5411,-1,5412,5413,5414,-1,5415,5416,5417,-1,5418,5419,5420,-1,5421,5422,5423,-1,5424,5425,5426,-1,5427,5428,5429,-1,5430,5431,5432,-1,5433,5434,5435,-1,5436,5437,5438,-1,5439,5440,5441,-1,5442,5443,5444,-1,5445,5446,5447,-1,5448,5449,5450,-1,5451,5452,5453,-1,5454,5455,5456,-1,5457,5458,5459,-1,5460,5461,5462,-1,5463,5464,5465,-1,5466,5467,5468,-1,5469,5470,5471,-1,5472,5473,5474,-1,5475,5476,5477,-1,5478,5479,5480,-1,5481,5482,5483,-1,5484,5485,5486,-1,5487,5488,5489,-1,5490,5491,5492,-1,5493,5494,5495,-1,5496,5497,5498,-1,5499,5500,5501,-1,5502,5503,5504,-1,5505,5506,5507,-1,5508,5509,5510,-1,5511,5512,5513,-1,5514,5515,5516,-1,5517,5518,5519,-1,5520,5521,5522,-1,5523,5524,5525,-1,5526,5527,5528,-1,5529,5530,5531,-1,5532,5533,5534,-1,5535,5536,5537,-1,5538,5539,5540,-1,5541,5542,5543,-1,5544,5545,5546,-1,5547,5548,5549,-1,5550,5551,5552,-1,5553,5554,5555,-1,5556,5557,5558,-1,5559,5560,5561,-1,5562,5563,5564,-1,5565,5566,5567,-1,5568,5569,5570,-1,5571,5572,5573,-1,5574,5575,5576,-1,5577,5578,5579,-1,5580,5581,5582,-1,5583,5584,5585,-1,5586,5587,5588,-1,5589,5590,5591,-1,5592,5593,5594,-1,5595,5596,5597,-1,5598,5599,5600,-1,5601,5602,5603,-1,5604,5605,5606,-1,5607,5608,5609,-1,5610,5611,5612,-1,5613,5614,5615,-1,5616,5617,5618,-1,5619,5620,5621,-1,5622,5623,5624,-1,5625,5626,5627,-1,5628,5629,5630,-1,5631,5632,5633,-1,5634,5635,5636,-1,5637,5638,5639,-1,5640,5641,5642,-1,5643,5644,5645,-1,5646,5647,5648,-1,5649,5650,5651,-1,5652,5653,5654,-1,5655,5656,5657,-1,5658,5659,5660,-1,5661,5662,5663,-1,5664,5665,5666,-1,5667,5668,5669,-1,5670,5671,5672,-1,5673,5674,5675,-1,5676,5677,5678,-1,5679,5680,5681,-1,5682,5683,5684,-1,5685,5686,5687,-1,5688,5689,5690,-1,5691,5692,5693,-1,5694,5695,5696,-1,5697,5698,5699,-1,5700,5701,5702,-1,5703,5704,5705,-1,5706,5707,5708,-1,5709,5710,5711,-1,5712,5713,5714,-1,5715,5716,5717,-1,5718,5719,5720,-1,5721,5722,5723,-1,5724,5725,5726,-1,5727,5728,5729,-1,5730,5731,5732,-1,5733,5734,5735,-1,5736,5737,5738,-1,5739,5740,5741,-1,5742,5743,5744,-1,5745,5746,5747,-1,5748,5749,5750,-1,5751,5752,5753,-1,5754,5755,5756,-1,5757,5758,5759,-1,5760,5761,5762,-1,5763,5764,5765,-1,5766,5767,5768,-1,5769,5770,5771,-1,5772,5773,5774,-1,5775,5776,5777,-1,5778,5779,5780,-1,5781,5782,5783,-1,5784,5785,5786,-1,5787,5788,5789,-1,5790,5791,5792,-1,5793,5794,5795,-1,5796,5797,5798,-1,5799,5800,5801,-1,5802,5803,5804,-1,5805,5806,5807,-1,5808,5809,5810,-1,5811,5812,5813,-1,5814,5815,5816,-1,5817,5818,5819,-1,5820,5821,5822,-1,5823,5824,5825,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_7_19_point_1()
		{
			double[] value = {-0.306268,-1.778761,7.967001,-0.525296,-2.199790,5.119215,-0.398275,-2.599201,5.119215,-0.398275,-2.599201,5.119215,-0.200684,-2.076742,7.967001,-0.306268,-1.778761,7.967001,-0.389764,-0.843138,5.119215,-0.280195,-0.835341,7.967001,-0.149069,-0.544913,7.995851,-0.149069,-0.544913,7.995851,-0.234865,-0.544913,5.119215,-0.389764,-0.843138,5.119215,-0.174767,-1.318747,11.273637,-0.306268,-1.778761,7.967001,-0.200684,-2.076742,7.967001,-0.200684,-2.076742,7.967001,-0.085634,-1.500397,11.273637,-0.174767,-1.318747,11.273637,-0.280195,-0.835341,7.967001,-0.207045,-0.785310,11.273637,-0.102580,-0.544913,11.302486,-0.102580,-0.544913,11.302486,-0.149069,-0.544913,7.995851,-0.280195,-0.835341,7.967001,-0.085634,-1.500397,11.273637,-0.037995,-1.200686,12.989976,-0.080859,-1.080247,13.060559,-0.085634,-1.500397,11.273637,-0.080859,-1.080247,13.060559,-0.135629,-1.180418,12.204327,-0.085634,-1.500397,11.273637,-0.135629,-1.180418,12.204327,-0.150556,-1.223684,11.834497,-0.085634,-1.500397,11.273637,-0.150556,-1.223684,11.834497,-0.174767,-1.318747,11.273637,-0.200684,-2.076742,7.967001,-0.398275,-2.599201,5.119215,-0.000003,-2.617945,5.119215,-0.000003,-2.617945,5.119215,-0.000003,-2.104983,7.967002,-0.200684,-2.076742,7.967001,-0.085634,-1.500397,11.273637,-0.200684,-2.076742,7.967001,-0.000003,-2.104983,7.967002,-0.000003,-2.104983,7.967002,-0.000003,-1.528638,11.273638,-0.085634,-1.500397,11.273637,-0.037995,-1.200686,12.989976,-0.085634,-1.500397,11.273637,-0.000003,-1.528638,11.273638,-0.000003,-1.528638,11.273638,-0.000005,-1.236845,12.989977,-0.037995,-1.200686,12.989976,-0.080859,-1.080247,13.060559,-0.037995,-1.200686,12.989976,-0.000005,-1.236845,12.989977,-0.000005,-1.236845,12.989977,-0.000005,-1.080247,13.060560,-0.080859,-1.080247,13.060559,-0.032025,1.337675,14.425802,-0.000003,1.337675,14.425802,-0.000003,1.380109,13.750371,-0.000003,1.380109,13.750371,-0.078326,1.355109,13.750371,-0.032025,1.337675,14.425802,-0.149069,-0.544913,7.995851,-0.102580,-0.544913,11.302486,-0.000003,-0.482357,11.273638,-0.000003,-0.482357,11.273638,-0.000003,-0.544913,7.967002,-0.149069,-0.544913,7.995851,-0.234865,-0.544913,5.119215,-0.149069,-0.544913,7.995851,-0.000003,-0.544913,7.967002,-0.000003,-0.544913,7.967002,-0.000003,-0.544912,5.119215,-0.234865,-0.544913,5.119215,-0.158656,-0.800120,12.204327,-0.077785,-0.800120,13.272064,-0.055731,1.210766,14.789797,-0.102580,-0.544913,11.302486,-0.188282,-0.797026,11.561793,-0.163323,-0.300030,12.204327,-0.102580,-0.544913,11.302486,-0.163323,-0.300030,12.204327,-0.087574,1.208302,14.154350,-0.102580,-0.544913,11.302486,-0.087574,1.208302,14.154350,-0.082831,1.208164,13.576658,-0.000005,-1.080247,13.060560,-0.000005,1.210766,14.789797,-0.055731,1.210766,14.789797,-0.000005,-1.080247,13.060560,-0.055731,1.210766,14.789797,-0.077785,-0.800120,13.272064,-0.000005,-1.080247,13.060560,-0.077785,-0.800120,13.272064,-0.080859,-1.080247,13.060559,-0.082831,1.208164,13.576658};
			return value;
		}
		private double[] getCoordinate_7_19_point_2()
		{
			double[] value = {-0.000003,1.208165,13.547810,-0.000003,-0.482357,11.273638,-0.000003,-0.482357,11.273638,-0.102580,-0.544913,11.302486,-0.082831,1.208164,13.576658,-0.078326,1.355109,13.750371,-0.000003,1.380109,13.750371,-0.000003,1.208165,13.547810,-0.000003,1.208165,13.547810,-0.082831,1.208164,13.576658,-0.078326,1.355109,13.750371,-0.032025,1.337675,14.425802,-0.078326,1.355109,13.750371,-0.082831,1.208164,13.576658,-0.082831,1.208164,13.576658,-0.087574,1.208302,14.154350,-0.032025,1.337675,14.425802,-0.000003,1.337675,14.425802,-0.032025,1.337675,14.425802,-0.055731,1.210766,14.789797,-0.055731,1.210766,14.789797,-0.000005,1.210766,14.789797,-0.000003,1.337675,14.425802,-0.188282,-0.797026,11.561793,-0.102580,-0.544913,11.302486,-0.207045,-0.785310,11.273637,-0.473855,-1.108231,5.119215,-0.319889,-1.100434,7.967001,-0.280195,-0.835341,7.967001,-0.280195,-0.835341,7.967001,-0.389764,-0.843138,5.119215,-0.473855,-1.108231,5.119215,-0.319889,-1.100434,7.967001,-0.209108,-1.104304,11.272160,-0.207953,-0.925778,11.272986,-0.319889,-1.100434,7.967001,-0.207953,-0.925778,11.272986,-0.207045,-0.785310,11.273637,-0.319889,-1.100434,7.967001,-0.207045,-0.785310,11.273637,-0.280195,-0.835341,7.967001,-0.349858,-1.341962,7.967001,-0.542553,-1.349050,5.119215,-0.525296,-2.199790,5.119215,-0.525296,-2.199790,5.119215,-0.306268,-1.778761,7.967001,-0.349858,-1.341962,7.967001,-0.319889,-1.100434,7.967001,-0.473855,-1.108231,5.119215,-0.542553,-1.349050,5.119215,-0.542553,-1.349050,5.119215,-0.349858,-1.341962,7.967001,-0.319889,-1.100434,7.967001,-0.209108,-1.104304,11.272160,-0.319889,-1.100434,7.967001,-0.349858,-1.341962,7.967001,-0.349858,-1.341962,7.967001,-0.174767,-1.318747,11.273637,-0.209108,-1.104304,11.272160,-0.174767,-1.318747,11.273637,-0.349858,-1.341962,7.967001,-0.306268,-1.778761,7.967001,-0.150556,-1.223684,11.834497,-0.199730,-1.036603,11.700760,-0.209108,-1.104304,11.272160,-0.209108,-1.104304,11.272160,-0.174767,-1.318747,11.273637,-0.150556,-1.223684,11.834497,-0.188282,-0.797026,11.561793,-0.158656,-0.800120,12.204327,-0.164671,-0.397519,12.204327,-0.164671,-0.397519,12.204327,-0.163323,-0.300030,12.204327,-0.188282,-0.797026,11.561793,-0.087574,1.208302,14.154350,-0.055731,1.210766,14.789797,-0.032025,1.337675,14.425802,-0.708583,-0.404694,2.274368,-0.819865,-0.668396,2.274368,-0.677010,-0.840938,3.369041,-0.677010,-0.840938,3.369041,-0.532946,-0.476249,3.343352,-0.708583,-0.404694,2.274368,-0.000003,-2.617945,5.119215,-0.398275,-2.599201,5.119215,-0.680212,-3.199406,3.423438,-0.680212,-3.199406,3.423438,-0.023523,-3.199406,3.475473,-0.000003,-2.617945,5.119215,-0.819865,-0.668396,2.274368,-0.916248,-1.105015,2.274385,-0.805563,-1.106030,3.475613,-0.805563,-1.106030,3.475613,-0.677010,-0.840938,3.369041,-0.819865,-0.668396,2.274368,-0.826676,-3.199405,2.274385,-0.808386,-3.623969,2.244820,-0.680212,-3.199406,3.423438,-0.525296,-2.199790,5.119215,-0.542553,-1.349050,5.119215};
			return value;
		}
		private double[] getCoordinate_7_19_point_3()
		{
			double[] value = {-0.811698,-1.356174,3.896985,-0.542553,-1.349050,5.119215,-0.473855,-1.108231,5.119215,-0.673252,-1.107244,4.388052,-0.542553,-1.349050,5.119215,-0.673252,-1.107244,4.388052,-0.805563,-1.106030,3.475613,-0.542553,-1.349050,5.119215,-0.805563,-1.106030,3.475613,-0.811698,-1.356174,3.896985,-0.811698,-1.356174,3.896985,-0.805563,-1.106030,3.475613,-0.916248,-1.105015,2.274385,-0.916248,-1.105015,2.274385,-0.925388,-1.435466,2.463008,-0.811698,-1.356174,3.896985,-0.708583,-0.404694,2.274368,-0.494506,-0.222097,3.171550,-0.561605,-0.222276,1.533310,-0.561605,-0.222276,1.533310,-0.711179,-0.410863,1.241731,-0.708583,-0.404694,2.274368,-0.023523,-3.642713,2.244820,-0.808386,-3.623969,2.244820,-0.794902,-3.630139,1.226032,-0.794902,-3.630139,1.226032,-0.007444,-3.648883,1.226032,-0.023523,-3.642713,2.244820,-0.819865,-0.668396,2.274368,-0.708583,-0.404694,2.274368,-0.711179,-0.410863,1.241731,-0.711179,-0.410863,1.241731,-0.822461,-0.674565,1.241731,-0.819865,-0.668396,2.274368,-0.826676,-3.199405,2.274385,-0.899190,-2.463103,2.274385,-0.901786,-2.469273,1.241748,-0.901786,-2.469273,1.241748,-0.829879,-3.199405,1.241748,-0.826676,-3.199405,2.274385,-0.901786,-2.469273,1.241748,-0.899190,-2.463103,2.274385,-0.911984,-1.744799,2.422877,-0.911984,-1.744799,2.422877,-0.945503,-1.538839,1.241748,-0.901786,-2.469273,1.241748,-0.934193,-1.241214,1.508482,-0.925388,-1.435466,2.463008,-0.916248,-1.105015,2.274385,-0.916248,-1.105015,2.274385,-0.918845,-1.111185,1.338881,-0.934193,-1.241214,1.508482,-0.711179,-0.410863,1.241731,-0.561605,-0.222276,1.533310,-0.561208,-0.219058,-0.313730,-0.561208,-0.219058,-0.313730,-0.710533,-0.407825,-0.315354,-0.711179,-0.410863,1.241731,-0.007444,-3.648883,1.226032,-0.794902,-3.630139,1.226032,-0.786165,-3.624061,-0.389735,-0.786165,-3.624061,-0.389735,-0.004851,-3.638053,-0.389735,-0.007444,-3.648883,1.226032,-0.782173,-0.577595,-0.308645,-0.821820,-0.671552,-0.302297,-0.822461,-0.674565,1.241731,-0.782173,-0.577595,-0.308645,-0.822461,-0.674565,1.241731,-0.711179,-0.410863,1.241731,-0.782173,-0.577595,-0.308645,-0.711179,-0.410863,1.241731,-0.710533,-0.407825,-0.315354,-0.829879,-3.199405,1.241748,-0.901786,-2.469273,1.241748,-0.900493,-2.463195,-0.389735,-0.900493,-2.463195,-0.389735,-0.827988,-3.199405,-0.389735,-0.829879,-3.199405,1.241748,-0.827988,-3.199405,-0.389735,-0.900493,-2.463195,-0.389735,-0.896776,-2.462440,-2.398810,-0.896776,-2.462440,-2.398810,-0.824186,-3.199404,-2.398809,-0.827988,-3.199405,-0.389735,-0.900493,-2.463195,-0.389735,-0.953236,-1.351759,-0.388810,-0.950731,-1.354054,-2.398259,-0.950731,-1.354054,-2.398259,-0.896776,-2.462440,-2.398810,-0.900493,-2.463195,-0.389735,-0.710381,-0.407114,-1.835631,-0.493643,-0.218346,-1.835631,-0.493108,-0.216022,-2.396100,-0.493108,-0.216022,-2.396100,-0.709886,-0.404786,-2.397723,-0.710381,-0.407114,-1.835631,-0.710470,-0.407530,-0.945860,-0.710381,-0.407114,-1.835631,-0.774815,-0.559907,-1.099503};
			return value;
		}
		private double[] getCoordinate_7_19_point_4()
		{
			double[] value = {-0.819865,-0.668396,2.274368,-0.822461,-0.674565,1.241731,-0.918845,-1.111185,1.338881,-0.918845,-1.111185,1.338881,-0.916248,-1.105015,2.274385,-0.819865,-0.668396,2.274368,-0.878757,-0.929476,-0.309341,-0.918198,-1.108146,-0.315337,-0.918845,-1.111185,1.338881,-0.878757,-0.929476,-0.309341,-0.918845,-1.111185,1.338881,-0.822461,-0.674565,1.241731,-0.878757,-0.929476,-0.309341,-0.822461,-0.674565,1.241731,-0.821820,-0.671552,-0.302297,-0.876705,-0.920136,-1.122147,-0.917552,-1.105107,-2.397707,-0.921901,-1.134096,-0.909949,-0.560234,-0.842151,4.178452,-0.389764,-0.843138,5.119215,-0.234865,-0.544913,5.119215,-0.234865,-0.544913,5.119215,-0.377913,-0.514932,4.178452,-0.560234,-0.842151,4.178452,-0.000003,-0.544912,5.119215,0.0,-0.514932,4.178452,-0.243029,-0.514932,4.178452,-0.000003,-0.544912,5.119215,-0.243029,-0.514932,4.178452,-0.377913,-0.514932,4.178452,-0.000003,-0.544912,5.119215,-0.377913,-0.514932,4.178452,-0.234865,-0.544913,5.119215,-0.673252,-1.107244,4.388052,-0.473855,-1.108231,5.119215,-0.389764,-0.843138,5.119215,-0.389764,-0.843138,5.119215,-0.560234,-0.842151,4.178452,-0.673252,-1.107244,4.388052,-0.677010,-0.840938,3.369041,-0.560234,-0.842151,4.178452,-0.377913,-0.514932,4.178452,-0.377913,-0.514932,4.178452,-0.532946,-0.476249,3.343352,-0.677010,-0.840938,3.369041,-0.805563,-1.106030,3.475613,-0.673252,-1.107244,4.388052,-0.560234,-0.842151,4.178452,-0.560234,-0.842151,4.178452,-0.677010,-0.840938,3.369041,-0.805563,-1.106030,3.475613,-0.821168,-0.668488,-2.397725,-0.709886,-0.404786,-2.397723,-0.696258,-0.466031,-3.167864,-0.696258,-0.466031,-3.167864,-0.833976,-0.770171,-3.093040,-0.821168,-0.668488,-2.397725,-0.709886,-0.404786,-2.397723,-0.493108,-0.216022,-2.396100,-0.524057,-0.278063,-3.214108,-0.524057,-0.278063,-3.214108,-0.696258,-0.466031,-3.167864,-0.709886,-0.404786,-2.397723,-0.493108,-0.216022,-2.396100,-0.217698,-0.228580,-2.397725,-0.134973,-0.278063,-3.214108,-0.134973,-0.278063,-3.214108,-0.524057,-0.278063,-3.214108,-0.493108,-0.216022,-2.396100,-0.217698,-0.228580,-2.397725,-0.115359,-0.433678,-2.458453,-0.115513,-0.466031,-3.167864,-0.115513,-0.466031,-3.167864,-0.134973,-0.278063,-3.214108,-0.217698,-0.228580,-2.397725,-0.950731,-1.354054,-2.398259,-0.917552,-1.105107,-2.397707,-0.902309,-1.074310,-3.018216,-0.902309,-1.074310,-3.018216,-0.915830,-1.262279,-2.971972,-0.950731,-1.354054,-2.398259,-0.917552,-1.105107,-2.397707,-0.821168,-0.668488,-2.397725,-0.833976,-0.770171,-3.093040,-0.833976,-0.770171,-3.093040,-0.902309,-1.074310,-3.018216,-0.917552,-1.105107,-2.397707,-0.833976,-0.770171,-3.093040,-0.696258,-0.466031,-3.167864,-0.696258,-0.478059,-3.383471,-0.696258,-0.478059,-3.383471,-0.780895,-0.770027,-3.462505,-0.833976,-0.770171,-3.093040,-0.696258,-0.466031,-3.167864,-0.524057,-0.278063,-3.214108,-0.524057,-0.297612,-3.327565,-0.524057,-0.297612,-3.327565,-0.696258,-0.478059,-3.383471,-0.696258,-0.466031,-3.167864,-0.524057,-0.278063,-3.214108};
			return value;
		}
		private double[] getCoordinate_7_19_point_5()
		{
			double[] value = {-0.134973,-0.278063,-3.214108,-0.128216,-0.297613,-3.327565,-0.128216,-0.297613,-3.327565,-0.524057,-0.297612,-3.327565,-0.524057,-0.278063,-3.214108,-0.134973,-0.278063,-3.214108,-0.115513,-0.466031,-3.167864,0.0,-0.452727,-3.376044,0.0,-0.452727,-3.376044,-0.128216,-0.297613,-3.327565,-0.134973,-0.278063,-3.214108,-0.915830,-1.262279,-2.971972,-0.902309,-1.074310,-3.018216,-0.812796,-1.061995,-3.540026,-0.812796,-1.061995,-3.540026,-0.836800,-1.238371,-3.588104,-0.915830,-1.262279,-2.971972,-0.902309,-1.074310,-3.018216,-0.833976,-0.770171,-3.093040,-0.780895,-0.770027,-3.462505,-0.780895,-0.770027,-3.462505,-0.812796,-1.061995,-3.540026,-0.902309,-1.074310,-3.018216,-0.524057,-0.297612,-3.327565,-0.128216,-0.297613,-3.327565,0.0,-0.452727,-3.376044,-0.524057,-0.297612,-3.327565,0.0,-0.452727,-3.376044,-0.000425,-1.238871,-3.588104,-0.524057,-0.297612,-3.327565,-0.000425,-1.238871,-3.588104,-0.363467,-1.238663,-3.588104,-0.524057,-0.297612,-3.327565,-0.363467,-1.238663,-3.588104,-0.836800,-1.238371,-3.588104,-0.836800,-1.238371,-3.588104,-0.812796,-1.061995,-3.540026,-0.780895,-0.770027,-3.462505,-0.524057,-0.297612,-3.327565,-0.836800,-1.238371,-3.588104,-0.780895,-0.770027,-3.462505,-0.524057,-0.297612,-3.327565,-0.780895,-0.770027,-3.462505,-0.696258,-0.478059,-3.383471,-0.363467,-1.238663,-3.588104,-0.000425,-1.238871,-3.588104,-0.199669,-1.264209,-3.711270,-0.199669,-1.264209,-3.711270,-0.753669,-1.264209,-3.711142,-0.363467,-1.238663,-3.588104,-0.836800,-1.238371,-3.588104,-0.363467,-1.238663,-3.588104,-0.753669,-1.264209,-3.711142,-0.896776,-2.462440,-2.398810,-0.950731,-1.354054,-2.398259,-0.915830,-1.262279,-2.971972,-0.915830,-1.262279,-2.971972,-0.926141,-2.327776,-2.971972,-0.896776,-2.462440,-2.398810,-0.926141,-2.327776,-2.971972,-0.915830,-1.262279,-2.971972,-0.836800,-1.238371,-3.588104,-0.926141,-2.327776,-2.971972,-0.836800,-1.238371,-3.588104,-0.915830,-1.740772,-3.588229,-0.926141,-2.327776,-2.971972,-0.915830,-1.740772,-3.588229,-0.898823,-2.325759,-3.588230,-0.915830,-1.740772,-3.588229,-0.836800,-1.238371,-3.588104,-0.753669,-1.264209,-3.711142,-0.753669,-1.264209,-3.711142,-0.677106,-1.729706,-3.778974,-0.915830,-1.740772,-3.588229,-0.898823,-2.325759,-3.588230,-0.915830,-1.740772,-3.588229,-0.677106,-1.729706,-3.778974,-0.677106,-1.729706,-3.778974,-0.723653,-2.105288,-3.842425,-0.898823,-2.325759,-3.588230,0.113233,-2.324605,-6.965118,0.092332,-2.412591,-6.997307,-0.092332,-2.412590,-6.997307,-0.092332,-2.412590,-6.997307,-0.113234,-2.324605,-6.965118,0.113233,-2.324605,-6.965118,-0.113234,-2.324605,-6.965118,-0.092332,-2.412590,-6.997307,-0.236899,-2.517455,-7.007017,-0.236899,-2.517455,-7.007017,-0.290526,-2.459353,-6.974977,-0.113234,-2.324605,-6.965118,-0.290526,-2.459353,-6.974977,-0.236899,-2.517455,-7.007017,-0.290978,-2.739867,-7.028751,-0.290978,-2.739867,-7.028751,-0.356848,-2.738603,-6.996944,-0.290526,-2.459353,-6.974977,-0.356848,-2.738603,-6.996944,-0.290978,-2.739867,-7.028751};
			return value;
		}
		private double[] getCoordinate_7_19_point_6()
		{
			double[] value = {-0.291425,-2.970052,-7.042852,-0.291425,-2.970052,-7.042852,-0.357303,-2.962332,-7.011057,-0.356848,-2.738603,-6.996944,0.113233,-2.324605,-6.965118,-0.113234,-2.324605,-6.965118,-0.174611,-2.174784,-6.857720,-0.174611,-2.174784,-6.857720,0.174611,-2.174785,-6.857720,0.113233,-2.324605,-6.965118,-0.113234,-2.324605,-6.965118,-0.290526,-2.459353,-6.974977,-0.411789,-2.347501,-6.831837,-0.411789,-2.347501,-6.831837,-0.174611,-2.174784,-6.857720,-0.113234,-2.324605,-6.965118,-0.290526,-2.459353,-6.974977,-0.356848,-2.738603,-6.996944,-0.514513,-2.691187,-6.816760,-0.514513,-2.691187,-6.816760,-0.411789,-2.347501,-6.831837,-0.290526,-2.459353,-6.974977,-0.356848,-2.738603,-6.996944,-0.357303,-2.962332,-7.011057,-0.547462,-2.940918,-6.855035,-0.547462,-2.940918,-6.855035,-0.514513,-2.691187,-6.816760,-0.356848,-2.738603,-6.996944,0.174611,-2.174785,-6.857720,-0.174611,-2.174784,-6.857720,-0.198403,-1.996628,-6.643156,-0.198403,-1.996628,-6.643156,0.198402,-1.996629,-6.643156,0.174611,-2.174785,-6.857720,-0.174611,-2.174784,-6.857720,-0.411789,-2.347501,-6.831837,-0.484860,-2.186212,-6.505390,-0.484860,-2.186212,-6.505390,-0.198403,-1.996628,-6.643156,-0.174611,-2.174784,-6.857720,-0.411789,-2.347501,-6.831837,-0.514513,-2.691187,-6.816760,-0.602806,-2.469662,-6.356359,-0.602806,-2.469662,-6.356359,-0.484860,-2.186212,-6.505390,-0.411789,-2.347501,-6.831837,-0.514513,-2.691187,-6.816760,-0.547462,-2.940918,-6.855035,-0.626161,-2.725074,-6.277408,-0.626161,-2.725074,-6.277408,-0.602806,-2.469662,-6.356359,-0.514513,-2.691187,-6.816760,0.235406,-2.514920,-7.010218,0.290978,-2.736733,-7.031948,-0.290978,-2.739867,-7.028751,-0.290978,-2.739867,-7.028751,-0.236899,-2.517455,-7.007017,0.235406,-2.514920,-7.010218,0.290978,-2.736733,-7.031948,0.292875,-2.969886,-7.046064,-0.291425,-2.970052,-7.042852,-0.291425,-2.970052,-7.042852,-0.290978,-2.739867,-7.028751,0.290978,-2.736733,-7.031948,0.198402,-1.996629,-6.643156,-0.198403,-1.996628,-6.643156,-0.206791,-1.851167,-6.163842,-0.206791,-1.851167,-6.163842,0.206791,-1.851168,-6.163842,0.198402,-1.996629,-6.643156,-0.198403,-1.996628,-6.643156,-0.484860,-2.186212,-6.505390,-0.495238,-2.022298,-6.069307,-0.495238,-2.022298,-6.069307,-0.206791,-1.851167,-6.163842,-0.198403,-1.996628,-6.643156,-0.484860,-2.186212,-6.505390,-0.602806,-2.469662,-6.356359,-0.605816,-2.274864,-5.945360,-0.605816,-2.274864,-5.945360,-0.495238,-2.022298,-6.069307,-0.484860,-2.186212,-6.505390,-0.602806,-2.469662,-6.356359,-0.626161,-2.725074,-6.277408,-0.642936,-2.558825,-5.885623,-0.642936,-2.558825,-5.885623,-0.605816,-2.274864,-5.945360,-0.602806,-2.469662,-6.356359,0.206791,-1.851168,-6.163842,-0.206791,-1.851167,-6.163842,-0.209275,-1.936872,-5.551818,-0.209275,-1.936872,-5.551818,0.209275,-1.936873,-5.551818,0.206791,-1.851168,-6.163842,-0.206791,-1.851167,-6.163842,-0.495238,-2.022298,-6.069307,-0.484738,-2.024787,-5.529623,-0.484738,-2.024787,-5.529623,-0.209275,-1.936872,-5.551818,-0.206791,-1.851167,-6.163842};
			return value;
		}
		private double[] getCoordinate_7_19_point_7()
		{
			double[] value = {-0.495238,-2.022298,-6.069307,-0.605816,-2.274864,-5.945360,-0.581801,-2.192897,-5.497901,-0.581801,-2.192897,-5.497901,-0.484738,-2.024787,-5.529623,-0.495238,-2.022298,-6.069307,-0.605816,-2.274864,-5.945360,-0.642936,-2.558825,-5.885623,-0.627223,-2.364242,-5.500718,-0.627223,-2.364242,-5.500718,-0.581801,-2.192897,-5.497901,-0.605816,-2.274864,-5.945360,0.107231,-1.343583,-4.971021,0.086330,-1.355452,-5.028345,-0.098334,-1.355452,-5.028345,-0.098334,-1.355452,-5.028345,-0.119235,-1.343582,-4.971021,0.107231,-1.343583,-4.971021,-0.119235,-1.343582,-4.971021,-0.098334,-1.355452,-5.028345,-0.242901,-1.478215,-5.127599,-0.242901,-1.478215,-5.127599,-0.296528,-1.466522,-5.066833,-0.119235,-1.343582,-4.971021,-0.296528,-1.466522,-5.066833,-0.242901,-1.478215,-5.127599,-0.296980,-1.696367,-5.274147,-0.296980,-1.696367,-5.274147,-0.349087,-1.693854,-5.217015,-0.296528,-1.466522,-5.066833,-0.349087,-1.693854,-5.217015,-0.296980,-1.696367,-5.274147,-0.289810,-1.868897,-5.393298,-0.289810,-1.868897,-5.393298,-0.332262,-1.910429,-5.342647,-0.349087,-1.693854,-5.217015,0.107231,-1.343583,-4.971021,-0.119235,-1.343582,-4.971021,-0.174612,-1.171740,-4.611078,-0.174612,-1.171740,-4.611078,0.174611,-1.171741,-4.611078,0.107231,-1.343583,-4.971021,-0.119235,-1.343582,-4.971021,-0.296528,-1.466522,-5.066833,-0.445451,-1.409896,-4.765522,-0.445451,-1.409896,-4.765522,-0.174612,-1.171740,-4.611078,-0.119235,-1.343582,-4.971021,-0.296528,-1.466522,-5.066833,-0.349087,-1.693854,-5.217015,-0.546767,-1.656686,-4.890447,-0.546767,-1.656686,-4.890447,-0.445451,-1.409896,-4.765522,-0.296528,-1.466522,-5.066833,-0.543072,-1.912490,-4.957348,-0.546767,-1.656686,-4.890447,-0.349087,-1.693854,-5.217015,0.174611,-1.171741,-4.611078,-0.174612,-1.171740,-4.611078,-0.198403,-1.125067,-4.218619,-0.198403,-1.125067,-4.218619,0.198402,-1.125068,-4.218619,0.174611,-1.171741,-4.611078,-0.174612,-1.171740,-4.611078,-0.445451,-1.409896,-4.765522,-0.484860,-1.357124,-4.326675,-0.484860,-1.357124,-4.326675,-0.198403,-1.125067,-4.218619,-0.174612,-1.171740,-4.611078,-0.445451,-1.409896,-4.765522,-0.546767,-1.656686,-4.890447,-0.595308,-1.638179,-4.419702,-0.595308,-1.638179,-4.419702,-0.484860,-1.357124,-4.326675,-0.445451,-1.409896,-4.765522,-0.546767,-1.656686,-4.890447,-0.543072,-1.912490,-4.957348,-0.623524,-1.856153,-4.485774,-0.623524,-1.856153,-4.485774,-0.595308,-1.638179,-4.419702,-0.546767,-1.656686,-4.890447,0.230897,-1.479305,-5.127599,0.284976,-1.696367,-5.274147,-0.296980,-1.696367,-5.274147,-0.296980,-1.696367,-5.274147,-0.242901,-1.478215,-5.127599,0.230897,-1.479305,-5.127599,0.284976,-1.696367,-5.274147,0.283808,-1.870236,-5.393298,-0.289810,-1.868897,-5.393298,-0.289810,-1.868897,-5.393298,-0.296980,-1.696367,-5.274147,0.284976,-1.696367,-5.274147,0.198402,-1.125068,-4.218619,-0.198403,-1.125067,-4.218619,-0.200207,-1.193862,-3.841282,-0.200207,-1.193862,-3.841282,0.200207,-1.193863,-3.841282,0.198402,-1.125068,-4.218619,-0.198403,-1.125067,-4.218619};
			return value;
		}
		private double[] getCoordinate_7_19_point_8()
		{
			double[] value = {-0.484860,-1.357124,-4.326675,-0.475670,-1.422851,-3.868031,-0.475670,-1.422851,-3.868031,-0.200207,-1.193862,-3.841282,-0.198403,-1.125067,-4.218619,-0.484860,-1.357124,-4.326675,-0.595308,-1.638179,-4.419702,-0.605842,-1.715205,-3.941298,-0.605842,-1.715205,-3.941298,-0.475670,-1.422851,-3.868031,-0.484860,-1.357124,-4.326675,-0.595308,-1.638179,-4.419702,-0.623524,-1.856153,-4.485774,0.605841,-1.715205,-3.941298,0.605841,-1.715205,-3.941298,-0.605842,-1.715205,-3.941298,-0.595308,-1.638179,-4.419702,-0.332262,-1.910429,-5.342647,-0.289810,-1.868897,-5.393298,-0.209275,-1.936872,-5.551818,-0.209275,-1.936872,-5.551818,-0.484738,-2.024787,-5.529623,-0.332262,-1.910429,-5.342647,0.283808,-1.870236,-5.393298,0.209275,-1.936873,-5.551818,-0.209275,-1.936872,-5.551818,-0.209275,-1.936872,-5.551818,-0.289810,-1.868897,-5.393298,0.283808,-1.870236,-5.393298,-0.547462,-2.940918,-6.855035,-0.537086,-3.119918,-6.798880,-0.628313,-2.797694,-6.246123,-0.628313,-2.797694,-6.246123,-0.626161,-2.725074,-6.277408,-0.547462,-2.940918,-6.855035,-0.626161,-2.725074,-6.277408,-0.628313,-2.797694,-6.246123,-0.676172,-2.628882,-5.833588,-0.676172,-2.628882,-5.833588,-0.642936,-2.558825,-5.885623,-0.626161,-2.725074,-6.277408,-0.685174,-2.433682,-5.455916,-0.627223,-2.364242,-5.500718,-0.642936,-2.558825,-5.885623,-0.642936,-2.558825,-5.885623,-0.676172,-2.628882,-5.833588,-0.685174,-2.433682,-5.455916,-0.685174,-2.433682,-5.455916,-0.779748,-2.754863,-5.448470,-0.830851,-2.874198,-4.973959,-0.830851,-2.874198,-4.973959,-0.817556,-2.498981,-4.973959,-0.685174,-2.433682,-5.455916,-0.793070,-3.181649,-5.440564,-0.872904,-3.181649,-4.491430,-0.830851,-2.874198,-4.973959,-0.830851,-2.874198,-4.973959,-0.779748,-2.754863,-5.448470,-0.793070,-3.181649,-5.440564,-0.596938,-2.130744,-4.973959,-0.561222,-1.993281,-4.973656,-0.484738,-2.024787,-5.529623,-0.484738,-2.024787,-5.529623,-0.581801,-2.192897,-5.497901,-0.596938,-2.130744,-4.973959,-0.581801,-2.192897,-5.497901,-0.627223,-2.364242,-5.500718,-0.596938,-2.130744,-4.973959,-0.627223,-2.364242,-5.500718,-0.685174,-2.433682,-5.455916,-0.817556,-2.498981,-4.973959,-0.817556,-2.498981,-4.973959,-0.596938,-2.130744,-4.973959,-0.627223,-2.364242,-5.500718,-0.543072,-1.912490,-4.957348,-0.561222,-1.993281,-4.973656,-0.622443,-1.948652,-4.499869,-0.622443,-1.948652,-4.499869,-0.623524,-1.856153,-4.485774,-0.543072,-1.912490,-4.957348,-0.779748,-2.754863,-5.448470,-0.685174,-2.433682,-5.455916,-0.676172,-2.628882,-5.833588,-0.619488,-3.181649,-6.100942,-0.676172,-2.628882,-5.833588,-0.628313,-2.797694,-6.246123,-0.676172,-2.628882,-5.833588,-0.619488,-3.181649,-6.100942,-0.793070,-3.181649,-5.440564,-0.793070,-3.181649,-5.440564,-0.779748,-2.754863,-5.448470,-0.676172,-2.628882,-5.833588,-0.619488,-3.181649,-6.100942,-0.628313,-2.797694,-6.246123,-0.537086,-3.119918,-6.798880,-0.561222,-1.993281,-4.973656,0.615979,-2.130745,-4.973959,-0.689085,-2.101398,-4.502603,-0.689085,-2.101398,-4.502603,-0.622443,-1.948652,-4.499869};
			return value;
		}
		private double[] getCoordinate_7_19_point_9()
		{
			double[] value = {-0.561222,-1.993281,-4.973656,-0.622443,-1.948652,-4.499869,-0.689085,-2.101398,-4.502603,-0.723653,-2.105288,-3.842425,-0.723653,-2.105288,-3.842425,-0.632437,-1.901539,-4.036559,-0.622443,-1.948652,-4.499869,-0.475670,-1.422851,-3.868031,-0.605842,-1.715205,-3.941298,-0.677106,-1.729706,-3.778974,-0.677106,-1.729706,-3.778974,-0.753669,-1.264209,-3.711142,-0.475670,-1.422851,-3.868031,-0.723653,-2.105288,-3.842425,-0.677106,-1.729706,-3.778974,-0.632437,-1.901539,-4.036559,-0.200207,-1.193862,-3.841282,-0.475670,-1.422851,-3.868031,-0.753669,-1.264209,-3.711142,-0.876385,-3.204755,-2.971973,-0.841305,-3.579011,-2.973712,-0.784477,-3.599194,-2.398809,-0.784477,-3.599194,-2.398809,-0.824186,-3.199404,-2.398809,-0.876385,-3.204755,-2.971973,-0.841305,-3.579011,-2.973712,-0.834659,-3.649920,-2.974041,-0.782448,-3.619617,-2.398809,-0.782448,-3.619617,-2.398809,-0.784477,-3.599194,-2.398809,-0.841305,-3.579011,-2.973712,-0.824186,-3.199404,-2.398809,-0.896776,-2.462440,-2.398810,-0.926141,-2.327776,-2.971972,-0.926141,-2.327776,-2.971972,-0.876385,-3.204755,-2.971973,-0.824186,-3.199404,-2.398809,-0.876385,-3.204755,-2.971973,-0.926141,-2.327776,-2.971972,-0.898823,-2.325759,-3.588230,-0.898823,-2.325759,-3.588230,-0.903890,-3.197136,-3.588230,-0.876385,-3.204755,-2.971973,-0.883606,-2.590540,-3.864144,-0.876999,-3.181649,-3.868842,-0.903890,-3.197136,-3.588230,-0.883606,-2.590540,-3.864144,-0.903890,-3.197136,-3.588230,-0.898823,-2.325759,-3.588230,-0.883606,-2.590540,-3.864144,-0.898823,-2.325759,-3.588230,-0.723653,-2.105288,-3.842425,-0.596938,-2.130744,-4.973959,-0.817556,-2.498981,-4.973959,-0.872904,-2.583397,-4.502603,-0.872904,-2.583397,-4.502603,-0.689085,-2.101398,-4.502603,-0.596938,-2.130744,-4.973959,-0.689085,-2.101398,-4.502603,-0.872904,-2.583397,-4.502603,-0.883606,-2.590540,-3.864144,-0.883606,-2.590540,-3.864144,-0.723653,-2.105288,-3.842425,-0.689085,-2.101398,-4.502603,-0.817556,-2.498981,-4.973959,-0.830851,-2.874198,-4.973959,-0.872904,-3.181649,-4.491430,-0.872904,-3.181649,-4.491430,-0.872904,-2.583397,-4.502603,-0.817556,-2.498981,-4.973959,-0.872904,-2.583397,-4.502603,-0.872904,-3.181649,-4.491430,-0.876999,-3.181649,-3.868842,-0.876999,-3.181649,-3.868842,-0.883606,-2.590540,-3.864144,-0.872904,-2.583397,-4.502603,-0.680212,-3.199406,3.423438,-0.808386,-3.623969,2.244820,-0.023523,-3.642713,2.244820,-0.023523,-3.642713,2.244820,-0.023523,-3.199406,3.475473,-0.680212,-3.199406,3.423438,-0.899190,-2.463103,2.274385,-0.826676,-3.199405,2.274385,-0.680212,-3.199406,3.423438,-0.899190,-2.463103,2.274385,-0.680212,-3.199406,3.423438,-0.398275,-2.599201,5.119215,-0.899190,-2.463103,2.274385,-0.398275,-2.599201,5.119215,-0.525296,-2.199790,5.119215,-0.829879,-3.199405,1.241748,-0.794902,-3.630139,1.226032,-0.808386,-3.623969,2.244820,-0.808386,-3.623969,2.244820,-0.826676,-3.199405,2.274385,-0.829879,-3.199405,1.241748,-0.827988,-3.199405,-0.389735,-0.786165,-3.624061,-0.389735,-0.794902,-3.630139,1.226032};
			return value;
		}
		private double[] getCoordinate_7_19_point_10()
		{
			double[] value = {-0.794902,-3.630139,1.226032,-0.829879,-3.199405,1.241748,-0.827988,-3.199405,-0.389735,-0.872904,-3.181649,-4.491430,-0.793070,-3.181649,-5.440564,-0.678624,-3.649920,-5.442632,-0.678624,-3.649920,-5.442632,-0.791733,-3.649920,-4.493498,-0.872904,-3.181649,-4.491430,-0.793070,-3.181649,-5.440564,-0.619488,-3.181649,-6.100942,-0.526460,-3.649920,-6.103009,-0.526460,-3.649920,-6.103009,-0.678624,-3.649920,-5.442632,-0.793070,-3.181649,-5.440564,-0.619488,-3.181649,-6.100942,-0.537086,-3.119918,-6.798880,-0.374732,-3.648143,-6.837363,-0.374732,-3.648143,-6.837363,-0.526460,-3.649920,-6.103009,-0.619488,-3.181649,-6.100942,-0.834659,-3.649920,-3.590298,-0.841305,-3.579011,-2.973712,-0.876385,-3.204755,-2.971973,-0.876385,-3.204755,-2.971973,-0.903890,-3.197136,-3.588230,-0.834659,-3.649920,-3.590298,-0.813867,-3.649920,-3.870911,-0.834659,-3.649920,-3.590298,-0.903890,-3.197136,-3.588230,-0.903890,-3.197136,-3.588230,-0.876999,-3.181649,-3.868842,-0.813867,-3.649920,-3.870911,-0.876999,-3.181649,-3.868842,-0.872904,-3.181649,-4.491430,-0.791733,-3.649920,-4.493498,-0.791733,-3.649920,-4.493498,-0.813867,-3.649920,-3.870911,-0.876999,-3.181649,-3.868842,-0.792508,-3.759800,-4.675107,-0.700080,-3.946051,-5.478987,0.0,-3.944337,-5.478987,0.0,-3.944337,-5.478987,0.0,-3.758086,-4.675107,-0.792508,-3.759800,-4.675107,-0.700080,-3.946051,-5.478987,-0.547917,-3.965506,-6.160804,0.0,-3.956223,-6.160804,0.0,-3.956223,-6.160804,0.0,-3.944337,-5.478987,-0.700080,-3.946051,-5.478987,-0.547917,-3.965506,-6.160804,-0.462839,-3.874490,-6.587746,0.0,-3.872776,-6.634928,0.0,-3.872776,-6.634928,0.0,-3.956223,-6.160804,-0.547917,-3.965506,-6.160804,0.0,-3.649920,-3.590298,0.0,-3.649920,-2.974041,-0.834659,-3.649920,-2.974041,-0.834659,-3.649920,-2.974041,-0.834659,-3.649920,-3.590298,0.0,-3.649920,-3.590298,0.0,-3.649920,-3.870911,0.0,-3.649920,-3.590298,-0.834659,-3.649920,-3.590298,-0.834659,-3.649920,-3.590298,-0.813867,-3.649920,-3.870911,0.0,-3.649920,-3.870911,-0.791733,-3.649920,-4.493498,-0.580813,-3.649463,-4.493498,-0.813867,-3.649920,-3.870911,-0.782448,-3.619617,-2.398809,0.0,-3.649920,-2.974041,-0.004851,-3.637137,-2.398811,0.0,-0.162007,-1.827662,0.0,-0.433402,-1.834908,-0.120005,-0.414763,-1.834908,0.0,-0.162007,-1.827662,-0.120005,-0.414763,-1.834908,-0.272730,-0.293186,-1.834908,0.0,-0.162007,-1.827662,-0.272730,-0.293186,-1.834908,-0.304289,-0.154070,-1.837255,0.0,-0.162007,-1.827662,-0.304289,-0.154070,-1.837255,-0.261559,0.066748,-1.834908,0.0,-0.162007,-1.827662,-0.261559,0.066748,-1.834908,-0.147398,0.196855,-1.834908,0.0,-0.162007,-1.827662,-0.147398,0.196855,-1.834908,0.0,0.196855,-1.834908,0.0,0.196855,-1.834908,-0.147398,0.196855,-1.834908,-0.147398,0.221823,-0.318795,-0.147398,0.221823,-0.318795,0.0,0.221823,-0.318795,0.0,0.196855,-1.834908,-0.147398,0.196855,-1.834908};
			return value;
		}
		private double[] getCoordinate_7_19_point_11()
		{
			double[] value = {-0.261559,0.066748,-1.834908,-0.315257,0.100246,-0.318795,-0.315257,0.100246,-0.318795,-0.147398,0.221823,-0.318795,-0.147398,0.196855,-1.834908,-0.261559,0.066748,-1.834908,-0.304289,-0.154070,-1.837255,-0.469952,-0.096470,-0.328389,-0.469952,-0.096470,-0.328389,-0.315257,0.100246,-0.318795,-0.261559,0.066748,-1.834908,0.0,0.221823,-0.318795,-0.147398,0.221823,-0.318795,-0.147398,0.221823,1.534162,-0.147398,0.221823,1.534162,0.0,0.221823,1.533846,0.0,0.221823,-0.318795,-0.147398,0.221823,-0.318795,-0.315257,0.100246,-0.318795,-0.315257,0.100245,1.534162,-0.315257,0.100245,1.534162,-0.147398,0.221823,1.534162,-0.147398,0.221823,-0.318795,-0.315257,0.100246,-0.318795,-0.469952,-0.096470,-0.328389,-0.469952,-0.096470,1.533485,-0.469952,-0.096470,1.533485,-0.315257,0.100245,1.534162,-0.315257,0.100246,-0.318795,-0.304289,-0.154070,-1.837255,-0.493643,-0.218346,-1.835631,-0.561208,-0.219058,-0.313730,-0.561208,-0.219058,-0.313730,-0.469952,-0.096470,-0.328389,-0.304289,-0.154070,-1.837255,-0.493643,-0.218346,-1.835631,-0.304289,-0.154070,-1.837255,-0.217698,-0.228580,-2.397725,-0.217698,-0.228580,-2.397725,-0.493108,-0.216022,-2.396100,-0.493643,-0.218346,-1.835631,-0.115359,-0.433678,-2.458453,0.0,-0.452317,-2.458453,-0.036252,-0.466032,-3.167864,-0.036252,-0.466032,-3.167864,-0.115513,-0.466031,-3.167864,-0.115359,-0.433678,-2.458453,-0.115513,-0.466031,-3.167864,-0.036252,-0.466032,-3.167864,0.0,-0.452727,-3.376044,-0.120005,-0.414763,-1.834908,0.0,-0.433402,-1.834908,0.0,-0.452317,-2.458453,0.0,-0.452317,-2.458453,-0.115359,-0.433678,-2.458453,-0.120005,-0.414763,-1.834908,-0.272730,-0.293186,-1.834908,-0.120005,-0.414763,-1.834908,-0.115359,-0.433678,-2.458453,-0.115359,-0.433678,-2.458453,-0.217698,-0.228580,-2.397725,-0.272730,-0.293186,-1.834908,-0.469952,-0.096470,-0.328389,-0.561208,-0.219058,-0.313730,-0.561605,-0.222276,1.533310,-0.561605,-0.222276,1.533310,-0.469952,-0.096470,1.533485,-0.469952,-0.096470,-0.328389,-0.357303,-2.962332,-7.011057,-0.291425,-2.970052,-7.042852,-0.144473,-3.175893,-7.010422,-0.144473,-3.175893,-7.010422,-0.288435,-3.175222,-6.933941,-0.357303,-2.962332,-7.011057,-0.357303,-2.962332,-7.011057,-0.288435,-3.175222,-6.933941,-0.537086,-3.119918,-6.798880,-0.537086,-3.119918,-6.798880,-0.547462,-2.940918,-6.855035,-0.357303,-2.962332,-7.011057,0.292875,-2.969886,-7.046064,0.144205,-3.175894,-7.010422,-0.144473,-3.175893,-7.010422,-0.144473,-3.175893,-7.010422,-0.291425,-2.970052,-7.042852,0.292875,-2.969886,-7.046064,-0.357516,-3.224502,-7.141218,-0.213555,-3.234368,-7.242729,-0.203510,-3.516038,-7.293159,-0.203510,-3.516038,-7.293159,-0.320104,-3.529665,-7.197826,-0.357516,-3.224502,-7.141218,-0.357516,-3.224502,-7.141218,-0.320104,-3.529665,-7.197826,-0.374732,-3.648143,-6.837363,-0.374732,-3.648143,-6.837363,-0.537086,-3.119918,-6.798880,-0.357516,-3.224502,-7.141218,0.213287,-3.234369,-7.242729,0.203509,-3.516039,-7.293159};
			return value;
		}
		private double[] getCoordinate_7_19_point_12()
		{
			double[] value = {-0.203510,-3.516038,-7.293159,-0.203510,-3.516038,-7.293159,-0.213555,-3.234368,-7.242729,0.213287,-3.234369,-7.242729,0.0,-3.872776,-6.634928,-0.138411,-3.648143,-6.837670,0.138410,-3.648143,-6.837670,-0.275687,-3.648143,-6.786247,-0.138411,-3.648143,-6.837670,0.0,-3.872776,-6.634928,0.0,-3.872776,-6.634928,-0.462839,-3.874490,-6.587746,-0.275687,-3.648143,-6.786247,-0.791733,-3.649920,-4.493498,-0.678624,-3.649920,-5.442632,-0.700080,-3.946051,-5.478987,-0.791733,-3.649920,-4.493498,-0.700080,-3.946051,-5.478987,-0.792508,-3.759800,-4.675107,-0.791733,-3.649920,-4.493498,-0.792508,-3.759800,-4.675107,-0.792210,-3.717545,-4.605268,-0.547917,-3.965506,-6.160804,-0.700080,-3.946051,-5.478987,-0.678624,-3.649920,-5.442632,-0.678624,-3.649920,-5.442632,-0.526460,-3.649920,-6.103009,-0.547917,-3.965506,-6.160804,-0.462839,-3.874490,-6.587746,-0.547917,-3.965506,-6.160804,-0.526460,-3.649920,-6.103009,-0.526460,-3.649920,-6.103009,-0.374732,-3.648143,-6.837363,-0.462839,-3.874490,-6.587746,-0.580813,-3.649463,-4.493498,-0.791733,-3.649920,-4.493498,-0.792210,-3.717545,-4.605268,-0.792508,-3.759800,-4.675107,0.0,-3.758086,-4.675107,0.0,-3.648206,-4.493498,-0.792508,-3.759800,-4.675107,0.0,-3.648206,-4.493498,-0.580813,-3.649463,-4.493498,-0.792508,-3.759800,-4.675107,-0.580813,-3.649463,-4.493498,-0.792210,-3.717545,-4.605268,-0.138411,-3.648143,-6.837670,-0.275687,-3.648143,-6.786247,-0.254230,-3.648143,-7.129436,-0.254230,-3.648143,-7.129436,-0.137636,-3.648143,-7.173914,-0.138411,-3.648143,-6.837670,-0.275687,-3.648143,-6.786247,-0.462839,-3.874490,-6.587746,-0.374732,-3.648143,-6.837363,-0.374732,-3.648143,-6.837363,-0.254230,-3.648143,-7.129436,-0.275687,-3.648143,-6.786247,0.138410,-3.648143,-6.837670,-0.138411,-3.648143,-6.837670,-0.137636,-3.648143,-7.173914,-0.137636,-3.648143,-7.173914,0.137636,-3.648143,-7.173914,0.138410,-3.648143,-6.837670,-0.774815,-0.559907,-1.099503,-0.710381,-0.407114,-1.835631,-0.709886,-0.404786,-2.397723,-0.774815,-0.559907,-1.099503,-0.709886,-0.404786,-2.397723,-0.821168,-0.668488,-2.397725,-0.774815,-0.559907,-1.099503,-0.821168,-0.668488,-2.397725,-0.821564,-0.670350,-1.121115,-0.782173,-0.577595,-0.308645,-0.710533,-0.407825,-0.315354,-0.710516,-0.407749,-0.477093,-0.622558,-0.342142,-0.879929,-0.493643,-0.218346,-1.835631,-0.710381,-0.407114,-1.835631,-0.710381,-0.407114,-1.835631,-0.710470,-0.407530,-0.945860,-0.622558,-0.342142,-0.879929,-0.922201,-1.135123,-0.516696,-0.953236,-1.351759,-0.388810,-0.918198,-1.108146,-0.315337,-0.918198,-1.108146,-0.315337,-0.878757,-0.929476,-0.309341,-0.922201,-1.135123,-0.516696,-0.147398,0.221823,1.534162,-0.315257,0.100245,1.534162,-0.277394,0.048889,3.171991,-0.277394,0.048889,3.171991,-0.129696,0.170466,3.171991,-0.147398,0.221823,1.534162,-0.315257,0.100245,1.534162,-0.469952,-0.096470,1.533485,-0.413511,-0.147827,3.171991,-0.413511,-0.147827,3.171991,-0.277394,0.048889,3.171991,-0.315257,0.100245,1.534162};
			return value;
		}
		private double[] getCoordinate_7_19_point_13()
		{
			double[] value = {-0.469952,-0.096470,1.533485,-0.561605,-0.222276,1.533310,-0.494506,-0.222097,3.171550,-0.494506,-0.222097,3.171550,-0.413511,-0.147827,3.171991,-0.469952,-0.096470,1.533485,-0.494506,-0.222097,3.171550,-0.708583,-0.404694,2.274368,-0.532946,-0.476249,3.343352,-0.129696,0.170466,3.171991,-0.277394,0.048889,3.171991,-0.252670,-0.158143,3.705353,-0.252670,-0.158143,3.705353,-0.087207,0.037897,3.462261,-0.129696,0.170466,3.171991,0.0,0.221823,1.533846,-0.147398,0.221823,1.534162,-0.129696,0.170466,3.171991,-0.129696,0.170466,3.171991,0.0,0.170466,3.171991,0.0,0.221823,1.533846,0.0,0.170466,3.171991,-0.129696,0.170466,3.171991,-0.087207,0.037897,3.462261,-0.087207,0.037897,3.462261,0.0,0.057393,3.470636,0.0,0.170466,3.171991,0.0,0.057393,3.470636,-0.087207,0.037897,3.462261,-0.252670,-0.158143,3.705353,-0.252670,-0.158143,3.705353,0.0,-0.156929,3.706822,0.0,0.057393,3.470636,0.0,-0.156929,3.706822,-0.252670,-0.158143,3.705353,-0.243029,-0.514932,4.178452,-0.243029,-0.514932,4.178452,0.0,-0.514932,4.178452,0.0,-0.156929,3.706822,-0.277394,0.048889,3.171991,-0.413511,-0.147827,3.171991,-0.392085,-0.289166,3.705353,-0.392085,-0.289166,3.705353,-0.252670,-0.158143,3.705353,-0.277394,0.048889,3.171991,-0.252670,-0.158143,3.705353,-0.392085,-0.289166,3.705353,-0.377913,-0.514932,4.178452,-0.377913,-0.514932,4.178452,-0.243029,-0.514932,4.178452,-0.252670,-0.158143,3.705353,-0.413511,-0.147827,3.171991,-0.494506,-0.222097,3.171550,-0.532946,-0.476249,3.343352,-0.532946,-0.476249,3.343352,-0.392085,-0.289166,3.705353,-0.413511,-0.147827,3.171991,-0.392085,-0.289166,3.705353,-0.532946,-0.476249,3.343352,-0.377913,-0.514932,4.178452,-0.876705,-0.920136,-1.122147,-0.821564,-0.670350,-1.121115,-0.821168,-0.668488,-2.397725,-0.821168,-0.668488,-2.397725,-0.917552,-1.105107,-2.397707,-0.876705,-0.920136,-1.122147,-0.624263,-0.343544,-0.540769,-0.710516,-0.407749,-0.477093,-0.710533,-0.407825,-0.315354,-0.710533,-0.407825,-0.315354,-0.561208,-0.219058,-0.313730,-0.624263,-0.343544,-0.540769,-0.624263,-0.343544,-0.540769,-0.561208,-0.219058,-0.313730,-0.493643,-0.218346,-1.835631,-0.493643,-0.218346,-1.835631,-0.622558,-0.342142,-0.879929,-0.624263,-0.343544,-0.540769,-0.921901,-1.134096,-0.909949,-0.917552,-1.105107,-2.397707,-0.950731,-1.354054,-2.398259,-0.950731,-1.354054,-2.398259,-0.953236,-1.351759,-0.388810,-0.921901,-1.134096,-0.909949,-0.922201,-1.135123,-0.516696,-0.921901,-1.134096,-0.909949,-0.953236,-1.351759,-0.388810,-0.931531,-1.201627,0.981818,-0.934193,-1.241214,1.508482,-0.918845,-1.111185,1.338881,-0.932502,-1.208328,0.832917,-0.931531,-1.201627,0.981818,-0.918845,-1.111185,1.338881,-0.932502,-1.208328,0.832917,-0.918845,-1.111185,1.338881,-0.918198,-1.108146,-0.315337,-0.932502,-1.208328,0.832917,-0.918198,-1.108146,-0.315337,-0.953236,-1.351759,-0.388810,-0.932502,-1.208328,0.832917};
			return value;
		}
		private double[] getCoordinate_7_19_point_14()
		{
			double[] value = {-0.953236,-1.351759,-0.388810,-0.946808,-1.504822,0.760458,-0.953236,-1.351759,-0.388810,-0.900493,-2.463195,-0.389735,-0.901786,-2.469273,1.241748,-0.945503,-1.538839,1.241748,-0.929078,-1.469595,0.875057,-0.946808,-1.504822,0.760458,-0.901786,-2.469273,1.241748,-0.945503,-1.538839,1.241748,-0.946808,-1.504822,0.760458,-0.953236,-1.351759,-0.388810,-0.901786,-2.469273,1.241748,-0.946808,-1.504822,0.760458,-0.882326,-1.828985,2.696802,-0.911984,-1.744799,2.422877,-0.899190,-2.463103,2.274385,-0.882326,-1.828985,2.696802,-0.899190,-2.463103,2.274385,-0.525296,-2.199790,5.119215,-0.525296,-2.199790,5.119215,-0.811698,-1.356174,3.896985,-0.925388,-1.435466,2.463008,-0.525296,-2.199790,5.119215,-0.925388,-1.435466,2.463008,-0.895185,-1.554487,2.721480,-0.882326,-1.828985,2.696802,-0.525296,-2.199790,5.119215,-0.895185,-1.554487,2.721480,-0.911984,-1.744799,2.422877,-0.882326,-1.828985,2.696802,-1.033076,-1.829676,2.699077,-1.033076,-1.829676,2.699077,-1.068487,-1.745990,2.423330,-0.911984,-1.744799,2.422877,-0.929078,-1.469595,0.875057,-0.945503,-1.538839,1.241748,-0.911984,-1.744799,2.422877,-0.929078,-1.469595,0.875057,-0.911984,-1.744799,2.422877,-1.068487,-1.745990,2.423330,-0.929078,-1.469595,0.875057,-1.068487,-1.745990,2.423330,-1.101134,-1.514599,0.875057,-0.946808,-1.504822,0.760458,-0.929078,-1.469595,0.875057,-1.101134,-1.514599,0.875057,-1.101134,-1.514599,0.875057,-1.101134,-1.515850,0.749363,-0.946808,-1.504822,0.760458,-0.925388,-1.435466,2.463008,-1.068487,-1.537087,2.447825,-1.033076,-1.620773,2.723571,-1.033076,-1.620773,2.723571,-0.895185,-1.554487,2.721480,-0.925388,-1.435466,2.463008,-1.068487,-1.537087,2.447825,-0.925388,-1.435466,2.463008,-0.934193,-1.241214,1.508482,-0.934193,-1.241214,1.508482,-1.087083,-1.352042,1.494686,-1.068487,-1.537087,2.447825,-0.932502,-1.208328,0.832917,-1.101134,-1.306947,0.773857,-1.101134,-1.305696,0.899552,-1.101134,-1.305696,0.899552,-0.931531,-1.201627,0.981818,-0.932502,-1.208328,0.832917,-0.895185,-1.554487,2.721480,-1.033076,-1.620773,2.723571,-1.033076,-1.829676,2.699077,-1.033076,-1.829676,2.699077,-0.882326,-1.828985,2.696802,-0.895185,-1.554487,2.721480,-1.101134,-1.306947,0.773857,-0.932502,-1.208328,0.832917,-0.946808,-1.504822,0.760458,-0.946808,-1.504822,0.760458,-1.101134,-1.515850,0.749363,-1.101134,-1.306947,0.773857,-1.101134,-1.305696,0.899552,-1.101134,-1.306947,0.773857,-1.101134,-1.515850,0.749363,-1.101134,-1.515850,0.749363,-1.101134,-1.514599,0.875057,-1.101134,-1.305696,0.899552,-3.847448,-2.287029,2.199910,-3.799625,-2.203324,1.148160,-3.847448,-2.299778,1.123665,-3.847448,-2.299778,1.123665,-3.847448,-2.450928,2.175416,-3.847448,-2.287029,2.199910,-1.033076,-1.620773,2.723571,-1.068487,-1.537087,2.447825,-1.068487,-1.745990,2.423330,-1.068487,-1.745990,2.423330,-1.033076,-1.829676,2.699077,-1.033076,-1.620773,2.723571,-1.969407,-1.986192,2.339665,-1.969407,-1.773821,0.953403};
			return value;
		}
		private double[] getCoordinate_7_19_point_15()
		{
			double[] value = {-1.101134,-1.514599,0.875057,-1.101134,-1.514599,0.875057,-1.068487,-1.745990,2.423330,-1.969407,-1.986192,2.339665,-1.087083,-1.352042,1.494686,-1.101134,-1.305696,0.899552,-2.104234,-1.622581,0.990793,-2.104234,-1.622581,0.990793,-2.104234,-1.643930,1.458381,-1.087083,-1.352042,1.494686,-2.083833,-1.816486,0.966299,-2.104234,-1.622581,0.990793,-1.101134,-1.305696,0.899552,-1.101134,-1.305696,0.899552,-1.101134,-1.514599,0.875057,-1.969407,-1.773821,0.953403,-2.083833,-1.816486,0.966299,-1.101134,-1.305696,0.899552,-1.969407,-1.773821,0.953403,-1.068487,-1.745990,2.423330,-1.068487,-1.537087,2.447825,-2.083833,-1.811075,2.352391,-2.083833,-1.811075,2.352391,-2.083833,-2.019978,2.327897,-1.969407,-1.986192,2.339665,-1.068487,-1.745990,2.423330,-2.083833,-1.811075,2.352391,-1.969407,-1.986192,2.339665,-2.083833,-2.019978,2.327897,-2.083833,-1.811075,2.352391,-3.770488,-2.298921,2.279483,-3.770488,-2.298921,2.279483,-3.770488,-2.498538,2.254988,-2.908772,-2.276216,2.297946,-3.770488,-2.298921,2.279483,-2.908772,-2.276216,2.297946,-2.807864,-2.236817,2.305222,-2.083833,-2.019978,2.327897,-3.770488,-2.298921,2.279483,-2.807864,-2.236817,2.305222,-2.104234,-1.643930,1.458381,-2.104234,-1.622581,0.990793,-3.699718,-2.121878,1.094859,-3.699718,-2.121878,1.094859,-3.699718,-2.124673,1.398588,-2.104234,-1.643930,1.458381,-2.104234,-1.622581,0.990793,-2.083833,-1.816486,0.966299,-2.807864,-2.047261,0.999819,-2.104234,-1.622581,0.990793,-2.807864,-2.047261,0.999819,-2.908772,-2.083112,1.009797,-2.104234,-1.622581,0.990793,-2.908772,-2.083112,1.009797,-3.770488,-2.330781,1.070364,-2.104234,-1.622581,0.990793,-3.770488,-2.330781,1.070364,-3.699718,-2.121878,1.094859,-3.847448,-3.378051,2.030156,-3.847448,-3.378051,0.978406,-3.770366,-3.378051,0.925104,-3.770366,-3.378051,0.925104,-3.770366,-3.378051,2.109728,-3.847448,-3.378051,2.030156,-3.847448,-2.287029,2.199910,-3.847448,-2.450928,2.175416,-3.770488,-2.498538,2.254988,-3.770488,-2.498538,2.254988,-3.770488,-2.298921,2.279483,-3.847448,-2.287029,2.199910,-3.699718,-2.124673,1.398588,-3.699718,-2.121878,1.094859,-3.799625,-2.203324,1.148160,-3.770488,-2.298921,2.279483,-3.699718,-2.124673,1.398588,-3.799625,-2.203324,1.148160,-3.770488,-2.298921,2.279483,-3.799625,-2.203324,1.148160,-3.847448,-2.287029,2.199910,-3.847448,-2.299778,1.123665,-3.799625,-2.203324,1.148160,-3.699718,-2.121878,1.094859,-3.699718,-2.121878,1.094859,-3.770488,-2.330781,1.070364,-3.847448,-2.299778,1.123665,-3.847448,-3.378051,0.978406,-3.847448,-3.378051,2.030156,-3.847448,-2.450928,2.175416,-3.847448,-2.450928,2.175416,-3.847448,-2.299778,1.123665,-3.847448,-3.378051,0.978406,-3.770366,-3.378051,2.109728,-3.770366,-3.378051,0.925104,-3.770488,-2.330781,1.070364,-3.770488,-2.330781,1.070364,-3.770488,-2.498538,2.254988,-3.770366,-3.378051,2.109728,-3.847448,-3.378051,2.030156,-3.770366,-3.378051,2.109728,-3.770488,-2.498538,2.254988};
			return value;
		}
		private double[] getCoordinate_7_19_point_16()
		{
			double[] value = {-3.770488,-2.498538,2.254988,-3.847448,-2.450928,2.175416,-3.847448,-3.378051,2.030156,-3.770366,-3.378051,0.925104,-3.847448,-3.378051,0.978406,-3.847448,-2.299778,1.123665,-3.847448,-2.299778,1.123665,-3.770488,-2.330781,1.070364,-3.770366,-3.378051,0.925104,-0.911984,-1.744799,2.422877,-0.945503,-1.538839,1.241748,-1.068487,-1.745990,2.423330,-0.945503,-1.538839,1.241748,-0.911984,-1.744799,2.422877,-1.068487,-1.745990,2.423330,-0.934193,-1.241214,1.508482,-0.931531,-1.201627,0.981818,-1.101134,-1.305696,0.899552,-1.101134,-1.305696,0.899552,-1.087083,-1.352042,1.494686,-0.934193,-1.241214,1.508482,-1.967139,-2.601115,0.847163,-1.967139,-2.601115,2.233424,-2.083833,-2.601115,2.221656,-2.083833,-2.601115,2.221656,-2.083833,-2.601115,0.860058,-1.967139,-2.601115,0.847163,-2.104234,-1.643930,1.458381,-2.083833,-1.811075,2.352391,-1.068487,-1.537087,2.447825,-1.068487,-1.537087,2.447825,-1.087083,-1.352042,1.494686,-2.104234,-1.643930,1.458381,-2.807864,-2.236817,2.305222,-2.807864,-2.047261,0.999819,-2.083833,-1.816486,0.966299,-2.083833,-1.816486,0.966299,-2.083833,-2.019978,2.327897,-2.807864,-2.236817,2.305222,-2.908772,-2.083112,1.009797,-2.908772,-2.276216,2.297946,-3.770488,-2.498538,2.254988,-3.770488,-2.498538,2.254988,-3.770488,-2.330781,1.070364,-2.908772,-2.083112,1.009797,-3.699718,-2.124673,1.398588,-3.770488,-2.298921,2.279483,-2.083833,-1.811075,2.352391,-2.083833,-1.811075,2.352391,-2.104234,-1.643930,1.458381,-3.699718,-2.124673,1.398588,-2.909267,-2.767967,2.198689,-2.907945,-2.767967,0.910541,-2.808862,-2.767967,0.900561,-2.808862,-2.767967,0.900561,-2.806533,-2.767967,2.205964,-2.909267,-2.767967,2.198689,-2.083833,-2.601115,0.860058,-2.083833,-2.601115,2.221656,-2.083833,-2.019978,2.327897,-2.083833,-2.019978,2.327897,-2.083833,-1.816486,0.966299,-2.083833,-2.601115,0.860058,-1.967139,-2.601115,0.847163,-2.083833,-2.601115,0.860058,-2.083833,-1.816486,0.966299,-2.083833,-1.816486,0.966299,-1.969407,-1.773821,0.953403,-1.967139,-2.601115,0.847163,-2.083833,-2.601115,2.221656,-1.967139,-2.601115,2.233424,-1.969407,-1.986192,2.339665,-1.969407,-1.986192,2.339665,-2.083833,-2.019978,2.327897,-2.083833,-2.601115,2.221656,-1.967139,-2.601115,2.233424,-1.967139,-2.601115,0.847163,-1.969407,-1.773821,0.953403,-1.969407,-1.773821,0.953403,-1.969407,-1.986192,2.339665,-1.967139,-2.601115,2.233424,-2.909267,-2.767967,2.198689,-2.806533,-2.767967,2.205964,-2.807864,-2.236817,2.305222,-2.807864,-2.236817,2.305222,-2.908772,-2.276216,2.297946,-2.909267,-2.767967,2.198689,-2.806533,-2.767967,2.205964,-2.808862,-2.767967,0.900561,-2.807864,-2.047261,0.999819,-2.807864,-2.047261,0.999819,-2.807864,-2.236817,2.305222,-2.806533,-2.767967,2.205964,-2.808862,-2.767967,0.900561,-2.907945,-2.767967,0.910541,-2.908772,-2.083112,1.009797,-2.908772,-2.083112,1.009797,-2.807864,-2.047261,0.999819,-2.808862,-2.767967,0.900561,-2.907945,-2.767967,0.910541};
			return value;
		}
		private double[] getCoordinate_7_19_point_17()
		{
			double[] value = {-2.909267,-2.767967,2.198689,-2.908772,-2.276216,2.297946,-2.908772,-2.276216,2.297946,-2.908772,-2.083112,1.009797,-2.907945,-2.767967,0.910541,0.252669,-0.158143,3.705353,0.392084,-0.289166,3.705353,0.277393,0.048889,3.171991,-0.236899,-2.517455,-7.007017,-0.092332,-2.412590,-6.997307,0.092332,-2.412591,-6.997307,0.092332,-2.412591,-6.997307,0.235406,-2.514920,-7.010218,-0.236899,-2.517455,-7.007017,-0.213555,-3.234368,-7.242729,-0.357516,-3.224502,-7.141218,-0.288435,-3.175222,-6.933941,-0.288435,-3.175222,-6.933941,-0.144473,-3.175893,-7.010422,-0.213555,-3.234368,-7.242729,-0.537086,-3.119918,-6.798880,-0.288435,-3.175222,-6.933941,-0.357516,-3.224502,-7.141218,0.213287,-3.234369,-7.242729,-0.213555,-3.234368,-7.242729,-0.144473,-3.175893,-7.010422,-0.144473,-3.175893,-7.010422,0.144205,-3.175894,-7.010422,0.213287,-3.234369,-7.242729,-0.320104,-3.529665,-7.197826,-0.203510,-3.516038,-7.293159,-0.137636,-3.648143,-7.173914,-0.137636,-3.648143,-7.173914,-0.254230,-3.648143,-7.129436,-0.320104,-3.529665,-7.197826,-0.374732,-3.648143,-6.837363,-0.320104,-3.529665,-7.197826,-0.254230,-3.648143,-7.129436,-0.203510,-3.516038,-7.293159,0.203509,-3.516039,-7.293159,0.137636,-3.648143,-7.173914,0.137636,-3.648143,-7.173914,-0.137636,-3.648143,-7.173914,-0.203510,-3.516038,-7.293159,0.398270,-2.599201,5.119215,0.525291,-2.199790,5.119215,0.306263,-1.778761,7.967001,0.306263,-1.778761,7.967001,0.200679,-2.076742,7.967001,0.398270,-2.599201,5.119215,0.149063,-0.544913,7.995851,0.280189,-0.835341,7.967001,0.389758,-0.843138,5.119215,0.389758,-0.843138,5.119215,0.234859,-0.544913,5.119215,0.149063,-0.544913,7.995851,0.200679,-2.076742,7.967001,0.306263,-1.778761,7.967001,0.174727,-1.318747,11.273637,0.174727,-1.318747,11.273637,0.085628,-1.500397,11.273637,0.200679,-2.076742,7.967001,0.102539,-0.544913,11.302486,0.207005,-0.784588,11.273637,0.280189,-0.835341,7.967001,0.280189,-0.835341,7.967001,0.149063,-0.544913,7.995851,0.102539,-0.544913,11.302486,0.085628,-1.500397,11.273637,0.174727,-1.318747,11.273637,0.150516,-1.223684,11.834497,0.085628,-1.500397,11.273637,0.150516,-1.223684,11.834497,0.080822,-1.080247,13.060558,0.037986,-1.200686,12.989975,0.085628,-1.500397,11.273637,0.080822,-1.080247,13.060558,-0.000003,-2.617945,5.119215,0.398270,-2.599201,5.119215,0.200679,-2.076742,7.967001,0.200679,-2.076742,7.967001,-0.000003,-2.104983,7.967002,-0.000003,-2.617945,5.119215,-0.000003,-2.104983,7.967002,0.200679,-2.076742,7.967001,0.085628,-1.500397,11.273637,0.085628,-1.500397,11.273637,-0.000003,-1.528638,11.273638,-0.000003,-2.104983,7.967002,-0.000003,-1.528638,11.273638,0.085628,-1.500397,11.273637,0.037986,-1.200686,12.989975,0.037986,-1.200686,12.989975,-0.000005,-1.236845,12.989977,-0.000003,-1.528638,11.273638,-0.000005,-1.236845,12.989977,0.037986,-1.200686,12.989975,0.080822,-1.080247,13.060558,0.080822,-1.080247,13.060558,-0.000005,-1.080247,13.060560};
			return value;
		}
		private double[] getCoordinate_7_19_point_18()
		{
			double[] value = {-0.000005,-1.236845,12.989977,-0.000003,1.380109,13.750371,-0.000003,1.337675,14.425802,0.032019,1.337675,14.425802,0.032019,1.337675,14.425802,0.078320,1.355109,13.750371,-0.000003,1.380109,13.750371,-0.000003,-0.482357,11.273638,0.102539,-0.544913,11.302486,0.149063,-0.544913,7.995851,0.149063,-0.544913,7.995851,-0.000003,-0.544913,7.967002,-0.000003,-0.482357,11.273638,-0.000003,-0.544913,7.967002,0.149063,-0.544913,7.995851,0.234859,-0.544913,5.119215,0.234859,-0.544913,5.119215,-0.000003,-0.544912,5.119215,-0.000003,-0.544913,7.967002,0.087534,1.209025,14.154350,0.188242,-0.796303,11.561792,0.102539,-0.544913,11.302486,0.102539,-0.544913,11.302486,0.082825,1.208165,13.576658,0.087534,1.209025,14.154350,-0.000005,-1.080247,13.060560,0.080822,-1.080247,13.060558,0.077753,-0.800476,13.271728,-0.000005,-1.080247,13.060560,0.077753,-0.800476,13.271728,0.055694,1.210766,14.789797,-0.000005,1.210766,14.789797,-0.000005,-1.080247,13.060560,0.055694,1.210766,14.789797,-0.000003,-0.482357,11.273638,-0.000003,1.208165,13.547810,0.082825,1.208165,13.576658,0.082825,1.208165,13.576658,0.102539,-0.544913,11.302486,-0.000003,-0.482357,11.273638,-0.000003,1.208165,13.547810,-0.000003,1.380109,13.750371,0.078320,1.355109,13.750371,0.078320,1.355109,13.750371,0.082825,1.208165,13.576658,-0.000003,1.208165,13.547810,0.082825,1.208165,13.576658,0.078320,1.355109,13.750371,0.032019,1.337675,14.425802,0.032019,1.337675,14.425802,0.087534,1.209025,14.154350,0.082825,1.208165,13.576658,0.055694,1.210766,14.789797,0.032019,1.337675,14.425802,-0.000003,1.337675,14.425802,-0.000003,1.337675,14.425802,-0.000005,1.210766,14.789797,0.055694,1.210766,14.789797,0.280189,-0.835341,7.967001,0.319883,-1.100434,7.967001,0.473849,-1.108231,5.119215,0.473849,-1.108231,5.119215,0.389758,-0.843138,5.119215,0.280189,-0.835341,7.967001,0.207005,-0.784588,11.273637,0.209068,-1.103582,11.272160,0.319883,-1.100434,7.967001,0.319883,-1.100434,7.967001,0.280189,-0.835341,7.967001,0.207005,-0.784588,11.273637,0.525291,-2.199790,5.119215,0.542547,-1.349051,5.119215,0.349853,-1.341962,7.967001,0.349853,-1.341962,7.967001,0.306263,-1.778761,7.967001,0.525291,-2.199790,5.119215,0.542547,-1.349051,5.119215,0.473849,-1.108231,5.119215,0.319883,-1.100434,7.967001,0.319883,-1.100434,7.967001,0.349853,-1.341962,7.967001,0.542547,-1.349051,5.119215,0.349853,-1.341962,7.967001,0.319883,-1.100434,7.967001,0.209068,-1.103582,11.272160,0.209068,-1.103582,11.272160,0.174727,-1.318747,11.273637,0.349853,-1.341962,7.967001,0.349853,-1.341962,7.967001,0.174727,-1.318747,11.273637,0.306263,-1.778761,7.967001,0.055694,1.210766,14.789797,0.087534,1.209025,14.154350,0.032019,1.337675,14.425802,0.677010,-0.840938,3.369040,0.819864,-0.668396,2.274367,0.708582,-0.404694,2.274368,0.708582,-0.404694,2.274368,0.532945,-0.476249,3.343352,0.677010,-0.840938,3.369040};
			return value;
		}
		private double[] getCoordinate_7_19_point_19()
		{
			double[] value = {0.656688,-3.199406,3.453003,0.398270,-2.599201,5.119215,-0.000003,-2.617945,5.119215,-0.000003,-2.617945,5.119215,-0.023523,-3.199406,3.475473,0.656688,-3.199406,3.453003,0.805562,-1.106031,3.475612,0.916248,-1.105015,2.274385,0.819864,-0.668396,2.274367,0.819864,-0.668396,2.274367,0.677010,-0.840938,3.369040,0.805562,-1.106031,3.475612,0.784862,-3.623969,2.274385,0.826675,-3.199406,2.274385,0.656688,-3.199406,3.453003,0.542547,-1.349051,5.119215,0.525291,-2.199790,5.119215,0.811697,-1.356174,3.896984,0.542547,-1.349051,5.119215,0.811697,-1.356174,3.896984,0.805562,-1.106031,3.475612,0.542547,-1.349051,5.119215,0.805562,-1.106031,3.475612,0.673252,-1.107244,4.388052,0.473849,-1.108231,5.119215,0.542547,-1.349051,5.119215,0.673252,-1.107244,4.388052,0.916248,-1.105015,2.274385,0.805562,-1.106031,3.475612,0.811697,-1.356174,3.896984,0.811697,-1.356174,3.896984,0.925738,-1.435466,2.463009,0.916248,-1.105015,2.274385,0.561604,-0.222276,1.533309,0.494505,-0.222097,3.171550,0.708582,-0.404694,2.274368,0.708582,-0.404694,2.274368,0.711178,-0.410864,1.241730,0.561604,-0.222276,1.533309,0.787458,-3.630139,1.241748,0.784862,-3.623969,2.274385,-0.023523,-3.642713,2.244820,-0.023523,-3.642713,2.244820,-0.007444,-3.648883,1.226032,0.787458,-3.630139,1.241748,0.711178,-0.410864,1.241730,0.708582,-0.404694,2.274368,0.819864,-0.668396,2.274367,0.819864,-0.668396,2.274367,0.822460,-0.674565,1.241730,0.711178,-0.410864,1.241730,0.901786,-2.469273,1.241748,0.899189,-2.463103,2.274385,0.826675,-3.199406,2.274385,0.826675,-3.199406,2.274385,0.829879,-3.199405,1.241748,0.901786,-2.469273,1.241748,0.912334,-1.744799,2.422878,0.899189,-2.463103,2.274385,0.901786,-2.469273,1.241748,0.901786,-2.469273,1.241748,0.945853,-1.538839,1.241749,0.912334,-1.744799,2.422878,0.916248,-1.105015,2.274385,0.925738,-1.435466,2.463009,0.934544,-1.241215,1.508482,0.934544,-1.241215,1.508482,0.918844,-1.111185,1.367146,0.916248,-1.105015,2.274385,0.561207,-0.219058,-0.313731,0.561604,-0.222276,1.533309,0.711178,-0.410864,1.241730,0.711178,-0.410864,1.241730,0.710532,-0.407825,-0.315355,0.561207,-0.219058,-0.313731,0.786165,-3.624061,-0.389735,0.787458,-3.630139,1.241748,-0.007444,-3.648883,1.226032,-0.007444,-3.648883,1.226032,-0.004851,-3.638053,-0.389735,0.786165,-3.624061,-0.389735,0.782172,-0.577595,-0.308646,0.710532,-0.407825,-0.315355,0.711178,-0.410864,1.241730,0.782172,-0.577595,-0.308646,0.711178,-0.410864,1.241730,0.822460,-0.674565,1.241730,0.821819,-0.671552,-0.302297,0.782172,-0.577595,-0.308646,0.822460,-0.674565,1.241730,0.900492,-2.463196,-0.389735,0.901786,-2.469273,1.241748,0.829879,-3.199405,1.241748,0.829879,-3.199405,1.241748,0.827987,-3.199405,-0.389735,0.900492,-2.463196,-0.389735,0.777597,-3.618394,-2.398809,0.786165,-3.624061,-0.389735,-0.004851,-3.638053,-0.389735,-0.004851,-3.638053,-0.389735};
			return value;
		}
		private double[] getCoordinate_7_19_point_20()
		{
			double[] value = {-0.004851,-3.637137,-2.398811,0.777597,-3.618394,-2.398809,0.896775,-2.462440,-2.398810,0.900492,-2.463196,-0.389735,0.827987,-3.199405,-0.389735,0.827987,-3.199405,-0.389735,0.824186,-3.199405,-2.398809,0.896775,-2.462440,-2.398810,0.950730,-1.354055,-2.398259,0.953235,-1.351759,-0.388811,0.900492,-2.463196,-0.389735,0.900492,-2.463196,-0.389735,0.896775,-2.462440,-2.398810,0.950730,-1.354055,-2.398259,0.493107,-0.216022,-2.396100,0.493642,-0.218346,-1.835631,0.710381,-0.407115,-1.835631,0.710381,-0.407115,-1.835631,0.709885,-0.404786,-2.397723,0.493107,-0.216022,-2.396100,0.710381,-0.407115,-1.835631,0.710469,-0.407530,-0.945860,0.774814,-0.559907,-1.099503,0.918844,-1.111185,1.367146,0.822460,-0.674565,1.241730,0.819864,-0.668396,2.274367,0.819864,-0.668396,2.274367,0.916248,-1.105015,2.274385,0.918844,-1.111185,1.367146,0.878756,-0.929476,-0.309341,0.821819,-0.671552,-0.302297,0.822460,-0.674565,1.241730,0.878756,-0.929476,-0.309341,0.822460,-0.674565,1.241730,0.918844,-1.111185,1.367146,0.918198,-1.108146,-0.315337,0.878756,-0.929476,-0.309341,0.918844,-1.111185,1.367146,0.917551,-1.105108,-2.397707,0.876704,-0.920137,-1.122147,0.921900,-1.134096,-0.909949,0.234859,-0.544913,5.119215,0.389758,-0.843138,5.119215,0.560233,-0.842151,4.178452,0.560233,-0.842151,4.178452,0.377913,-0.514932,4.178452,0.234859,-0.544913,5.119215,-0.000003,-0.544912,5.119215,0.234859,-0.544913,5.119215,0.377913,-0.514932,4.178452,-0.000003,-0.544912,5.119215,0.377913,-0.514932,4.178452,0.243028,-0.514932,4.178452,0.0,-0.514932,4.178452,-0.000003,-0.544912,5.119215,0.243028,-0.514932,4.178452,0.389758,-0.843138,5.119215,0.473849,-1.108231,5.119215,0.673252,-1.107244,4.388052,0.673252,-1.107244,4.388052,0.560233,-0.842151,4.178452,0.389758,-0.843138,5.119215,0.377913,-0.514932,4.178452,0.560233,-0.842151,4.178452,0.677010,-0.840938,3.369040,0.677010,-0.840938,3.369040,0.532945,-0.476249,3.343352,0.377913,-0.514932,4.178452,0.560233,-0.842151,4.178452,0.673252,-1.107244,4.388052,0.805562,-1.106031,3.475612,0.805562,-1.106031,3.475612,0.677010,-0.840938,3.369040,0.560233,-0.842151,4.178452,0.696258,-0.466032,-3.167864,0.709885,-0.404786,-2.397723,0.821167,-0.668488,-2.397725,0.821167,-0.668488,-2.397725,0.833976,-0.770171,-3.093040,0.696258,-0.466032,-3.167864,0.524057,-0.278063,-3.214108,0.493107,-0.216022,-2.396100,0.709885,-0.404786,-2.397723,0.709885,-0.404786,-2.397723,0.696258,-0.466032,-3.167864,0.524057,-0.278063,-3.214108,0.134973,-0.278063,-3.214108,0.217697,-0.228580,-2.397725,0.493107,-0.216022,-2.396100,0.493107,-0.216022,-2.396100,0.524057,-0.278063,-3.214108,0.134973,-0.278063,-3.214108,0.115513,-0.466032,-3.167864,0.115358,-0.433679,-2.458453,0.217697,-0.228580,-2.397725,0.217697,-0.228580,-2.397725,0.134973,-0.278063,-3.214108,0.115513,-0.466032,-3.167864,0.902308,-1.074310,-3.018216,0.917551,-1.105108,-2.397707};
			return value;
		}
		private double[] getCoordinate_7_19_point_21()
		{
			double[] value = {0.950730,-1.354055,-2.398259,0.950730,-1.354055,-2.398259,0.915829,-1.262279,-2.971972,0.902308,-1.074310,-3.018216,0.833976,-0.770171,-3.093040,0.821167,-0.668488,-2.397725,0.917551,-1.105108,-2.397707,0.917551,-1.105108,-2.397707,0.902308,-1.074310,-3.018216,0.833976,-0.770171,-3.093040,0.696258,-0.478059,-3.383471,0.696258,-0.466032,-3.167864,0.833976,-0.770171,-3.093040,0.833976,-0.770171,-3.093040,0.780895,-0.770027,-3.462505,0.696258,-0.478059,-3.383471,0.524056,-0.297613,-3.327565,0.524057,-0.278063,-3.214108,0.696258,-0.466032,-3.167864,0.696258,-0.466032,-3.167864,0.696258,-0.478059,-3.383471,0.524056,-0.297613,-3.327565,0.128215,-0.297613,-3.327565,0.134973,-0.278063,-3.214108,0.524057,-0.278063,-3.214108,0.524057,-0.278063,-3.214108,0.524056,-0.297613,-3.327565,0.128215,-0.297613,-3.327565,0.0,-0.452727,-3.376044,0.115513,-0.466032,-3.167864,0.134973,-0.278063,-3.214108,0.134973,-0.278063,-3.214108,0.128215,-0.297613,-3.327565,0.0,-0.452727,-3.376044,0.812796,-1.061995,-3.540026,0.902308,-1.074310,-3.018216,0.915829,-1.262279,-2.971972,0.915829,-1.262279,-2.971972,0.836799,-1.238371,-3.588104,0.812796,-1.061995,-3.540026,0.780895,-0.770027,-3.462505,0.833976,-0.770171,-3.093040,0.902308,-1.074310,-3.018216,0.902308,-1.074310,-3.018216,0.812796,-1.061995,-3.540026,0.780895,-0.770027,-3.462505,0.524056,-0.297613,-3.327565,0.696258,-0.478059,-3.383471,0.780895,-0.770027,-3.462505,0.780895,-0.770027,-3.462505,0.812796,-1.061995,-3.540026,0.836799,-1.238371,-3.588104,0.524056,-0.297613,-3.327565,0.780895,-0.770027,-3.462505,0.836799,-1.238371,-3.588104,0.836799,-1.238371,-3.588104,0.474712,-1.238371,-3.588104,-0.000425,-1.238871,-3.588104,0.524056,-0.297613,-3.327565,0.836799,-1.238371,-3.588104,-0.000425,-1.238871,-3.588104,0.524056,-0.297613,-3.327565,-0.000425,-1.238871,-3.588104,0.0,-0.452727,-3.376044,0.128215,-0.297613,-3.327565,0.524056,-0.297613,-3.327565,0.0,-0.452727,-3.376044,-0.199669,-1.264209,-3.711270,-0.000425,-1.238871,-3.588104,0.474712,-1.238371,-3.588104,0.193813,-1.264210,-3.711267,-0.199669,-1.264209,-3.711270,0.474712,-1.238371,-3.588104,0.193813,-1.264210,-3.711267,0.474712,-1.238371,-3.588104,0.451831,-1.264210,-3.711427,0.451831,-1.264210,-3.711427,0.474712,-1.238371,-3.588104,0.836799,-1.238371,-3.588104,0.836799,-1.238371,-3.588104,0.753668,-1.264210,-3.711142,0.451831,-1.264210,-3.711427,0.915829,-1.262279,-2.971972,0.950730,-1.354055,-2.398259,0.896775,-2.462440,-2.398810,0.896775,-2.462440,-2.398810,0.926141,-2.327776,-2.971972,0.915829,-1.262279,-2.971972,0.926141,-2.327776,-2.971972,0.898823,-2.325759,-3.588230,0.915829,-1.740773,-3.588229,0.926141,-2.327776,-2.971972,0.915829,-1.740773,-3.588229,0.836799,-1.238371,-3.588104,0.915829,-1.262279,-2.971972,0.926141,-2.327776,-2.971972,0.836799,-1.238371,-3.588104,0.753668,-1.264210,-3.711142,0.836799,-1.238371,-3.588104,0.915829,-1.740773,-3.588229};
			return value;
		}
		private double[] getCoordinate_7_19_point_22()
		{
			double[] value = {0.915829,-1.740773,-3.588229,0.677105,-1.729707,-3.778974,0.753668,-1.264210,-3.711142,0.677105,-1.729707,-3.778974,0.915829,-1.740773,-3.588229,0.898823,-2.325759,-3.588230,0.898823,-2.325759,-3.588230,0.723652,-2.105288,-3.842425,0.677105,-1.729707,-3.778974,0.235406,-2.514920,-7.010218,0.092332,-2.412591,-6.997307,0.113233,-2.324605,-6.965118,0.113233,-2.324605,-6.965118,0.290526,-2.459354,-6.974977,0.235406,-2.514920,-7.010218,0.290978,-2.736733,-7.031948,0.235406,-2.514920,-7.010218,0.290526,-2.459354,-6.974977,0.290526,-2.459354,-6.974977,0.356847,-2.738604,-6.996944,0.290978,-2.736733,-7.031948,0.292875,-2.969886,-7.046064,0.290978,-2.736733,-7.031948,0.356847,-2.738604,-6.996944,0.356847,-2.738604,-6.996944,0.357302,-2.962332,-7.011057,0.292875,-2.969886,-7.046064,0.411788,-2.347502,-6.831837,0.290526,-2.459354,-6.974977,0.113233,-2.324605,-6.965118,0.113233,-2.324605,-6.965118,0.174611,-2.174785,-6.857720,0.411788,-2.347502,-6.831837,0.514513,-2.691188,-6.816760,0.356847,-2.738604,-6.996944,0.290526,-2.459354,-6.974977,0.290526,-2.459354,-6.974977,0.411788,-2.347502,-6.831837,0.514513,-2.691188,-6.816760,0.514468,-2.940919,-6.855035,0.357302,-2.962332,-7.011057,0.356847,-2.738604,-6.996944,0.356847,-2.738604,-6.996944,0.514513,-2.691188,-6.816760,0.514468,-2.940919,-6.855035,0.484860,-2.186212,-6.505390,0.411788,-2.347502,-6.831837,0.174611,-2.174785,-6.857720,0.174611,-2.174785,-6.857720,0.198402,-1.996629,-6.643156,0.484860,-2.186212,-6.505390,0.602806,-2.469662,-6.356359,0.514513,-2.691188,-6.816760,0.411788,-2.347502,-6.831837,0.411788,-2.347502,-6.831837,0.484860,-2.186212,-6.505390,0.602806,-2.469662,-6.356359,0.626160,-2.725075,-6.277408,0.514468,-2.940919,-6.855035,0.514513,-2.691188,-6.816760,0.514513,-2.691188,-6.816760,0.602806,-2.469662,-6.356359,0.626160,-2.725075,-6.277408,0.495238,-2.022299,-6.069307,0.484860,-2.186212,-6.505390,0.198402,-1.996629,-6.643156,0.198402,-1.996629,-6.643156,0.206791,-1.851168,-6.163842,0.495238,-2.022299,-6.069307,0.605816,-2.274865,-5.945360,0.602806,-2.469662,-6.356359,0.484860,-2.186212,-6.505390,0.484860,-2.186212,-6.505390,0.495238,-2.022299,-6.069307,0.605816,-2.274865,-5.945360,0.642935,-2.558825,-5.885623,0.626160,-2.725075,-6.277408,0.602806,-2.469662,-6.356359,0.602806,-2.469662,-6.356359,0.605816,-2.274865,-5.945360,0.642935,-2.558825,-5.885623,0.484737,-2.024788,-5.529623,0.495238,-2.022299,-6.069307,0.206791,-1.851168,-6.163842,0.206791,-1.851168,-6.163842,0.209275,-1.936873,-5.551818,0.484737,-2.024788,-5.529623,0.581801,-2.192898,-5.497901,0.605816,-2.274865,-5.945360,0.495238,-2.022299,-6.069307,0.495238,-2.022299,-6.069307,0.484737,-2.024788,-5.529623,0.581801,-2.192898,-5.497901,0.627223,-2.364243,-5.500718,0.642935,-2.558825,-5.885623,0.605816,-2.274865,-5.945360,0.605816,-2.274865,-5.945360,0.581801,-2.192898,-5.497901,0.627223,-2.364243,-5.500718,0.284524,-1.466522,-5.066833};
			return value;
		}
		private double[] getCoordinate_7_19_point_23()
		{
			double[] value = {0.230897,-1.479305,-5.127599,0.086330,-1.355452,-5.028345,0.086330,-1.355452,-5.028345,0.107231,-1.343583,-4.971021,0.284524,-1.466522,-5.066833,0.284976,-1.696367,-5.274147,0.230897,-1.479305,-5.127599,0.284524,-1.466522,-5.066833,0.284524,-1.466522,-5.066833,0.337083,-1.693854,-5.217015,0.284976,-1.696367,-5.274147,0.283808,-1.870236,-5.393298,0.284976,-1.696367,-5.274147,0.337083,-1.693854,-5.217015,0.337083,-1.693854,-5.217015,0.326259,-1.911768,-5.342647,0.283808,-1.870236,-5.393298,0.445451,-1.409896,-4.765522,0.284524,-1.466522,-5.066833,0.107231,-1.343583,-4.971021,0.107231,-1.343583,-4.971021,0.174611,-1.171741,-4.611078,0.445451,-1.409896,-4.765522,0.546766,-1.656687,-4.890447,0.337083,-1.693854,-5.217015,0.284524,-1.466522,-5.066833,0.284524,-1.466522,-5.066833,0.445451,-1.409896,-4.765522,0.546766,-1.656687,-4.890447,0.543071,-1.912491,-4.957348,0.326259,-1.911768,-5.342647,0.337083,-1.693854,-5.217015,0.337083,-1.693854,-5.217015,0.546766,-1.656687,-4.890447,0.543071,-1.912491,-4.957348,0.484859,-1.357125,-4.326675,0.445451,-1.409896,-4.765522,0.174611,-1.171741,-4.611078,0.174611,-1.171741,-4.611078,0.198402,-1.125068,-4.218619,0.484859,-1.357125,-4.326675,0.595307,-1.638180,-4.419702,0.546766,-1.656687,-4.890447,0.445451,-1.409896,-4.765522,0.445451,-1.409896,-4.765522,0.484859,-1.357125,-4.326675,0.595307,-1.638180,-4.419702,0.623523,-1.856153,-4.485774,0.543071,-1.912491,-4.957348,0.546766,-1.656687,-4.890447,0.546766,-1.656687,-4.890447,0.595307,-1.638180,-4.419702,0.623523,-1.856153,-4.485774,0.475670,-1.422851,-3.868031,0.484859,-1.357125,-4.326675,0.198402,-1.125068,-4.218619,0.198402,-1.125068,-4.218619,0.200207,-1.193863,-3.841282,0.475670,-1.422851,-3.868031,0.605841,-1.715205,-3.941298,0.595307,-1.638180,-4.419702,0.484859,-1.357125,-4.326675,0.484859,-1.357125,-4.326675,0.475670,-1.422851,-3.868031,0.605841,-1.715205,-3.941298,0.623523,-1.856153,-4.485774,0.595307,-1.638180,-4.419702,0.605841,-1.715205,-3.941298,0.209275,-1.936873,-5.551818,0.283808,-1.870236,-5.393298,0.326259,-1.911768,-5.342647,0.326259,-1.911768,-5.342647,0.484737,-2.024788,-5.529623,0.209275,-1.936873,-5.551818,0.628313,-2.797694,-6.246123,0.536818,-3.119919,-6.798880,0.514468,-2.940919,-6.855035,0.514468,-2.940919,-6.855035,0.626160,-2.725075,-6.277408,0.628313,-2.797694,-6.246123,0.676171,-2.628883,-5.833588,0.628313,-2.797694,-6.246123,0.626160,-2.725075,-6.277408,0.626160,-2.725075,-6.277408,0.642935,-2.558825,-5.885623,0.676171,-2.628883,-5.833588,0.627223,-2.364243,-5.500718,0.685174,-2.433683,-5.455916,0.642935,-2.558825,-5.885623,0.676171,-2.628883,-5.833588,0.642935,-2.558825,-5.885623,0.685174,-2.433683,-5.455916,0.830851,-2.874198,-4.973959,0.779748,-2.754864,-5.448470,0.685174,-2.433683,-5.455916,0.685174,-2.433683,-5.455916,0.817556,-2.498982,-4.973959,0.830851,-2.874198,-4.973959,0.830851,-2.874198,-4.973959,0.872904,-3.181650,-4.491430};
			return value;
		}
		private double[] getCoordinate_7_19_point_24()
		{
			double[] value = {0.793070,-3.181649,-5.440564,0.793070,-3.181649,-5.440564,0.779748,-2.754864,-5.448470,0.830851,-2.874198,-4.973959,0.615979,-2.130745,-4.973959,0.581801,-2.192898,-5.497901,0.484737,-2.024788,-5.529623,0.484737,-2.024788,-5.529623,0.561221,-1.993282,-4.973656,0.615979,-2.130745,-4.973959,0.627223,-2.364243,-5.500718,0.581801,-2.192898,-5.497901,0.615979,-2.130745,-4.973959,0.817556,-2.498982,-4.973959,0.685174,-2.433683,-5.455916,0.627223,-2.364243,-5.500718,0.627223,-2.364243,-5.500718,0.615979,-2.130745,-4.973959,0.817556,-2.498982,-4.973959,0.561221,-1.993282,-4.973656,0.484737,-2.024788,-5.529623,0.326259,-1.911768,-5.342647,0.326259,-1.911768,-5.342647,0.543071,-1.912491,-4.957348,0.561221,-1.993282,-4.973656,0.622442,-1.948653,-4.499869,0.561221,-1.993282,-4.973656,0.543071,-1.912491,-4.957348,0.543071,-1.912491,-4.957348,0.623523,-1.856153,-4.485774,0.622442,-1.948653,-4.499869,0.632436,-1.901539,-4.036559,0.622442,-1.948653,-4.499869,0.623523,-1.856153,-4.485774,0.623523,-1.856153,-4.485774,0.605841,-1.715205,-3.941298,0.632436,-1.901539,-4.036559,0.685174,-2.433683,-5.455916,0.779748,-2.754864,-5.448470,0.676171,-2.628883,-5.833588,0.676171,-2.628883,-5.833588,0.652481,-3.181649,-6.100942,0.628313,-2.797694,-6.246123,0.793070,-3.181649,-5.440564,0.652481,-3.181649,-6.100942,0.676171,-2.628883,-5.833588,0.676171,-2.628883,-5.833588,0.779748,-2.754864,-5.448470,0.793070,-3.181649,-5.440564,0.628313,-2.797694,-6.246123,0.652481,-3.181649,-6.100942,0.536818,-3.119919,-6.798880,0.689085,-2.101398,-4.502603,0.615979,-2.130745,-4.973959,0.561221,-1.993282,-4.973656,0.561221,-1.993282,-4.973656,0.622442,-1.948653,-4.499869,0.689085,-2.101398,-4.502603,0.723652,-2.105288,-3.842425,0.689085,-2.101398,-4.502603,0.622442,-1.948653,-4.499869,0.622442,-1.948653,-4.499869,0.632436,-1.901539,-4.036559,0.723652,-2.105288,-3.842425,0.677105,-1.729707,-3.778974,0.605841,-1.715205,-3.941298,0.475670,-1.422851,-3.868031,0.475670,-1.422851,-3.868031,0.753668,-1.264210,-3.711142,0.677105,-1.729707,-3.778974,0.677105,-1.729707,-3.778974,0.632436,-1.901539,-4.036559,0.605841,-1.715205,-3.941298,0.677105,-1.729707,-3.778974,0.723652,-2.105288,-3.842425,0.632436,-1.901539,-4.036559,0.200207,-1.193863,-3.841282,0.451831,-1.264210,-3.711427,0.753668,-1.264210,-3.711142,0.753668,-1.264210,-3.711142,0.475670,-1.422851,-3.868031,0.200207,-1.193863,-3.841282,0.777597,-3.618394,-2.398809,0.834659,-3.649920,-2.974041,0.876384,-3.204756,-2.971973,0.876384,-3.204756,-2.971973,0.824186,-3.199405,-2.398809,0.777597,-3.618394,-2.398809,0.926141,-2.327776,-2.971972,0.896775,-2.462440,-2.398810,0.824186,-3.199405,-2.398809,0.824186,-3.199405,-2.398809,0.876384,-3.204756,-2.971973,0.926141,-2.327776,-2.971972,0.898823,-2.325759,-3.588230,0.926141,-2.327776,-2.971972,0.876384,-3.204756,-2.971973,0.876384,-3.204756,-2.971973,0.903889,-3.197137,-3.588230,0.898823,-2.325759,-3.588230};
			return value;
		}
		private double[] getCoordinate_7_19_point_25()
		{
			double[] value = {0.883605,-2.590540,-3.864144,0.723652,-2.105288,-3.842425,0.898823,-2.325759,-3.588230,0.883605,-2.590540,-3.864144,0.898823,-2.325759,-3.588230,0.903889,-3.197137,-3.588230,0.876998,-3.181650,-3.868842,0.883605,-2.590540,-3.864144,0.903889,-3.197137,-3.588230,0.872904,-2.583397,-4.502603,0.817556,-2.498982,-4.973959,0.615979,-2.130745,-4.973959,0.615979,-2.130745,-4.973959,0.689085,-2.101398,-4.502603,0.872904,-2.583397,-4.502603,0.883605,-2.590540,-3.864144,0.872904,-2.583397,-4.502603,0.689085,-2.101398,-4.502603,0.689085,-2.101398,-4.502603,0.723652,-2.105288,-3.842425,0.883605,-2.590540,-3.864144,0.872904,-3.181650,-4.491430,0.830851,-2.874198,-4.973959,0.817556,-2.498982,-4.973959,0.817556,-2.498982,-4.973959,0.872904,-2.583397,-4.502603,0.872904,-3.181650,-4.491430,0.876998,-3.181650,-3.868842,0.872904,-3.181650,-4.491430,0.872904,-2.583397,-4.502603,0.872904,-2.583397,-4.502603,0.883605,-2.590540,-3.864144,0.876998,-3.181650,-3.868842,-0.023523,-3.642713,2.244820,0.784862,-3.623969,2.274385,0.656688,-3.199406,3.453003,0.656688,-3.199406,3.453003,-0.023523,-3.199406,3.475473,-0.023523,-3.642713,2.244820,0.899189,-2.463103,2.274385,0.525291,-2.199790,5.119215,0.398270,-2.599201,5.119215,0.899189,-2.463103,2.274385,0.398270,-2.599201,5.119215,0.656688,-3.199406,3.453003,0.826675,-3.199406,2.274385,0.899189,-2.463103,2.274385,0.656688,-3.199406,3.453003,0.784862,-3.623969,2.274385,0.787458,-3.630139,1.241748,0.829879,-3.199405,1.241748,0.829879,-3.199405,1.241748,0.826675,-3.199406,2.274385,0.784862,-3.623969,2.274385,0.787458,-3.630139,1.241748,0.786165,-3.624061,-0.389735,0.827987,-3.199405,-0.389735,0.827987,-3.199405,-0.389735,0.829879,-3.199405,1.241748,0.787458,-3.630139,1.241748,0.786165,-3.624061,-0.389735,0.777597,-3.618394,-2.398809,0.824186,-3.199405,-2.398809,0.824186,-3.199405,-2.398809,0.827987,-3.199405,-0.389735,0.786165,-3.624061,-0.389735,0.707739,-3.462821,-5.441806,0.791733,-3.649920,-4.493498,0.814842,-3.661304,-5.442632,0.584714,-3.433460,-6.102054,0.707739,-3.462821,-5.441806,0.814842,-3.661304,-5.442632,0.814842,-3.661304,-5.442632,0.703120,-3.669391,-6.180140,0.584714,-3.433460,-6.102054,0.793070,-3.181649,-5.440564,0.707739,-3.462821,-5.441806,0.584714,-3.433460,-6.102054,0.584714,-3.433460,-6.102054,0.652481,-3.181649,-6.100942,0.793070,-3.181649,-5.440564,0.374732,-3.648143,-6.837363,0.536818,-3.119919,-6.798880,0.652481,-3.181649,-6.100942,0.652481,-3.181649,-6.100942,0.584714,-3.433460,-6.102054,0.374732,-3.648143,-6.837363,0.834658,-3.649920,-3.590298,0.903889,-3.197137,-3.588230,0.876384,-3.204756,-2.971973,0.876384,-3.204756,-2.971973,0.834659,-3.649920,-2.974041,0.834658,-3.649920,-3.590298,0.813867,-3.649920,-3.870911,0.876998,-3.181650,-3.868842,0.903889,-3.197137,-3.588230,0.903889,-3.197137,-3.588230,0.834658,-3.649920,-3.590298,0.813867,-3.649920,-3.870911,0.791733,-3.649920,-4.493498};
			return value;
		}
		private double[] getCoordinate_7_19_point_26()
		{
			double[] value = {0.872904,-3.181650,-4.491430,0.876998,-3.181650,-3.868842,0.876998,-3.181650,-3.868842,0.813867,-3.649920,-3.870911,0.791733,-3.649920,-4.493498,0.0,-3.944337,-5.478987,0.495211,-3.946051,-5.478987,0.728516,-3.759801,-4.714262,0.728516,-3.759801,-4.714262,0.0,-3.758086,-4.675107,0.0,-3.944337,-5.478987,0.0,-3.956223,-6.160804,0.416663,-3.965506,-6.160804,0.495211,-3.946051,-5.478987,0.495211,-3.946051,-5.478987,0.0,-3.944337,-5.478987,0.0,-3.956223,-6.160804,0.0,-3.872776,-6.634928,0.398848,-3.874491,-6.587746,0.416663,-3.965506,-6.160804,0.416663,-3.965506,-6.160804,0.0,-3.956223,-6.160804,0.0,-3.872776,-6.634928,0.834659,-3.649920,-2.974041,0.0,-3.649920,-2.974041,0.0,-3.649920,-3.590298,0.0,-3.649920,-3.590298,0.834658,-3.649920,-3.590298,0.834659,-3.649920,-2.974041,0.834658,-3.649920,-3.590298,0.0,-3.649920,-3.590298,0.0,-3.649920,-3.870911,0.0,-3.649920,-3.870911,0.813867,-3.649920,-3.870911,0.834658,-3.649920,-3.590298,0.0,-3.649920,-3.870911,0.0,-3.648206,-4.493498,0.791733,-3.649920,-4.493498,0.791733,-3.649920,-4.493498,0.813867,-3.649920,-3.870911,0.0,-3.649920,-3.870911,0.0,-3.649920,-2.974041,0.834659,-3.649920,-2.974041,0.777597,-3.618394,-2.398809,0.777597,-3.618394,-2.398809,-0.004851,-3.637137,-2.398811,0.0,-3.649920,-2.974041,0.0,-0.162007,-1.827662,0.0,0.196855,-1.834908,0.147397,0.196855,-1.834908,0.0,-0.162007,-1.827662,0.147397,0.196855,-1.834908,0.261558,0.066748,-1.834908,0.0,-0.162007,-1.827662,0.261558,0.066748,-1.834908,0.304288,-0.154071,-1.837255,0.0,-0.162007,-1.827662,0.304288,-0.154071,-1.837255,0.272730,-0.293187,-1.834908,0.0,-0.162007,-1.827662,0.272730,-0.293187,-1.834908,0.120004,-0.414764,-1.834908,0.0,-0.433402,-1.834908,0.0,-0.162007,-1.827662,0.120004,-0.414764,-1.834908,0.147397,0.221823,-0.318795,0.147397,0.196855,-1.834908,0.0,0.196855,-1.834908,0.0,0.196855,-1.834908,0.0,0.221823,-0.318795,0.147397,0.221823,-0.318795,0.315256,0.100245,-0.318795,0.261558,0.066748,-1.834908,0.147397,0.196855,-1.834908,0.147397,0.196855,-1.834908,0.147397,0.221823,-0.318795,0.315256,0.100245,-0.318795,0.469951,-0.096471,-0.328389,0.304288,-0.154071,-1.837255,0.261558,0.066748,-1.834908,0.261558,0.066748,-1.834908,0.315256,0.100245,-0.318795,0.469951,-0.096471,-0.328389,0.147397,0.221823,1.534162,0.147397,0.221823,-0.318795,0.0,0.221823,-0.318795,0.0,0.221823,-0.318795,0.0,0.221823,1.533846,0.147397,0.221823,1.534162,0.315256,0.100245,1.534162,0.315256,0.100245,-0.318795,0.147397,0.221823,-0.318795,0.147397,0.221823,-0.318795,0.147397,0.221823,1.534162,0.315256,0.100245,1.534162,0.469951,-0.096471,1.533485,0.469951,-0.096471,-0.328389,0.315256,0.100245,-0.318795,0.315256,0.100245,-0.318795,0.315256,0.100245,1.534162};
			return value;
		}
		private double[] getCoordinate_7_19_point_27()
		{
			double[] value = {0.469951,-0.096471,1.533485,0.561207,-0.219058,-0.313731,0.493642,-0.218346,-1.835631,0.304288,-0.154071,-1.837255,0.304288,-0.154071,-1.837255,0.469951,-0.096471,-0.328389,0.561207,-0.219058,-0.313731,0.217697,-0.228580,-2.397725,0.304288,-0.154071,-1.837255,0.493642,-0.218346,-1.835631,0.493642,-0.218346,-1.835631,0.493107,-0.216022,-2.396100,0.217697,-0.228580,-2.397725,0.036251,-0.484670,-3.167864,0.0,-0.452317,-2.458453,0.115358,-0.433679,-2.458453,0.115358,-0.433679,-2.458453,0.115513,-0.466032,-3.167864,0.036251,-0.484670,-3.167864,0.036251,-0.484670,-3.167864,0.115513,-0.466032,-3.167864,0.0,-0.452727,-3.376044,0.0,-0.452317,-2.458453,0.0,-0.433402,-1.834908,0.120004,-0.414764,-1.834908,0.120004,-0.414764,-1.834908,0.115358,-0.433679,-2.458453,0.0,-0.452317,-2.458453,0.115358,-0.433679,-2.458453,0.120004,-0.414764,-1.834908,0.272730,-0.293187,-1.834908,0.272730,-0.293187,-1.834908,0.217697,-0.228580,-2.397725,0.115358,-0.433679,-2.458453,0.561604,-0.222276,1.533309,0.561207,-0.219058,-0.313731,0.469951,-0.096471,-0.328389,0.469951,-0.096471,-0.328389,0.469951,-0.096471,1.533485,0.561604,-0.222276,1.533309,0.144205,-3.175894,-7.010422,0.292875,-2.969886,-7.046064,0.357302,-2.962332,-7.011057,0.357302,-2.962332,-7.011057,0.288167,-3.175222,-6.933941,0.144205,-3.175894,-7.010422,0.536818,-3.119919,-6.798880,0.288167,-3.175222,-6.933941,0.357302,-2.962332,-7.011057,0.357302,-2.962332,-7.011057,0.514468,-2.940919,-6.855035,0.536818,-3.119919,-6.798880,0.203509,-3.516039,-7.293159,0.213287,-3.234369,-7.242729,0.357249,-3.224503,-7.141218,0.357249,-3.224503,-7.141218,0.320104,-3.529666,-7.197826,0.203509,-3.516039,-7.293159,0.374732,-3.648143,-6.837363,0.320104,-3.529666,-7.197826,0.357249,-3.224503,-7.141218,0.357249,-3.224503,-7.141218,0.536818,-3.119919,-6.798880,0.374732,-3.648143,-6.837363,0.781375,-3.786276,-4.736722,0.777004,-3.970418,-5.479787,0.814842,-3.661304,-5.442632,0.814842,-3.661304,-5.442632,0.791733,-3.649920,-4.493498,0.781375,-3.786276,-4.736722,0.814842,-3.661304,-5.442632,0.777004,-3.970418,-5.479787,0.696108,-3.967872,-6.173575,0.696108,-3.967872,-6.173575,0.703120,-3.669391,-6.180140,0.814842,-3.661304,-5.442632,0.559006,-3.875084,-6.566073,0.374732,-3.648143,-6.837363,0.703120,-3.669391,-6.180140,0.703120,-3.669391,-6.180140,0.696108,-3.967872,-6.173575,0.559006,-3.875084,-6.566073,0.728516,-3.759801,-4.714262,0.791733,-3.649920,-4.493498,0.0,-3.648206,-4.493498,0.0,-3.648206,-4.493498,0.0,-3.758086,-4.675107,0.728516,-3.759801,-4.714262,0.254230,-3.648143,-7.129436,0.275686,-3.648143,-6.786247,0.138410,-3.648143,-6.837670,0.138410,-3.648143,-6.837670,0.137636,-3.648143,-7.173914,0.254230,-3.648143,-7.129436,0.374732,-3.648143,-6.837363,0.398848,-3.874491,-6.587746,0.275686,-3.648143,-6.786247,0.275686,-3.648143,-6.786247,0.254230,-3.648143,-7.129436,0.374732,-3.648143,-6.837363};
			return value;
		}
		private double[] getCoordinate_7_19_point_28()
		{
			double[] value = {0.774814,-0.559907,-1.099503,0.821564,-0.670351,-1.121115,0.821167,-0.668488,-2.397725,0.774814,-0.559907,-1.099503,0.821167,-0.668488,-2.397725,0.709885,-0.404786,-2.397723,0.710381,-0.407115,-1.835631,0.774814,-0.559907,-1.099503,0.709885,-0.404786,-2.397723,0.710532,-0.407825,-0.315355,0.782172,-0.577595,-0.308646,0.710516,-0.407749,-0.477094,0.710381,-0.407115,-1.835631,0.493642,-0.218346,-1.835631,0.622557,-0.342143,-0.879929,0.622557,-0.342143,-0.879929,0.710469,-0.407530,-0.945860,0.710381,-0.407115,-1.835631,0.918198,-1.108146,-0.315337,0.953235,-1.351759,-0.388811,0.922200,-1.135123,-0.516697,0.922200,-1.135123,-0.516697,0.878756,-0.929476,-0.309341,0.918198,-1.108146,-0.315337,0.277393,0.048889,3.171991,0.315256,0.100245,1.534162,0.147397,0.221823,1.534162,0.147397,0.221823,1.534162,0.129695,0.170466,3.171991,0.277393,0.048889,3.171991,0.413510,-0.147827,3.171991,0.469951,-0.096471,1.533485,0.315256,0.100245,1.534162,0.315256,0.100245,1.534162,0.277393,0.048889,3.171991,0.413510,-0.147827,3.171991,0.494505,-0.222097,3.171550,0.561604,-0.222276,1.533309,0.469951,-0.096471,1.533485,0.469951,-0.096471,1.533485,0.413510,-0.147827,3.171991,0.494505,-0.222097,3.171550,0.708582,-0.404694,2.274368,0.494505,-0.222097,3.171550,0.532945,-0.476249,3.343352,0.252669,-0.158143,3.705353,0.277393,0.048889,3.171991,0.129695,0.170466,3.171991,0.129695,0.170466,3.171991,0.087206,0.037897,3.462261,0.252669,-0.158143,3.705353,0.129695,0.170466,3.171991,0.147397,0.221823,1.534162,0.0,0.221823,1.533846,0.0,0.221823,1.533846,0.0,0.170466,3.171991,0.129695,0.170466,3.171991,0.087206,0.037897,3.462261,0.129695,0.170466,3.171991,0.0,0.170466,3.171991,0.0,0.170466,3.171991,0.0,0.057393,3.470636,0.087206,0.037897,3.462261,0.252669,-0.158143,3.705353,0.087206,0.037897,3.462261,0.0,0.057393,3.470636,0.0,0.057393,3.470636,0.0,-0.156929,3.706822,0.252669,-0.158143,3.705353,0.243028,-0.514932,4.178452,0.252669,-0.158143,3.705353,0.0,-0.156929,3.706822,0.0,-0.156929,3.706822,0.0,-0.514932,4.178452,0.243028,-0.514932,4.178452,0.413510,-0.147827,3.171991,0.277393,0.048889,3.171991,0.392084,-0.289166,3.705353,0.252669,-0.158143,3.705353,0.392084,-0.289166,3.705353,0.277393,0.048889,3.171991,0.377913,-0.514932,4.178452,0.392084,-0.289166,3.705353,0.252669,-0.158143,3.705353,0.252669,-0.158143,3.705353,0.243028,-0.514932,4.178452,0.377913,-0.514932,4.178452,0.532945,-0.476249,3.343352,0.494505,-0.222097,3.171550,0.413510,-0.147827,3.171991,0.413510,-0.147827,3.171991,0.392084,-0.289166,3.705353,0.532945,-0.476249,3.343352,0.532945,-0.476249,3.343352,0.392084,-0.289166,3.705353,0.377913,-0.514932,4.178452,0.821167,-0.668488,-2.397725,0.821564,-0.670351,-1.121115,0.876704,-0.920137,-1.122147,0.876704,-0.920137,-1.122147};
			return value;
		}
		private double[] getCoordinate_7_19_point_29()
		{
			double[] value = {0.917551,-1.105108,-2.397707,0.821167,-0.668488,-2.397725,0.710532,-0.407825,-0.315355,0.710516,-0.407749,-0.477094,0.624262,-0.343545,-0.540769,0.624262,-0.343545,-0.540769,0.561207,-0.219058,-0.313731,0.710532,-0.407825,-0.315355,0.493642,-0.218346,-1.835631,0.561207,-0.219058,-0.313731,0.624262,-0.343545,-0.540769,0.624262,-0.343545,-0.540769,0.622557,-0.342143,-0.879929,0.493642,-0.218346,-1.835631,0.950730,-1.354055,-2.398259,0.917551,-1.105108,-2.397707,0.921900,-1.134096,-0.909949,0.921900,-1.134096,-0.909949,0.953235,-1.351759,-0.388811,0.950730,-1.354055,-2.398259,0.921900,-1.134096,-0.909949,0.922200,-1.135123,-0.516697,0.953235,-1.351759,-0.388811,0.918844,-1.111185,1.367146,0.934544,-1.241215,1.508482,0.931881,-1.201627,0.981819,0.918844,-1.111185,1.367146,0.931881,-1.201627,0.981819,0.932852,-1.208329,0.832918,0.918198,-1.108146,-0.315337,0.918844,-1.111185,1.367146,0.932852,-1.208329,0.832918,0.932852,-1.208329,0.832918,0.947158,-1.504822,0.760458,0.953235,-1.351759,-0.388811,0.918198,-1.108146,-0.315337,0.932852,-1.208329,0.832918,0.953235,-1.351759,-0.388811,0.947158,-1.504822,0.760458,0.929428,-1.469595,0.875058,0.945853,-1.538839,1.241749,0.947158,-1.504822,0.760458,0.945853,-1.538839,1.241749,0.901786,-2.469273,1.241748,0.953235,-1.351759,-0.388811,0.947158,-1.504822,0.760458,0.901786,-2.469273,1.241748,0.900492,-2.463196,-0.389735,0.953235,-1.351759,-0.388811,0.901786,-2.469273,1.241748,0.925738,-1.435466,2.463009,0.811697,-1.356174,3.896984,0.525291,-2.199790,5.119215,0.895535,-1.554487,2.721481,0.925738,-1.435466,2.463009,0.525291,-2.199790,5.119215,0.882676,-1.828985,2.696803,0.895535,-1.554487,2.721481,0.525291,-2.199790,5.119215,0.882676,-1.828985,2.696803,0.525291,-2.199790,5.119215,0.899189,-2.463103,2.274385,0.912334,-1.744799,2.422878,0.882676,-1.828985,2.696803,0.899189,-2.463103,2.274385,0.929428,-1.469595,0.875058,1.101835,-1.514600,0.875059,1.069188,-1.745991,2.423333,0.929428,-1.469595,0.875058,1.069188,-1.745991,2.423333,0.912334,-1.744799,2.422878,0.945853,-1.538839,1.241749,0.929428,-1.469595,0.875058,0.912334,-1.744799,2.422878,-0.392085,-0.289166,3.705353,-0.252670,-0.158143,3.705353,-0.277394,0.048889,3.171991,0.288167,-3.175222,-6.933941,0.357249,-3.224503,-7.141218,0.213287,-3.234369,-7.242729,0.213287,-3.234369,-7.242729,0.144205,-3.175894,-7.010422,0.288167,-3.175222,-6.933941,0.288167,-3.175222,-6.933941,0.536818,-3.119919,-6.798880,0.357249,-3.224503,-7.141218,0.137636,-3.648143,-7.173914,0.203509,-3.516039,-7.293159,0.320104,-3.529666,-7.197826,0.320104,-3.529666,-7.197826,0.254230,-3.648143,-7.129436,0.137636,-3.648143,-7.173914,0.320104,-3.529666,-7.197826,0.374732,-3.648143,-6.837363,0.254230,-3.648143,-7.129436,-0.098334,-1.355452,-5.028345,0.086330,-1.355452,-5.028345,0.230897,-1.479305,-5.127599,0.230897,-1.479305,-5.127599,-0.242901,-1.478215,-5.127599};
			return value;
		}
		private double[] getCoordinate_7_19_point_30()
		{
			double[] value = {-0.098334,-1.355452,-5.028345,0.107231,-1.343583,-4.971021,-0.098334,-1.355452,-5.028345,-0.242901,-1.478215,-5.127599,0.200207,-1.193863,-3.841282,-0.200207,-1.193862,-3.841282,-0.199669,-1.264209,-3.711270,-0.199669,-1.264209,-3.711270,0.193813,-1.264210,-3.711267,0.200207,-1.193863,-3.841282,0.451831,-1.264210,-3.711427,0.200207,-1.193863,-3.841282,0.193813,-1.264210,-3.711267,-0.753669,-1.264209,-3.711142,-0.199669,-1.264209,-3.711270,-0.200207,-1.193862,-3.841282,0.275686,-3.648143,-6.786247,0.398848,-3.874491,-6.587746,0.0,-3.872776,-6.634928,0.0,-3.872776,-6.634928,0.138410,-3.648143,-6.837670,0.275686,-3.648143,-6.786247,-0.272730,-0.293186,-1.834908,-0.217698,-0.228580,-2.397725,-0.304289,-0.154070,-1.837255,0.217697,-0.228580,-2.397725,0.272730,-0.293187,-1.834908,0.304288,-0.154071,-1.837255,-0.036252,-0.466032,-3.167864,0.0,-0.452317,-2.458453,0.036251,-0.484670,-3.167864,-0.036252,-0.466032,-3.167864,0.036251,-0.484670,-3.167864,0.0,-0.452727,-3.376044,-0.080859,-1.080247,13.060559,-0.077785,-0.800120,13.272064,-0.140433,-0.919125,12.204327,-0.140433,-0.919125,12.204327,-0.135629,-1.180418,12.204327,-0.080859,-1.080247,13.060559,-0.150556,-1.223684,11.834497,-0.135629,-1.180418,12.204327,-0.140433,-0.919125,12.204327,-0.140433,-0.919125,12.204327,-0.199730,-1.036603,11.700760,-0.150556,-1.223684,11.834497,-0.207953,-0.925778,11.272986,-0.209108,-1.104304,11.272160,-0.199730,-1.036603,11.700760,-0.199730,-1.036603,11.700760,-0.140433,-0.919125,12.204327,-0.207953,-0.925778,11.272986,-1.232101,-0.963689,12.136156,-1.251581,-0.844684,12.136156,-1.283250,-0.841590,11.543425,-1.232101,-0.963689,12.136156,-1.283250,-0.841590,11.543425,-1.268858,-0.829875,11.334620,-1.232101,-0.963689,12.136156,-1.268858,-0.829875,11.334620,-1.269803,-0.970342,11.333969,-0.164671,-0.397519,12.204327,-0.158656,-0.800120,12.204327,-0.055731,1.210766,14.789797,-0.164671,-0.397519,12.204327,-0.055731,1.210766,14.789797,-0.087574,1.208302,14.154350,-0.164671,-0.397519,12.204327,-0.087574,1.208302,14.154350,-0.163323,-0.300030,12.204327,-0.140433,-0.919125,12.204327,-0.077785,-0.800120,13.272064,-0.158656,-0.800120,12.204327,-1.268858,-0.829875,11.334620,-1.283250,-0.841590,11.543425,-0.188282,-0.797026,11.561793,-0.188282,-0.797026,11.561793,-0.207045,-0.785310,11.273637,-1.268858,-0.829875,11.334620,-1.269803,-0.970342,11.333969,-1.268858,-0.829875,11.334620,-0.207045,-0.785310,11.273637,-0.207045,-0.785310,11.273637,-0.207953,-0.925778,11.272986,-1.269803,-0.970342,11.333969,-1.232101,-0.963689,12.136156,-1.269803,-0.970342,11.333969,-0.207953,-0.925778,11.272986,-0.207953,-0.925778,11.272986,-0.140433,-0.919125,12.204327,-1.232101,-0.963689,12.136156,-1.251581,-0.844684,12.136156,-1.232101,-0.963689,12.136156,-0.140433,-0.919125,12.204327,-0.140433,-0.919125,12.204327,-0.158656,-0.800120,12.204327,-1.251581,-0.844684,12.136156,-1.283250,-0.841590,11.543425,-1.251581,-0.844684,12.136156,-0.158656,-0.800120,12.204327};
			return value;
		}
		private double[] getCoordinate_7_19_point_31()
		{
			double[] value = {-0.158656,-0.800120,12.204327,-0.188282,-0.797026,11.561793,-1.283250,-0.841590,11.543425,0.102539,-0.544913,11.302486,0.188242,-0.796303,11.561792,0.207005,-0.784588,11.273637,0.209068,-1.103582,11.272160,0.199655,-1.036603,11.700760,0.150516,-1.223684,11.834497,0.150516,-1.223684,11.834497,0.174727,-1.318747,11.273637,0.209068,-1.103582,11.272160,0.164596,-0.397519,12.204326,0.158581,-0.800120,12.204326,0.188242,-0.796303,11.561792,0.188242,-0.796303,11.561792,0.163248,-0.300030,12.204326,0.164596,-0.397519,12.204326,0.140358,-0.919125,12.204326,0.077753,-0.800476,13.271728,0.080822,-1.080247,13.060558,0.080822,-1.080247,13.060558,0.135554,-1.180418,12.204326,0.140358,-0.919125,12.204326,0.140358,-0.919125,12.204326,0.135554,-1.180418,12.204326,0.150516,-1.223684,11.834497,0.150516,-1.223684,11.834497,0.199655,-1.036603,11.700760,0.140358,-0.919125,12.204326,0.199655,-1.036603,11.700760,0.209068,-1.103582,11.272160,0.207879,-0.925778,11.272985,0.207879,-0.925778,11.272985,0.140358,-0.919125,12.204326,0.199655,-1.036603,11.700760,1.283175,-0.841590,11.543425,1.251506,-0.844684,12.136156,1.232026,-0.963689,12.136156,1.232026,-0.963689,12.136156,1.269728,-0.970342,11.333969,1.268783,-0.829875,11.334620,1.283175,-0.841590,11.543425,1.232026,-0.963689,12.136156,1.268783,-0.829875,11.334620,0.055694,1.210766,14.789797,0.158581,-0.800120,12.204326,0.164596,-0.397519,12.204326,0.087534,1.209025,14.154350,0.055694,1.210766,14.789797,0.164596,-0.397519,12.204326,0.087534,1.209025,14.154350,0.164596,-0.397519,12.204326,0.163248,-0.300030,12.204326,0.077753,-0.800476,13.271728,0.140358,-0.919125,12.204326,0.158581,-0.800120,12.204326,0.188242,-0.796303,11.561792,1.283175,-0.841590,11.543425,1.268783,-0.829875,11.334620,1.268783,-0.829875,11.334620,0.207005,-0.784588,11.273637,0.188242,-0.796303,11.561792,0.207005,-0.784588,11.273637,1.268783,-0.829875,11.334620,1.269728,-0.970342,11.333969,1.269728,-0.970342,11.333969,0.207879,-0.925778,11.272985,0.207005,-0.784588,11.273637,0.207879,-0.925778,11.272985,1.269728,-0.970342,11.333969,1.232026,-0.963689,12.136156,1.232026,-0.963689,12.136156,0.140358,-0.919125,12.204326,0.207879,-0.925778,11.272985,0.140358,-0.919125,12.204326,1.232026,-0.963689,12.136156,1.251506,-0.844684,12.136156,1.251506,-0.844684,12.136156,0.158581,-0.800120,12.204326,0.140358,-0.919125,12.204326,0.158581,-0.800120,12.204326,1.251506,-0.844684,12.136156,1.283175,-0.841590,11.543425,1.283175,-0.841590,11.543425,0.188242,-0.796303,11.561792,0.158581,-0.800120,12.204326,0.077753,-0.800476,13.271728,0.158581,-0.800120,12.204326,0.055694,1.210766,14.789797,-3.569776,-3.365092,0.916037,-3.569776,-3.365092,2.121101,-3.569776,-3.197363,2.121101,-3.569776,-3.197363,2.121101,-3.569776,-3.197363,0.916037,-3.569776,-3.365092,0.916037,-3.486876,-3.475319,0.974939,-3.486876,-3.365092,0.916037,-3.486877,-3.365092,2.121101,-3.486877,-3.365092,2.121101};
			return value;
		}
		private double[] getCoordinate_7_19_point_32()
		{
			double[] value = {-3.486877,-3.475319,2.062199,-3.486876,-3.475319,0.974939,-3.486876,-3.365092,0.916037,-3.486876,-3.197363,0.916037,-3.486877,-3.197363,2.121101,-3.486877,-3.197363,2.121101,-3.486877,-3.365092,2.121101,-3.486876,-3.365092,0.916037,-3.569776,-3.475319,0.974939,-3.486876,-3.475319,0.974939,-3.486877,-3.475319,2.062199,-3.486877,-3.475319,2.062199,-3.569776,-3.475319,2.062199,-3.569776,-3.475319,0.974939,-3.569776,-3.475319,2.062199,-3.486877,-3.475319,2.062199,-3.486877,-3.365092,2.121101,-3.486877,-3.365092,2.121101,-3.569776,-3.365092,2.121101,-3.569776,-3.475319,2.062199,-3.569776,-3.365092,2.349433,-3.486877,-3.365092,2.349433,-3.486877,-3.197363,2.349433,-3.486877,-3.197363,2.349433,-3.569776,-3.197363,2.349433,-3.569776,-3.365092,2.349433,-3.569776,-3.197363,2.121101,-3.486877,-3.197363,2.121101,-3.486876,-3.197363,0.916037,-3.486876,-3.197363,0.916037,-3.569776,-3.197363,0.916037,-3.569776,-3.197363,2.121101,-3.569776,-3.197363,0.458323,-3.486876,-3.197363,0.458324,-3.486876,-3.365092,0.458324,-3.486876,-3.365092,0.458324,-3.569776,-3.365092,0.458323,-3.569776,-3.197363,0.458323,-3.569776,-3.365092,0.916037,-3.486876,-3.365092,0.916037,-3.486876,-3.475319,0.974939,-3.486876,-3.475319,0.974939,-3.569776,-3.475319,0.974939,-3.569776,-3.365092,0.916037,-3.569776,-3.197363,0.458323,-3.569776,-3.365092,0.458323,-3.569776,-3.365092,0.916037,-3.569776,-3.365092,0.916037,-3.569776,-3.197363,0.916037,-3.569776,-3.197363,0.458323,-3.486876,-3.365092,0.458324,-3.486876,-3.197363,0.458324,-3.486876,-3.197363,0.916037,-3.486876,-3.197363,0.916037,-3.486876,-3.365092,0.916037,-3.486876,-3.365092,0.458324,-3.486876,-3.197363,0.458324,-3.569776,-3.197363,0.458323,-3.569776,-3.197363,0.916037,-3.569776,-3.197363,0.916037,-3.486876,-3.197363,0.916037,-3.486876,-3.197363,0.458324,-3.569776,-3.365092,0.458323,-3.486876,-3.365092,0.458324,-3.486876,-3.365092,0.916037,-3.486876,-3.365092,0.916037,-3.569776,-3.365092,0.916037,-3.569776,-3.365092,0.458323,-3.569776,-3.365092,2.349433,-3.569776,-3.197363,2.349433,-3.569776,-3.197363,2.121101,-3.569776,-3.197363,2.121101,-3.569776,-3.365092,2.121101,-3.569776,-3.365092,2.349433,-3.486877,-3.197363,2.349433,-3.486877,-3.365092,2.349433,-3.486877,-3.365092,2.121101,-3.486877,-3.365092,2.121101,-3.486877,-3.197363,2.121101,-3.486877,-3.197363,2.349433,-3.486877,-3.365092,2.349433,-3.569776,-3.365092,2.349433,-3.569776,-3.365092,2.121101,-3.569776,-3.365092,2.121101,-3.486877,-3.365092,2.121101,-3.486877,-3.365092,2.349433,-3.569776,-3.197363,2.349433,-3.486877,-3.197363,2.349433,-3.486877,-3.197363,2.121101,-3.486877,-3.197363,2.121101,-3.569776,-3.197363,2.121101,-3.569776,-3.197363,2.349433,-4.038672,-3.475319,0.974939,-4.038672,-3.365092,0.916037,-3.569776,-3.365092,0.916037,-3.569776,-3.365092,0.916037,-3.569776,-3.475319,0.974939,-4.038672,-3.475319,0.974939,-4.038672,-3.365092,0.916037,-4.038672,-3.365092,2.121101};
			return value;
		}
		private double[] getCoordinate_7_19_point_33()
		{
			double[] value = {-3.569776,-3.365092,2.121101,-3.569776,-3.365092,2.121101,-3.569776,-3.365092,0.916037,-4.038672,-3.365092,0.916037,-4.038672,-3.365092,2.121101,-4.038672,-3.475319,2.062199,-3.569776,-3.475319,2.062199,-3.569776,-3.475319,2.062199,-3.569776,-3.365092,2.121101,-4.038672,-3.365092,2.121101,-4.038672,-3.475319,2.062199,-4.038672,-3.475319,0.974939,-3.569776,-3.475319,0.974939,-3.569776,-3.475319,0.974939,-3.569776,-3.475319,2.062199,-4.038672,-3.475319,2.062199,-4.121842,-3.475319,0.974939,-4.121842,-3.475319,2.062199,-4.121842,-3.365092,2.121101,-4.121842,-3.365092,2.121101,-4.121842,-3.365092,0.916037,-4.121842,-3.475319,0.974939,-4.121842,-3.365092,0.916037,-4.121842,-3.365092,2.121101,-4.121842,-3.197363,2.121101,-4.121842,-3.197363,2.121101,-4.121842,-3.197363,0.916037,-4.121842,-3.365092,0.916037,-4.038672,-3.365092,0.916037,-4.038982,-3.197363,0.916037,-4.038982,-3.197363,2.121101,-4.038982,-3.197363,2.121101,-4.038672,-3.365092,2.121101,-4.038672,-3.365092,0.916037,-4.121842,-3.475319,0.974939,-4.038672,-3.475319,0.974939,-4.038672,-3.475319,2.062199,-4.038672,-3.475319,2.062199,-4.121842,-3.475319,2.062199,-4.121842,-3.475319,0.974939,-4.121842,-3.475319,2.062199,-4.038672,-3.475319,2.062199,-4.038672,-3.365092,2.121101,-4.038672,-3.365092,2.121101,-4.121842,-3.365092,2.121101,-4.121842,-3.475319,2.062199,-4.121842,-3.365092,2.349433,-4.038982,-3.365092,2.349433,-4.038982,-3.197363,2.349433,-4.038982,-3.197363,2.349433,-4.121842,-3.197363,2.349433,-4.121842,-3.365092,2.349433,-4.121842,-3.197363,2.121101,-4.038982,-3.197363,2.121101,-4.038982,-3.197363,0.916037,-4.038982,-3.197363,0.916037,-4.121842,-3.197363,0.916037,-4.121842,-3.197363,2.121101,-4.121841,-3.197363,0.458323,-4.038982,-3.197363,0.458324,-4.038982,-3.365092,0.458323,-4.038982,-3.365092,0.458323,-4.121841,-3.365092,0.458323,-4.121841,-3.197363,0.458323,-4.121842,-3.365092,0.916037,-4.038672,-3.365092,0.916037,-4.038672,-3.475319,0.974939,-4.038672,-3.475319,0.974939,-4.121842,-3.475319,0.974939,-4.121842,-3.365092,0.916037,-4.121841,-3.197363,0.458323,-4.121841,-3.365092,0.458323,-4.121842,-3.365092,0.916037,-4.121842,-3.365092,0.916037,-4.121842,-3.197363,0.916037,-4.121841,-3.197363,0.458323,-4.038982,-3.365092,0.458323,-4.038982,-3.197363,0.458324,-4.038982,-3.197363,0.916037,-4.038982,-3.197363,0.916037,-4.038672,-3.365092,0.916037,-4.038982,-3.365092,0.458323,-4.038982,-3.197363,0.458324,-4.121841,-3.197363,0.458323,-4.121842,-3.197363,0.916037,-4.121842,-3.197363,0.916037,-4.038982,-3.197363,0.916037,-4.038982,-3.197363,0.458324,-4.121841,-3.365092,0.458323,-4.038982,-3.365092,0.458323,-4.038672,-3.365092,0.916037,-4.038672,-3.365092,0.916037,-4.121842,-3.365092,0.916037,-4.121841,-3.365092,0.458323,-4.121842,-3.365092,2.349433,-4.121842,-3.197363,2.349433,-4.121842,-3.197363,2.121101,-4.121842,-3.197363,2.121101,-4.121842,-3.365092,2.121101,-4.121842,-3.365092,2.349433};
			return value;
		}
		private double[] getCoordinate_7_19_point_34()
		{
			double[] value = {-4.038982,-3.197363,2.349433,-4.038982,-3.365092,2.349433,-4.038672,-3.365092,2.121101,-4.038672,-3.365092,2.121101,-4.038982,-3.197363,2.121101,-4.038982,-3.197363,2.349433,-4.038982,-3.365092,2.349433,-4.121842,-3.365092,2.349433,-4.121842,-3.365092,2.121101,-4.121842,-3.365092,2.121101,-4.038672,-3.365092,2.121101,-4.038982,-3.365092,2.349433,-4.121842,-3.197363,2.349433,-4.038982,-3.197363,2.349433,-4.038982,-3.197363,2.121101,-4.038982,-3.197363,2.121101,-4.121842,-3.197363,2.121101,-4.121842,-3.197363,2.349433,-4.036372,-2.972640,0.794228,-3.979354,-3.042846,0.794228,-3.979573,-3.141864,0.794228,-3.979573,-3.141864,0.794228,-4.036901,-3.211691,0.794228,-4.117756,-3.211423,0.794228,-4.117756,-3.211423,0.794228,-4.174774,-3.141217,0.794228,-4.174555,-3.042199,0.794228,-3.979573,-3.141864,0.794228,-4.117756,-3.211423,0.794228,-4.174555,-3.042199,0.794228,-4.036372,-2.972640,0.794228,-3.979573,-3.141864,0.794228,-4.174555,-3.042199,0.794228,-4.117227,-2.972372,0.794228,-4.036372,-2.972640,0.794228,-4.174555,-3.042199,0.794228,-4.174774,-3.141217,0.794228,-4.117756,-3.211423,0.794228,-4.117756,-3.211423,1.728579,-4.117756,-3.211423,1.728579,-4.174774,-3.141217,1.728576,-4.174774,-3.141217,0.794228,-4.036901,-3.211691,0.794228,-3.979573,-3.141864,0.794228,-3.979573,-3.141864,1.728580,-3.979573,-3.141864,1.728580,-4.036901,-3.211691,1.728581,-4.036901,-3.211691,0.794228,-3.979354,-3.042846,0.794228,-4.036372,-2.972640,0.794228,-4.036372,-2.972640,1.728574,-4.036372,-2.972640,1.728574,-3.979354,-3.042846,1.728578,-3.979354,-3.042846,0.794228,-4.117227,-2.972372,0.794228,-4.174555,-3.042199,0.794228,-4.174555,-3.042199,1.728573,-4.174555,-3.042199,1.728573,-4.117227,-2.972372,1.728571,-4.117227,-2.972372,0.794228,-4.174555,-3.042199,2.271002,-4.174774,-3.141217,2.271002,-4.117756,-3.211423,2.271002,-4.117756,-3.211423,2.271002,-4.036901,-3.211691,2.271003,-3.979573,-3.141864,2.271003,-4.174555,-3.042199,2.271002,-4.117756,-3.211423,2.271002,-3.979573,-3.141864,2.271003,-3.979573,-3.141864,2.271003,-3.979354,-3.042846,2.271003,-4.036372,-2.972640,2.271003,-4.174555,-3.042199,2.271002,-3.979573,-3.141864,2.271003,-4.036372,-2.972640,2.271003,-4.117227,-2.972372,2.271002,-4.174555,-3.042199,2.271002,-4.036372,-2.972640,2.271003,-4.174555,-3.042199,0.794228,-4.174774,-3.141217,0.794228,-4.174774,-3.141217,1.728576,-4.174555,-3.042199,0.794228,-4.174774,-3.141217,1.728576,-4.174773,-3.141216,2.070664,-4.174555,-3.042199,0.794228,-4.174773,-3.141216,2.070664,-4.174774,-3.141217,2.271002,-4.174774,-3.141217,2.271002,-4.174555,-3.042199,2.271002,-4.174554,-3.042197,2.070651,-4.174774,-3.141217,2.271002,-4.174554,-3.042197,2.070651,-4.174555,-3.042199,1.728573,-4.174555,-3.042199,0.794228,-4.174774,-3.141217,2.271002,-4.174555,-3.042199,1.728573,-4.117755,-3.211421,2.070666,-4.117756,-3.211423,2.271002,-4.174774,-3.141217,2.271002,-4.174774,-3.141217,2.271002};
			return value;
		}
		private double[] getCoordinate_7_19_point_35()
		{
			double[] value = {-4.174773,-3.141216,2.070664,-4.117755,-3.211421,2.070666,-4.117756,-3.211423,0.794228,-4.036901,-3.211691,0.794228,-4.036901,-3.211691,1.728581,-4.117756,-3.211423,0.794228,-4.036901,-3.211691,1.728581,-4.036900,-3.211690,2.070655,-4.117756,-3.211423,0.794228,-4.036900,-3.211690,2.070655,-4.036901,-3.211691,2.271003,-4.036901,-3.211691,2.271003,-4.117756,-3.211423,2.271002,-4.117755,-3.211421,2.070666,-4.036901,-3.211691,2.271003,-4.117755,-3.211421,2.070666,-4.117756,-3.211423,1.728579,-4.117756,-3.211423,0.794228,-4.036901,-3.211691,2.271003,-4.117756,-3.211423,1.728579,-3.979572,-3.141863,2.070639,-3.979573,-3.141864,2.271003,-4.036901,-3.211691,2.271003,-4.036901,-3.211691,2.271003,-4.036900,-3.211690,2.070655,-3.979572,-3.141863,2.070639,-3.979573,-3.141864,0.794228,-3.979354,-3.042846,0.794228,-3.979354,-3.042846,1.728578,-3.979573,-3.141864,0.794228,-3.979354,-3.042846,1.728578,-3.979353,-3.042844,2.070625,-3.979573,-3.141864,0.794228,-3.979353,-3.042844,2.070625,-3.979354,-3.042846,2.271003,-3.979354,-3.042846,2.271003,-3.979573,-3.141864,2.271003,-3.979572,-3.141863,2.070639,-3.979354,-3.042846,2.271003,-3.979572,-3.141863,2.070639,-3.979573,-3.141864,1.728580,-3.979573,-3.141864,0.794228,-3.979354,-3.042846,2.271003,-3.979573,-3.141864,1.728580,-4.036371,-2.972638,2.070623,-4.036372,-2.972640,2.271003,-3.979354,-3.042846,2.271003,-3.979354,-3.042846,2.271003,-3.979353,-3.042844,2.070625,-4.036371,-2.972638,2.070623,-4.036372,-2.972640,0.794228,-4.117227,-2.972372,0.794228,-4.117227,-2.972372,1.728571,-4.036372,-2.972640,0.794228,-4.117227,-2.972372,1.728571,-4.117226,-2.972370,2.070634,-4.036372,-2.972640,0.794228,-4.117226,-2.972370,2.070634,-4.117227,-2.972372,2.271002,-4.117227,-2.972372,2.271002,-4.036372,-2.972640,2.271003,-4.036371,-2.972638,2.070623,-4.117227,-2.972372,2.271002,-4.036371,-2.972638,2.070623,-4.036372,-2.972640,1.728574,-4.036372,-2.972640,0.794228,-4.117227,-2.972372,2.271002,-4.036372,-2.972640,1.728574,-4.174554,-3.042197,2.070651,-4.174555,-3.042199,2.271002,-4.117227,-2.972372,2.271002,-4.117227,-2.972372,2.271002,-4.117226,-2.972370,2.070634,-4.174554,-3.042197,2.070651,-4.285780,-3.362090,1.928811,-4.285781,-3.364163,2.112392,-4.299541,-3.347220,2.112383,-4.299541,-3.347220,2.112383,-4.299541,-3.345148,1.928803,-4.285780,-3.362090,1.928811,-3.859466,-3.351263,1.928709,-3.859045,-3.352822,2.112325,-3.865677,-3.360900,2.112335,-3.865677,-3.360900,2.112335,-3.866098,-3.359340,1.928719,-3.859466,-3.351263,1.928709,-3.863286,-2.824745,1.927660,-3.864115,-2.825771,2.111079,-3.858363,-2.834072,2.111176,-3.858363,-2.834072,2.111176,-3.857534,-2.833046,1.927758,-3.863286,-2.824745,1.927660,-4.295242,-2.831510,1.928502,-4.294818,-2.833065,2.112051,-4.287751,-2.824457,2.112040,-4.287751,-2.824457,2.112040,-4.288175,-2.822902,1.928491,-4.295242,-2.831510,1.928502,-4.285780,-3.362090,1.928811,-4.299541,-3.345148,1.928803};
			return value;
		}
		private double[] getCoordinate_7_19_point_36()
		{
			double[] value = {-4.174774,-3.141217,1.728576,-4.174774,-3.141217,1.728576,-4.117756,-3.211423,1.728579,-4.285780,-3.362090,1.928811,-3.859466,-3.351263,1.928709,-3.866098,-3.359340,1.928719,-4.036901,-3.211691,1.728581,-4.036901,-3.211691,1.728581,-3.979573,-3.141864,1.728580,-3.859466,-3.351263,1.928709,-3.863286,-2.824745,1.927660,-3.857534,-2.833046,1.927758,-3.979354,-3.042846,1.728578,-3.979354,-3.042846,1.728578,-4.036372,-2.972640,1.728574,-3.863286,-2.824745,1.927660,-4.295242,-2.831510,1.928502,-4.288175,-2.822902,1.928491,-4.117227,-2.972372,1.728571,-4.117227,-2.972372,1.728571,-4.174555,-3.042199,1.728573,-4.295242,-2.831510,1.928502,-4.294818,-2.833065,2.112051,-4.295242,-2.831510,1.928502,-4.174555,-3.042199,1.728573,-4.174555,-3.042199,1.728573,-4.174554,-3.042197,2.070651,-4.294818,-2.833065,2.112051,-4.299541,-3.347220,2.112383,-4.285781,-3.364163,2.112392,-4.117755,-3.211421,2.070666,-4.117755,-3.211421,2.070666,-4.174773,-3.141216,2.070664,-4.299541,-3.347220,2.112383,-4.285781,-3.364163,2.112392,-4.285780,-3.362090,1.928811,-4.117756,-3.211423,1.728579,-4.117756,-3.211423,1.728579,-4.117755,-3.211421,2.070666,-4.285781,-3.364163,2.112392,-3.865677,-3.360900,2.112335,-3.859045,-3.352822,2.112325,-3.979572,-3.141863,2.070639,-3.979572,-3.141863,2.070639,-4.036900,-3.211690,2.070655,-3.865677,-3.360900,2.112335,-3.859045,-3.352822,2.112325,-3.859466,-3.351263,1.928709,-3.979573,-3.141864,1.728580,-3.979573,-3.141864,1.728580,-3.979572,-3.141863,2.070639,-3.859045,-3.352822,2.112325,-3.858363,-2.834072,2.111176,-3.864115,-2.825771,2.111079,-4.036371,-2.972638,2.070623,-4.036371,-2.972638,2.070623,-3.979353,-3.042844,2.070625,-3.858363,-2.834072,2.111176,-3.864115,-2.825771,2.111079,-3.863286,-2.824745,1.927660,-4.036372,-2.972640,1.728574,-4.036372,-2.972640,1.728574,-4.036371,-2.972638,2.070623,-3.864115,-2.825771,2.111079,-4.287751,-2.824457,2.112040,-4.294818,-2.833065,2.112051,-4.174554,-3.042197,2.070651,-4.174554,-3.042197,2.070651,-4.117226,-2.972370,2.070634,-4.287751,-2.824457,2.112040,-4.299541,-3.345148,1.928803,-4.299541,-3.347220,2.112383,-4.174773,-3.141216,2.070664,-4.174773,-3.141216,2.070664,-4.174774,-3.141217,1.728576,-4.299541,-3.345148,1.928803,-3.866098,-3.359340,1.928719,-3.865677,-3.360900,2.112335,-4.036900,-3.211690,2.070655,-4.036900,-3.211690,2.070655,-4.036901,-3.211691,1.728581,-3.866098,-3.359340,1.928719,-3.857534,-2.833046,1.927758,-3.858363,-2.834072,2.111176,-3.979353,-3.042844,2.070625,-3.979353,-3.042844,2.070625,-3.979354,-3.042846,1.728578,-3.857534,-2.833046,1.927758,-4.288175,-2.822902,1.928491,-4.287751,-2.824457,2.112040,-4.117226,-2.972370,2.070634,-4.117226,-2.972370,2.070634,-4.117227,-2.972372,1.728571,-4.288175,-2.822902,1.928491,-3.489447,-2.972640,0.794228,-3.432429,-3.042846,0.794228,-3.432648,-3.141864,0.794228,-3.432648,-3.141864,0.794228,-3.489976,-3.211691,0.794228,-3.570831,-3.211423,0.794228};
			return value;
		}
		private double[] getCoordinate_7_19_point_37()
		{
			double[] value = {-3.570831,-3.211423,0.794228,-3.627849,-3.141217,0.794228,-3.627630,-3.042199,0.794228,-3.432648,-3.141864,0.794228,-3.570831,-3.211423,0.794228,-3.627630,-3.042199,0.794228,-3.489447,-2.972640,0.794228,-3.432648,-3.141864,0.794228,-3.627630,-3.042199,0.794228,-3.570302,-2.972372,0.794228,-3.489447,-2.972640,0.794228,-3.627630,-3.042199,0.794228,-3.627849,-3.141217,0.794228,-3.570831,-3.211423,0.794228,-3.570831,-3.211423,1.728580,-3.570831,-3.211423,1.728580,-3.627849,-3.141217,1.728576,-3.627849,-3.141217,0.794228,-3.489976,-3.211691,0.794228,-3.432648,-3.141864,0.794228,-3.432648,-3.141864,1.728580,-3.432648,-3.141864,1.728580,-3.489976,-3.211691,1.728581,-3.489976,-3.211691,0.794228,-3.432429,-3.042846,0.794228,-3.489447,-2.972640,0.794228,-3.489448,-2.972640,1.728574,-3.489448,-2.972640,1.728574,-3.432429,-3.042846,1.728578,-3.432429,-3.042846,0.794228,-3.570302,-2.972372,0.794228,-3.627630,-3.042199,0.794228,-3.627630,-3.042199,1.728573,-3.627630,-3.042199,1.728573,-3.570302,-2.972372,1.728572,-3.570302,-2.972372,0.794228,-3.627630,-3.042199,2.271003,-3.627849,-3.141217,2.271003,-3.570831,-3.211423,2.271003,-3.570831,-3.211423,2.271003,-3.489976,-3.211691,2.271003,-3.432648,-3.141864,2.271003,-3.627630,-3.042199,2.271003,-3.570831,-3.211423,2.271003,-3.432648,-3.141864,2.271003,-3.432648,-3.141864,2.271003,-3.432429,-3.042846,2.271003,-3.489447,-2.972640,2.271003,-3.627630,-3.042199,2.271003,-3.432648,-3.141864,2.271003,-3.489447,-2.972640,2.271003,-3.570302,-2.972372,2.271003,-3.627630,-3.042199,2.271003,-3.489447,-2.972640,2.271003,-3.627630,-3.042199,0.794228,-3.627849,-3.141217,0.794228,-3.627849,-3.141217,1.728576,-3.627630,-3.042199,0.794228,-3.627849,-3.141217,1.728576,-3.627848,-3.141216,2.070665,-3.627630,-3.042199,0.794228,-3.627848,-3.141216,2.070665,-3.627849,-3.141217,2.271003,-3.627849,-3.141217,2.271003,-3.627630,-3.042199,2.271003,-3.627630,-3.042197,2.070652,-3.627849,-3.141217,2.271003,-3.627630,-3.042197,2.070652,-3.627630,-3.042199,1.728573,-3.627630,-3.042199,0.794228,-3.627849,-3.141217,2.271003,-3.627630,-3.042199,1.728573,-3.570830,-3.211421,2.070667,-3.570831,-3.211423,2.271003,-3.627849,-3.141217,2.271003,-3.627849,-3.141217,2.271003,-3.627848,-3.141216,2.070665,-3.570830,-3.211421,2.070667,-3.570831,-3.211423,0.794228,-3.489976,-3.211691,0.794228,-3.489976,-3.211691,1.728581,-3.570831,-3.211423,0.794228,-3.489976,-3.211691,1.728581,-3.489975,-3.211690,2.070655,-3.570831,-3.211423,0.794228,-3.489975,-3.211690,2.070655,-3.489976,-3.211691,2.271003,-3.489976,-3.211691,2.271003,-3.570831,-3.211423,2.271003,-3.570830,-3.211421,2.070667,-3.489976,-3.211691,2.271003,-3.570830,-3.211421,2.070667,-3.570831,-3.211423,1.728580,-3.570831,-3.211423,0.794228,-3.489976,-3.211691,2.271003,-3.570831,-3.211423,1.728580,-3.432647,-3.141863,2.070639,-3.432648,-3.141864,2.271003,-3.489976,-3.211691,2.271003,-3.489976,-3.211691,2.271003};
			return value;
		}
		private double[] getCoordinate_7_19_point_38()
		{
			double[] value = {-3.489975,-3.211690,2.070655,-3.432647,-3.141863,2.070639,-3.432648,-3.141864,0.794228,-3.432429,-3.042846,0.794228,-3.432429,-3.042846,1.728578,-3.432648,-3.141864,0.794228,-3.432429,-3.042846,1.728578,-3.432428,-3.042844,2.070625,-3.432648,-3.141864,0.794228,-3.432428,-3.042844,2.070625,-3.432429,-3.042846,2.271003,-3.432429,-3.042846,2.271003,-3.432648,-3.141864,2.271003,-3.432647,-3.141863,2.070639,-3.432429,-3.042846,2.271003,-3.432647,-3.141863,2.070639,-3.432648,-3.141864,1.728580,-3.432648,-3.141864,0.794228,-3.432429,-3.042846,2.271003,-3.432648,-3.141864,1.728580,-3.489446,-2.972638,2.070623,-3.489447,-2.972640,2.271003,-3.432429,-3.042846,2.271003,-3.432429,-3.042846,2.271003,-3.432428,-3.042844,2.070625,-3.489446,-2.972638,2.070623,-3.489447,-2.972640,0.794228,-3.570302,-2.972372,0.794228,-3.570302,-2.972372,1.728572,-3.489447,-2.972640,0.794228,-3.570302,-2.972372,1.728572,-3.570302,-2.972370,2.070634,-3.489447,-2.972640,0.794228,-3.570302,-2.972370,2.070634,-3.570302,-2.972372,2.271003,-3.570302,-2.972372,2.271003,-3.489447,-2.972640,2.271003,-3.489446,-2.972638,2.070623,-3.570302,-2.972372,2.271003,-3.489446,-2.972638,2.070623,-3.489448,-2.972640,1.728574,-3.489447,-2.972640,0.794228,-3.570302,-2.972372,2.271003,-3.489448,-2.972640,1.728574,-3.627630,-3.042197,2.070652,-3.627630,-3.042199,2.271003,-3.570302,-2.972372,2.271003,-3.570302,-2.972372,2.271003,-3.570302,-2.972370,2.070634,-3.627630,-3.042197,2.070652,-3.738855,-3.362090,1.928811,-3.738856,-3.364163,2.112393,-3.752617,-3.347220,2.112384,-3.752617,-3.347220,2.112384,-3.752616,-3.345148,1.928804,-3.738855,-3.362090,1.928811,-3.312541,-3.351263,1.928709,-3.312121,-3.352822,2.112325,-3.318752,-3.360900,2.112335,-3.318752,-3.360900,2.112335,-3.319173,-3.359340,1.928719,-3.312541,-3.351263,1.928709,-3.316361,-2.824745,1.927660,-3.317190,-2.825771,2.111079,-3.311439,-2.834072,2.111176,-3.311439,-2.834072,2.111176,-3.310609,-2.833046,1.927758,-3.316361,-2.824745,1.927660,-3.748317,-2.831510,1.928503,-3.747893,-2.833065,2.112051,-3.740826,-2.824457,2.112041,-3.740826,-2.824457,2.112041,-3.741250,-2.822902,1.928491,-3.748317,-2.831510,1.928503,-3.738855,-3.362090,1.928811,-3.752616,-3.345148,1.928804,-3.627849,-3.141217,1.728576,-3.627849,-3.141217,1.728576,-3.570831,-3.211423,1.728580,-3.738855,-3.362090,1.928811,-3.312541,-3.351263,1.928709,-3.319173,-3.359340,1.928719,-3.489976,-3.211691,1.728581,-3.489976,-3.211691,1.728581,-3.432648,-3.141864,1.728580,-3.312541,-3.351263,1.928709,-3.316361,-2.824745,1.927660,-3.310609,-2.833046,1.927758,-3.432429,-3.042846,1.728578,-3.432429,-3.042846,1.728578,-3.489448,-2.972640,1.728574,-3.316361,-2.824745,1.927660,-3.748317,-2.831510,1.928503,-3.741250,-2.822902,1.928491,-3.570302,-2.972372,1.728572,-3.570302,-2.972372,1.728572,-3.627630,-3.042199,1.728573,-3.748317,-2.831510,1.928503,-3.747893,-2.833065,2.112051,-3.748317,-2.831510,1.928503};
			return value;
		}
		private double[] getCoordinate_7_19_point_39()
		{
			double[] value = {-3.627630,-3.042199,1.728573,-3.627630,-3.042199,1.728573,-3.627630,-3.042197,2.070652,-3.747893,-2.833065,2.112051,-3.752617,-3.347220,2.112384,-3.738856,-3.364163,2.112393,-3.570830,-3.211421,2.070667,-3.570830,-3.211421,2.070667,-3.627848,-3.141216,2.070665,-3.752617,-3.347220,2.112384,-3.738856,-3.364163,2.112393,-3.738855,-3.362090,1.928811,-3.570831,-3.211423,1.728580,-3.570831,-3.211423,1.728580,-3.570830,-3.211421,2.070667,-3.738856,-3.364163,2.112393,-3.318752,-3.360900,2.112335,-3.312121,-3.352822,2.112325,-3.432647,-3.141863,2.070639,-3.432647,-3.141863,2.070639,-3.489975,-3.211690,2.070655,-3.318752,-3.360900,2.112335,-3.312121,-3.352822,2.112325,-3.312541,-3.351263,1.928709,-3.432648,-3.141864,1.728580,-3.432648,-3.141864,1.728580,-3.432647,-3.141863,2.070639,-3.312121,-3.352822,2.112325,-3.311439,-2.834072,2.111176,-3.317190,-2.825771,2.111079,-3.489446,-2.972638,2.070623,-3.489446,-2.972638,2.070623,-3.432428,-3.042844,2.070625,-3.311439,-2.834072,2.111176,-3.317190,-2.825771,2.111079,-3.316361,-2.824745,1.927660,-3.489448,-2.972640,1.728574,-3.489448,-2.972640,1.728574,-3.489446,-2.972638,2.070623,-3.317190,-2.825771,2.111079,-3.740826,-2.824457,2.112041,-3.747893,-2.833065,2.112051,-3.627630,-3.042197,2.070652,-3.627630,-3.042197,2.070652,-3.570302,-2.972370,2.070634,-3.740826,-2.824457,2.112041,-3.752616,-3.345148,1.928804,-3.752617,-3.347220,2.112384,-3.627848,-3.141216,2.070665,-3.627848,-3.141216,2.070665,-3.627849,-3.141217,1.728576,-3.752616,-3.345148,1.928804,-3.319173,-3.359340,1.928719,-3.318752,-3.360900,2.112335,-3.489975,-3.211690,2.070655,-3.489975,-3.211690,2.070655,-3.489976,-3.211691,1.728581,-3.319173,-3.359340,1.928719,-3.310609,-2.833046,1.927758,-3.311439,-2.834072,2.111176,-3.432428,-3.042844,2.070625,-3.432428,-3.042844,2.070625,-3.432429,-3.042846,1.728578,-3.310609,-2.833046,1.927758,-3.741250,-2.822902,1.928491,-3.740826,-2.824457,2.112041,-3.570302,-2.972370,2.070634,-3.570302,-2.972370,2.070634,-3.570302,-2.972372,1.728572,-3.741250,-2.822902,1.928491,-2.842739,-2.973405,0.208311,-2.810730,-2.989641,0.208311,-2.797471,-3.028841,0.208311,-2.797471,-3.028841,0.208311,-2.810730,-3.068040,0.208311,-2.842739,-3.084277,0.208311,-2.842739,-3.084277,0.208311,-2.874748,-3.068040,0.208311,-2.888006,-3.028841,0.208311,-2.797471,-3.028841,0.208311,-2.842739,-3.084277,0.208311,-2.888006,-3.028841,0.208311,-2.842739,-2.973405,0.208311,-2.797471,-3.028841,0.208311,-2.888006,-3.028841,0.208311,-2.874748,-2.989641,0.208311,-2.842739,-2.973405,0.208311,-2.888006,-3.028841,0.208311,-2.888006,-3.028841,0.208311,-2.874748,-3.068040,0.208311,-2.893232,-3.090678,0.400177,-2.893232,-3.090678,0.400177,-2.914148,-3.028841,0.400177,-2.888006,-3.028841,0.208311,-2.874748,-3.068040,0.208311,-2.842739,-3.084277,0.208311,-2.842739,-3.116291,0.400177,-2.842739,-3.116291,0.400177,-2.893232,-3.090678,0.400177,-2.874748,-3.068040,0.208311};
			return value;
		}
		private double[] getCoordinate_7_19_point_40()
		{
			double[] value = {-2.842739,-3.084277,0.208311,-2.810730,-3.068040,0.208311,-2.792245,-3.090678,0.400177,-2.792245,-3.090678,0.400177,-2.842739,-3.116291,0.400177,-2.842739,-3.084277,0.208311,-2.810730,-3.068040,0.208311,-2.797471,-3.028841,0.208311,-2.771330,-3.028841,0.400177,-2.771330,-3.028841,0.400177,-2.792245,-3.090678,0.400177,-2.810730,-3.068040,0.208311,-2.797471,-3.028841,0.208311,-2.810730,-2.989641,0.208311,-2.792245,-2.967004,0.400177,-2.792245,-2.967004,0.400177,-2.771330,-3.028841,0.400177,-2.797471,-3.028841,0.208311,-2.810730,-2.989641,0.208311,-2.842739,-2.973405,0.208311,-2.842739,-2.941391,0.400177,-2.842739,-2.941391,0.400177,-2.792245,-2.967004,0.400177,-2.810730,-2.989641,0.208311,-2.842739,-2.973405,0.208311,-2.874748,-2.989641,0.208311,-2.893232,-2.967004,0.400177,-2.893232,-2.967004,0.400177,-2.842739,-2.941391,0.400177,-2.842739,-2.973405,0.208311,-2.874748,-2.989641,0.208311,-2.888006,-3.028841,0.208311,-2.914148,-3.028841,0.400177,-2.914148,-3.028841,0.400177,-2.893232,-2.967004,0.400177,-2.874748,-2.989641,0.208311,-2.914148,-3.028841,0.400177,-2.893232,-3.090678,0.400177,-3.019521,-3.245335,0.967178,-3.019521,-3.245335,0.967178,-3.092746,-3.028841,0.967178,-2.914148,-3.028841,0.400177,-2.893232,-3.090678,0.400177,-2.842739,-3.116291,0.400177,-2.842739,-3.335010,0.967178,-2.842739,-3.335010,0.967178,-3.019521,-3.245335,0.967178,-2.893232,-3.090678,0.400177,-2.842739,-3.116291,0.400177,-2.792245,-3.090678,0.400177,-2.665957,-3.245335,0.967178,-2.665957,-3.245335,0.967178,-2.842739,-3.335010,0.967178,-2.842739,-3.116291,0.400177,-2.792245,-3.090678,0.400177,-2.771330,-3.028841,0.400177,-2.592731,-3.028841,0.967178,-2.592731,-3.028841,0.967178,-2.665957,-3.245335,0.967178,-2.792245,-3.090678,0.400177,-2.771330,-3.028841,0.400177,-2.792245,-2.967004,0.400177,-2.665957,-2.812346,0.967178,-2.665957,-2.812346,0.967178,-2.592731,-3.028841,0.967178,-2.771330,-3.028841,0.400177,-2.792245,-2.967004,0.400177,-2.842739,-2.941391,0.400177,-2.842739,-2.722672,0.967178,-2.842739,-2.722672,0.967178,-2.665957,-2.812346,0.967178,-2.792245,-2.967004,0.400177,-2.842739,-2.941391,0.400177,-2.893232,-2.967004,0.400177,-3.019521,-2.812347,0.967178,-3.019521,-2.812347,0.967178,-2.842739,-2.722672,0.967178,-2.842739,-2.941391,0.400177,-2.893232,-2.967004,0.400177,-2.914148,-3.028841,0.400177,-3.092746,-3.028841,0.967178,-3.092746,-3.028841,0.967178,-3.019521,-2.812347,0.967178,-2.893232,-2.967004,0.400177,-3.092746,-3.028841,0.967178,-3.019521,-3.245335,0.967178,-2.995823,-3.216314,2.662673,-2.995823,-3.216314,2.662673,-3.059233,-3.028841,2.662673,-3.092746,-3.028841,0.967178,-3.019521,-3.245335,0.967178,-2.842739,-3.335010,0.967178,-2.842739,-3.293969,2.662673,-2.842739,-3.293969,2.662673,-2.995823,-3.216314,2.662673,-3.019521,-3.245335,0.967178,-2.842739,-3.335010,0.967178,-2.665957,-3.245335,0.967178,-2.689654,-3.216314,2.662673,-2.689654,-3.216314,2.662673};
			return value;
		}
		private double[] getCoordinate_7_19_point_41()
		{
			double[] value = {-2.842739,-3.293969,2.662673,-2.842739,-3.335010,0.967178,-2.665957,-3.245335,0.967178,-2.592731,-3.028841,0.967178,-2.626245,-3.028841,2.662673,-2.626245,-3.028841,2.662673,-2.689654,-3.216314,2.662673,-2.665957,-3.245335,0.967178,-2.592731,-3.028841,0.967178,-2.665957,-2.812346,0.967178,-2.689654,-2.841368,2.662673,-2.689654,-2.841368,2.662673,-2.626245,-3.028841,2.662673,-2.592731,-3.028841,0.967178,-2.665957,-2.812346,0.967178,-2.842739,-2.722672,0.967178,-2.842739,-2.763714,2.662672,-2.842739,-2.763714,2.662672,-2.689654,-2.841368,2.662673,-2.665957,-2.812346,0.967178,-2.842739,-2.722672,0.967178,-3.019521,-2.812347,0.967178,-2.995823,-2.841368,2.662672,-2.995823,-2.841368,2.662672,-2.842739,-2.763714,2.662672,-2.842739,-2.722672,0.967178,-3.019521,-2.812347,0.967178,-3.092746,-3.028841,0.967178,-3.059233,-3.028841,2.662673,-3.059233,-3.028841,2.662673,-2.995823,-2.841368,2.662672,-3.019521,-2.812347,0.967178,-3.059233,-3.028841,2.662673,-2.995823,-3.216314,2.662673,-2.842739,-3.293969,2.662673,-2.842739,-3.293969,2.662673,-2.689654,-3.216314,2.662673,-2.626245,-3.028841,2.662673,-3.059233,-3.028841,2.662673,-2.842739,-3.293969,2.662673,-2.626245,-3.028841,2.662673,-2.626245,-3.028841,2.662673,-2.689654,-2.841368,2.662673,-2.842739,-2.763714,2.662672,-3.059233,-3.028841,2.662673,-2.626245,-3.028841,2.662673,-2.842739,-2.763714,2.662672,-2.995823,-2.841368,2.662672,-3.059233,-3.028841,2.662673,-2.842739,-2.763714,2.662672,-2.008334,-2.756871,0.208311,-1.976325,-2.773108,0.208311,-1.963066,-2.812307,0.208311,-1.963066,-2.812307,0.208311,-1.976325,-2.851506,0.208311,-2.008334,-2.867743,0.208311,-2.008334,-2.867743,0.208311,-2.040343,-2.851506,0.208311,-2.053601,-2.812307,0.208311,-1.963066,-2.812307,0.208311,-2.008334,-2.867743,0.208311,-2.053601,-2.812307,0.208311,-2.008334,-2.756871,0.208311,-1.963066,-2.812307,0.208311,-2.053601,-2.812307,0.208311,-2.040343,-2.773108,0.208311,-2.008334,-2.756871,0.208311,-2.053601,-2.812307,0.208311,-2.053601,-2.812307,0.208311,-2.040343,-2.851506,0.208311,-2.058827,-2.874144,0.400177,-2.058827,-2.874144,0.400177,-2.079743,-2.812307,0.400177,-2.053601,-2.812307,0.208311,-2.040343,-2.851506,0.208311,-2.008334,-2.867743,0.208311,-2.008334,-2.899757,0.400177,-2.008334,-2.899757,0.400177,-2.058827,-2.874144,0.400177,-2.040343,-2.851506,0.208311,-2.008334,-2.867743,0.208311,-1.976325,-2.851506,0.208311,-1.957840,-2.874144,0.400177,-1.957840,-2.874144,0.400177,-2.008334,-2.899757,0.400177,-2.008334,-2.867743,0.208311,-1.976325,-2.851506,0.208311,-1.963066,-2.812307,0.208311,-1.936925,-2.812307,0.400177,-1.936925,-2.812307,0.400177,-1.957840,-2.874144,0.400177,-1.976325,-2.851506,0.208311,-1.963066,-2.812307,0.208311,-1.976325,-2.773108,0.208311,-1.957840,-2.750470,0.400177,-1.957840,-2.750470,0.400177,-1.936925,-2.812307,0.400177,-1.963066,-2.812307,0.208311,-1.976325,-2.773108,0.208311,-2.008334,-2.756871,0.208311};
			return value;
		}
		private double[] getCoordinate_7_19_point_42()
		{
			double[] value = {-2.008334,-2.724857,0.400177,-2.008334,-2.724857,0.400177,-1.957840,-2.750470,0.400177,-1.976325,-2.773108,0.208311,-2.008334,-2.756871,0.208311,-2.040343,-2.773108,0.208311,-2.058827,-2.750470,0.400177,-2.058827,-2.750470,0.400177,-2.008334,-2.724857,0.400177,-2.008334,-2.756871,0.208311,-2.040343,-2.773108,0.208311,-2.053601,-2.812307,0.208311,-2.079743,-2.812307,0.400177,-2.079743,-2.812307,0.400177,-2.058827,-2.750470,0.400177,-2.040343,-2.773108,0.208311,-2.079743,-2.812307,0.400177,-2.058827,-2.874144,0.400177,-2.185116,-3.028801,0.967178,-2.185116,-3.028801,0.967178,-2.258341,-2.812307,0.967178,-2.079743,-2.812307,0.400177,-2.058827,-2.874144,0.400177,-2.008334,-2.899757,0.400177,-2.008334,-3.118476,0.967178,-2.008334,-3.118476,0.967178,-2.185116,-3.028801,0.967178,-2.058827,-2.874144,0.400177,-2.008334,-2.899757,0.400177,-1.957840,-2.874144,0.400177,-1.831552,-3.028801,0.967178,-1.831552,-3.028801,0.967178,-2.008334,-3.118476,0.967178,-2.008334,-2.899757,0.400177,-1.957840,-2.874144,0.400177,-1.936925,-2.812307,0.400177,-1.758326,-2.812307,0.967178,-1.758326,-2.812307,0.967178,-1.831552,-3.028801,0.967178,-1.957840,-2.874144,0.400177,-1.936925,-2.812307,0.400177,-1.957840,-2.750470,0.400177,-1.831552,-2.595813,0.967178,-1.831552,-2.595813,0.967178,-1.758326,-2.812307,0.967178,-1.936925,-2.812307,0.400177,-1.957840,-2.750470,0.400177,-2.008334,-2.724857,0.400177,-2.008334,-2.506138,0.967178,-2.008334,-2.506138,0.967178,-1.831552,-2.595813,0.967178,-1.957840,-2.750470,0.400177,-2.008334,-2.724857,0.400177,-2.058827,-2.750470,0.400177,-2.185116,-2.595813,0.967178,-2.185116,-2.595813,0.967178,-2.008334,-2.506138,0.967178,-2.008334,-2.724857,0.400177,-2.058827,-2.750470,0.400177,-2.079743,-2.812307,0.400177,-2.258341,-2.812307,0.967178,-2.258341,-2.812307,0.967178,-2.185116,-2.595813,0.967178,-2.058827,-2.750470,0.400177,-2.258341,-2.812307,0.967178,-2.185116,-3.028801,0.967178,-2.161418,-2.999780,2.662673,-2.161418,-2.999780,2.662673,-2.224828,-2.812307,2.662673,-2.258341,-2.812307,0.967178,-2.185116,-3.028801,0.967178,-2.008334,-3.118476,0.967178,-2.008334,-3.077435,2.662673,-2.008334,-3.077435,2.662673,-2.161418,-2.999780,2.662673,-2.185116,-3.028801,0.967178,-2.008334,-3.118476,0.967178,-1.831552,-3.028801,0.967178,-1.855249,-2.999780,2.662673,-1.855249,-2.999780,2.662673,-2.008334,-3.077435,2.662673,-2.008334,-3.118476,0.967178,-1.831552,-3.028801,0.967178,-1.758326,-2.812307,0.967178,-1.791840,-2.812307,2.662673,-1.791840,-2.812307,2.662673,-1.855249,-2.999780,2.662673,-1.831552,-3.028801,0.967178,-1.758326,-2.812307,0.967178,-1.831552,-2.595813,0.967178,-1.855249,-2.624834,2.662673,-1.855249,-2.624834,2.662673,-1.791840,-2.812307,2.662673,-1.758326,-2.812307,0.967178,-1.831552,-2.595813,0.967178,-2.008334,-2.506138,0.967178,-2.008334,-2.547180,2.662673,-2.008334,-2.547180,2.662673,-1.855249,-2.624834,2.662673,-1.831552,-2.595813,0.967178};
			return value;
		}
		private double[] getCoordinate_7_19_point_43()
		{
			double[] value = {-2.008334,-2.506138,0.967178,-2.185116,-2.595813,0.967178,-2.161418,-2.624834,2.662672,-2.161418,-2.624834,2.662672,-2.008334,-2.547180,2.662673,-2.008334,-2.506138,0.967178,-2.185116,-2.595813,0.967178,-2.258341,-2.812307,0.967178,-2.224828,-2.812307,2.662673,-2.224828,-2.812307,2.662673,-2.161418,-2.624834,2.662672,-2.185116,-2.595813,0.967178,-2.224828,-2.812307,2.662673,-2.161418,-2.999780,2.662673,-2.008334,-3.077435,2.662673,-2.008334,-3.077435,2.662673,-1.855249,-2.999780,2.662673,-1.791840,-2.812307,2.662673,-2.224828,-2.812307,2.662673,-2.008334,-3.077435,2.662673,-1.791840,-2.812307,2.662673,-1.791840,-2.812307,2.662673,-1.855249,-2.624834,2.662673,-2.008334,-2.547180,2.662673,-2.224828,-2.812307,2.662673,-1.791840,-2.812307,2.662673,-2.008334,-2.547180,2.662673,-2.161418,-2.624834,2.662672,-2.224828,-2.812307,2.662673,-2.008334,-2.547180,2.662673,1.033777,-1.829676,2.699080,0.882676,-1.828985,2.696803,0.912334,-1.744799,2.422878,0.912334,-1.744799,2.422878,1.069188,-1.745991,2.423333,1.033777,-1.829676,2.699080,1.101835,-1.514600,0.875059,0.929428,-1.469595,0.875058,0.947158,-1.504822,0.760458,0.947158,-1.504822,0.760458,1.101835,-1.515851,0.749365,1.101835,-1.514600,0.875059,1.033777,-1.620773,2.723574,1.069188,-1.537087,2.447827,0.925738,-1.435466,2.463009,0.925738,-1.435466,2.463009,0.895535,-1.554487,2.721481,1.033777,-1.620773,2.723574,0.934544,-1.241215,1.508482,0.925738,-1.435466,2.463009,1.069188,-1.537087,2.447827,1.069188,-1.537087,2.447827,1.087784,-1.352042,1.494688,0.934544,-1.241215,1.508482,1.101835,-1.305696,0.899554,1.101835,-1.306948,0.773860,0.932852,-1.208329,0.832918,0.932852,-1.208329,0.832918,0.931881,-1.201627,0.981819,1.101835,-1.305696,0.899554,0.947158,-1.504822,0.760458,0.932852,-1.208329,0.832918,1.101835,-1.306948,0.773860,1.101835,-1.306948,0.773860,1.101835,-1.515851,0.749365,0.947158,-1.504822,0.760458,1.101835,-1.515851,0.749365,1.101835,-1.306948,0.773860,1.101835,-1.305696,0.899554,1.101835,-1.305696,0.899554,1.101835,-1.514600,0.875059,1.101835,-1.515851,0.749365,3.848149,-2.299778,1.123668,3.800326,-2.203325,1.148162,3.848149,-2.287030,2.199913,3.848149,-2.287030,2.199913,3.848149,-2.450929,2.175418,3.848149,-2.299778,1.123668,1.069188,-1.745991,2.423333,1.069188,-1.537087,2.447827,1.033777,-1.620773,2.723574,1.033777,-1.620773,2.723574,1.033777,-1.829676,2.699080,1.069188,-1.745991,2.423333,1.101835,-1.514600,0.875059,1.970108,-1.773822,0.953406,1.970108,-1.986193,2.339667,1.970108,-1.986193,2.339667,1.069188,-1.745991,2.423333,1.101835,-1.514600,0.875059,2.104935,-1.622582,0.990796,1.101835,-1.305696,0.899554,1.087784,-1.352042,1.494688,1.087784,-1.352042,1.494688,2.104935,-1.643931,1.458383,2.104935,-1.622582,0.990796,1.970108,-1.773822,0.953406,1.101835,-1.514600,0.875059,1.101835,-1.305696,0.899554,2.084534,-1.816486,0.966301};
			return value;
		}
		private double[] getCoordinate_7_19_point_44()
		{
			double[] value = {1.970108,-1.773822,0.953406,1.101835,-1.305696,0.899554,2.104935,-1.622582,0.990796,2.084534,-1.816486,0.966301,1.101835,-1.305696,0.899554,1.970108,-1.986193,2.339667,2.084535,-2.019979,2.327899,2.084535,-1.811076,2.352394,1.069188,-1.745991,2.423333,1.970108,-1.986193,2.339667,2.084535,-1.811076,2.352394,1.069188,-1.537087,2.447827,1.069188,-1.745991,2.423333,2.084535,-1.811076,2.352394,2.909474,-2.276217,2.297948,3.771189,-2.498539,2.254991,3.771189,-2.298922,2.279485,2.808565,-2.236818,2.305224,2.909474,-2.276217,2.297948,3.771189,-2.298922,2.279485,2.084535,-2.019979,2.327899,2.808565,-2.236818,2.305224,3.771189,-2.298922,2.279485,2.084535,-1.811076,2.352394,2.084535,-2.019979,2.327899,3.771189,-2.298922,2.279485,3.700419,-2.121879,1.094862,2.104935,-1.622582,0.990796,2.104935,-1.643931,1.458383,2.104935,-1.643931,1.458383,3.700419,-2.124674,1.398590,3.700419,-2.121879,1.094862,2.104935,-1.622582,0.990796,3.700419,-2.121879,1.094862,3.771189,-2.330781,1.070367,2.104935,-1.622582,0.990796,3.771189,-2.330781,1.070367,2.909473,-2.083113,1.009800,2.104935,-1.622582,0.990796,2.909473,-2.083113,1.009800,2.808565,-2.047261,0.999821,2.084534,-1.816486,0.966301,2.104935,-1.622582,0.990796,2.808565,-2.047261,0.999821,3.771067,-3.378052,0.925107,3.848149,-3.378052,0.978408,3.848149,-3.378052,2.030158,3.848149,-3.378052,2.030158,3.771067,-3.378052,2.109731,3.771067,-3.378052,0.925107,3.771189,-2.498539,2.254991,3.848149,-2.450929,2.175418,3.848149,-2.287030,2.199913,3.848149,-2.287030,2.199913,3.771189,-2.298922,2.279485,3.771189,-2.498539,2.254991,3.771189,-2.298922,2.279485,3.848149,-2.287030,2.199913,3.800326,-2.203325,1.148162,3.700419,-2.124674,1.398590,3.771189,-2.298922,2.279485,3.800326,-2.203325,1.148162,3.700419,-2.124674,1.398590,3.800326,-2.203325,1.148162,3.700419,-2.121879,1.094862,3.700419,-2.121879,1.094862,3.800326,-2.203325,1.148162,3.848149,-2.299778,1.123668,3.848149,-2.299778,1.123668,3.771189,-2.330781,1.070367,3.700419,-2.121879,1.094862,3.848149,-2.450929,2.175418,3.848149,-3.378052,2.030158,3.848149,-3.378052,0.978408,3.848149,-3.378052,0.978408,3.848149,-2.299778,1.123668,3.848149,-2.450929,2.175418,3.771189,-2.330781,1.070367,3.771067,-3.378052,0.925107,3.771067,-3.378052,2.109731,3.771067,-3.378052,2.109731,3.771189,-2.498539,2.254991,3.771189,-2.330781,1.070367,3.771189,-2.498539,2.254991,3.771067,-3.378052,2.109731,3.848149,-3.378052,2.030158,3.848149,-3.378052,2.030158,3.848149,-2.450929,2.175418,3.771189,-2.498539,2.254991,3.848149,-2.299778,1.123668,3.848149,-3.378052,0.978408,3.771067,-3.378052,0.925107,3.771067,-3.378052,0.925107,3.771189,-2.330781,1.070367,3.848149,-2.299778,1.123668,0.945853,-1.538839,1.241749,0.912334,-1.744799,2.422878,1.069188,-1.745991,2.423333,0.912334,-1.744799,2.422878,0.945853,-1.538839,1.241749};
			return value;
		}
		private double[] getCoordinate_7_19_point_45()
		{
			double[] value = {1.069188,-1.745991,2.423333,1.101835,-1.305696,0.899554,0.931881,-1.201627,0.981819,0.934544,-1.241215,1.508482,0.934544,-1.241215,1.508482,1.087784,-1.352042,1.494688,1.101835,-1.305696,0.899554,2.084535,-2.601116,2.221659,1.967840,-2.601116,2.233427,1.967840,-2.601116,0.847165,1.967840,-2.601116,0.847165,2.084534,-2.601116,0.860061,2.084535,-2.601116,2.221659,1.069188,-1.537087,2.447827,2.084535,-1.811076,2.352394,2.104935,-1.643931,1.458383,2.104935,-1.643931,1.458383,1.087784,-1.352042,1.494688,1.069188,-1.537087,2.447827,2.084534,-1.816486,0.966301,2.808565,-2.047261,0.999821,2.808565,-2.236818,2.305224,2.808565,-2.236818,2.305224,2.084535,-2.019979,2.327899,2.084534,-1.816486,0.966301,3.771189,-2.498539,2.254991,2.909474,-2.276217,2.297948,2.909473,-2.083113,1.009800,2.909473,-2.083113,1.009800,3.771189,-2.330781,1.070367,3.771189,-2.498539,2.254991,2.084535,-1.811076,2.352394,3.771189,-2.298922,2.279485,3.700419,-2.124674,1.398590,3.700419,-2.124674,1.398590,2.104935,-1.643931,1.458383,2.084535,-1.811076,2.352394,2.809563,-2.767967,0.900563,2.908646,-2.767967,0.910543,2.909968,-2.767967,2.198691,2.909968,-2.767967,2.198691,2.807234,-2.767967,2.205966,2.809563,-2.767967,0.900563,2.084535,-2.019979,2.327899,2.084535,-2.601116,2.221659,2.084534,-2.601116,0.860061,2.084534,-2.601116,0.860061,2.084534,-1.816486,0.966301,2.084535,-2.019979,2.327899,2.084534,-1.816486,0.966301,2.084534,-2.601116,0.860061,1.967840,-2.601116,0.847165,1.967840,-2.601116,0.847165,1.970108,-1.773822,0.953406,2.084534,-1.816486,0.966301,1.970108,-1.986193,2.339667,1.967840,-2.601116,2.233427,2.084535,-2.601116,2.221659,2.084535,-2.601116,2.221659,2.084535,-2.019979,2.327899,1.970108,-1.986193,2.339667,1.970108,-1.773822,0.953406,1.967840,-2.601116,0.847165,1.967840,-2.601116,2.233427,1.967840,-2.601116,2.233427,1.970108,-1.986193,2.339667,1.970108,-1.773822,0.953406,2.808565,-2.236818,2.305224,2.807234,-2.767967,2.205966,2.909968,-2.767967,2.198691,2.909968,-2.767967,2.198691,2.909474,-2.276217,2.297948,2.808565,-2.236818,2.305224,2.808565,-2.047261,0.999821,2.809563,-2.767967,0.900563,2.807234,-2.767967,2.205966,2.807234,-2.767967,2.205966,2.808565,-2.236818,2.305224,2.808565,-2.047261,0.999821,2.909473,-2.083113,1.009800,2.908646,-2.767967,0.910543,2.809563,-2.767967,0.900563,2.809563,-2.767967,0.900563,2.808565,-2.047261,0.999821,2.909473,-2.083113,1.009800,2.909474,-2.276217,2.297948,2.909968,-2.767967,2.198691,2.908646,-2.767967,0.910543,2.908646,-2.767967,0.910543,2.909473,-2.083113,1.009800,2.909474,-2.276217,2.297948,3.570477,-3.197364,2.121103,3.570477,-3.365092,2.121103,3.570475,-3.365093,0.916039,3.570475,-3.365093,0.916039,3.570475,-3.197364,0.916039,3.570477,-3.197364,2.121103,3.487577,-3.365092,2.121103,3.487577,-3.365093,0.916039,3.487577,-3.475320,0.974941};
			return value;
		}
		private double[] getCoordinate_7_19_point_46()
		{
			double[] value = {3.487577,-3.475320,0.974941,3.487577,-3.475320,2.062201,3.487577,-3.365092,2.121103,3.487577,-3.197364,2.121103,3.487577,-3.197364,0.916039,3.487577,-3.365093,0.916039,3.487577,-3.365093,0.916039,3.487577,-3.365092,2.121103,3.487577,-3.197364,2.121103,3.487577,-3.475320,2.062201,3.487577,-3.475320,0.974941,3.570475,-3.475320,0.974942,3.570475,-3.475320,0.974942,3.570477,-3.475320,2.062201,3.487577,-3.475320,2.062201,3.487577,-3.365092,2.121103,3.487577,-3.475320,2.062201,3.570477,-3.475320,2.062201,3.570477,-3.475320,2.062201,3.570477,-3.365092,2.121103,3.487577,-3.365092,2.121103,3.487577,-3.197364,2.349436,3.487577,-3.365092,2.349435,3.570477,-3.365092,2.349435,3.570477,-3.365092,2.349435,3.570477,-3.197364,2.349435,3.487577,-3.197364,2.349436,3.487577,-3.197364,0.916039,3.487577,-3.197364,2.121103,3.570477,-3.197364,2.121103,3.570477,-3.197364,2.121103,3.570475,-3.197364,0.916039,3.487577,-3.197364,0.916039,3.487577,-3.365092,0.458326,3.487577,-3.197364,0.458326,3.570475,-3.197364,0.458325,3.570475,-3.197364,0.458325,3.570475,-3.365092,0.458325,3.487577,-3.365092,0.458326,3.487577,-3.475320,0.974941,3.487577,-3.365093,0.916039,3.570475,-3.365093,0.916039,3.570475,-3.365093,0.916039,3.570475,-3.475320,0.974942,3.487577,-3.475320,0.974941,3.570475,-3.365093,0.916039,3.570475,-3.365092,0.458325,3.570475,-3.197364,0.458325,3.570475,-3.197364,0.458325,3.570475,-3.197364,0.916039,3.570475,-3.365093,0.916039,3.487577,-3.197364,0.916039,3.487577,-3.197364,0.458326,3.487577,-3.365092,0.458326,3.487577,-3.365092,0.458326,3.487577,-3.365093,0.916039,3.487577,-3.197364,0.916039,3.570475,-3.197364,0.916039,3.570475,-3.197364,0.458325,3.487577,-3.197364,0.458326,3.487577,-3.197364,0.458326,3.487577,-3.197364,0.916039,3.570475,-3.197364,0.916039,3.487577,-3.365093,0.916039,3.487577,-3.365092,0.458326,3.570475,-3.365092,0.458325,3.570475,-3.365092,0.458325,3.570475,-3.365093,0.916039,3.487577,-3.365093,0.916039,3.570477,-3.197364,2.121103,3.570477,-3.197364,2.349435,3.570477,-3.365092,2.349435,3.570477,-3.365092,2.349435,3.570477,-3.365092,2.121103,3.570477,-3.197364,2.121103,3.487577,-3.365092,2.121103,3.487577,-3.365092,2.349435,3.487577,-3.197364,2.349436,3.487577,-3.197364,2.349436,3.487577,-3.197364,2.121103,3.487577,-3.365092,2.121103,3.570477,-3.365092,2.121103,3.570477,-3.365092,2.349435,3.487577,-3.365092,2.349435,3.487577,-3.365092,2.349435,3.487577,-3.365092,2.121103,3.570477,-3.365092,2.121103,3.487577,-3.197364,2.121103,3.487577,-3.197364,2.349436,3.570477,-3.197364,2.349435,3.570477,-3.197364,2.349435,3.570477,-3.197364,2.121103,3.487577,-3.197364,2.121103,3.570475,-3.365093,0.916039,4.039371,-3.365093,0.916039,4.039371,-3.475320,0.974941,4.039371,-3.475320,0.974941,3.570475,-3.475320,0.974942,3.570475,-3.365093,0.916039,3.570477,-3.365092,2.121103};
			return value;
		}
		private double[] getCoordinate_7_19_point_47()
		{
			double[] value = {4.039372,-3.365092,2.121103,4.039371,-3.365093,0.916039,4.039371,-3.365093,0.916039,3.570475,-3.365093,0.916039,3.570477,-3.365092,2.121103,3.570477,-3.475320,2.062201,4.039372,-3.475320,2.062201,4.039372,-3.365092,2.121103,4.039372,-3.365092,2.121103,3.570477,-3.365092,2.121103,3.570477,-3.475320,2.062201,3.570475,-3.475320,0.974942,4.039371,-3.475320,0.974941,4.039372,-3.475320,2.062201,4.039372,-3.475320,2.062201,3.570477,-3.475320,2.062201,3.570475,-3.475320,0.974942,4.122543,-3.365092,2.121103,4.122543,-3.475320,2.062201,4.122542,-3.475320,0.974941,4.122542,-3.475320,0.974941,4.122542,-3.365093,0.916039,4.122543,-3.365092,2.121103,4.122543,-3.197364,2.121103,4.122543,-3.365092,2.121103,4.122542,-3.365093,0.916039,4.122542,-3.365093,0.916039,4.122542,-3.197364,0.916039,4.122543,-3.197364,2.121103,4.039684,-3.197364,2.121104,4.039683,-3.197364,0.916039,4.039371,-3.365093,0.916039,4.039371,-3.365093,0.916039,4.039372,-3.365092,2.121103,4.039684,-3.197364,2.121104,4.039372,-3.475320,2.062201,4.039371,-3.475320,0.974941,4.122542,-3.475320,0.974941,4.122542,-3.475320,0.974941,4.122543,-3.475320,2.062201,4.039372,-3.475320,2.062201,4.039372,-3.365092,2.121103,4.039372,-3.475320,2.062201,4.122543,-3.475320,2.062201,4.122543,-3.475320,2.062201,4.122543,-3.365092,2.121103,4.039372,-3.365092,2.121103,4.039684,-3.197364,2.349436,4.039684,-3.365092,2.349435,4.122543,-3.365092,2.349435,4.122543,-3.365092,2.349435,4.122543,-3.197364,2.349435,4.039684,-3.197364,2.349436,4.039683,-3.197364,0.916039,4.039684,-3.197364,2.121104,4.122543,-3.197364,2.121103,4.122543,-3.197364,2.121103,4.122542,-3.197364,0.916039,4.039683,-3.197364,0.916039,4.039681,-3.365092,0.458326,4.039681,-3.197364,0.458326,4.122541,-3.197364,0.458326,4.122541,-3.197364,0.458326,4.122541,-3.365092,0.458326,4.039681,-3.365092,0.458326,4.039371,-3.475320,0.974941,4.039371,-3.365093,0.916039,4.122542,-3.365093,0.916039,4.122542,-3.365093,0.916039,4.122542,-3.475320,0.974941,4.039371,-3.475320,0.974941,4.122542,-3.365093,0.916039,4.122541,-3.365092,0.458326,4.122541,-3.197364,0.458326,4.122541,-3.197364,0.458326,4.122542,-3.197364,0.916039,4.122542,-3.365093,0.916039,4.039683,-3.197364,0.916039,4.039681,-3.197364,0.458326,4.039681,-3.365092,0.458326,4.039681,-3.365092,0.458326,4.039371,-3.365093,0.916039,4.039683,-3.197364,0.916039,4.122542,-3.197364,0.916039,4.122541,-3.197364,0.458326,4.039681,-3.197364,0.458326,4.039681,-3.197364,0.458326,4.039683,-3.197364,0.916039,4.122542,-3.197364,0.916039,4.039371,-3.365093,0.916039,4.039681,-3.365092,0.458326,4.122541,-3.365092,0.458326,4.122541,-3.365092,0.458326,4.122542,-3.365093,0.916039,4.039371,-3.365093,0.916039,4.122543,-3.197364,2.121103,4.122543,-3.197364,2.349435,4.122543,-3.365092,2.349435,4.122543,-3.365092,2.349435,4.122543,-3.365092,2.121103};
			return value;
		}
		private double[] getCoordinate_7_19_point_48()
		{
			double[] value = {4.122543,-3.197364,2.121103,4.039372,-3.365092,2.121103,4.039684,-3.365092,2.349435,4.039684,-3.197364,2.349436,4.039684,-3.197364,2.349436,4.039684,-3.197364,2.121104,4.039372,-3.365092,2.121103,4.122543,-3.365092,2.121103,4.122543,-3.365092,2.349435,4.039684,-3.365092,2.349435,4.039684,-3.365092,2.349435,4.039372,-3.365092,2.121103,4.122543,-3.365092,2.121103,4.039684,-3.197364,2.121104,4.039684,-3.197364,2.349436,4.122543,-3.197364,2.349435,4.122543,-3.197364,2.349435,4.122543,-3.197364,2.121103,4.039684,-3.197364,2.121104,4.118456,-3.211424,0.794229,4.037602,-3.211692,0.794230,3.980273,-3.141865,0.794230,3.980273,-3.141865,0.794230,3.980054,-3.042846,0.794230,4.037073,-2.972641,0.794230,4.037073,-2.972641,0.794230,4.117929,-2.972372,0.794229,4.175257,-3.042199,0.794229,3.980273,-3.141865,0.794230,4.037073,-2.972641,0.794230,4.175257,-3.042199,0.794229,4.118456,-3.211424,0.794229,3.980273,-3.141865,0.794230,4.175257,-3.042199,0.794229,4.175476,-3.141218,0.794229,4.118456,-3.211424,0.794229,4.175257,-3.042199,0.794229,4.118456,-3.211424,1.728581,4.118456,-3.211424,0.794229,4.175476,-3.141218,0.794229,4.175476,-3.141218,0.794229,4.175476,-3.141218,1.728578,4.118456,-3.211424,1.728581,3.980273,-3.141865,1.728583,3.980273,-3.141865,0.794230,4.037602,-3.211692,0.794230,4.037602,-3.211692,0.794230,4.037601,-3.211692,1.728583,3.980273,-3.141865,1.728583,4.037073,-2.972640,1.728576,4.037073,-2.972641,0.794230,3.980054,-3.042846,0.794230,3.980054,-3.042846,0.794230,3.980055,-3.042846,1.728580,4.037073,-2.972640,1.728576,4.175257,-3.042199,1.728575,4.175257,-3.042199,0.794229,4.117929,-2.972372,0.794229,4.117929,-2.972372,0.794229,4.117929,-2.972372,1.728574,4.175257,-3.042199,1.728575,4.117929,-2.972372,2.271005,4.037073,-2.972640,2.271005,3.980055,-3.042846,2.271005,3.980055,-3.042846,2.271005,3.980273,-3.141865,2.271005,4.037601,-3.211692,2.271005,4.037601,-3.211692,2.271005,4.118456,-3.211424,2.271005,4.175476,-3.141218,2.271005,3.980055,-3.042846,2.271005,4.037601,-3.211692,2.271005,4.175476,-3.141218,2.271005,4.117929,-2.972372,2.271005,3.980055,-3.042846,2.271005,4.175476,-3.141218,2.271005,4.175257,-3.042199,2.271005,4.117929,-2.972372,2.271005,4.175476,-3.141218,2.271005,4.175476,-3.141218,1.728578,4.175476,-3.141218,0.794229,4.175257,-3.042199,0.794229,4.175473,-3.141216,2.070667,4.175476,-3.141218,1.728578,4.175257,-3.042199,0.794229,4.175255,-3.042198,2.070653,4.175257,-3.042199,2.271005,4.175476,-3.141218,2.271005,4.175257,-3.042199,1.728575,4.175255,-3.042198,2.070653,4.175476,-3.141218,2.271005,4.175257,-3.042199,0.794229,4.175257,-3.042199,1.728575,4.175476,-3.141218,2.271005,4.175473,-3.141216,2.070667,4.175257,-3.042199,0.794229,4.175476,-3.141218,2.271005,4.175476,-3.141218,2.271005,4.118456,-3.211424,2.271005,4.118455,-3.211422,2.070669};
			return value;
		}
		private double[] getCoordinate_7_19_point_49()
		{
			double[] value = {4.118455,-3.211422,2.070669,4.175473,-3.141216,2.070667,4.175476,-3.141218,2.271005,4.037601,-3.211692,1.728583,4.037602,-3.211692,0.794230,4.118456,-3.211424,0.794229,4.037600,-3.211690,2.070658,4.037601,-3.211692,1.728583,4.118456,-3.211424,0.794229,4.118455,-3.211422,2.070669,4.118456,-3.211424,2.271005,4.037601,-3.211692,2.271005,4.118456,-3.211424,1.728581,4.118455,-3.211422,2.070669,4.037601,-3.211692,2.271005,4.118456,-3.211424,0.794229,4.118456,-3.211424,1.728581,4.037601,-3.211692,2.271005,4.037600,-3.211690,2.070658,4.118456,-3.211424,0.794229,4.037601,-3.211692,2.271005,4.037601,-3.211692,2.271005,3.980273,-3.141865,2.271005,3.980273,-3.141863,2.070641,3.980273,-3.141863,2.070641,4.037600,-3.211690,2.070658,4.037601,-3.211692,2.271005,3.980055,-3.042846,1.728580,3.980054,-3.042846,0.794230,3.980273,-3.141865,0.794230,3.980054,-3.042845,2.070628,3.980055,-3.042846,1.728580,3.980273,-3.141865,0.794230,3.980273,-3.141863,2.070641,3.980273,-3.141865,2.271005,3.980055,-3.042846,2.271005,3.980273,-3.141865,1.728583,3.980273,-3.141863,2.070641,3.980055,-3.042846,2.271005,3.980273,-3.141865,0.794230,3.980273,-3.141865,1.728583,3.980055,-3.042846,2.271005,3.980054,-3.042845,2.070628,3.980273,-3.141865,0.794230,3.980055,-3.042846,2.271005,3.980055,-3.042846,2.271005,4.037073,-2.972640,2.271005,4.037072,-2.972639,2.070626,4.037072,-2.972639,2.070626,3.980054,-3.042845,2.070628,3.980055,-3.042846,2.271005,4.117929,-2.972372,1.728574,4.117929,-2.972372,0.794229,4.037073,-2.972641,0.794230,4.117928,-2.972371,2.070636,4.117929,-2.972372,1.728574,4.037073,-2.972641,0.794230,4.037072,-2.972639,2.070626,4.037073,-2.972640,2.271005,4.117929,-2.972372,2.271005,4.037073,-2.972640,1.728576,4.037072,-2.972639,2.070626,4.117929,-2.972372,2.271005,4.037073,-2.972641,0.794230,4.037073,-2.972640,1.728576,4.117929,-2.972372,2.271005,4.117928,-2.972371,2.070636,4.037073,-2.972641,0.794230,4.117929,-2.972372,2.271005,4.117929,-2.972372,2.271005,4.175257,-3.042199,2.271005,4.175255,-3.042198,2.070653,4.175255,-3.042198,2.070653,4.117928,-2.972371,2.070636,4.117929,-2.972372,2.271005,4.300242,-3.347221,2.112385,4.286482,-3.364163,2.112395,4.286481,-3.362091,1.928813,4.286481,-3.362091,1.928813,4.300241,-3.345149,1.928806,4.300242,-3.347221,2.112385,3.866377,-3.360900,2.112338,3.859745,-3.352823,2.112328,3.860166,-3.351264,1.928711,3.860166,-3.351264,1.928711,3.866798,-3.359341,1.928721,3.866377,-3.360900,2.112338,3.859063,-2.834072,2.111178,3.864815,-2.825772,2.111081,3.863986,-2.824746,1.927662,3.863986,-2.824746,1.927662,3.858234,-2.833046,1.927760,3.859063,-2.834072,2.111178,4.288451,-2.824458,2.112042,4.295519,-2.833066,2.112053,4.295943,-2.831510,1.928504,4.295943,-2.831510,1.928504,4.288875,-2.822902,1.928493,4.288451,-2.824458,2.112042,4.175476,-3.141218,1.728578};
			return value;
		}
		private double[] getCoordinate_7_19_point_50()
		{
			double[] value = {4.300241,-3.345149,1.928806,4.286481,-3.362091,1.928813,4.286481,-3.362091,1.928813,4.118456,-3.211424,1.728581,4.175476,-3.141218,1.728578,4.037601,-3.211692,1.728583,3.866798,-3.359341,1.928721,3.860166,-3.351264,1.928711,3.860166,-3.351264,1.928711,3.980273,-3.141865,1.728583,4.037601,-3.211692,1.728583,3.980055,-3.042846,1.728580,3.858234,-2.833046,1.927760,3.863986,-2.824746,1.927662,3.863986,-2.824746,1.927662,4.037073,-2.972640,1.728576,3.980055,-3.042846,1.728580,4.117929,-2.972372,1.728574,4.288875,-2.822902,1.928493,4.295943,-2.831510,1.928504,4.295943,-2.831510,1.928504,4.175257,-3.042199,1.728575,4.117929,-2.972372,1.728574,4.175257,-3.042199,1.728575,4.295943,-2.831510,1.928504,4.295519,-2.833066,2.112053,4.295519,-2.833066,2.112053,4.175255,-3.042198,2.070653,4.175257,-3.042199,1.728575,4.118455,-3.211422,2.070669,4.286482,-3.364163,2.112395,4.300242,-3.347221,2.112385,4.300242,-3.347221,2.112385,4.175473,-3.141216,2.070667,4.118455,-3.211422,2.070669,4.118456,-3.211424,1.728581,4.286481,-3.362091,1.928813,4.286482,-3.364163,2.112395,4.286482,-3.364163,2.112395,4.118455,-3.211422,2.070669,4.118456,-3.211424,1.728581,3.980273,-3.141863,2.070641,3.859745,-3.352823,2.112328,3.866377,-3.360900,2.112338,3.866377,-3.360900,2.112338,4.037600,-3.211690,2.070658,3.980273,-3.141863,2.070641,3.980273,-3.141865,1.728583,3.860166,-3.351264,1.928711,3.859745,-3.352823,2.112328,3.859745,-3.352823,2.112328,3.980273,-3.141863,2.070641,3.980273,-3.141865,1.728583,4.037072,-2.972639,2.070626,3.864815,-2.825772,2.111081,3.859063,-2.834072,2.111178,3.859063,-2.834072,2.111178,3.980054,-3.042845,2.070628,4.037072,-2.972639,2.070626,4.037073,-2.972640,1.728576,3.863986,-2.824746,1.927662,3.864815,-2.825772,2.111081,3.864815,-2.825772,2.111081,4.037072,-2.972639,2.070626,4.037073,-2.972640,1.728576,4.175255,-3.042198,2.070653,4.295519,-2.833066,2.112053,4.288451,-2.824458,2.112042,4.288451,-2.824458,2.112042,4.117928,-2.972371,2.070636,4.175255,-3.042198,2.070653,4.175473,-3.141216,2.070667,4.300242,-3.347221,2.112385,4.300241,-3.345149,1.928806,4.300241,-3.345149,1.928806,4.175476,-3.141218,1.728578,4.175473,-3.141216,2.070667,4.037600,-3.211690,2.070658,3.866377,-3.360900,2.112338,3.866798,-3.359341,1.928721,3.866798,-3.359341,1.928721,4.037601,-3.211692,1.728583,4.037600,-3.211690,2.070658,3.980054,-3.042845,2.070628,3.859063,-2.834072,2.111178,3.858234,-2.833046,1.927760,3.858234,-2.833046,1.927760,3.980055,-3.042846,1.728580,3.980054,-3.042845,2.070628,4.117928,-2.972371,2.070636,4.288451,-2.824458,2.112042,4.288875,-2.822902,1.928493,4.288875,-2.822902,1.928493,4.117929,-2.972372,1.728574,4.117928,-2.972371,2.070636,3.571530,-3.211424,0.794229,3.490675,-3.211692,0.794230,3.433348,-3.141865,0.794230,3.433348,-3.141865,0.794230,3.433129,-3.042846,0.794229};
			return value;
		}
		private double[] getCoordinate_7_19_point_51()
		{
			double[] value = {3.490147,-2.972641,0.794229,3.490147,-2.972641,0.794229,3.571002,-2.972372,0.794229,3.628331,-3.042199,0.794229,3.433348,-3.141865,0.794230,3.490147,-2.972641,0.794229,3.628331,-3.042199,0.794229,3.571530,-3.211424,0.794229,3.433348,-3.141865,0.794230,3.628331,-3.042199,0.794229,3.628550,-3.141218,0.794229,3.571530,-3.211424,0.794229,3.628331,-3.042199,0.794229,3.571531,-3.211424,1.728581,3.571530,-3.211424,0.794229,3.628550,-3.141218,0.794229,3.628550,-3.141218,0.794229,3.628550,-3.141218,1.728578,3.571531,-3.211424,1.728581,3.433348,-3.141865,1.728582,3.433348,-3.141865,0.794230,3.490675,-3.211692,0.794230,3.490675,-3.211692,0.794230,3.490676,-3.211692,1.728583,3.433348,-3.141865,1.728582,3.490147,-2.972640,1.728576,3.490147,-2.972641,0.794229,3.433129,-3.042846,0.794229,3.433129,-3.042846,0.794229,3.433129,-3.042846,1.728579,3.490147,-2.972640,1.728576,3.628331,-3.042199,1.728575,3.628331,-3.042199,0.794229,3.571002,-2.972372,0.794229,3.571002,-2.972372,0.794229,3.571002,-2.972372,1.728574,3.628331,-3.042199,1.728575,3.571002,-2.972372,2.271005,3.490148,-2.972640,2.271005,3.433129,-3.042846,2.271005,3.433129,-3.042846,2.271005,3.433349,-3.141865,2.271005,3.490677,-3.211692,2.271005,3.490677,-3.211692,2.271005,3.571532,-3.211424,2.271005,3.628551,-3.141218,2.271005,3.433129,-3.042846,2.271005,3.490677,-3.211692,2.271005,3.628551,-3.141218,2.271005,3.571002,-2.972372,2.271005,3.433129,-3.042846,2.271005,3.628551,-3.141218,2.271005,3.628331,-3.042199,2.271005,3.571002,-2.972372,2.271005,3.628551,-3.141218,2.271005,3.628550,-3.141218,1.728578,3.628550,-3.141218,0.794229,3.628331,-3.042199,0.794229,3.628550,-3.141216,2.070667,3.628550,-3.141218,1.728578,3.628331,-3.042199,0.794229,3.628330,-3.042198,2.070653,3.628331,-3.042199,2.271005,3.628551,-3.141218,2.271005,3.628331,-3.042199,1.728575,3.628330,-3.042198,2.070653,3.628551,-3.141218,2.271005,3.628331,-3.042199,0.794229,3.628331,-3.042199,1.728575,3.628551,-3.141218,2.271005,3.628550,-3.141216,2.070667,3.628331,-3.042199,0.794229,3.628551,-3.141218,2.271005,3.628551,-3.141218,2.271005,3.571532,-3.211424,2.271005,3.571530,-3.211422,2.070669,3.571530,-3.211422,2.070669,3.628550,-3.141216,2.070667,3.628551,-3.141218,2.271005,3.490676,-3.211692,1.728583,3.490675,-3.211692,0.794230,3.571530,-3.211424,0.794229,3.490675,-3.211690,2.070657,3.490676,-3.211692,1.728583,3.571530,-3.211424,0.794229,3.571530,-3.211422,2.070669,3.571532,-3.211424,2.271005,3.490677,-3.211692,2.271005,3.571531,-3.211424,1.728581,3.571530,-3.211422,2.070669,3.490677,-3.211692,2.271005,3.571530,-3.211424,0.794229,3.571531,-3.211424,1.728581,3.490677,-3.211692,2.271005,3.490675,-3.211690,2.070657,3.571530,-3.211424,0.794229,3.490677,-3.211692,2.271005,3.490677,-3.211692,2.271005,3.433349,-3.141865,2.271005,3.433348,-3.141863,2.070641};
			return value;
		}
		private double[] getCoordinate_7_19_point_52()
		{
			double[] value = {3.433348,-3.141863,2.070641,3.490675,-3.211690,2.070657,3.490677,-3.211692,2.271005,3.433129,-3.042846,1.728579,3.433129,-3.042846,0.794229,3.433348,-3.141865,0.794230,3.433128,-3.042845,2.070627,3.433129,-3.042846,1.728579,3.433348,-3.141865,0.794230,3.433348,-3.141863,2.070641,3.433349,-3.141865,2.271005,3.433129,-3.042846,2.271005,3.433348,-3.141865,1.728582,3.433348,-3.141863,2.070641,3.433129,-3.042846,2.271005,3.433348,-3.141865,0.794230,3.433348,-3.141865,1.728582,3.433129,-3.042846,2.271005,3.433128,-3.042845,2.070627,3.433348,-3.141865,0.794230,3.433129,-3.042846,2.271005,3.433129,-3.042846,2.271005,3.490148,-2.972640,2.271005,3.490147,-2.972639,2.070625,3.490147,-2.972639,2.070625,3.433128,-3.042845,2.070627,3.433129,-3.042846,2.271005,3.571002,-2.972372,1.728574,3.571002,-2.972372,0.794229,3.490147,-2.972641,0.794229,3.571002,-2.972371,2.070636,3.571002,-2.972372,1.728574,3.490147,-2.972641,0.794229,3.490147,-2.972639,2.070625,3.490148,-2.972640,2.271005,3.571002,-2.972372,2.271005,3.490147,-2.972640,1.728576,3.490147,-2.972639,2.070625,3.571002,-2.972372,2.271005,3.490147,-2.972641,0.794229,3.490147,-2.972640,1.728576,3.571002,-2.972372,2.271005,3.571002,-2.972371,2.070636,3.490147,-2.972641,0.794229,3.571002,-2.972372,2.271005,3.571002,-2.972372,2.271005,3.628331,-3.042199,2.271005,3.628330,-3.042198,2.070653,3.628330,-3.042198,2.070653,3.571002,-2.972371,2.070636,3.571002,-2.972372,2.271005,3.753317,-3.347221,2.112385,3.739557,-3.364163,2.112395,3.739555,-3.362091,1.928813,3.739555,-3.362091,1.928813,3.753316,-3.345149,1.928806,3.753317,-3.347221,2.112385,3.319452,-3.360900,2.112337,3.312821,-3.352823,2.112327,3.313242,-3.351264,1.928710,3.313242,-3.351264,1.928710,3.319873,-3.359341,1.928720,3.319452,-3.360900,2.112337,3.312139,-2.834072,2.111177,3.317892,-2.825771,2.111080,3.317062,-2.824746,1.927662,3.317062,-2.824746,1.927662,3.311310,-2.833046,1.927760,3.312139,-2.834072,2.111177,3.741527,-2.824458,2.112042,3.748593,-2.833066,2.112053,3.749018,-2.831510,1.928504,3.749018,-2.831510,1.928504,3.741950,-2.822902,1.928493,3.741527,-2.824458,2.112042,3.628550,-3.141218,1.728578,3.753316,-3.345149,1.928806,3.739555,-3.362091,1.928813,3.739555,-3.362091,1.928813,3.571531,-3.211424,1.728581,3.628550,-3.141218,1.728578,3.490676,-3.211692,1.728583,3.319873,-3.359341,1.928720,3.313242,-3.351264,1.928710,3.313242,-3.351264,1.928710,3.433348,-3.141865,1.728582,3.490676,-3.211692,1.728583,3.433129,-3.042846,1.728579,3.311310,-2.833046,1.927760,3.317062,-2.824746,1.927662,3.317062,-2.824746,1.927662,3.490147,-2.972640,1.728576,3.433129,-3.042846,1.728579,3.571002,-2.972372,1.728574,3.741950,-2.822902,1.928493,3.749018,-2.831510,1.928504,3.749018,-2.831510,1.928504,3.628331,-3.042199,1.728575,3.571002,-2.972372,1.728574,3.628331,-3.042199,1.728575};
			return value;
		}
		private double[] getCoordinate_7_19_point_53()
		{
			double[] value = {3.749018,-2.831510,1.928504,3.748593,-2.833066,2.112053,3.748593,-2.833066,2.112053,3.628330,-3.042198,2.070653,3.628331,-3.042199,1.728575,3.571530,-3.211422,2.070669,3.739557,-3.364163,2.112395,3.753317,-3.347221,2.112385,3.753317,-3.347221,2.112385,3.628550,-3.141216,2.070667,3.571530,-3.211422,2.070669,3.571531,-3.211424,1.728581,3.739555,-3.362091,1.928813,3.739557,-3.364163,2.112395,3.739557,-3.364163,2.112395,3.571530,-3.211422,2.070669,3.571531,-3.211424,1.728581,3.433348,-3.141863,2.070641,3.312821,-3.352823,2.112327,3.319452,-3.360900,2.112337,3.319452,-3.360900,2.112337,3.490675,-3.211690,2.070657,3.433348,-3.141863,2.070641,3.433348,-3.141865,1.728582,3.313242,-3.351264,1.928710,3.312821,-3.352823,2.112327,3.312821,-3.352823,2.112327,3.433348,-3.141863,2.070641,3.433348,-3.141865,1.728582,3.490147,-2.972639,2.070625,3.317892,-2.825771,2.111080,3.312139,-2.834072,2.111177,3.312139,-2.834072,2.111177,3.433128,-3.042845,2.070627,3.490147,-2.972639,2.070625,3.490147,-2.972640,1.728576,3.317062,-2.824746,1.927662,3.317892,-2.825771,2.111080,3.317892,-2.825771,2.111080,3.490147,-2.972639,2.070625,3.490147,-2.972640,1.728576,3.628330,-3.042198,2.070653,3.748593,-2.833066,2.112053,3.741527,-2.824458,2.112042,3.741527,-2.824458,2.112042,3.571002,-2.972371,2.070636,3.628330,-3.042198,2.070653,3.628550,-3.141216,2.070667,3.753317,-3.347221,2.112385,3.753316,-3.345149,1.928806,3.753316,-3.345149,1.928806,3.628550,-3.141218,1.728578,3.628550,-3.141216,2.070667,3.490675,-3.211690,2.070657,3.319452,-3.360900,2.112337,3.319873,-3.359341,1.928720,3.319873,-3.359341,1.928720,3.490676,-3.211692,1.728583,3.490675,-3.211690,2.070657,3.433128,-3.042845,2.070627,3.312139,-2.834072,2.111177,3.311310,-2.833046,1.927760,3.311310,-2.833046,1.927760,3.433129,-3.042846,1.728579,3.433128,-3.042845,2.070627,3.571002,-2.972371,2.070636,3.741527,-2.824458,2.112042,3.741950,-2.822902,1.928493,3.741950,-2.822902,1.928493,3.571002,-2.972372,1.728574,3.571002,-2.972371,2.070636,2.843440,-3.084278,0.208313,2.811431,-3.068041,0.208313,2.798172,-3.028841,0.208313,2.798172,-3.028841,0.208313,2.811431,-2.989642,0.208313,2.843440,-2.973405,0.208313,2.843440,-2.973405,0.208313,2.875449,-2.989642,0.208313,2.888707,-3.028841,0.208313,2.798172,-3.028841,0.208313,2.843440,-2.973405,0.208313,2.888707,-3.028841,0.208313,2.843440,-3.084278,0.208313,2.798172,-3.028841,0.208313,2.888707,-3.028841,0.208313,2.875449,-3.068041,0.208313,2.843440,-3.084278,0.208313,2.888707,-3.028841,0.208313,2.893933,-3.090678,0.400179,2.875449,-3.068041,0.208313,2.888707,-3.028841,0.208313,2.888707,-3.028841,0.208313,2.914849,-3.028841,0.400179,2.893933,-3.090678,0.400179,2.843440,-3.116292,0.400179,2.843440,-3.084278,0.208313,2.875449,-3.068041,0.208313,2.875449,-3.068041,0.208313,2.893933,-3.090678,0.400179};
			return value;
		}
		private double[] getCoordinate_7_19_point_54()
		{
			double[] value = {2.843440,-3.116292,0.400179,2.792946,-3.090678,0.400179,2.811431,-3.068041,0.208313,2.843440,-3.084278,0.208313,2.843440,-3.084278,0.208313,2.843440,-3.116292,0.400179,2.792946,-3.090678,0.400179,2.772031,-3.028841,0.400179,2.798172,-3.028841,0.208313,2.811431,-3.068041,0.208313,2.811431,-3.068041,0.208313,2.792946,-3.090678,0.400179,2.772031,-3.028841,0.400179,2.792946,-2.967005,0.400179,2.811431,-2.989642,0.208313,2.798172,-3.028841,0.208313,2.798172,-3.028841,0.208313,2.772031,-3.028841,0.400179,2.792946,-2.967005,0.400179,2.843440,-2.941391,0.400179,2.843440,-2.973405,0.208313,2.811431,-2.989642,0.208313,2.811431,-2.989642,0.208313,2.792946,-2.967005,0.400179,2.843440,-2.941391,0.400179,2.893933,-2.967005,0.400179,2.875449,-2.989642,0.208313,2.843440,-2.973405,0.208313,2.843440,-2.973405,0.208313,2.843440,-2.941391,0.400179,2.893933,-2.967005,0.400179,2.914849,-3.028841,0.400179,2.888707,-3.028841,0.208313,2.875449,-2.989642,0.208313,2.875449,-2.989642,0.208313,2.893933,-2.967005,0.400179,2.914849,-3.028841,0.400179,3.020221,-3.245336,0.967180,2.893933,-3.090678,0.400179,2.914849,-3.028841,0.400179,2.914849,-3.028841,0.400179,3.093447,-3.028842,0.967180,3.020221,-3.245336,0.967180,2.843440,-3.335011,0.967180,2.843440,-3.116292,0.400179,2.893933,-3.090678,0.400179,2.893933,-3.090678,0.400179,3.020221,-3.245336,0.967180,2.843440,-3.335011,0.967180,2.666658,-3.245336,0.967180,2.792946,-3.090678,0.400179,2.843440,-3.116292,0.400179,2.843440,-3.116292,0.400179,2.843440,-3.335011,0.967180,2.666658,-3.245336,0.967180,2.593432,-3.028841,0.967180,2.772031,-3.028841,0.400179,2.792946,-3.090678,0.400179,2.792946,-3.090678,0.400179,2.666658,-3.245336,0.967180,2.593432,-3.028841,0.967180,2.666658,-2.812347,0.967180,2.792946,-2.967005,0.400179,2.772031,-3.028841,0.400179,2.772031,-3.028841,0.400179,2.593432,-3.028841,0.967180,2.666658,-2.812347,0.967180,2.843440,-2.722672,0.967180,2.843440,-2.941391,0.400179,2.792946,-2.967005,0.400179,2.792946,-2.967005,0.400179,2.666658,-2.812347,0.967180,2.843440,-2.722672,0.967180,3.020222,-2.812347,0.967180,2.893933,-2.967005,0.400179,2.843440,-2.941391,0.400179,2.843440,-2.941391,0.400179,2.843440,-2.722672,0.967180,3.020222,-2.812347,0.967180,3.093447,-3.028842,0.967180,2.914849,-3.028841,0.400179,2.893933,-2.967005,0.400179,2.893933,-2.967005,0.400179,3.020222,-2.812347,0.967180,3.093447,-3.028842,0.967180,2.996524,-3.216315,2.662674,3.020221,-3.245336,0.967180,3.093447,-3.028842,0.967180,3.093447,-3.028842,0.967180,3.059933,-3.028841,2.662674,2.996524,-3.216315,2.662674,2.843439,-3.293969,2.662674,2.843440,-3.335011,0.967180,3.020221,-3.245336,0.967180,3.020221,-3.245336,0.967180,2.996524,-3.216315,2.662674,2.843439,-3.293969,2.662674,2.690355,-3.216315,2.662674,2.666658,-3.245336,0.967180,2.843440,-3.335011,0.967180};
			return value;
		}
		private double[] getCoordinate_7_19_point_55()
		{
			double[] value = {2.843440,-3.335011,0.967180,2.843439,-3.293969,2.662674,2.690355,-3.216315,2.662674,2.626945,-3.028841,2.662674,2.593432,-3.028841,0.967180,2.666658,-3.245336,0.967180,2.666658,-3.245336,0.967180,2.690355,-3.216315,2.662674,2.626945,-3.028841,2.662674,2.690355,-2.841368,2.662674,2.666658,-2.812347,0.967180,2.593432,-3.028841,0.967180,2.593432,-3.028841,0.967180,2.626945,-3.028841,2.662674,2.690355,-2.841368,2.662674,2.843439,-2.763714,2.662674,2.843440,-2.722672,0.967180,2.666658,-2.812347,0.967180,2.666658,-2.812347,0.967180,2.690355,-2.841368,2.662674,2.843439,-2.763714,2.662674,2.996524,-2.841368,2.662674,3.020222,-2.812347,0.967180,2.843440,-2.722672,0.967180,2.843440,-2.722672,0.967180,2.843439,-2.763714,2.662674,2.996524,-2.841368,2.662674,3.059933,-3.028841,2.662674,3.093447,-3.028842,0.967180,3.020222,-2.812347,0.967180,3.020222,-2.812347,0.967180,2.996524,-2.841368,2.662674,3.059933,-3.028841,2.662674,2.996524,-2.841368,2.662674,2.843439,-2.763714,2.662674,2.690355,-2.841368,2.662674,2.690355,-2.841368,2.662674,2.626945,-3.028841,2.662674,2.690355,-3.216315,2.662674,2.690355,-3.216315,2.662674,2.843439,-3.293969,2.662674,2.996524,-3.216315,2.662674,2.690355,-2.841368,2.662674,2.690355,-3.216315,2.662674,2.996524,-3.216315,2.662674,2.996524,-2.841368,2.662674,2.690355,-2.841368,2.662674,2.996524,-3.216315,2.662674,3.059933,-3.028841,2.662674,2.996524,-2.841368,2.662674,2.996524,-3.216315,2.662674,2.009035,-2.867744,0.208314,1.977026,-2.851507,0.208314,1.963767,-2.812308,0.208314,1.963767,-2.812308,0.208314,1.977026,-2.773108,0.208314,2.009035,-2.756871,0.208314,2.009035,-2.756871,0.208314,2.041044,-2.773108,0.208314,2.054302,-2.812308,0.208314,1.963767,-2.812308,0.208314,2.009035,-2.756871,0.208314,2.054302,-2.812308,0.208314,2.009035,-2.867744,0.208314,1.963767,-2.812308,0.208314,2.054302,-2.812308,0.208314,2.041044,-2.851507,0.208314,2.009035,-2.867744,0.208314,2.054302,-2.812308,0.208314,2.059528,-2.874144,0.400180,2.041044,-2.851507,0.208314,2.054302,-2.812308,0.208314,2.054302,-2.812308,0.208314,2.080443,-2.812308,0.400180,2.059528,-2.874144,0.400180,2.009035,-2.899758,0.400180,2.009035,-2.867744,0.208314,2.041044,-2.851507,0.208314,2.041044,-2.851507,0.208314,2.059528,-2.874144,0.400180,2.009035,-2.899758,0.400180,1.958541,-2.874144,0.400180,1.977026,-2.851507,0.208314,2.009035,-2.867744,0.208314,2.009035,-2.867744,0.208314,2.009035,-2.899758,0.400180,1.958541,-2.874144,0.400180,1.937625,-2.812308,0.400180,1.963767,-2.812308,0.208314,1.977026,-2.851507,0.208314,1.977026,-2.851507,0.208314,1.958541,-2.874144,0.400180,1.937625,-2.812308,0.400180,1.958541,-2.750471,0.400180,1.977026,-2.773108,0.208314,1.963767,-2.812308,0.208314,1.963767,-2.812308,0.208314,1.937625,-2.812308,0.400180,1.958541,-2.750471,0.400180,2.009035,-2.724857,0.400180};
			return value;
		}
		private double[] getCoordinate_7_19_point_56()
		{
			double[] value = {2.009035,-2.756871,0.208314,1.977026,-2.773108,0.208314,1.977026,-2.773108,0.208314,1.958541,-2.750471,0.400180,2.009035,-2.724857,0.400180,2.059528,-2.750471,0.400180,2.041044,-2.773108,0.208314,2.009035,-2.756871,0.208314,2.009035,-2.756871,0.208314,2.009035,-2.724857,0.400180,2.059528,-2.750471,0.400180,2.080443,-2.812308,0.400180,2.054302,-2.812308,0.208314,2.041044,-2.773108,0.208314,2.041044,-2.773108,0.208314,2.059528,-2.750471,0.400180,2.080443,-2.812308,0.400180,2.185816,-3.028802,0.967180,2.059528,-2.874144,0.400180,2.080443,-2.812308,0.400180,2.080443,-2.812308,0.400180,2.259041,-2.812308,0.967180,2.185816,-3.028802,0.967180,2.009035,-3.118477,0.967180,2.009035,-2.899758,0.400180,2.059528,-2.874144,0.400180,2.059528,-2.874144,0.400180,2.185816,-3.028802,0.967180,2.009035,-3.118477,0.967180,1.832252,-3.028802,0.967180,1.958541,-2.874144,0.400180,2.009035,-2.899758,0.400180,2.009035,-2.899758,0.400180,2.009035,-3.118477,0.967180,1.832252,-3.028802,0.967180,1.759027,-2.812308,0.967180,1.937625,-2.812308,0.400180,1.958541,-2.874144,0.400180,1.958541,-2.874144,0.400180,1.832252,-3.028802,0.967180,1.759027,-2.812308,0.967180,1.832252,-2.595813,0.967180,1.958541,-2.750471,0.400180,1.937625,-2.812308,0.400180,1.937625,-2.812308,0.400180,1.759027,-2.812308,0.967180,1.832252,-2.595813,0.967180,2.009035,-2.506139,0.967180,2.009035,-2.724857,0.400180,1.958541,-2.750471,0.400180,1.958541,-2.750471,0.400180,1.832252,-2.595813,0.967180,2.009035,-2.506139,0.967180,2.185816,-2.595814,0.967180,2.059528,-2.750471,0.400180,2.009035,-2.724857,0.400180,2.009035,-2.724857,0.400180,2.009035,-2.506139,0.967180,2.185816,-2.595814,0.967180,2.259041,-2.812308,0.967180,2.080443,-2.812308,0.400180,2.059528,-2.750471,0.400180,2.059528,-2.750471,0.400180,2.185816,-2.595814,0.967180,2.259041,-2.812308,0.967180,2.162118,-2.999781,2.662675,2.185816,-3.028802,0.967180,2.259041,-2.812308,0.967180,2.259041,-2.812308,0.967180,2.225527,-2.812308,2.662675,2.162118,-2.999781,2.662675,2.009033,-3.077435,2.662675,2.009035,-3.118477,0.967180,2.185816,-3.028802,0.967180,2.185816,-3.028802,0.967180,2.162118,-2.999781,2.662675,2.009033,-3.077435,2.662675,1.855950,-2.999781,2.662675,1.832252,-3.028802,0.967180,2.009035,-3.118477,0.967180,2.009035,-3.118477,0.967180,2.009033,-3.077435,2.662675,1.855950,-2.999781,2.662675,1.792539,-2.812308,2.662675,1.759027,-2.812308,0.967180,1.832252,-3.028802,0.967180,1.832252,-3.028802,0.967180,1.855950,-2.999781,2.662675,1.792539,-2.812308,2.662675,1.855950,-2.624834,2.662675,1.832252,-2.595813,0.967180,1.759027,-2.812308,0.967180,1.759027,-2.812308,0.967180,1.792539,-2.812308,2.662675,1.855950,-2.624834,2.662675,2.009033,-2.547180,2.662674,2.009035,-2.506139,0.967180,1.832252,-2.595813,0.967180,1.832252,-2.595813,0.967180,1.855950,-2.624834,2.662675};
			return value;
		}
		private double[] getCoordinate_7_19_point_57()
		{
			double[] value = {2.009033,-2.547180,2.662674,2.162119,-2.624834,2.662674,2.185816,-2.595814,0.967180,2.009035,-2.506139,0.967180,2.009035,-2.506139,0.967180,2.009033,-2.547180,2.662674,2.162119,-2.624834,2.662674,2.225527,-2.812308,2.662675,2.259041,-2.812308,0.967180,2.185816,-2.595814,0.967180,2.185816,-2.595814,0.967180,2.162119,-2.624834,2.662674,2.225527,-2.812308,2.662675,2.162119,-2.624834,2.662674,2.009033,-2.547180,2.662674,1.855950,-2.624834,2.662675,1.855950,-2.624834,2.662675,1.792539,-2.812308,2.662675,1.855950,-2.999781,2.662675,1.855950,-2.999781,2.662675,2.009033,-3.077435,2.662675,2.162118,-2.999781,2.662675,1.855950,-2.624834,2.662675,1.855950,-2.999781,2.662675,2.162118,-2.999781,2.662675,2.162119,-2.624834,2.662674,1.855950,-2.624834,2.662675,2.162118,-2.999781,2.662675,2.225527,-2.812308,2.662675,2.162119,-2.624834,2.662674,2.162118,-2.999781,2.662675,0.317144,-2.352418,-8.670504,0.345573,-2.412721,-8.670504,0.317144,-2.473023,-8.670504,0.317144,-2.473023,-8.670504,0.260285,-2.473023,-8.670504,0.231856,-2.412721,-8.670504,0.317144,-2.352418,-8.670504,0.317144,-2.473023,-8.670504,0.231856,-2.412721,-8.670504,0.260285,-2.352418,-8.670504,0.317144,-2.352418,-8.670504,0.231856,-2.412721,-8.670504,0.231856,-2.412721,-8.670504,0.260285,-2.473023,-8.670504,0.260285,-2.456996,-6.782321,0.260285,-2.456996,-6.782321,0.231856,-2.412721,-6.826245,0.231856,-2.412721,-8.670504,0.260285,-2.473023,-8.670504,0.317144,-2.473023,-8.670504,0.317144,-2.456996,-6.782321,0.317144,-2.456996,-6.782321,0.260285,-2.456996,-6.782321,0.260285,-2.473023,-8.670504,0.317144,-2.473023,-8.670504,0.345573,-2.412721,-8.670504,0.345573,-2.412721,-6.826245,0.345573,-2.412721,-6.826245,0.317144,-2.456996,-6.782321,0.317144,-2.473023,-8.670504,0.345573,-2.412721,-8.670504,0.317144,-2.352418,-8.670504,0.317144,-2.352418,-6.826245,0.317144,-2.352418,-6.826245,0.345573,-2.412721,-6.826245,0.345573,-2.412721,-8.670504,0.317144,-2.352418,-8.670504,0.260285,-2.352418,-8.670504,0.260285,-2.352418,-6.826245,0.260285,-2.352418,-6.826245,0.317144,-2.352418,-6.826245,0.317144,-2.352418,-8.670504,0.260285,-2.352418,-8.670504,0.231856,-2.412721,-8.670504,0.231856,-2.412721,-6.826245,0.231856,-2.412721,-6.826245,0.260285,-2.352418,-6.826245,0.260285,-2.352418,-8.670504,-0.596938,-2.130744,-4.973959,0.615979,-2.130745,-4.973959,-0.561222,-1.993281,-4.973656,-0.349087,-1.693854,-5.217015,-0.332262,-1.910429,-5.342647,0.326259,-1.911768,-5.342647,-0.332262,-1.910429,-5.342647,-0.484738,-2.024787,-5.529623,0.326259,-1.911768,-5.342647,-0.834659,-3.649920,-2.974041,0.0,-3.649920,-2.974041,-0.782448,-3.619617,-2.398809,-0.782448,-3.619617,-2.398809,-0.004851,-3.637137,-2.398811,-0.004851,-3.638053,-0.389735,-0.782692,-3.619909,-2.266954,-0.782448,-3.619617,-2.398809,-0.004851,-3.638053,-0.389735,-0.786165,-3.624061,-0.389735,-0.782692,-3.619909,-2.266954,-0.004851,-3.638053,-0.389735};
			return value;
		}
		private double[] getCoordinate_7_19_point_58()
		{
			double[] value = {-0.824186,-3.199404,-2.398809,-0.784477,-3.599194,-2.398809,-0.782692,-3.619909,-2.266954,-0.824186,-3.199404,-2.398809,-0.782692,-3.619909,-2.266954,-0.786165,-3.624061,-0.389735,-0.824186,-3.199404,-2.398809,-0.786165,-3.624061,-0.389735,-0.827988,-3.199405,-0.389735,-0.784477,-3.599194,-2.398809,-0.782448,-3.619617,-2.398809,-0.782692,-3.619909,-2.266954,-0.834659,-3.649920,-2.974041,-0.841305,-3.579011,-2.973712,-0.834659,-3.649920,-3.590298,-0.813867,-3.649920,-3.870911,-0.580813,-3.649463,-4.493498,0.0,-3.648206,-4.493498,0.0,-3.648206,-4.493498,0.0,-3.649920,-3.870911,-0.813867,-3.649920,-3.870911,0.872904,-3.181650,-4.491430,0.791733,-3.649920,-4.493498,0.707739,-3.462821,-5.441806,0.707739,-3.462821,-5.441806,0.793070,-3.181649,-5.440564,0.872904,-3.181650,-4.491430,0.703120,-3.669391,-6.180140,0.374732,-3.648143,-6.837363,0.584714,-3.433460,-6.102054,0.777004,-3.970418,-5.479787,0.781375,-3.786276,-4.736722,0.728516,-3.759801,-4.714262,0.728516,-3.759801,-4.714262,0.495211,-3.946051,-5.478987,0.777004,-3.970418,-5.479787,0.694810,-4.265223,-6.173607,0.776279,-4.242324,-5.522969,0.539308,-4.242229,-5.522646,0.539308,-4.242229,-5.522646,0.470051,-4.265129,-6.176409,0.694810,-4.265223,-6.173607,0.558725,-4.242046,-6.545910,0.694810,-4.265223,-6.173607,0.470051,-4.265129,-6.176409,0.470051,-4.265129,-6.176409,0.401162,-4.242759,-6.618364,0.558725,-4.242046,-6.545910,0.791733,-3.649920,-4.493498,0.728516,-3.759801,-4.714262,0.781375,-3.786276,-4.736722,0.374732,-3.648143,-6.837363,0.559006,-3.875084,-6.566073,0.398848,-3.874491,-6.587746,0.470051,-4.265129,-6.176409,0.539308,-4.242229,-5.522646,0.495211,-3.946051,-5.478987,0.495211,-3.946051,-5.478987,0.416663,-3.965506,-6.160804,0.470051,-4.265129,-6.176409,0.401162,-4.242759,-6.618364,0.470051,-4.265129,-6.176409,0.416663,-3.965506,-6.160804,0.416663,-3.965506,-6.160804,0.398848,-3.874491,-6.587746,0.401162,-4.242759,-6.618364,0.776279,-4.242324,-5.522969,0.694810,-4.265223,-6.173607,0.696108,-3.967872,-6.173575,0.696108,-3.967872,-6.173575,0.777004,-3.970418,-5.479787,0.776279,-4.242324,-5.522969,0.694810,-4.265223,-6.173607,0.558725,-4.242046,-6.545910,0.559006,-3.875084,-6.566073,0.559006,-3.875084,-6.566073,0.696108,-3.967872,-6.173575,0.694810,-4.265223,-6.173607,0.539308,-4.242229,-5.522646,0.776279,-4.242324,-5.522969,0.777004,-3.970418,-5.479787,0.777004,-3.970418,-5.479787,0.495211,-3.946051,-5.478987,0.539308,-4.242229,-5.522646,0.558725,-4.242046,-6.545910,0.401162,-4.242759,-6.618364,0.398848,-3.874491,-6.587746,0.398848,-3.874491,-6.587746,0.559006,-3.875084,-6.566073,0.558725,-4.242046,-6.545910,-0.632437,-1.901539,-4.036559,-0.595308,-1.638179,-4.419702,-0.623524,-1.856153,-4.485774,-0.623524,-1.856153,-4.485774,-0.622443,-1.948652,-4.499869,-0.632437,-1.901539,-4.036559,-0.632437,-1.901539,-4.036559,-0.677106,-1.729706,-3.778974,-0.605842,-1.715205,-3.941298,-0.605842,-1.715205,-3.941298};
			return value;
		}
		private double[] getCoordinate_7_19_point_59()
		{
			double[] value = {-0.595308,-1.638179,-4.419702,-0.632437,-1.901539,-4.036559,-0.561222,-1.993281,-4.973656,-0.596938,-2.130744,-4.973959,-0.689085,-2.101398,-4.502603,-0.332262,-1.910429,-5.342647,-0.484738,-2.024787,-5.529623,-0.561222,-1.993281,-4.973656,-0.561222,-1.993281,-4.973656,-0.543072,-1.912490,-4.957348,-0.332262,-1.910429,-5.342647,-0.543072,-1.912490,-4.957348,-0.349087,-1.693854,-5.217015,-0.332262,-1.910429,-5.342647,-0.412225,0.923303,14.071442,-0.412225,1.065227,13.989502,-0.412225,1.065227,13.825622,-0.412225,1.065227,13.825622,-0.412224,0.923303,13.743683,-0.412224,0.781379,13.825622,-0.412225,0.923303,14.071442,-0.412225,1.065227,13.825622,-0.412224,0.781379,13.825622,-0.412225,0.781379,13.989502,-0.412225,0.923303,14.071442,-0.412224,0.781379,13.825622};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_7_20_vector_1()
		{
			double[] value = {-0.973650,-0.210956,0.086616,-0.980963,-0.139573,0.135024,-0.639376,-0.726191,0.252678,-0.639376,-0.726191,0.252678,-0.618300,-0.768189,0.166107,-0.973650,-0.210956,0.086616,-0.915169,0.388625,0.106940,-0.957205,0.287912,0.029427,-0.594797,0.803816,0.009756,-0.594797,0.803816,0.009756,-0.507315,0.859537,0.061860,-0.915169,0.388625,0.106940,-0.965202,-0.250122,0.076318,-0.973650,-0.210956,0.086616,-0.618300,-0.768189,0.166107,-0.618300,-0.768189,0.166107,-0.678257,-0.720774,0.143010,-0.965202,-0.250122,0.076318,-0.957205,0.287912,0.029427,-0.954957,0.294320,0.037843,-0.783790,0.604566,-0.142033,-0.783790,0.604566,-0.142033,-0.594797,0.803816,0.009756,-0.957205,0.287912,0.029427,-0.678257,-0.720774,0.143010,-0.579517,-0.644522,0.498750,-0.717690,-0.425460,0.551276,-0.678257,-0.720774,0.143010,-0.717690,-0.425460,0.551276,-0.965432,-0.243189,0.093808,-0.678257,-0.720774,0.143010,-0.965432,-0.243189,0.093808,-0.957811,-0.271167,0.095217,-0.678257,-0.720774,0.143010,-0.957811,-0.271167,0.095217,-0.965202,-0.250122,0.076318,-0.618300,-0.768189,0.166107,-0.639376,-0.726191,0.252678,-0.002388,-0.965400,0.260762,-0.002388,-0.965400,0.260762,0.0,-0.983977,0.178297,-0.618300,-0.768189,0.166107,-0.678257,-0.720774,0.143010,-0.618300,-0.768189,0.166107,0.0,-0.983977,0.178297,0.0,-0.983977,0.178297,0.0,-0.984429,0.175783,-0.678257,-0.720774,0.143010,-0.579517,-0.644522,0.498750,-0.678257,-0.720774,0.143010,0.0,-0.984429,0.175783,0.0,-0.984429,0.175783,0.000008,-0.875849,0.482585,-0.579517,-0.644522,0.498750,-0.717690,-0.425460,0.551276,-0.579517,-0.644522,0.498750,0.000008,-0.875849,0.482585,0.000008,-0.875849,0.482585,0.000109,-0.538960,0.842331,-0.717690,-0.425460,0.551276,-0.605191,0.782185,0.148088,0.0,0.980943,0.194295,-0.000002,0.955365,-0.295429,-0.000002,0.955365,-0.295429,-0.684189,0.698204,-0.210705,-0.605191,0.782185,0.148088,-0.594797,0.803816,0.009756,-0.783790,0.604566,-0.142033,0.000030,0.953566,-0.301184,0.000030,0.953566,-0.301184,0.000007,0.999994,-0.003323,-0.594797,0.803816,0.009756,-0.507315,0.859537,0.061860,-0.594797,0.803816,0.009756,0.000007,0.999994,-0.003323,0.000007,0.999994,-0.003323,0.0,0.999873,0.015928,-0.507315,0.859537,0.061860,-0.996315,-0.062079,0.059175,-0.676171,-0.439707,0.591144,-0.549595,0.246800,0.798145,-0.783790,0.604566,-0.142033,-0.986509,0.163388,-0.010227,-0.998363,0.056009,-0.011597,-0.783790,0.604566,-0.142033,-0.998363,0.056009,-0.011597,-0.994654,0.098688,0.030390,-0.783790,0.604566,-0.142033,-0.994654,0.098688,0.030390,-0.773095,0.510263,-0.376769,0.000109,-0.538960,0.842331,0.000167,0.290144,0.956983,-0.549595,0.246800,0.798145,0.000109,-0.538960,0.842331,-0.549595,0.246800,0.798145,-0.676171,-0.439707,0.591144,0.000109,-0.538960,0.842331,-0.676171,-0.439707,0.591144,-0.717690,-0.425460,0.551276,-0.773095,0.510263,-0.376769};
			return value;
		}
		private double[] getNormal_7_20_vector_2()
		{
			double[] value = {0.000018,0.783765,-0.621058,0.000030,0.953566,-0.301184,0.000030,0.953566,-0.301184,-0.783790,0.604566,-0.142033,-0.773095,0.510263,-0.376769,-0.684189,0.698204,-0.210705,-0.000002,0.955365,-0.295429,0.000018,0.783765,-0.621058,0.000018,0.783765,-0.621058,-0.773095,0.510263,-0.376769,-0.684189,0.698204,-0.210705,-0.605191,0.782185,0.148088,-0.684189,0.698204,-0.210705,-0.773095,0.510263,-0.376769,-0.773095,0.510263,-0.376769,-0.994654,0.098688,0.030390,-0.605191,0.782185,0.148088,0.0,0.980943,0.194295,-0.605191,0.782185,0.148088,-0.549595,0.246800,0.798145,-0.549595,0.246800,0.798145,0.000167,0.290144,0.956983,0.0,0.980943,0.194295,-0.986509,0.163388,-0.010227,-0.783790,0.604566,-0.142033,-0.954957,0.294320,0.037843,-0.956202,0.264037,0.126340,-0.991463,0.122860,0.043661,-0.957205,0.287912,0.029427,-0.957205,0.287912,0.029427,-0.915169,0.388625,0.106940,-0.956202,0.264037,0.126340,-0.991463,0.122860,0.043661,-0.998887,-0.008008,0.046473,-0.995610,0.086909,0.034753,-0.991463,0.122860,0.043661,-0.995610,0.086909,0.034753,-0.954957,0.294320,0.037843,-0.991463,0.122860,0.043661,-0.954957,0.294320,0.037843,-0.957205,0.287912,0.029427,-0.998239,0.011471,0.058198,-0.986497,0.085488,0.139695,-0.980963,-0.139573,0.135024,-0.980963,-0.139573,0.135024,-0.973650,-0.210956,0.086616,-0.998239,0.011471,0.058198,-0.991463,0.122860,0.043661,-0.956202,0.264037,0.126340,-0.986497,0.085488,0.139695,-0.986497,0.085488,0.139695,-0.998239,0.011471,0.058198,-0.991463,0.122860,0.043661,-0.998887,-0.008008,0.046473,-0.991463,0.122860,0.043661,-0.998239,0.011471,0.058198,-0.998239,0.011471,0.058198,-0.965202,-0.250122,0.076318,-0.998887,-0.008008,0.046473,-0.965202,-0.250122,0.076318,-0.998239,0.011471,0.058198,-0.973650,-0.210956,0.086616,-0.957811,-0.271167,0.095217,-0.997747,-0.019154,0.064290,-0.998887,-0.008008,0.046473,-0.998887,-0.008008,0.046473,-0.965202,-0.250122,0.076318,-0.957811,-0.271167,0.095217,-0.986509,0.163388,-0.010227,-0.996315,-0.062079,0.059175,-0.998902,-0.010447,0.045668,-0.998902,-0.010447,0.045668,-0.998363,0.056009,-0.011597,-0.986509,0.163388,-0.010227,-0.994654,0.098688,0.030390,-0.549595,0.246800,0.798145,-0.605191,0.782185,0.148088,-0.853476,0.517541,0.061080,-0.941400,0.328322,0.077271,-0.908314,0.391847,0.146362,-0.908314,0.391847,0.146362,-0.904957,0.383372,0.184605,-0.853476,0.517541,0.061080,-0.002388,-0.965400,0.260762,-0.639376,-0.726191,0.252678,-0.660784,-0.679789,0.318200,-0.660784,-0.679789,0.318200,-0.006209,-0.941020,0.338293,-0.002388,-0.965400,0.260762,-0.941400,0.328322,0.077271,-0.983416,0.174326,0.050035,-0.955244,0.272060,0.116155,-0.955244,0.272060,0.116155,-0.908314,0.391847,0.146362,-0.941400,0.328322,0.077271,-0.993856,-0.083837,0.072265,-0.670518,-0.726179,0.151886,-0.660784,-0.679789,0.318200,-0.980963,-0.139573,0.135024,-0.986497,0.085488,0.139695};
			return value;
		}
		private double[] getNormal_7_20_vector_3()
		{
			double[] value = {-0.985662,0.052412,0.160384,-0.986497,0.085488,0.139695,-0.956202,0.264037,0.126340,-0.928517,0.319739,0.188740,-0.986497,0.085488,0.139695,-0.928517,0.319739,0.188740,-0.955244,0.272060,0.116155,-0.986497,0.085488,0.139695,-0.955244,0.272060,0.116155,-0.985662,0.052412,0.160384,-0.985662,0.052412,0.160384,-0.955244,0.272060,0.116155,-0.983416,0.174326,0.050035,-0.983416,0.174326,0.050035,-0.995212,0.068643,0.069586,-0.985662,0.052412,0.160384,-0.853476,0.517541,0.061080,-0.876941,0.455990,0.151813,-0.766779,0.641693,0.016748,-0.766779,0.641693,0.016748,-0.857172,0.515025,0.002402,-0.853476,0.517541,0.061080,-0.003811,-0.984908,0.173037,-0.670518,-0.726179,0.151886,-0.685905,-0.727687,-0.002602,-0.685905,-0.727687,-0.002602,-0.000103,-1.0,0.000323,-0.003811,-0.984908,0.173037,-0.941400,0.328322,0.077271,-0.853476,0.517541,0.061080,-0.857172,0.515025,0.002402,-0.857172,0.515025,0.002402,-0.952917,0.303231,0.000364,-0.941400,0.328322,0.077271,-0.993856,-0.083837,0.072265,-0.993651,-0.087535,0.070683,-0.997605,-0.069078,0.003595,-0.997605,-0.069078,0.003595,-0.996235,-0.086674,-0.001585,-0.993856,-0.083837,0.072265,-0.997605,-0.069078,0.003595,-0.993651,-0.087535,0.070683,-0.995553,-0.067303,0.065906,-0.995553,-0.067303,0.065906,-0.999168,-0.040417,0.005461,-0.997605,-0.069078,0.003595,-0.997516,0.069586,0.010952,-0.995212,0.068643,0.069586,-0.983416,0.174326,0.050035,-0.983416,0.174326,0.050035,-0.987958,0.154680,0.003617,-0.997516,0.069586,0.010952,-0.857172,0.515025,0.002402,-0.766779,0.641693,0.016748,-0.742007,0.669658,-0.031371,-0.742007,0.669658,-0.031371,-0.852221,0.522661,-0.023348,-0.857172,0.515025,0.002402,-0.000103,-1.0,0.000323,-0.685905,-0.727687,-0.002602,-0.680404,-0.732826,-0.004041,-0.680404,-0.732826,-0.004041,0.000114,-0.999994,-0.003385,-0.000103,-1.0,0.000323,-0.921324,0.388797,0.000323,-0.952513,0.304499,0.000199,-0.952917,0.303231,0.000364,-0.921324,0.388797,0.000323,-0.952917,0.303231,0.000364,-0.857172,0.515025,0.002402,-0.921324,0.388797,0.000323,-0.857172,0.515025,0.002402,-0.852221,0.522661,-0.023348,-0.996235,-0.086674,-0.001585,-0.997605,-0.069078,0.003595,-0.997396,-0.072101,-0.001297,-0.997396,-0.072101,-0.001297,-0.995384,-0.095953,-0.002108,-0.996235,-0.086674,-0.001585,-0.995384,-0.095953,-0.002108,-0.997396,-0.072101,-0.001297,-0.997930,-0.062488,0.015183,-0.997930,-0.062488,0.015183,-0.995035,-0.092043,0.037864,-0.995384,-0.095953,-0.002108,-0.997396,-0.072101,-0.001297,-0.998905,0.046774,0.0,-0.999162,0.039665,-0.010054,-0.999162,0.039665,-0.010054,-0.997930,-0.062488,0.015183,-0.997396,-0.072101,-0.001297,-0.806879,0.590710,0.002596,-0.512936,0.857806,-0.032640,-0.378637,0.924223,-0.049460,-0.378637,0.924223,-0.049460,-0.814547,0.579647,-0.022862,-0.806879,0.590710,0.002596,-0.736525,0.676391,0.005028,-0.806879,0.590710,0.002596,-0.921162,0.389180,0.000233};
			return value;
		}
		private double[] getNormal_7_20_vector_4()
		{
			double[] value = {-0.941400,0.328322,0.077271,-0.952917,0.303231,0.000364,-0.987958,0.154680,0.003617,-0.987958,0.154680,0.003617,-0.983416,0.174326,0.050035,-0.941400,0.328322,0.077271,-0.978197,0.207676,-0.000716,-0.986608,0.163108,-0.000260,-0.987958,0.154680,0.003617,-0.978197,0.207676,-0.000716,-0.987958,0.154680,0.003617,-0.952917,0.303231,0.000364,-0.978197,0.207676,-0.000716,-0.952917,0.303231,0.000364,-0.952513,0.304499,0.000199,-0.977439,0.211218,0.000671,-0.985907,0.166898,-0.011491,-0.988559,0.150835,-0.000437,-0.880040,0.449737,0.152535,-0.915169,0.388625,0.106940,-0.507315,0.859537,0.061860,-0.507315,0.859537,0.061860,-0.645016,0.725395,0.240325,-0.880040,0.449737,0.152535,0.0,0.999873,0.015928,0.0,0.942821,0.333300,-0.099094,0.946579,0.306868,0.0,0.999873,0.015928,-0.099094,0.946579,0.306868,-0.645016,0.725395,0.240325,0.0,0.999873,0.015928,-0.645016,0.725395,0.240325,-0.507315,0.859537,0.061860,-0.928517,0.319739,0.188740,-0.956202,0.264037,0.126340,-0.915169,0.388625,0.106940,-0.915169,0.388625,0.106940,-0.880040,0.449737,0.152535,-0.928517,0.319739,0.188740,-0.908314,0.391847,0.146362,-0.880040,0.449737,0.152535,-0.645016,0.725395,0.240325,-0.645016,0.725395,0.240325,-0.904957,0.383372,0.184605,-0.908314,0.391847,0.146362,-0.955244,0.272060,0.116155,-0.928517,0.319739,0.188740,-0.880040,0.449737,0.152535,-0.880040,0.449737,0.152535,-0.908314,0.391847,0.146362,-0.955244,0.272060,0.116155,-0.950672,0.309828,-0.015160,-0.814547,0.579647,-0.022862,-0.835726,0.545339,-0.064555,-0.835726,0.545339,-0.064555,-0.957409,0.277599,-0.079422,-0.950672,0.309828,-0.015160,-0.814547,0.579647,-0.022862,-0.378637,0.924223,-0.049460,-0.382628,0.918905,-0.095964,-0.382628,0.918905,-0.095964,-0.835726,0.545339,-0.064555,-0.814547,0.579647,-0.022862,-0.378637,0.924223,-0.049460,-0.040418,0.996736,-0.069886,0.008875,0.992559,-0.121440,0.008875,0.992559,-0.121440,-0.382628,0.918905,-0.095964,-0.378637,0.924223,-0.049460,0.871691,0.487193,0.052902,0.583796,0.811855,0.008636,0.633111,0.766460,0.108211,0.633111,0.766460,0.108211,0.920210,0.340527,0.193013,0.871691,0.487193,0.052902,-0.999162,0.039665,-0.010054,-0.985907,0.166898,-0.011491,-0.985221,0.149291,-0.083970,-0.985221,0.149291,-0.083970,-0.996970,0.057483,-0.052399,-0.999162,0.039665,-0.010054,-0.985907,0.166898,-0.011491,-0.950672,0.309828,-0.015160,-0.957409,0.277599,-0.079422,-0.957409,0.277599,-0.079422,-0.985221,0.149291,-0.083970,-0.985907,0.166898,-0.011491,-0.957409,0.277599,-0.079422,-0.835726,0.545339,-0.064555,-0.864952,0.495030,-0.082482,-0.864952,0.495030,-0.082482,-0.961175,0.244628,-0.127671,-0.957409,0.277599,-0.079422,-0.835726,0.545339,-0.064555,-0.382628,0.918905,-0.095964,-0.435348,0.891885,-0.122530,-0.435348,0.891885,-0.122530,-0.864952,0.495030,-0.082482,-0.835726,0.545339,-0.064555,-0.382628,0.918905,-0.095964};
			return value;
		}
		private double[] getNormal_7_20_vector_5()
		{
			double[] value = {0.008875,0.992559,-0.121440,0.0,0.985477,-0.169807,0.0,0.985477,-0.169807,-0.435348,0.891885,-0.122530,-0.382628,0.918905,-0.095964,0.920210,0.340527,0.193013,0.633111,0.766460,0.108211,0.004957,0.909917,0.414760,0.004957,0.909917,0.414760,0.869907,0.372333,0.323466,0.920210,0.340527,0.193013,-0.996970,0.057483,-0.052399,-0.985221,0.149291,-0.083970,-0.980610,0.129143,-0.147401,-0.980610,0.129143,-0.147401,-0.944460,0.064964,-0.322142,-0.996970,0.057483,-0.052399,-0.985221,0.149291,-0.083970,-0.957409,0.277599,-0.079422,-0.961175,0.244628,-0.127671,-0.961175,0.244628,-0.127671,-0.980610,0.129143,-0.147401,-0.985221,0.149291,-0.083970,0.000328,0.265048,-0.964235,0.000328,0.265048,-0.964235,0.0,0.265064,-0.964231,0.000328,0.265048,-0.964235,0.0,0.265064,-0.964231,0.0,0.265064,-0.964231,0.000328,0.265048,-0.964235,0.0,0.265064,-0.964231,0.000328,0.265048,-0.964235,0.000328,0.265048,-0.964235,0.000328,0.265048,-0.964235,0.000328,0.265048,-0.964235,0.000328,0.265048,-0.964235,0.000328,0.265048,-0.964235,0.000328,0.265048,-0.964235,0.000328,0.265048,-0.964235,0.000328,0.265048,-0.964235,0.000328,0.265048,-0.964235,0.000328,0.265048,-0.964235,0.000328,0.265048,-0.964235,0.000328,0.265048,-0.964235,0.000235,0.979165,-0.203068,-0.000345,0.979189,-0.202952,0.000076,0.979207,-0.202865,0.000076,0.979207,-0.202865,-0.230271,0.810361,-0.538786,0.000235,0.979165,-0.203068,0.000604,0.978735,-0.205127,0.000235,0.979165,-0.203068,-0.230271,0.810361,-0.538786,-0.997930,-0.062488,0.015183,-0.999162,0.039665,-0.010054,-0.996970,0.057483,-0.052399,-0.996970,0.057483,-0.052399,-0.999802,-0.019885,-0.000297,-0.997930,-0.062488,0.015183,-0.999802,-0.019885,-0.000297,-0.996970,0.057483,-0.052399,-0.944460,0.064964,-0.322142,-0.999802,-0.019885,-0.000297,-0.944460,0.064964,-0.322142,-0.918283,0.049923,-0.392764,-0.999802,-0.019885,-0.000297,-0.918283,0.049923,-0.392764,-0.984724,0.041814,-0.169031,-0.918283,0.049923,-0.392764,-0.944460,0.064964,-0.322142,-0.718145,0.175068,-0.673512,-0.718145,0.175068,-0.673512,-0.723643,0.059776,-0.687581,-0.918283,0.049923,-0.392764,-0.984724,0.041814,-0.169031,-0.918283,0.049923,-0.392764,-0.723643,0.059776,-0.687581,-0.723643,0.059776,-0.687581,-0.923912,0.208476,-0.320820,-0.984724,0.041814,-0.169031,0.150623,0.465439,-0.872169,0.055875,0.249712,-0.966707,-0.058973,0.243555,-0.968093,-0.058973,0.243555,-0.968093,-0.150005,0.462048,-0.874077,0.150623,0.465439,-0.872169,-0.150005,0.462048,-0.874077,-0.058973,0.243555,-0.968093,-0.189866,0.186668,-0.963901,-0.189866,0.186668,-0.963901,-0.451963,0.309196,-0.836736,-0.150005,0.462048,-0.874077,-0.451963,0.309196,-0.836736,-0.189866,0.186668,-0.963901,-0.228757,0.101038,-0.968226,-0.228757,0.101038,-0.968226,-0.564841,0.138998,-0.813409,-0.451963,0.309196,-0.836736,-0.564841,0.138998,-0.813409,-0.228757,0.101038,-0.968226};
			return value;
		}
		private double[] getNormal_7_20_vector_6()
		{
			double[] value = {-0.267502,-0.155073,-0.950997,-0.267502,-0.155073,-0.950997,-0.542653,-0.153244,-0.825859,-0.564841,0.138998,-0.813409,0.150623,0.465439,-0.872169,-0.150005,0.462048,-0.874077,-0.278221,0.655623,-0.701963,-0.278221,0.655623,-0.701963,0.278222,0.655623,-0.701962,0.150623,0.465439,-0.872169,-0.150005,0.462048,-0.874077,-0.451963,0.309196,-0.836736,-0.708362,0.407998,-0.575987,-0.708362,0.407998,-0.575987,-0.278221,0.655623,-0.701963,-0.150005,0.462048,-0.874077,-0.451963,0.309196,-0.836736,-0.564841,0.138998,-0.813409,-0.865466,0.162162,-0.473996,-0.865466,0.162162,-0.473996,-0.708362,0.407998,-0.575987,-0.451963,0.309196,-0.836736,-0.564841,0.138998,-0.813409,-0.542653,-0.153244,-0.825859,-0.855848,-0.073373,-0.511997,-0.855848,-0.073373,-0.511997,-0.865466,0.162162,-0.473996,-0.564841,0.138998,-0.813409,0.278222,0.655623,-0.701962,-0.278221,0.655623,-0.701963,-0.308734,0.834065,-0.457186,-0.308734,0.834065,-0.457186,0.308736,0.834064,-0.457186,0.278222,0.655623,-0.701962,-0.278221,0.655623,-0.701963,-0.708362,0.407998,-0.575987,-0.796501,0.515555,-0.315895,-0.796501,0.515555,-0.315895,-0.308734,0.834065,-0.457186,-0.278221,0.655623,-0.701963,-0.708362,0.407998,-0.575987,-0.865466,0.162162,-0.473996,-0.965762,0.189725,-0.176940,-0.965762,0.189725,-0.176940,-0.796501,0.515555,-0.315895,-0.708362,0.407998,-0.575987,-0.865466,0.162162,-0.473996,-0.855848,-0.073373,-0.511997,-0.988916,0.067091,-0.132455,-0.988916,0.067091,-0.132455,-0.965762,0.189725,-0.176940,-0.865466,0.162162,-0.473996,0.197761,0.196481,-0.960357,0.244884,0.105027,-0.963847,-0.228757,0.101038,-0.968226,-0.228757,0.101038,-0.968226,-0.189866,0.186668,-0.963901,0.197761,0.196481,-0.960357,0.244884,0.105027,-0.963847,0.278113,-0.158295,-0.947415,-0.267502,-0.155073,-0.950997,-0.267502,-0.155073,-0.950997,-0.228757,0.101038,-0.968226,0.244884,0.105027,-0.963847,0.308736,0.834064,-0.457186,-0.308734,0.834065,-0.457186,-0.262465,0.959107,-0.105954,-0.262465,0.959107,-0.105954,0.262466,0.959106,-0.105954,0.308736,0.834064,-0.457186,-0.308734,0.834065,-0.457186,-0.796501,0.515555,-0.315895,-0.735018,0.671889,-0.091174,-0.735018,0.671889,-0.091174,-0.262465,0.959107,-0.105954,-0.308734,0.834065,-0.457186,-0.796501,0.515555,-0.315895,-0.965762,0.189725,-0.176940,-0.959831,0.274798,-0.056667,-0.959831,0.274798,-0.056667,-0.735018,0.671889,-0.091174,-0.796501,0.515555,-0.315895,-0.965762,0.189725,-0.176940,-0.988916,0.067091,-0.132455,-0.976465,0.187612,-0.106390,-0.976465,0.187612,-0.106390,-0.959831,0.274798,-0.056667,-0.965762,0.189725,-0.176940,0.262466,0.959106,-0.105954,-0.262465,0.959107,-0.105954,-0.193925,0.970694,-0.141940,-0.193925,0.970694,-0.141940,0.196119,0.970811,-0.138073,0.262466,0.959106,-0.105954,-0.262465,0.959107,-0.105954,-0.735018,0.671889,-0.091174,-0.802539,0.596599,-0.001137,-0.802539,0.596599,-0.001137,-0.193925,0.970694,-0.141940,-0.262465,0.959107,-0.105954};
			return value;
		}
		private double[] getNormal_7_20_vector_7()
		{
			double[] value = {-0.735018,0.671889,-0.091174,-0.959831,0.274798,-0.056667,-0.945440,0.322140,-0.048671,-0.945440,0.322140,-0.048671,-0.802539,0.596599,-0.001137,-0.735018,0.671889,-0.091174,-0.959831,0.274798,-0.056667,-0.976465,0.187612,-0.106390,-0.921574,0.369931,-0.117698,-0.921574,0.369931,-0.117698,-0.945440,0.322140,-0.048671,-0.959831,0.274798,-0.056667,0.220187,0.893841,-0.390598,0.125739,0.847631,-0.515473,-0.125625,0.848579,-0.513938,-0.125625,0.848579,-0.513938,-0.225392,0.894784,-0.385436,0.220187,0.893841,-0.390598,-0.225392,0.894784,-0.385436,-0.125625,0.848579,-0.513938,-0.305752,0.668689,-0.677770,-0.305752,0.668689,-0.677770,-0.561361,0.675657,-0.477872,-0.225392,0.894784,-0.385436,-0.561361,0.675657,-0.477872,-0.305752,0.668689,-0.677770,-0.407423,0.515469,-0.753856,-0.407423,0.515469,-0.753856,-0.838673,0.357315,-0.411040,-0.561361,0.675657,-0.477872,-0.838673,0.357315,-0.411040,-0.407423,0.515469,-0.753856,-0.366266,0.724288,-0.584172,-0.366266,0.724288,-0.584172,-0.790160,-0.364242,0.492925,-0.838673,0.357315,-0.411040,0.220187,0.893841,-0.390598,-0.225392,0.894784,-0.385436,-0.283429,0.922523,-0.261955,-0.283429,0.922523,-0.261955,0.284025,0.921771,-0.263947,0.220187,0.893841,-0.390598,-0.225392,0.894784,-0.385436,-0.561361,0.675657,-0.477872,-0.710151,0.642901,-0.286992,-0.710151,0.642901,-0.286992,-0.283429,0.922523,-0.261955,-0.225392,0.894784,-0.385436,-0.561361,0.675657,-0.477872,-0.838673,0.357315,-0.411040,-0.896689,0.295683,-0.329425,-0.896689,0.295683,-0.329425,-0.710151,0.642901,-0.286992,-0.561361,0.675657,-0.477872,-0.934464,0.162135,-0.316999,-0.896689,0.295683,-0.329425,-0.838673,0.357315,-0.411040,0.284025,0.921771,-0.263947,-0.283429,0.922523,-0.261955,-0.331335,0.943153,0.026070,-0.331335,0.943153,0.026070,0.331336,0.943153,0.026070,0.284025,0.921771,-0.263947,-0.283429,0.922523,-0.261955,-0.710151,0.642901,-0.286992,-0.790568,0.611959,-0.022553,-0.790568,0.611959,-0.022553,-0.331335,0.943153,0.026070,-0.283429,0.922523,-0.261955,-0.710151,0.642901,-0.286992,-0.896689,0.295683,-0.329425,-0.998662,-0.046026,0.023578,-0.998662,-0.046026,0.023578,-0.790568,0.611959,-0.022553,-0.710151,0.642901,-0.286992,-0.896689,0.295683,-0.329425,-0.934464,0.162135,-0.316999,-0.984988,-0.167762,-0.040670,-0.984988,-0.167762,-0.040670,-0.998662,-0.046026,0.023578,-0.896689,0.295683,-0.329425,0.304491,0.667434,-0.679571,0.402642,0.522229,-0.751769,-0.407423,0.515469,-0.753856,-0.407423,0.515469,-0.753856,-0.305752,0.668689,-0.677770,0.304491,0.667434,-0.679571,0.402642,0.522229,-0.751769,0.367681,0.731986,-0.573592,-0.366266,0.724288,-0.584172,-0.366266,0.724288,-0.584172,-0.407423,0.515469,-0.753856,0.402642,0.522229,-0.751769,0.331336,0.943153,0.026070,-0.331335,0.943153,0.026070,-0.183352,0.927566,0.325582,-0.183352,0.927566,0.325582,0.192241,0.928522,0.317634,0.331336,0.943153,0.026070,-0.331335,0.943153,0.026070};
			return value;
		}
		private double[] getNormal_7_20_vector_8()
		{
			double[] value = {-0.790568,0.611959,-0.022553,-0.805231,0.585306,0.094974,-0.805231,0.585306,0.094974,-0.183352,0.927566,0.325582,-0.331335,0.943153,0.026070,-0.790568,0.611959,-0.022553,-0.998662,-0.046026,0.023578,-0.872537,-0.426995,0.237390,-0.872537,-0.426995,0.237390,-0.805231,0.585306,0.094974,-0.790568,0.611959,-0.022553,-0.998662,-0.046026,0.023578,-0.984988,-0.167762,-0.040670,-0.161641,-0.954072,0.252229,-0.161641,-0.954072,0.252229,-0.872537,-0.426995,0.237390,-0.998662,-0.046026,0.023578,-0.790160,-0.364242,0.492925,-0.366266,0.724288,-0.584172,-0.193925,0.970694,-0.141940,-0.193925,0.970694,-0.141940,-0.802539,0.596599,-0.001137,-0.790160,-0.364242,0.492925,0.367681,0.731986,-0.573592,0.196119,0.970811,-0.138073,-0.193925,0.970694,-0.141940,-0.193925,0.970694,-0.141940,-0.366266,0.724288,-0.584172,0.367681,0.731986,-0.573592,-0.855848,-0.073373,-0.511997,-0.909789,-0.224118,-0.349363,-0.992875,-0.009520,-0.118783,-0.992875,-0.009520,-0.118783,-0.988916,0.067091,-0.132455,-0.855848,-0.073373,-0.511997,-0.988916,0.067091,-0.132455,-0.992875,-0.009520,-0.118783,-0.970897,0.154572,-0.182939,-0.970897,0.154572,-0.182939,-0.976465,0.187612,-0.106390,-0.988916,0.067091,-0.132455,-0.900074,0.395359,-0.183190,-0.921574,0.369931,-0.117698,-0.976465,0.187612,-0.106390,-0.976465,0.187612,-0.106390,-0.970897,0.154572,-0.182939,-0.900074,0.395359,-0.183190,-0.900074,0.395359,-0.183190,-0.978565,0.107722,-0.175520,-0.993357,0.042420,-0.106966,-0.993357,0.042420,-0.106966,-0.949224,0.282773,-0.137889,-0.900074,0.395359,-0.183190,-0.981122,-0.093537,-0.169264,-0.994605,-0.087092,-0.056350,-0.993357,0.042420,-0.106966,-0.993357,0.042420,-0.106966,-0.978565,0.107722,-0.175520,-0.981122,-0.093537,-0.169264,-0.892741,0.422814,0.155698,-0.994370,-0.096916,0.042839,-0.802539,0.596599,-0.001137,-0.802539,0.596599,-0.001137,-0.945440,0.322140,-0.048671,-0.892741,0.422814,0.155698,-0.945440,0.322140,-0.048671,-0.921574,0.369931,-0.117698,-0.892741,0.422814,0.155698,-0.921574,0.369931,-0.117698,-0.900074,0.395359,-0.183190,-0.949224,0.282773,-0.137889,-0.949224,0.282773,-0.137889,-0.892741,0.422814,0.155698,-0.921574,0.369931,-0.117698,-0.934464,0.162135,-0.316999,-0.994370,-0.096916,0.042839,-0.980651,-0.109682,-0.162151,-0.980651,-0.109682,-0.162151,-0.984988,-0.167762,-0.040670,-0.934464,0.162135,-0.316999,-0.978565,0.107722,-0.175520,-0.900074,0.395359,-0.183190,-0.970897,0.154572,-0.182939,-0.974176,-0.131932,-0.183234,-0.970897,0.154572,-0.182939,-0.992875,-0.009520,-0.118783,-0.970897,0.154572,-0.182939,-0.974176,-0.131932,-0.183234,-0.981122,-0.093537,-0.169264,-0.981122,-0.093537,-0.169264,-0.978565,0.107722,-0.175520,-0.970897,0.154572,-0.182939,-0.974176,-0.131932,-0.183234,-0.992875,-0.009520,-0.118783,-0.909789,-0.224118,-0.349363,-0.994370,-0.096916,0.042839,-0.253110,-0.966295,0.047005,-0.980302,0.141954,-0.137322,-0.980302,0.141954,-0.137322,-0.980651,-0.109682,-0.162151};
			return value;
		}
		private double[] getNormal_7_20_vector_9()
		{
			double[] value = {-0.994370,-0.096916,0.042839,-0.980651,-0.109682,-0.162151,-0.980302,0.141954,-0.137322,-0.923912,0.208476,-0.320820,-0.923912,0.208476,-0.320820,-0.935242,0.350600,-0.049009,-0.980651,-0.109682,-0.162151,-0.444946,0.309766,-0.840279,-0.784675,0.260319,-0.562600,-0.794057,0.215125,-0.568502,-0.794057,0.215125,-0.568502,-0.230271,0.810361,-0.538786,-0.444946,0.309766,-0.840279,-0.947826,0.163683,-0.273557,-0.794057,0.215125,-0.568502,-0.931093,0.207597,-0.299950,-0.257867,0.412273,-0.873805,-0.444946,0.309766,-0.840279,-0.230271,0.810361,-0.538786,-0.995719,-0.080877,0.044738,-0.993262,-0.102955,0.053198,-0.994221,-0.097015,0.045976,-0.994221,-0.097015,0.045976,-0.995035,-0.092043,0.037864,-0.995719,-0.080877,0.044738,-0.993262,-0.102955,0.053198,-0.676783,-0.734559,0.048864,-0.671252,-0.739858,0.045071,-0.671252,-0.739858,0.045071,-0.994221,-0.097015,0.045976,-0.993262,-0.102955,0.053198,-0.995035,-0.092043,0.037864,-0.997930,-0.062488,0.015183,-0.999802,-0.019885,-0.000297,-0.999802,-0.019885,-0.000297,-0.995719,-0.080877,0.044738,-0.995035,-0.092043,0.037864,-0.995719,-0.080877,0.044738,-0.999802,-0.019885,-0.000297,-0.984724,0.041814,-0.169031,-0.984724,0.041814,-0.169031,-0.997111,-0.054483,-0.052924,-0.995719,-0.080877,0.044738,-0.988450,0.127708,-0.081593,-0.996273,-0.053116,-0.067968,-0.997111,-0.054483,-0.052924,-0.988450,0.127708,-0.081593,-0.997111,-0.054483,-0.052924,-0.984724,0.041814,-0.169031,-0.988450,0.127708,-0.081593,-0.984724,0.041814,-0.169031,-0.923912,0.208476,-0.320820,-0.892741,0.422814,0.155698,-0.949224,0.282773,-0.137889,-0.980851,0.183887,-0.064163,-0.980851,0.183887,-0.064163,-0.980302,0.141954,-0.137322,-0.892741,0.422814,0.155698,-0.980302,0.141954,-0.137322,-0.980851,0.183887,-0.064163,-0.988450,0.127708,-0.081593,-0.988450,0.127708,-0.081593,-0.923912,0.208476,-0.320820,-0.980302,0.141954,-0.137322,-0.949224,0.282773,-0.137889,-0.993357,0.042420,-0.106966,-0.994605,-0.087092,-0.056350,-0.994605,-0.087092,-0.056350,-0.980851,0.183887,-0.064163,-0.949224,0.282773,-0.137889,-0.980851,0.183887,-0.064163,-0.994605,-0.087092,-0.056350,-0.996273,-0.053116,-0.067968,-0.996273,-0.053116,-0.067968,-0.988450,0.127708,-0.081593,-0.980851,0.183887,-0.064163,-0.660784,-0.679789,0.318200,-0.670518,-0.726179,0.151886,-0.003811,-0.984908,0.173037,-0.003811,-0.984908,0.173037,-0.006209,-0.941020,0.338293,-0.660784,-0.679789,0.318200,-0.993651,-0.087535,0.070683,-0.993856,-0.083837,0.072265,-0.660784,-0.679789,0.318200,-0.993651,-0.087535,0.070683,-0.660784,-0.679789,0.318200,-0.639376,-0.726191,0.252678,-0.993651,-0.087535,0.070683,-0.639376,-0.726191,0.252678,-0.980963,-0.139573,0.135024,-0.996235,-0.086674,-0.001585,-0.685905,-0.727687,-0.002602,-0.670518,-0.726179,0.151886,-0.670518,-0.726179,0.151886,-0.993856,-0.083837,0.072265,-0.996235,-0.086674,-0.001585,-0.995384,-0.095953,-0.002108,-0.680404,-0.732826,-0.004041,-0.685905,-0.727687,-0.002602};
			return value;
		}
		private double[] getNormal_7_20_vector_10()
		{
			double[] value = {-0.685905,-0.727687,-0.002602,-0.996235,-0.086674,-0.001585,-0.995384,-0.095953,-0.002108,-0.994605,-0.087092,-0.056350,-0.981122,-0.093537,-0.169264,-0.983832,-0.047621,-0.172646,-0.983832,-0.047621,-0.172646,-0.721399,-0.683752,0.109846,-0.994605,-0.087092,-0.056350,-0.981122,-0.093537,-0.169264,-0.974176,-0.131932,-0.183234,-0.976958,-0.055415,-0.206113,-0.976958,-0.055415,-0.206113,-0.983832,-0.047621,-0.172646,-0.981122,-0.093537,-0.169264,-0.974176,-0.131932,-0.183234,-0.909789,-0.224118,-0.349363,-0.684344,-0.632957,-0.361993,-0.684344,-0.632957,-0.361993,-0.976958,-0.055415,-0.206113,-0.974176,-0.131932,-0.183234,-0.666746,-0.744944,-0.022537,-0.993262,-0.102955,0.053198,-0.995719,-0.080877,0.044738,-0.995719,-0.080877,0.044738,-0.997111,-0.054483,-0.052924,-0.666746,-0.744944,-0.022537,-0.647226,-0.761456,-0.035819,-0.666746,-0.744944,-0.022537,-0.997111,-0.054483,-0.052924,-0.997111,-0.054483,-0.052924,-0.996273,-0.053116,-0.067968,-0.647226,-0.761456,-0.035819,-0.996273,-0.053116,-0.067968,-0.994605,-0.087092,-0.056350,-0.721399,-0.683752,0.109846,-0.721399,-0.683752,0.109846,-0.647226,-0.761456,-0.035819,-0.996273,-0.053116,-0.067968,-0.735161,-0.645138,0.208173,-0.729892,-0.682837,-0.031486,0.000914,-0.991945,0.126664,0.000914,-0.991945,0.126664,0.004861,-0.929438,0.368947,-0.735161,-0.645138,0.208173,-0.729892,-0.682837,-0.031486,-0.694230,-0.691260,-0.200510,-0.000924,-0.996493,-0.083673,-0.000924,-0.996493,-0.083673,0.000914,-0.991945,0.126664,-0.729892,-0.682837,-0.031486,-0.694230,-0.691260,-0.200510,-0.667018,-0.612986,-0.423480,0.002766,-0.859278,-0.511501,0.002766,-0.859278,-0.511501,-0.000924,-0.996493,-0.083673,-0.694230,-0.691260,-0.200510,0.0,-1.0,0.0,-0.000416,-0.999831,0.018399,-0.676783,-0.734559,0.048864,-0.676783,-0.734559,0.048864,-0.666746,-0.744944,-0.022537,0.0,-1.0,0.0,-0.000042,-1.0,-0.000733,0.0,-1.0,0.0,-0.666746,-0.744944,-0.022537,-0.666746,-0.744944,-0.022537,-0.647226,-0.761456,-0.035819,-0.000042,-1.0,-0.000733,-0.721399,-0.683752,0.109846,0.001683,-0.963345,0.268261,-0.647226,-0.761456,-0.035819,-0.671252,-0.739858,0.045071,-0.000416,-0.999831,0.018399,-0.002634,-0.999891,0.014508,0.0,-0.000085,-1.0,0.0,-0.000085,-1.0,0.017545,-0.000085,-0.999846,0.0,-0.000085,-1.0,0.017545,-0.000085,-0.999846,0.534105,0.118581,-0.837060,0.0,-0.000085,-1.0,0.534105,0.118581,-0.837060,0.485003,0.107238,-0.867913,0.0,-0.000085,-1.0,0.485003,0.107238,-0.867913,0.017545,-0.000085,-0.999846,0.0,-0.000085,-1.0,0.017545,-0.000085,-0.999846,0.017545,-0.000085,-0.999846,0.0,-0.000085,-1.0,0.017545,-0.000085,-0.999846,0.0,-0.000085,-1.0,0.000002,0.999864,-0.016466,-0.357571,0.933607,-0.022834,-0.331572,0.943362,-0.011283,-0.331572,0.943362,-0.011283,0.000002,0.999966,-0.008233,0.000002,0.999864,-0.016466,-0.357571,0.933607,-0.022834};
			return value;
		}
		private double[] getNormal_7_20_vector_11()
		{
			double[] value = {-0.799738,0.597970,-0.053399,-0.747888,0.663310,-0.026124,-0.747888,0.663310,-0.026124,-0.331572,0.943362,-0.011283,-0.357571,0.933607,-0.022834,-0.799738,0.597970,-0.053399,-0.557820,0.826429,-0.076490,-0.772124,0.634453,-0.035973,-0.772124,0.634453,-0.035973,-0.747888,0.663310,-0.026124,-0.799738,0.597970,-0.053399,0.000002,0.999966,-0.008233,-0.331572,0.943362,-0.011283,-0.315316,0.948826,0.017479,-0.315316,0.948826,0.017479,0.000002,0.999878,0.015650,0.000002,0.999966,-0.008233,-0.331572,0.943362,-0.011283,-0.747888,0.663310,-0.026124,-0.703342,0.710586,0.019401,-0.703342,0.710586,0.019401,-0.315316,0.948826,0.017479,-0.331572,0.943362,-0.011283,-0.747888,0.663310,-0.026124,-0.772124,0.634453,-0.035973,-0.788401,0.614830,0.020222,-0.788401,0.614830,0.020222,-0.703342,0.710586,0.019401,-0.747888,0.663310,-0.026124,-0.557820,0.826429,-0.076490,-0.512936,0.857806,-0.032640,-0.742007,0.669658,-0.031371,-0.742007,0.669658,-0.031371,-0.772124,0.634453,-0.035973,-0.557820,0.826429,-0.076490,-0.512936,0.857806,-0.032640,-0.557820,0.826429,-0.076490,-0.040418,0.996736,-0.069886,-0.040418,0.996736,-0.069886,-0.378637,0.924223,-0.049460,-0.512936,0.857806,-0.032640,0.583796,0.811855,0.008636,-0.023213,0.999079,-0.036096,0.106514,0.993389,0.042814,0.106514,0.993389,0.042814,0.633111,0.766460,0.108211,0.583796,0.811855,0.008636,0.633111,0.766460,0.108211,0.106514,0.993389,0.042814,0.004957,0.909917,0.414760,0.515293,0.856807,0.018833,0.000002,0.999558,-0.029731,-0.023213,0.999079,-0.036096,-0.023213,0.999079,-0.036096,0.583796,0.811855,0.008636,0.515293,0.856807,0.018833,0.792291,0.606859,0.063228,0.515293,0.856807,0.018833,0.583796,0.811855,0.008636,0.583796,0.811855,0.008636,0.871691,0.487193,0.052902,0.792291,0.606859,0.063228,-0.772124,0.634453,-0.035973,-0.742007,0.669658,-0.031371,-0.766779,0.641693,0.016748,-0.766779,0.641693,0.016748,-0.788401,0.614830,0.020222,-0.772124,0.634453,-0.035973,-0.542653,-0.153244,-0.825859,-0.267502,-0.155073,-0.950997,-0.150621,-0.260521,-0.953647,-0.150621,-0.260521,-0.953647,-0.485923,-0.402562,-0.775772,-0.542653,-0.153244,-0.825859,-0.542653,-0.153244,-0.825859,-0.485923,-0.402562,-0.775772,-0.909789,-0.224118,-0.349363,-0.909789,-0.224118,-0.349363,-0.855848,-0.073373,-0.511997,-0.542653,-0.153244,-0.825859,0.278113,-0.158295,-0.947415,0.149511,-0.264822,-0.952636,-0.150621,-0.260521,-0.953647,-0.150621,-0.260521,-0.953647,-0.267502,-0.155073,-0.950997,0.278113,-0.158295,-0.947415,-0.845451,-0.080943,-0.527884,-0.338061,0.140764,-0.930538,-0.281162,-0.263927,-0.922654,-0.281162,-0.263927,-0.922654,-0.724218,-0.334502,-0.603006,-0.845451,-0.080943,-0.527884,-0.845451,-0.080943,-0.527884,-0.724218,-0.334502,-0.603006,-0.684344,-0.632957,-0.361993,-0.684344,-0.632957,-0.361993,-0.909789,-0.224118,-0.349363,-0.845451,-0.080943,-0.527884,0.337877,0.141090,-0.930555,0.281267,-0.263806,-0.922657};
			return value;
		}
		private double[] getNormal_7_20_vector_12()
		{
			double[] value = {-0.281162,-0.263927,-0.922654,-0.281162,-0.263927,-0.922654,-0.338061,0.140764,-0.930538,0.337877,0.141090,-0.930555,0.002766,-0.859278,-0.511501,-0.036329,-0.928291,-0.370076,0.040050,-0.929536,-0.366551,0.016266,-0.886781,-0.461903,-0.036329,-0.928291,-0.370076,0.002766,-0.859278,-0.511501,0.002766,-0.859278,-0.511501,-0.667018,-0.612986,-0.423480,0.016266,-0.886781,-0.461903,-0.721399,-0.683752,0.109846,-0.983832,-0.047621,-0.172646,-0.729892,-0.682837,-0.031486,-0.721399,-0.683752,0.109846,-0.729892,-0.682837,-0.031486,-0.735161,-0.645138,0.208173,-0.721399,-0.683752,0.109846,-0.735161,-0.645138,0.208173,-0.763924,-0.569896,0.302719,-0.694230,-0.691260,-0.200510,-0.729892,-0.682837,-0.031486,-0.983832,-0.047621,-0.172646,-0.983832,-0.047621,-0.172646,-0.976958,-0.055415,-0.206113,-0.694230,-0.691260,-0.200510,-0.667018,-0.612986,-0.423480,-0.694230,-0.691260,-0.200510,-0.976958,-0.055415,-0.206113,-0.976958,-0.055415,-0.206113,-0.684344,-0.632957,-0.361993,-0.667018,-0.612986,-0.423480,0.001683,-0.963345,0.268261,-0.721399,-0.683752,0.109846,-0.763924,-0.569896,0.302719,-0.735161,-0.645138,0.208173,0.004861,-0.929438,0.368947,0.003109,-0.966442,0.256865,-0.735161,-0.645138,0.208173,0.003109,-0.966442,0.256865,0.001683,-0.963345,0.268261,-0.735161,-0.645138,0.208173,0.001683,-0.963345,0.268261,-0.763924,-0.569896,0.302719,-0.036329,-0.928291,-0.370076,0.016266,-0.886781,-0.461903,-0.364475,-0.863990,-0.347389,-0.364475,-0.863990,-0.347389,-0.091983,-0.900454,-0.425113,-0.036329,-0.928291,-0.370076,0.016266,-0.886781,-0.461903,-0.667018,-0.612986,-0.423480,-0.684344,-0.632957,-0.361993,-0.684344,-0.632957,-0.361993,-0.364475,-0.863990,-0.347389,0.016266,-0.886781,-0.461903,0.040050,-0.929536,-0.366551,-0.036329,-0.928291,-0.370076,-0.091983,-0.900454,-0.425113,-0.091983,-0.900454,-0.425113,0.091982,-0.900455,-0.425113,0.040050,-0.929536,-0.366551,-0.921162,0.389180,0.000233,-0.806879,0.590710,0.002596,-0.814547,0.579647,-0.022862,-0.921162,0.389180,0.000233,-0.814547,0.579647,-0.022862,-0.950672,0.309828,-0.015160,-0.921162,0.389180,0.000233,-0.950672,0.309828,-0.015160,-0.951219,0.308516,0.000227,-0.921324,0.388797,0.000323,-0.852221,0.522661,-0.023348,-0.800899,0.594966,-0.067651,-0.783291,0.621343,-0.019721,-0.512936,0.857806,-0.032640,-0.806879,0.590710,0.002596,-0.806879,0.590710,0.002596,-0.736525,0.676391,0.005028,-0.783291,0.621343,-0.019721,-0.987615,0.156883,-0.001971,-0.998905,0.046774,0.0,-0.986608,0.163108,-0.000260,-0.986608,0.163108,-0.000260,-0.978197,0.207676,-0.000716,-0.987615,0.156883,-0.001971,-0.315316,0.948826,0.017479,-0.703342,0.710586,0.019401,-0.680684,0.712537,0.170179,-0.680684,0.712537,0.170179,-0.320910,0.924173,0.207172,-0.315316,0.948826,0.017479,-0.703342,0.710586,0.019401,-0.788401,0.614830,0.020222,-0.814986,0.566619,0.121412,-0.814986,0.566619,0.121412,-0.680684,0.712537,0.170179,-0.703342,0.710586,0.019401};
			return value;
		}
		private double[] getNormal_7_20_vector_13()
		{
			double[] value = {-0.788401,0.614830,0.020222,-0.766779,0.641693,0.016748,-0.876941,0.455990,0.151813,-0.876941,0.455990,0.151813,-0.814986,0.566619,0.121412,-0.788401,0.614830,0.020222,-0.876941,0.455990,0.151813,-0.853476,0.517541,0.061080,-0.904957,0.383372,0.184605,-0.320910,0.924173,0.207172,-0.680684,0.712537,0.170179,-0.337292,0.796925,0.501144,-0.337292,0.796925,0.501144,-0.257416,0.840259,0.477181,-0.320910,0.924173,0.207172,0.000002,0.999878,0.015650,-0.315316,0.948826,0.017479,-0.320910,0.924173,0.207172,-0.320910,0.924173,0.207172,0.0,0.976748,0.214390,0.000002,0.999878,0.015650,0.0,0.976748,0.214390,-0.320910,0.924173,0.207172,-0.257416,0.840259,0.477181,-0.257416,0.840259,0.477181,0.0,0.855996,0.516983,0.0,0.976748,0.214390,0.0,0.855996,0.516983,-0.257416,0.840259,0.477181,-0.337292,0.796925,0.501144,-0.337292,0.796925,0.501144,0.0,0.784258,0.620435,0.0,0.855996,0.516983,0.0,0.784258,0.620435,-0.337292,0.796925,0.501144,-0.099094,0.946579,0.306868,-0.099094,0.946579,0.306868,0.0,0.942821,0.333300,0.0,0.784258,0.620435,-0.680684,0.712537,0.170179,-0.814986,0.566619,0.121412,-0.744040,0.587357,0.318459,-0.744040,0.587357,0.318459,-0.337292,0.796925,0.501144,-0.680684,0.712537,0.170179,-0.337292,0.796925,0.501144,-0.744040,0.587357,0.318459,-0.645016,0.725395,0.240325,-0.645016,0.725395,0.240325,-0.099094,0.946579,0.306868,-0.337292,0.796925,0.501144,-0.814986,0.566619,0.121412,-0.876941,0.455990,0.151813,-0.904957,0.383372,0.184605,-0.904957,0.383372,0.184605,-0.744040,0.587357,0.318459,-0.814986,0.566619,0.121412,-0.744040,0.587357,0.318459,-0.904957,0.383372,0.184605,-0.645016,0.725395,0.240325,-0.977439,0.211218,0.000671,-0.951219,0.308516,0.000227,-0.950672,0.309828,-0.015160,-0.950672,0.309828,-0.015160,-0.985907,0.166898,-0.011491,-0.977439,0.211218,0.000671,-0.799872,0.597739,-0.053967,-0.800899,0.594966,-0.067651,-0.852221,0.522661,-0.023348,-0.852221,0.522661,-0.023348,-0.742007,0.669658,-0.031371,-0.799872,0.597739,-0.053967,-0.799872,0.597739,-0.053967,-0.742007,0.669658,-0.031371,-0.512936,0.857806,-0.032640,-0.512936,0.857806,-0.032640,-0.783291,0.621343,-0.019721,-0.799872,0.597739,-0.053967,-0.988559,0.150835,-0.000437,-0.985907,0.166898,-0.011491,-0.999162,0.039665,-0.010054,-0.999162,0.039665,-0.010054,-0.998905,0.046774,0.0,-0.988559,0.150835,-0.000437,-0.987615,0.156883,-0.001971,-0.988559,0.150835,-0.000437,-0.998905,0.046774,0.0,-0.994802,0.101702,0.004967,-0.997516,0.069586,0.010952,-0.987958,0.154680,0.003617,-0.994803,0.101702,0.004967,-0.994802,0.101702,0.004967,-0.987958,0.154680,0.003617,-0.994803,0.101702,0.004967,-0.987958,0.154680,0.003617,-0.986608,0.163108,-0.000260,-0.994803,0.101702,0.004967,-0.986608,0.163108,-0.000260,-0.998905,0.046774,0.0,-0.994803,0.101702,0.004967};
			return value;
		}
		private double[] getNormal_7_20_vector_14()
		{
			double[] value = {-0.998905,0.046774,0.0,-0.999930,0.011771,0.001527,-0.998905,0.046774,0.0,-0.997396,-0.072101,-0.001297,-0.997605,-0.069078,0.003595,-0.999168,-0.040417,0.005461,-0.999014,-0.044384,-0.000625,-0.999930,0.011771,0.001527,-0.997605,-0.069078,0.003595,-0.999168,-0.040417,0.005461,-0.999930,0.011771,0.001527,-0.998905,0.046774,0.0,-0.997605,-0.069078,0.003595,-0.999930,0.011771,0.001527,-0.987601,-0.100303,0.120761,-0.995553,-0.067303,0.065906,-0.993651,-0.087535,0.070683,-0.987601,-0.100303,0.120761,-0.993651,-0.087535,0.070683,-0.980963,-0.139573,0.135024,-0.980963,-0.139573,0.135024,-0.985662,0.052412,0.160384,-0.995212,0.068643,0.069586,-0.980963,-0.139573,0.135024,-0.995212,0.068643,0.069586,-0.987601,-0.100303,0.120761,-0.987601,-0.100303,0.120761,-0.980963,-0.139573,0.135024,-0.987601,-0.100303,0.120761,0.066218,-0.970853,-0.230345,0.003260,-0.956279,-0.292437,0.003260,-0.956279,-0.292437,0.003260,-0.956279,-0.292437,0.071584,-0.971739,-0.224943,0.066218,-0.970853,-0.230345,0.149343,-0.988595,-0.019386,0.133541,-0.977831,-0.161285,0.066218,-0.970853,-0.230345,0.149343,-0.988595,-0.019386,0.066218,-0.970853,-0.230345,0.071584,-0.971739,-0.224943,0.149343,-0.988595,-0.019386,0.071584,-0.971739,-0.224943,0.149948,-0.988604,-0.013334,0.163121,-0.977146,0.136301,0.149343,-0.988595,-0.019386,0.149948,-0.988604,-0.013334,0.149948,-0.988604,-0.013334,0.163121,-0.977146,0.136301,0.163121,-0.977146,0.136301,-0.542910,0.797858,0.262051,-0.541447,0.797858,0.265063,-0.490672,0.792974,0.361156,-0.490672,0.792974,0.361156,-0.490672,0.792974,0.361156,-0.542910,0.797858,0.262051,-0.541447,0.797858,0.265063,-0.542910,0.797858,0.262051,-0.577213,0.808121,0.117330,-0.577213,0.808121,0.117330,-0.577190,0.808154,0.117213,-0.541447,0.797858,0.265063,-0.506745,0.861785,-0.023167,-0.506745,0.861785,-0.023167,-0.530547,0.847576,0.011631,-0.530547,0.847576,0.011631,-0.545482,0.837421,0.034279,-0.506745,0.861785,-0.023167,0.038272,-0.100119,0.994239,0.038272,-0.100119,0.994239,0.038272,-0.100119,0.994239,0.038272,-0.100119,0.994239,0.038272,-0.100119,0.994239,0.038272,-0.100119,0.994239,0.149252,0.182214,-0.971865,0.149252,0.182214,-0.971865,0.149252,0.182214,-0.971865,0.149252,0.182214,-0.971865,0.149252,0.182214,-0.971865,0.149252,0.182214,-0.971865,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.983471,0.181052,-0.002145,-0.983471,0.181052,-0.002145,-0.983471,0.181052,-0.002145,-0.983471,0.181052,-0.002145,-0.983471,0.181052,-0.002145,-0.983471,0.181052,-0.002145,-0.992295,-0.014428,0.123053,-0.992295,-0.014428,0.123053,-0.992295,-0.014428,0.123053,-0.992295,-0.014428,0.123053,-0.992295,-0.014428,0.123053,-0.992295,-0.014428,0.123053,0.269133,-0.951829,-0.146930,0.269133,-0.951829,-0.146930};
			return value;
		}
		private double[] getNormal_7_20_vector_15()
		{
			double[] value = {0.269133,-0.951829,-0.146930,0.269133,-0.951829,-0.146930,0.269133,-0.951829,-0.146930,0.269133,-0.951829,-0.146930,-0.286304,0.955953,0.064679,-0.286304,0.955953,0.064679,-0.286304,0.955953,0.064679,-0.286304,0.955953,0.064679,-0.286304,0.955953,0.064679,-0.286304,0.955953,0.064679,-0.128104,0.120953,-0.984357,-0.128104,0.120953,-0.984358,-0.128104,0.120953,-0.984358,-0.128104,0.120953,-0.984358,-0.128104,0.120953,-0.984358,-0.128104,0.120953,-0.984358,-0.128104,0.120953,-0.984357,-0.128104,0.120953,-0.984358,-0.128104,0.120953,-0.984358,-0.062251,-0.114645,0.991454,-0.062251,-0.114645,0.991454,-0.062251,-0.114645,0.991454,-0.062251,-0.114645,0.991454,-0.062251,-0.114645,0.991454,-0.062251,-0.114645,0.991454,-0.062251,-0.114645,0.991454,-0.062251,-0.114645,0.991454,-0.062251,-0.114645,0.991454,-0.015410,-0.096809,0.995184,-0.015410,-0.096809,0.995184,-0.015410,-0.096809,0.995184,-0.015410,-0.096809,0.995184,-0.015410,-0.096809,0.995184,-0.015410,-0.096809,0.995184,-0.015410,-0.096809,0.995184,-0.015410,-0.096809,0.995184,-0.015410,-0.096809,0.995184,-0.015410,-0.096809,0.995184,-0.015410,-0.096809,0.995184,-0.015410,-0.096809,0.995184,-0.293084,0.955619,0.029913,-0.293084,0.955619,0.029913,-0.293084,0.955619,0.029913,-0.293084,0.955619,0.029913,-0.293083,0.955619,0.029913,-0.293084,0.955619,0.029913,-0.109264,0.152146,-0.982300,-0.109264,0.152146,-0.982300,-0.109264,0.152146,-0.982300,-0.109264,0.152146,-0.982300,-0.109264,0.152146,-0.982300,-0.109264,0.152146,-0.982300,-0.109264,0.152146,-0.982300,-0.109264,0.152146,-0.982300,-0.109264,0.152146,-0.982300,-0.109264,0.152146,-0.982300,-0.109264,0.152146,-0.982300,-0.109264,0.152146,-0.982300,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.732603,-0.090907,0.674558,-0.732603,-0.090907,0.674558,-0.732603,-0.090907,0.674558,-0.732603,-0.090907,0.674558,-0.732603,-0.090907,0.674558,-0.732603,-0.090907,0.674558,-0.510702,0.856549,0.074212,-0.510702,0.856549,0.074212,-0.510702,0.856549,0.074212,-0.510702,0.856549,0.074212,-0.510702,0.856549,0.074212,-0.510702,0.856549,0.074212,-0.510702,0.856549,0.074212,-0.510702,0.856549,0.074212,-0.510702,0.856549,0.074212,-0.554662,0.337440,-0.760582,-0.554661,0.337440,-0.760582,-0.554661,0.337440,-0.760582,-0.554661,0.337440,-0.760582,-0.554661,0.337440,-0.760582,-0.554662,0.337440,-0.760582,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.000125,0.000009,1.0,0.000125,0.000009,1.0,0.000125,0.000009,1.0,0.000125,0.000009,1.0,0.000125,0.000009,1.0,0.000125,0.000009,-0.730317,-0.108503,0.674436,-0.730317,-0.108503,0.674436,-0.730317,-0.108503,0.674436};
			return value;
		}
		private double[] getNormal_7_20_vector_16()
		{
			double[] value = {-0.730317,-0.108503,0.674436,-0.730317,-0.108503,0.674436,-0.730317,-0.108503,0.674436,-0.549923,0.113075,-0.827526,-0.549923,0.113075,-0.827526,-0.549923,0.113075,-0.827526,-0.549923,0.113075,-0.827526,-0.549923,0.113075,-0.827526,-0.549923,0.113075,-0.827526,-0.007000,0.985077,0.171972,-0.007000,0.985077,0.171972,-0.007000,0.985077,0.171972,0.007000,-0.985077,-0.171972,0.007000,-0.985077,-0.171972,0.007000,-0.985077,-0.171972,-0.577213,0.808121,0.117330,-0.545482,0.837421,0.034279,-0.530547,0.847576,0.011631,-0.530547,0.847576,0.011631,-0.577190,0.808154,0.117213,-0.577213,0.808121,0.117330,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.274700,0.943431,0.185681,-0.274700,0.943431,0.185681,-0.274700,0.943431,0.185681,-0.274700,0.943431,0.185681,-0.274700,0.943431,0.185681,-0.274700,0.943431,0.185681,0.291485,-0.946353,-0.139469,0.291485,-0.946353,-0.139469,0.291485,-0.946353,-0.139469,0.291485,-0.946353,-0.139469,0.291485,-0.946353,-0.139469,0.291485,-0.946353,-0.139469,0.259201,-0.955700,-0.139469,0.259201,-0.955700,-0.139469,0.259201,-0.955700,-0.139469,0.259201,-0.955700,-0.139469,0.259201,-0.955700,-0.139469,0.259201,-0.955700,-0.139469,-0.285199,0.942685,0.173227,-0.285199,0.942685,0.173227,-0.285199,0.942685,0.173227,-0.285199,0.942685,0.173227,-0.285199,0.942685,0.173227,-0.285199,0.942685,0.173227,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.133518,0.129333,-0.982571,-0.133518,0.129333,-0.982571,-0.133518,0.129333,-0.982571,-0.133518,0.129333,-0.982571,-0.133518,0.129333,-0.982571,-0.133518,0.129333,-0.982571,-0.074464,-0.174564,0.981826,-0.074464,-0.174564,0.981826,-0.074464,-0.174564,0.981826,-0.074464,-0.174564,0.981826,-0.074464,-0.174564,0.981826,-0.074464,-0.174564,0.981826,0.999995,0.003110,0.000238,0.999995,0.003110,0.000238,0.999995,0.003110,0.000238,0.999995,0.003110,0.000238,0.999995,0.003110,0.000238,0.999995,0.003110,0.000238,-0.033260,-0.190436,0.981136,-0.033260,-0.190436,0.981136,-0.033260,-0.190436,0.981136,-0.033260,-0.190436,0.981136,-0.033260,-0.190436,0.981136,-0.033260,-0.190436,0.981136,1.0,0.000402,-0.000863,1.0,0.000402,-0.000863,1.0,0.000402,-0.000863,1.0,0.000402,-0.000863,1.0,0.000402,-0.000863,1.0,0.000402,-0.000863,-0.122944,0.138801,-0.982659,-0.122944,0.138801,-0.982659,-0.122944,0.138801,-0.982659,-0.122944,0.138801,-0.982659,-0.122944,0.138801,-0.982659,-0.122944,0.138801,-0.982659,-1.0,-0.000193,-0.000528};
			return value;
		}
		private double[] getNormal_7_20_vector_17()
		{
			double[] value = {-1.0,-0.000193,-0.000528,-1.0,-0.000193,-0.000528,-1.0,-0.000193,-0.000528,-1.0,-0.000193,-0.000528,-1.0,-0.000193,-0.000528,0.337292,0.796925,0.501144,0.744040,0.587357,0.318459,0.680684,0.712537,0.170179,-0.189866,0.186668,-0.963901,-0.058973,0.243555,-0.968093,0.055875,0.249712,-0.966707,0.055875,0.249712,-0.966707,0.197761,0.196481,-0.960357,-0.189866,0.186668,-0.963901,-0.093677,0.973384,-0.209161,-0.093677,0.973384,-0.209161,-0.093677,0.973384,-0.209161,-0.093677,0.973384,-0.209161,-0.093677,0.973384,-0.209161,-0.093677,0.973384,-0.209161,0.076137,0.964051,-0.254578,0.076137,0.964050,-0.254578,0.076137,0.964051,-0.254578,0.000003,0.969751,-0.244098,0.000003,0.969751,-0.244098,0.000003,0.969751,-0.244098,0.000003,0.969751,-0.244098,0.000003,0.969751,-0.244098,0.000003,0.969751,-0.244098,-0.724218,-0.334502,-0.603006,-0.281162,-0.263927,-0.922654,-0.091983,-0.900454,-0.425113,-0.091983,-0.900454,-0.425113,-0.364475,-0.863990,-0.347389,-0.724218,-0.334502,-0.603006,-0.684344,-0.632957,-0.361993,-0.724218,-0.334502,-0.603006,-0.364475,-0.863990,-0.347389,-0.281162,-0.263927,-0.922654,0.281267,-0.263806,-0.922657,0.091982,-0.900455,-0.425113,0.091982,-0.900455,-0.425113,-0.091983,-0.900454,-0.425113,-0.281162,-0.263927,-0.922654,0.636573,-0.728381,0.253449,0.980433,-0.142668,0.135635,0.973654,-0.210940,0.086617,0.973654,-0.210940,0.086617,0.618311,-0.768180,0.166107,0.636573,-0.728381,0.253449,0.594698,0.803890,0.009743,0.957174,0.288014,0.029417,0.915169,0.388625,0.106942,0.915169,0.388625,0.106942,0.507315,0.859538,0.061861,0.594698,0.803890,0.009743,0.618311,-0.768180,0.166107,0.973654,-0.210940,0.086617,0.966022,-0.247037,0.075984,0.966022,-0.247037,0.075984,0.680203,-0.718955,0.142929,0.618311,-0.768180,0.166107,0.783572,0.604853,-0.142015,0.954799,0.294834,0.037828,0.957174,0.288014,0.029417,0.957174,0.288014,0.029417,0.594698,0.803890,0.009743,0.783572,0.604853,-0.142015,0.680203,-0.718955,0.142929,0.966022,-0.247037,0.075984,0.959415,-0.265642,0.094644,0.680203,-0.718955,0.142929,0.959415,-0.265642,0.094644,0.718795,-0.423377,0.551439,0.582674,-0.641283,0.499247,0.680203,-0.718955,0.142929,0.718795,-0.423377,0.551439,-0.002388,-0.965400,0.260762,0.636573,-0.728381,0.253449,0.618311,-0.768180,0.166107,0.618311,-0.768180,0.166107,0.0,-0.983977,0.178297,-0.002388,-0.965400,0.260762,0.0,-0.983977,0.178297,0.618311,-0.768180,0.166107,0.680203,-0.718955,0.142929,0.680203,-0.718955,0.142929,0.0,-0.984429,0.175783,0.0,-0.983977,0.178297,0.0,-0.984429,0.175783,0.680203,-0.718955,0.142929,0.582674,-0.641283,0.499247,0.582674,-0.641283,0.499247,0.000008,-0.875849,0.482585,0.0,-0.984429,0.175783,0.000008,-0.875849,0.482585,0.582674,-0.641283,0.499247,0.718795,-0.423377,0.551439,0.718795,-0.423377,0.551439,0.000109,-0.538960,0.842331};
			return value;
		}
		private double[] getNormal_7_20_vector_18()
		{
			double[] value = {0.000008,-0.875849,0.482585,-0.000002,0.955365,-0.295429,0.0,0.980943,0.194295,0.604904,0.782386,0.148198,0.604904,0.782386,0.148198,0.684071,0.698318,-0.210711,-0.000002,0.955365,-0.295429,0.000030,0.953566,-0.301184,0.783572,0.604853,-0.142015,0.594698,0.803890,0.009743,0.594698,0.803890,0.009743,0.000007,0.999994,-0.003323,0.000030,0.953566,-0.301184,0.000007,0.999994,-0.003323,0.594698,0.803890,0.009743,0.507315,0.859538,0.061861,0.507315,0.859538,0.061861,0.0,0.999873,0.015928,0.000007,0.999994,-0.003323,0.994630,0.098935,0.030385,0.986473,0.163599,-0.010335,0.783572,0.604853,-0.142015,0.783572,0.604853,-0.142015,0.773027,0.510327,-0.376824,0.994630,0.098935,0.030385,0.000109,-0.538960,0.842331,0.718795,-0.423377,0.551439,0.676387,-0.439586,0.590985,0.000109,-0.538960,0.842331,0.676387,-0.439586,0.590985,0.549755,0.246742,0.798053,0.000167,0.290144,0.956983,0.000109,-0.538960,0.842331,0.549755,0.246742,0.798053,0.000030,0.953566,-0.301184,0.000018,0.783765,-0.621058,0.773027,0.510327,-0.376824,0.773027,0.510327,-0.376824,0.783572,0.604853,-0.142015,0.000030,0.953566,-0.301184,0.000018,0.783765,-0.621058,-0.000002,0.955365,-0.295429,0.684071,0.698318,-0.210711,0.684071,0.698318,-0.210711,0.773027,0.510327,-0.376824,0.000018,0.783765,-0.621058,0.773027,0.510327,-0.376824,0.684071,0.698318,-0.210711,0.604904,0.782386,0.148198,0.604904,0.782386,0.148198,0.994630,0.098935,0.030385,0.773027,0.510327,-0.376824,0.549755,0.246742,0.798053,0.604904,0.782386,0.148198,0.0,0.980943,0.194295,0.0,0.980943,0.194295,0.000167,0.290144,0.956983,0.549755,0.246742,0.798053,0.957174,0.288014,0.029417,0.991463,0.122861,0.043663,0.956202,0.264036,0.126342,0.956202,0.264036,0.126342,0.915169,0.388625,0.106942,0.957174,0.288014,0.029417,0.954799,0.294834,0.037828,0.998891,-0.007766,0.046444,0.991463,0.122861,0.043663,0.991463,0.122861,0.043663,0.957174,0.288014,0.029417,0.954799,0.294834,0.037828,0.980433,-0.142668,0.135635,0.986497,0.085488,0.139697,0.998239,0.011475,0.058203,0.998239,0.011475,0.058203,0.973654,-0.210940,0.086617,0.980433,-0.142668,0.135635,0.986497,0.085488,0.139697,0.956202,0.264036,0.126342,0.991463,0.122861,0.043663,0.991463,0.122861,0.043663,0.998239,0.011475,0.058203,0.986497,0.085488,0.139697,0.998239,0.011475,0.058203,0.991463,0.122861,0.043663,0.998891,-0.007766,0.046444,0.998891,-0.007766,0.046444,0.966022,-0.247037,0.075984,0.998239,0.011475,0.058203,0.998239,0.011475,0.058203,0.966022,-0.247037,0.075984,0.973654,-0.210940,0.086617,0.549755,0.246742,0.798053,0.994630,0.098935,0.030385,0.604904,0.782386,0.148198,0.908314,0.391848,0.146363,0.941396,0.328332,0.077275,0.853475,0.517541,0.061080,0.853475,0.517541,0.061080,0.904957,0.383372,0.184605,0.908314,0.391848,0.146363};
			return value;
		}
		private double[] getNormal_7_20_vector_19()
		{
			double[] value = {0.648663,-0.690275,0.320556,0.636573,-0.728381,0.253449,-0.002388,-0.965400,0.260762,-0.002388,-0.965400,0.260762,-0.006209,-0.941020,0.338293,0.648663,-0.690275,0.320556,0.955159,0.272342,0.116193,0.983330,0.174777,0.050150,0.941396,0.328332,0.077275,0.941396,0.328332,0.077275,0.908314,0.391848,0.146363,0.955159,0.272342,0.116193,0.651507,-0.741297,0.161299,0.991189,-0.107567,0.077286,0.648663,-0.690275,0.320556,0.986497,0.085488,0.139697,0.980433,-0.142668,0.135635,0.985652,0.052422,0.160445,0.986497,0.085488,0.139697,0.985652,0.052422,0.160445,0.955159,0.272342,0.116193,0.986497,0.085488,0.139697,0.955159,0.272342,0.116193,0.928517,0.319739,0.188743,0.956202,0.264036,0.126342,0.986497,0.085488,0.139697,0.928517,0.319739,0.188743,0.983330,0.174777,0.050150,0.955159,0.272342,0.116193,0.985652,0.052422,0.160445,0.985652,0.052422,0.160445,0.995156,0.069296,0.069738,0.983330,0.174777,0.050150,0.766779,0.641693,0.016748,0.876941,0.455991,0.151813,0.853475,0.517541,0.061080,0.853475,0.517541,0.061080,0.857172,0.515025,0.002402,0.766779,0.641693,0.016748,0.679013,-0.734126,0.001034,0.651507,-0.741297,0.161299,-0.003811,-0.984908,0.173037,-0.003811,-0.984908,0.173037,-0.000103,-1.0,0.000323,0.679013,-0.734126,0.001034,0.857172,0.515025,0.002402,0.853475,0.517541,0.061080,0.941396,0.328332,0.077275,0.941396,0.328332,0.077275,0.952915,0.303238,0.000356,0.857172,0.515025,0.002402,0.997594,-0.069238,0.003556,0.993287,-0.091037,0.071361,0.991189,-0.107567,0.077286,0.991189,-0.107567,0.077286,0.995185,-0.098010,0.000967,0.997594,-0.069238,0.003556,0.995532,-0.067588,0.065944,0.993287,-0.091037,0.071361,0.997594,-0.069238,0.003556,0.997594,-0.069238,0.003556,0.999156,-0.040728,0.005376,0.995532,-0.067588,0.065944,0.983330,0.174777,0.050150,0.995156,0.069296,0.069738,0.997370,0.071652,0.010931,0.997370,0.071652,0.010931,0.987962,0.154652,0.003688,0.983330,0.174777,0.050150,0.742006,0.669659,-0.031371,0.766779,0.641693,0.016748,0.857172,0.515025,0.002402,0.857172,0.515025,0.002402,0.852221,0.522661,-0.023348,0.742006,0.669659,-0.031371,0.678550,-0.734544,-0.003753,0.679013,-0.734126,0.001034,-0.000103,-1.0,0.000323,-0.000103,-1.0,0.000323,0.000114,-0.999994,-0.003385,0.678550,-0.734544,-0.003753,0.921323,0.388797,0.000324,0.852221,0.522661,-0.023348,0.857172,0.515025,0.002402,0.921323,0.388797,0.000324,0.857172,0.515025,0.002402,0.952915,0.303238,0.000356,0.952513,0.304499,0.000199,0.921323,0.388797,0.000324,0.952915,0.303238,0.000356,0.997392,-0.072156,-0.001328,0.997594,-0.069238,0.003556,0.995185,-0.098010,0.000967,0.995185,-0.098010,0.000967,0.995029,-0.099566,-0.001849,0.997392,-0.072156,-0.001328,0.668578,-0.742299,0.044680,0.678550,-0.734544,-0.003753,0.000114,-0.999994,-0.003385,0.000114,-0.999994,-0.003385};
			return value;
		}
		private double[] getNormal_7_20_vector_20()
		{
			double[] value = {-0.002634,-0.999891,0.014508,0.668578,-0.742299,0.044680,0.997930,-0.062488,0.015183,0.997392,-0.072156,-0.001328,0.995029,-0.099566,-0.001849,0.995029,-0.099566,-0.001849,0.994737,-0.094869,0.038713,0.997930,-0.062488,0.015183,0.999162,0.039665,-0.010054,0.998897,0.046963,-0.000078,0.997392,-0.072156,-0.001328,0.997392,-0.072156,-0.001328,0.997930,-0.062488,0.015183,0.999162,0.039665,-0.010054,0.378637,0.924223,-0.049460,0.512935,0.857807,-0.032640,0.806879,0.590710,0.002596,0.806879,0.590710,0.002596,0.814547,0.579647,-0.022862,0.378637,0.924223,-0.049460,0.806879,0.590710,0.002596,0.736525,0.676391,0.005028,0.921162,0.389180,0.000233,0.987962,0.154652,0.003688,0.952915,0.303238,0.000356,0.941396,0.328332,0.077275,0.941396,0.328332,0.077275,0.983330,0.174777,0.050150,0.987962,0.154652,0.003688,0.978197,0.207677,-0.000716,0.952513,0.304499,0.000199,0.952915,0.303238,0.000356,0.978197,0.207677,-0.000716,0.952915,0.303238,0.000356,0.987962,0.154652,0.003688,0.986557,0.163418,-0.000326,0.978197,0.207677,-0.000716,0.987962,0.154652,0.003688,0.985907,0.166898,-0.011491,0.977439,0.211218,0.000671,0.988559,0.150835,-0.000437,0.507315,0.859538,0.061861,0.915169,0.388625,0.106942,0.880039,0.449737,0.152537,0.880039,0.449737,0.152537,0.645016,0.725394,0.240326,0.507315,0.859538,0.061861,0.0,0.999873,0.015928,0.507315,0.859538,0.061861,0.645016,0.725394,0.240326,0.0,0.999873,0.015928,0.645016,0.725394,0.240326,0.099089,0.946585,0.306853,0.0,0.942821,0.333300,0.0,0.999873,0.015928,0.099089,0.946585,0.306853,0.915169,0.388625,0.106942,0.956202,0.264036,0.126342,0.928517,0.319739,0.188743,0.928517,0.319739,0.188743,0.880039,0.449737,0.152537,0.915169,0.388625,0.106942,0.645016,0.725394,0.240326,0.880039,0.449737,0.152537,0.908314,0.391848,0.146363,0.908314,0.391848,0.146363,0.904957,0.383372,0.184605,0.645016,0.725394,0.240326,0.880039,0.449737,0.152537,0.928517,0.319739,0.188743,0.955159,0.272342,0.116193,0.955159,0.272342,0.116193,0.908314,0.391848,0.146363,0.880039,0.449737,0.152537,0.835726,0.545339,-0.064556,0.814547,0.579647,-0.022862,0.950672,0.309828,-0.015160,0.950672,0.309828,-0.015160,0.957409,0.277599,-0.079422,0.835726,0.545339,-0.064556,0.382628,0.918905,-0.095964,0.378637,0.924223,-0.049460,0.814547,0.579647,-0.022862,0.814547,0.579647,-0.022862,0.835726,0.545339,-0.064556,0.382628,0.918905,-0.095964,-0.008875,0.992559,-0.121440,0.040418,0.996736,-0.069886,0.378637,0.924223,-0.049460,0.378637,0.924223,-0.049460,0.382628,0.918905,-0.095964,-0.008875,0.992559,-0.121440,-0.679926,0.722534,0.125082,-0.602720,0.797941,0.004353,-0.871691,0.487193,0.052902,-0.871691,0.487193,0.052902,-0.920210,0.340527,0.193013,-0.679926,0.722534,0.125082,0.985221,0.149292,-0.083970,0.985907,0.166898,-0.011491};
			return value;
		}
		private double[] getNormal_7_20_vector_21()
		{
			double[] value = {0.999162,0.039665,-0.010054,0.999162,0.039665,-0.010054,0.996970,0.057483,-0.052399,0.985221,0.149292,-0.083970,0.957409,0.277599,-0.079422,0.950672,0.309828,-0.015160,0.985907,0.166898,-0.011491,0.985907,0.166898,-0.011491,0.985221,0.149292,-0.083970,0.957409,0.277599,-0.079422,0.864952,0.495030,-0.082483,0.835726,0.545339,-0.064556,0.957409,0.277599,-0.079422,0.957409,0.277599,-0.079422,0.961175,0.244628,-0.127672,0.864952,0.495030,-0.082483,0.435347,0.891885,-0.122530,0.382628,0.918905,-0.095964,0.835726,0.545339,-0.064556,0.835726,0.545339,-0.064556,0.864952,0.495030,-0.082483,0.435347,0.891885,-0.122530,0.0,0.985477,-0.169807,-0.008875,0.992559,-0.121440,0.382628,0.918905,-0.095964,0.382628,0.918905,-0.095964,0.435347,0.891885,-0.122530,0.0,0.985477,-0.169807,0.004957,0.909917,0.414760,-0.679926,0.722534,0.125082,-0.920210,0.340527,0.193013,-0.920210,0.340527,0.193013,-0.869907,0.372333,0.323466,0.004957,0.909917,0.414760,0.980609,0.129143,-0.147401,0.985221,0.149292,-0.083970,0.996970,0.057483,-0.052399,0.996970,0.057483,-0.052399,0.944460,0.064965,-0.322142,0.980609,0.129143,-0.147401,0.961175,0.244628,-0.127672,0.957409,0.277599,-0.079422,0.985221,0.149292,-0.083970,0.985221,0.149292,-0.083970,0.980609,0.129143,-0.147401,0.961175,0.244628,-0.127672,-0.000328,0.265079,-0.964227,-0.000328,0.265079,-0.964227,-0.000328,0.265079,-0.964227,-0.000328,0.265079,-0.964227,-0.000328,0.265079,-0.964227,-0.000328,0.265079,-0.964226,-0.000328,0.265079,-0.964227,-0.000328,0.265079,-0.964227,-0.000328,0.265079,-0.964226,-0.000328,0.265079,-0.964226,-0.000328,0.265079,-0.964227,0.0,0.265064,-0.964231,-0.000328,0.265079,-0.964227,-0.000328,0.265079,-0.964226,0.0,0.265064,-0.964231,-0.000328,0.265079,-0.964227,0.0,0.265064,-0.964231,0.0,0.265064,-0.964231,-0.000328,0.265079,-0.964227,-0.000328,0.265079,-0.964227,0.0,0.265064,-0.964231,0.000076,0.979207,-0.202865,-0.000345,0.979189,-0.202952,-0.000156,0.978911,-0.204288,-0.000463,0.979184,-0.202976,0.000076,0.979207,-0.202865,-0.000156,0.978911,-0.204288,-0.000463,0.979184,-0.202976,-0.000156,0.978911,-0.204288,0.117179,0.892410,-0.435744,0.117179,0.892410,-0.435744,-0.000156,0.978911,-0.204288,0.000088,0.978693,-0.205330,0.000088,0.978693,-0.205330,0.222566,0.845149,-0.485991,0.117179,0.892410,-0.435744,0.996970,0.057483,-0.052399,0.999162,0.039665,-0.010054,0.997930,-0.062488,0.015183,0.997930,-0.062488,0.015183,0.999802,-0.019884,-0.000297,0.996970,0.057483,-0.052399,0.999802,-0.019884,-0.000297,0.984723,0.041814,-0.169031,0.918283,0.049923,-0.392764,0.999802,-0.019884,-0.000297,0.918283,0.049923,-0.392764,0.944460,0.064965,-0.322142,0.996970,0.057483,-0.052399,0.999802,-0.019884,-0.000297,0.944460,0.064965,-0.322142,0.695897,0.052063,-0.716252,0.944460,0.064965,-0.322142,0.918283,0.049923,-0.392764};
			return value;
		}
		private double[] getNormal_7_20_vector_22()
		{
			double[] value = {0.918283,0.049923,-0.392764,0.723643,0.059776,-0.687581,0.695897,0.052063,-0.716252,0.723643,0.059776,-0.687581,0.918283,0.049923,-0.392764,0.984723,0.041814,-0.169031,0.984723,0.041814,-0.169031,0.923912,0.208476,-0.320820,0.723643,0.059776,-0.687581,0.197761,0.196481,-0.960357,0.055875,0.249712,-0.966707,0.150623,0.465439,-0.872169,0.150623,0.465439,-0.872169,0.459611,0.314085,-0.830727,0.197761,0.196481,-0.960357,0.244884,0.105027,-0.963847,0.197761,0.196481,-0.960357,0.459611,0.314085,-0.830727,0.459611,0.314085,-0.830727,0.595903,0.125072,-0.793257,0.244884,0.105027,-0.963847,0.278113,-0.158295,-0.947415,0.244884,0.105027,-0.963847,0.595903,0.125072,-0.793257,0.595903,0.125072,-0.793257,0.572927,-0.155653,-0.804691,0.278113,-0.158295,-0.947415,0.708362,0.407998,-0.575987,0.459611,0.314085,-0.830727,0.150623,0.465439,-0.872169,0.150623,0.465439,-0.872169,0.278222,0.655623,-0.701962,0.708362,0.407998,-0.575987,0.877616,0.128012,-0.461956,0.595903,0.125072,-0.793257,0.459611,0.314085,-0.830727,0.459611,0.314085,-0.830727,0.708362,0.407998,-0.575987,0.877616,0.128012,-0.461956,0.849182,-0.061194,-0.524543,0.572927,-0.155653,-0.804691,0.595903,0.125072,-0.793257,0.595903,0.125072,-0.793257,0.877616,0.128012,-0.461956,0.849182,-0.061194,-0.524543,0.796500,0.515555,-0.315896,0.708362,0.407998,-0.575987,0.278222,0.655623,-0.701962,0.278222,0.655623,-0.701962,0.308736,0.834064,-0.457186,0.796500,0.515555,-0.315896,0.968252,0.175152,-0.178351,0.877616,0.128012,-0.461956,0.708362,0.407998,-0.575987,0.708362,0.407998,-0.575987,0.796500,0.515555,-0.315896,0.968252,0.175152,-0.178351,0.985236,0.076798,-0.153011,0.849182,-0.061194,-0.524543,0.877616,0.128012,-0.461956,0.877616,0.128012,-0.461956,0.968252,0.175152,-0.178351,0.985236,0.076798,-0.153011,0.735018,0.671890,-0.091174,0.796500,0.515555,-0.315896,0.308736,0.834064,-0.457186,0.308736,0.834064,-0.457186,0.262466,0.959106,-0.105954,0.735018,0.671890,-0.091174,0.959831,0.274798,-0.056667,0.968252,0.175152,-0.178351,0.796500,0.515555,-0.315896,0.796500,0.515555,-0.315896,0.735018,0.671890,-0.091174,0.959831,0.274798,-0.056667,0.976465,0.187612,-0.106390,0.985236,0.076798,-0.153011,0.968252,0.175152,-0.178351,0.968252,0.175152,-0.178351,0.959831,0.274798,-0.056667,0.976465,0.187612,-0.106390,0.715302,0.692517,-0.093614,0.735018,0.671890,-0.091174,0.262466,0.959106,-0.105954,0.262466,0.959106,-0.105954,0.196119,0.970811,-0.138073,0.715302,0.692517,-0.093614,0.940232,0.334656,-0.063008,0.959831,0.274798,-0.056667,0.735018,0.671890,-0.091174,0.735018,0.671890,-0.091174,0.715302,0.692517,-0.093614,0.940232,0.334656,-0.063008,0.923557,0.361898,-0.126776,0.976465,0.187612,-0.106390,0.959831,0.274798,-0.056667,0.959831,0.274798,-0.056667,0.940232,0.334656,-0.063008,0.923557,0.361898,-0.126776,0.550324,0.677626,-0.487818};
			return value;
		}
		private double[] getNormal_7_20_vector_23()
		{
			double[] value = {0.304491,0.667434,-0.679571,0.125739,0.847631,-0.515473,0.125739,0.847631,-0.515473,0.220187,0.893841,-0.390598,0.550324,0.677626,-0.487818,0.402642,0.522229,-0.751769,0.304491,0.667434,-0.679571,0.550324,0.677626,-0.487818,0.550324,0.677626,-0.487818,0.740559,0.382332,-0.552625,0.402642,0.522229,-0.751769,0.367681,0.731986,-0.573592,0.402642,0.522229,-0.751769,0.740559,0.382332,-0.552625,0.740559,0.382332,-0.552625,0.675256,0.615407,-0.406575,0.367681,0.731986,-0.573592,0.706690,0.643207,-0.294746,0.550324,0.677626,-0.487818,0.220187,0.893841,-0.390598,0.220187,0.893841,-0.390598,0.284025,0.921771,-0.263947,0.706690,0.643207,-0.294746,0.891102,0.308969,-0.332378,0.740559,0.382332,-0.552625,0.550324,0.677626,-0.487818,0.550324,0.677626,-0.487818,0.706690,0.643207,-0.294746,0.891102,0.308969,-0.332378,0.907342,0.307381,-0.286788,0.675256,0.615407,-0.406575,0.740559,0.382332,-0.552625,0.740559,0.382332,-0.552625,0.891102,0.308969,-0.332378,0.907342,0.307381,-0.286788,0.790568,0.611959,-0.022553,0.706690,0.643207,-0.294746,0.284025,0.921771,-0.263947,0.284025,0.921771,-0.263947,0.331336,0.943153,0.026070,0.790568,0.611959,-0.022553,0.962774,0.265135,-0.052625,0.891102,0.308969,-0.332378,0.706690,0.643207,-0.294746,0.706690,0.643207,-0.294746,0.790568,0.611959,-0.022553,0.962774,0.265135,-0.052625,0.991067,0.105699,-0.081326,0.907342,0.307381,-0.286788,0.891102,0.308969,-0.332378,0.891102,0.308969,-0.332378,0.962774,0.265135,-0.052625,0.991067,0.105699,-0.081326,0.805231,0.585306,0.094974,0.790568,0.611959,-0.022553,0.331336,0.943153,0.026070,0.331336,0.943153,0.026070,0.192241,0.928522,0.317634,0.805231,0.585306,0.094974,0.965383,0.259277,0.028486,0.962774,0.265135,-0.052625,0.790568,0.611959,-0.022553,0.790568,0.611959,-0.022553,0.805231,0.585306,0.094974,0.965383,0.259277,0.028486,0.991067,0.105699,-0.081326,0.962774,0.265135,-0.052625,0.965383,0.259277,0.028486,0.196119,0.970811,-0.138073,0.367681,0.731986,-0.573592,0.675256,0.615407,-0.406575,0.675256,0.615407,-0.406575,0.715302,0.692517,-0.093614,0.196119,0.970811,-0.138073,0.986428,0.052252,-0.155658,0.914355,-0.184211,-0.360584,0.849182,-0.061194,-0.524543,0.849182,-0.061194,-0.524543,0.985236,0.076798,-0.153011,0.986428,0.052252,-0.155658,0.969518,0.169474,-0.176955,0.986428,0.052252,-0.155658,0.985236,0.076798,-0.153011,0.985236,0.076798,-0.153011,0.976465,0.187612,-0.106390,0.969518,0.169474,-0.176955,0.923557,0.361898,-0.126776,0.904097,0.383931,-0.187631,0.976465,0.187612,-0.106390,0.969518,0.169474,-0.176955,0.976465,0.187612,-0.106390,0.904097,0.383931,-0.187631,0.993357,0.042420,-0.106967,0.979476,0.114964,-0.165562,0.904097,0.383931,-0.187631,0.904097,0.383931,-0.187631,0.952857,0.271365,-0.135734,0.993357,0.042420,-0.106967,0.993357,0.042420,-0.106967,0.994243,-0.090169,-0.057879};
			return value;
		}
		private double[] getNormal_7_20_vector_24()
		{
			double[] value = {0.982485,-0.105737,-0.153439,0.982485,-0.105737,-0.153439,0.979476,0.114964,-0.165562,0.993357,0.042420,-0.106967,0.898443,0.416774,-0.138200,0.940232,0.334656,-0.063008,0.715302,0.692517,-0.093614,0.715302,0.692517,-0.093614,0.865931,0.469027,-0.173717,0.898443,0.416774,-0.138200,0.923557,0.361898,-0.126776,0.940232,0.334656,-0.063008,0.898443,0.416774,-0.138200,0.952857,0.271365,-0.135734,0.904097,0.383931,-0.187631,0.923557,0.361898,-0.126776,0.923557,0.361898,-0.126776,0.898443,0.416774,-0.138200,0.952857,0.271365,-0.135734,0.865931,0.469027,-0.173717,0.715302,0.692517,-0.093614,0.675256,0.615407,-0.406575,0.675256,0.615407,-0.406575,0.907342,0.307381,-0.286788,0.865931,0.469027,-0.173717,0.962642,0.251197,-0.101092,0.865931,0.469027,-0.173717,0.907342,0.307381,-0.286788,0.907342,0.307381,-0.286788,0.991067,0.105699,-0.081326,0.962642,0.251197,-0.101092,0.969519,0.242998,-0.031371,0.962642,0.251197,-0.101092,0.991067,0.105699,-0.081326,0.991067,0.105699,-0.081326,0.965383,0.259277,0.028486,0.969519,0.242998,-0.031371,0.904097,0.383931,-0.187631,0.979476,0.114964,-0.165562,0.969518,0.169474,-0.176955,0.969518,0.169474,-0.176955,0.974337,-0.129287,-0.184262,0.986428,0.052252,-0.155658,0.982485,-0.105737,-0.153439,0.974337,-0.129287,-0.184262,0.969518,0.169474,-0.176955,0.969518,0.169474,-0.176955,0.979476,0.114964,-0.165562,0.982485,-0.105737,-0.153439,0.986428,0.052252,-0.155658,0.974337,-0.129287,-0.184262,0.914355,-0.184211,-0.360584,0.921756,0.378241,-0.085438,0.898443,0.416774,-0.138200,0.865931,0.469027,-0.173717,0.865931,0.469027,-0.173717,0.962642,0.251197,-0.101092,0.921756,0.378241,-0.085438,0.923912,0.208476,-0.320820,0.921756,0.378241,-0.085438,0.962642,0.251197,-0.101092,0.962642,0.251197,-0.101092,0.969519,0.242998,-0.031371,0.923912,0.208476,-0.320820,0.794057,0.215125,-0.568502,0.784675,0.260319,-0.562601,0.452079,0.474655,-0.755200,0.452079,0.474655,-0.755200,0.222566,0.845149,-0.485991,0.794057,0.215125,-0.568502,0.794057,0.215125,-0.568502,0.931092,0.207598,-0.299950,0.784675,0.260319,-0.562601,0.794057,0.215125,-0.568502,0.947826,0.163683,-0.273557,0.931092,0.207598,-0.299950,0.246641,0.699336,-0.670893,0.117179,0.892410,-0.435744,0.222566,0.845149,-0.485991,0.222566,0.845149,-0.485991,0.452079,0.474655,-0.755200,0.246641,0.699336,-0.670893,0.668578,-0.742299,0.044680,0.672368,-0.738376,0.052176,0.995627,-0.081621,0.045430,0.995627,-0.081621,0.045430,0.994737,-0.094869,0.038713,0.668578,-0.742299,0.044680,0.999802,-0.019884,-0.000297,0.997930,-0.062488,0.015183,0.994737,-0.094869,0.038713,0.994737,-0.094869,0.038713,0.995627,-0.081621,0.045430,0.999802,-0.019884,-0.000297,0.984723,0.041814,-0.169031,0.999802,-0.019884,-0.000297,0.995627,-0.081621,0.045430,0.995627,-0.081621,0.045430,0.997121,-0.053853,-0.053376,0.984723,0.041814,-0.169031};
			return value;
		}
		private double[] getNormal_7_20_vector_25()
		{
			double[] value = {0.988450,0.127708,-0.081593,0.923912,0.208476,-0.320820,0.984723,0.041814,-0.169031,0.988450,0.127708,-0.081593,0.984723,0.041814,-0.169031,0.997121,-0.053853,-0.053376,0.996273,-0.053116,-0.067967,0.988450,0.127708,-0.081593,0.997121,-0.053853,-0.053376,0.981775,0.180144,-0.060549,0.952857,0.271365,-0.135734,0.898443,0.416774,-0.138200,0.898443,0.416774,-0.138200,0.921756,0.378241,-0.085438,0.981775,0.180144,-0.060549,0.988450,0.127708,-0.081593,0.981775,0.180144,-0.060549,0.921756,0.378241,-0.085438,0.921756,0.378241,-0.085438,0.923912,0.208476,-0.320820,0.988450,0.127708,-0.081593,0.994243,-0.090169,-0.057879,0.993357,0.042420,-0.106967,0.952857,0.271365,-0.135734,0.952857,0.271365,-0.135734,0.981775,0.180144,-0.060549,0.994243,-0.090169,-0.057879,0.996273,-0.053116,-0.067967,0.994243,-0.090169,-0.057879,0.981775,0.180144,-0.060549,0.981775,0.180144,-0.060549,0.988450,0.127708,-0.081593,0.996273,-0.053116,-0.067967,-0.003811,-0.984908,0.173037,0.651507,-0.741297,0.161299,0.648663,-0.690275,0.320556,0.648663,-0.690275,0.320556,-0.006209,-0.941020,0.338293,-0.003811,-0.984908,0.173037,0.993287,-0.091037,0.071361,0.980433,-0.142668,0.135635,0.636573,-0.728381,0.253449,0.993287,-0.091037,0.071361,0.636573,-0.728381,0.253449,0.648663,-0.690275,0.320556,0.991189,-0.107567,0.077286,0.993287,-0.091037,0.071361,0.648663,-0.690275,0.320556,0.651507,-0.741297,0.161299,0.679013,-0.734126,0.001034,0.995185,-0.098010,0.000967,0.995185,-0.098010,0.000967,0.991189,-0.107567,0.077286,0.651507,-0.741297,0.161299,0.679013,-0.734126,0.001034,0.678550,-0.734544,-0.003753,0.995029,-0.099566,-0.001849,0.995029,-0.099566,-0.001849,0.995185,-0.098010,0.000967,0.679013,-0.734126,0.001034,0.678550,-0.734544,-0.003753,0.668578,-0.742299,0.044680,0.994737,-0.094869,0.038713,0.994737,-0.094869,0.038713,0.995029,-0.099566,-0.001849,0.678550,-0.734544,-0.003753,0.986790,0.110227,-0.118721,0.739897,-0.665928,0.095355,0.979137,0.195240,-0.056325,0.970135,0.084042,-0.227541,0.986790,0.110227,-0.118721,0.979137,0.195240,-0.056325,0.979137,0.195240,-0.056325,0.925375,0.258899,-0.276862,0.970135,0.084042,-0.227541,0.982485,-0.105737,-0.153439,0.986790,0.110227,-0.118721,0.970135,0.084042,-0.227541,0.970135,0.084042,-0.227541,0.974337,-0.129287,-0.184262,0.982485,-0.105737,-0.153439,0.675293,-0.602782,-0.425010,0.914355,-0.184211,-0.360584,0.974337,-0.129287,-0.184262,0.974337,-0.129287,-0.184262,0.970135,0.084042,-0.227541,0.675293,-0.602782,-0.425010,0.666766,-0.744925,-0.022580,0.997121,-0.053853,-0.053376,0.995627,-0.081621,0.045430,0.995627,-0.081621,0.045430,0.672368,-0.738376,0.052176,0.666766,-0.744925,-0.022580,0.647244,-0.761439,-0.035860,0.996273,-0.053116,-0.067967,0.997121,-0.053853,-0.053376,0.997121,-0.053853,-0.053376,0.666766,-0.744925,-0.022580,0.647244,-0.761439,-0.035860,0.739897,-0.665928,0.095355};
			return value;
		}
		private double[] getNormal_7_20_vector_26()
		{
			double[] value = {0.994243,-0.090169,-0.057879,0.996273,-0.053116,-0.067967,0.996273,-0.053116,-0.067967,0.647244,-0.761439,-0.035860,0.739897,-0.665928,0.095355,0.000914,-0.991945,0.126664,-0.002708,-0.990102,0.140322,0.007957,-0.927036,0.374888,0.007957,-0.927036,0.374888,0.004861,-0.929438,0.368947,0.000914,-0.991945,0.126664,-0.000924,-0.996493,-0.083673,-0.007437,-0.996900,-0.078332,-0.002708,-0.990102,0.140322,-0.002708,-0.990102,0.140322,0.000914,-0.991945,0.126664,-0.000924,-0.996493,-0.083673,0.002766,-0.859278,-0.511501,0.028146,-0.908367,-0.417226,-0.007437,-0.996900,-0.078332,-0.007437,-0.996900,-0.078332,-0.000924,-0.996493,-0.083673,0.002766,-0.859278,-0.511501,0.672368,-0.738376,0.052176,-0.000416,-0.999831,0.018399,0.0,-1.0,0.0,0.0,-1.0,0.0,0.666766,-0.744925,-0.022580,0.672368,-0.738376,0.052176,0.666766,-0.744925,-0.022580,0.0,-1.0,0.0,-0.000042,-1.0,-0.000733,-0.000042,-1.0,-0.000733,0.647244,-0.761439,-0.035860,0.666766,-0.744925,-0.022580,-0.000042,-1.0,-0.000733,0.003109,-0.966442,0.256865,0.739897,-0.665928,0.095355,0.739897,-0.665928,0.095355,0.647244,-0.761439,-0.035860,-0.000042,-1.0,-0.000733,-0.000416,-0.999831,0.018399,0.672368,-0.738376,0.052176,0.668578,-0.742299,0.044680,0.668578,-0.742299,0.044680,-0.002634,-0.999891,0.014508,-0.000416,-0.999831,0.018399,0.0,-0.000085,-1.0,0.0,-0.000085,-1.0,-0.017545,-0.000085,-0.999846,0.0,-0.000085,-1.0,-0.017545,-0.000085,-0.999846,-0.017545,-0.000085,-0.999846,0.0,-0.000085,-1.0,-0.017545,-0.000085,-0.999846,-0.485003,0.107238,-0.867913,0.0,-0.000085,-1.0,-0.485003,0.107238,-0.867913,-0.534105,0.118581,-0.837060,0.0,-0.000085,-1.0,-0.534105,0.118581,-0.837060,-0.017545,-0.000085,-0.999846,0.0,-0.000085,-1.0,0.0,-0.000085,-1.0,-0.017545,-0.000085,-0.999846,0.331573,0.943362,-0.011283,0.357573,0.933606,-0.022834,0.000002,0.999864,-0.016466,0.000002,0.999864,-0.016466,0.000002,0.999966,-0.008233,0.331573,0.943362,-0.011283,0.747888,0.663311,-0.026124,0.799738,0.597970,-0.053399,0.357573,0.933606,-0.022834,0.357573,0.933606,-0.022834,0.331573,0.943362,-0.011283,0.747888,0.663311,-0.026124,0.772124,0.634453,-0.035973,0.557820,0.826430,-0.076490,0.799738,0.597970,-0.053399,0.799738,0.597970,-0.053399,0.747888,0.663311,-0.026124,0.772124,0.634453,-0.035973,0.315317,0.948825,0.017479,0.331573,0.943362,-0.011283,0.000002,0.999966,-0.008233,0.000002,0.999966,-0.008233,0.000002,0.999878,0.015650,0.315317,0.948825,0.017479,0.703342,0.710587,0.019401,0.747888,0.663311,-0.026124,0.331573,0.943362,-0.011283,0.331573,0.943362,-0.011283,0.315317,0.948825,0.017479,0.703342,0.710587,0.019401,0.788400,0.614830,0.020222,0.772124,0.634453,-0.035973,0.747888,0.663311,-0.026124,0.747888,0.663311,-0.026124,0.703342,0.710587,0.019401};
			return value;
		}
		private double[] getNormal_7_20_vector_27()
		{
			double[] value = {0.788400,0.614830,0.020222,0.742006,0.669659,-0.031371,0.512935,0.857807,-0.032640,0.557820,0.826430,-0.076490,0.557820,0.826430,-0.076490,0.772124,0.634453,-0.035973,0.742006,0.669659,-0.031371,0.040418,0.996736,-0.069886,0.557820,0.826430,-0.076490,0.512935,0.857807,-0.032640,0.512935,0.857807,-0.032640,0.378637,0.924223,-0.049460,0.040418,0.996736,-0.069886,-0.076111,0.993604,0.083413,-0.023213,0.999079,-0.036096,-0.602720,0.797941,0.004353,-0.602720,0.797941,0.004353,-0.679926,0.722534,0.125082,-0.076111,0.993604,0.083413,-0.076111,0.993604,0.083413,-0.679926,0.722534,0.125082,0.004957,0.909917,0.414760,-0.023213,0.999079,-0.036096,0.000002,0.999558,-0.029731,-0.515292,0.856808,0.018832,-0.515292,0.856808,0.018832,-0.602720,0.797941,0.004353,-0.023213,0.999079,-0.036096,-0.602720,0.797941,0.004353,-0.515292,0.856808,0.018832,-0.792291,0.606858,0.063228,-0.792291,0.606858,0.063228,-0.871691,0.487193,0.052902,-0.602720,0.797941,0.004353,0.766779,0.641693,0.016748,0.742006,0.669659,-0.031371,0.772124,0.634453,-0.035973,0.772124,0.634453,-0.035973,0.788400,0.614830,0.020222,0.766779,0.641693,0.016748,0.149511,-0.264822,-0.952636,0.278113,-0.158295,-0.947415,0.572927,-0.155653,-0.804691,0.572927,-0.155653,-0.804691,0.506801,-0.389793,-0.768905,0.149511,-0.264822,-0.952636,0.914355,-0.184211,-0.360584,0.506801,-0.389793,-0.768905,0.572927,-0.155653,-0.804691,0.572927,-0.155653,-0.804691,0.849182,-0.061194,-0.524543,0.914355,-0.184211,-0.360584,0.281267,-0.263806,-0.922657,0.337877,0.141090,-0.930555,0.845457,-0.080301,-0.527971,0.845457,-0.080301,-0.527971,0.724330,-0.334227,-0.603024,0.281267,-0.263806,-0.922657,0.675293,-0.602782,-0.425010,0.724330,-0.334227,-0.603024,0.845457,-0.080301,-0.527971,0.845457,-0.080301,-0.527971,0.914355,-0.184211,-0.360584,0.675293,-0.602782,-0.425010,0.992060,-0.123208,0.025222,0.993638,-0.090289,-0.067313,0.979137,0.195240,-0.056325,0.979137,0.195240,-0.056325,0.739897,-0.665928,0.095355,0.992060,-0.123208,0.025222,0.979137,0.195240,-0.056325,0.993638,-0.090289,-0.067313,0.966784,0.009593,-0.255413,0.966784,0.009593,-0.255413,0.925375,0.258899,-0.276862,0.979137,0.195240,-0.056325,0.913565,0.099706,-0.394282,0.675293,-0.602782,-0.425010,0.925375,0.258899,-0.276862,0.925375,0.258899,-0.276862,0.966784,0.009593,-0.255413,0.913565,0.099706,-0.394282,0.007957,-0.927036,0.374888,0.739897,-0.665928,0.095355,0.003109,-0.966442,0.256865,0.003109,-0.966442,0.256865,0.004861,-0.929438,0.368947,0.007957,-0.927036,0.374888,0.364077,-0.863758,-0.348382,-0.019911,-0.891570,-0.452444,0.040050,-0.929536,-0.366551,0.040050,-0.929536,-0.366551,0.091982,-0.900455,-0.425113,0.364077,-0.863758,-0.348382,0.675293,-0.602782,-0.425010,0.028146,-0.908367,-0.417226,-0.019911,-0.891570,-0.452444,-0.019911,-0.891570,-0.452444,0.364077,-0.863758,-0.348382,0.675293,-0.602782,-0.425010};
			return value;
		}
		private double[] getNormal_7_20_vector_28()
		{
			double[] value = {0.921162,0.389180,0.000233,0.951219,0.308516,0.000227,0.950672,0.309828,-0.015160,0.921162,0.389180,0.000233,0.950672,0.309828,-0.015160,0.814547,0.579647,-0.022862,0.806879,0.590710,0.002596,0.921162,0.389180,0.000233,0.814547,0.579647,-0.022862,0.852221,0.522661,-0.023348,0.921323,0.388797,0.000324,0.800899,0.594966,-0.067651,0.806879,0.590710,0.002596,0.512935,0.857807,-0.032640,0.783291,0.621342,-0.019721,0.783291,0.621342,-0.019721,0.736525,0.676391,0.005028,0.806879,0.590710,0.002596,0.986557,0.163418,-0.000326,0.998897,0.046963,-0.000078,0.987615,0.156883,-0.001971,0.987615,0.156883,-0.001971,0.978197,0.207677,-0.000716,0.986557,0.163418,-0.000326,0.680684,0.712537,0.170179,0.703342,0.710587,0.019401,0.315317,0.948825,0.017479,0.315317,0.948825,0.017479,0.320911,0.924173,0.207172,0.680684,0.712537,0.170179,0.814986,0.566619,0.121412,0.788400,0.614830,0.020222,0.703342,0.710587,0.019401,0.703342,0.710587,0.019401,0.680684,0.712537,0.170179,0.814986,0.566619,0.121412,0.876941,0.455991,0.151813,0.766779,0.641693,0.016748,0.788400,0.614830,0.020222,0.788400,0.614830,0.020222,0.814986,0.566619,0.121412,0.876941,0.455991,0.151813,0.853475,0.517541,0.061080,0.876941,0.455991,0.151813,0.904957,0.383372,0.184605,0.337292,0.796925,0.501144,0.680684,0.712537,0.170179,0.320911,0.924173,0.207172,0.320911,0.924173,0.207172,0.257417,0.840259,0.477181,0.337292,0.796925,0.501144,0.320911,0.924173,0.207172,0.315317,0.948825,0.017479,0.000002,0.999878,0.015650,0.000002,0.999878,0.015650,0.0,0.976748,0.214390,0.320911,0.924173,0.207172,0.257417,0.840259,0.477181,0.320911,0.924173,0.207172,0.0,0.976748,0.214390,0.0,0.976748,0.214390,0.0,0.855996,0.516983,0.257417,0.840259,0.477181,0.337292,0.796925,0.501144,0.257417,0.840259,0.477181,0.0,0.855996,0.516983,0.0,0.855996,0.516983,0.0,0.784258,0.620435,0.337292,0.796925,0.501144,0.099089,0.946585,0.306853,0.337292,0.796925,0.501144,0.0,0.784258,0.620435,0.0,0.784258,0.620435,0.0,0.942821,0.333300,0.099089,0.946585,0.306853,0.814986,0.566619,0.121412,0.680684,0.712537,0.170179,0.744040,0.587357,0.318459,0.653269,0.695111,0.300100,0.653269,0.695111,0.300100,0.653269,0.695111,0.300100,0.645016,0.725394,0.240326,0.744040,0.587357,0.318459,0.337292,0.796925,0.501144,0.337292,0.796925,0.501144,0.099089,0.946585,0.306853,0.645016,0.725394,0.240326,0.904957,0.383372,0.184605,0.876941,0.455991,0.151813,0.814986,0.566619,0.121412,0.814986,0.566619,0.121412,0.744040,0.587357,0.318459,0.904957,0.383372,0.184605,0.904957,0.383372,0.184605,0.744040,0.587357,0.318459,0.645016,0.725394,0.240326,0.950672,0.309828,-0.015160,0.951219,0.308516,0.000227,0.977439,0.211218,0.000671,0.977439,0.211218,0.000671};
			return value;
		}
		private double[] getNormal_7_20_vector_29()
		{
			double[] value = {0.985907,0.166898,-0.011491,0.950672,0.309828,-0.015160,0.852221,0.522661,-0.023348,0.800899,0.594966,-0.067651,0.799872,0.597739,-0.053967,0.799872,0.597739,-0.053967,0.742006,0.669659,-0.031371,0.852221,0.522661,-0.023348,0.512935,0.857807,-0.032640,0.742006,0.669659,-0.031371,0.799872,0.597739,-0.053967,0.799872,0.597739,-0.053967,0.783291,0.621342,-0.019721,0.512935,0.857807,-0.032640,0.999162,0.039665,-0.010054,0.985907,0.166898,-0.011491,0.988559,0.150835,-0.000437,0.988559,0.150835,-0.000437,0.998897,0.046963,-0.000078,0.999162,0.039665,-0.010054,0.988559,0.150835,-0.000437,0.987615,0.156883,-0.001971,0.998897,0.046963,-0.000078,0.987962,0.154652,0.003688,0.997370,0.071652,0.010931,0.994695,0.102762,0.004745,0.987962,0.154652,0.003688,0.994695,0.102762,0.004745,0.994695,0.102762,0.004745,0.986557,0.163418,-0.000326,0.987962,0.154652,0.003688,0.994695,0.102762,0.004745,0.994695,0.102762,0.004745,0.999926,0.012044,0.001367,0.998897,0.046963,-0.000078,0.986557,0.163418,-0.000326,0.994695,0.102762,0.004745,0.998897,0.046963,-0.000078,0.999926,0.012044,0.001367,0.999004,-0.044606,-0.000746,0.999156,-0.040728,0.005376,0.999926,0.012044,0.001367,0.999156,-0.040728,0.005376,0.997594,-0.069238,0.003556,0.998897,0.046963,-0.000078,0.999926,0.012044,0.001367,0.997594,-0.069238,0.003556,0.997392,-0.072156,-0.001328,0.998897,0.046963,-0.000078,0.997594,-0.069238,0.003556,0.995156,0.069296,0.069738,0.985652,0.052422,0.160445,0.980433,-0.142668,0.135635,0.987572,-0.100446,0.120881,0.995156,0.069296,0.069738,0.980433,-0.142668,0.135635,0.987572,-0.100446,0.120881,0.987572,-0.100446,0.120881,0.980433,-0.142668,0.135635,0.987572,-0.100446,0.120881,0.980433,-0.142668,0.135635,0.993287,-0.091037,0.071361,0.995532,-0.067588,0.065944,0.987572,-0.100446,0.120881,0.993287,-0.091037,0.071361,-0.149022,-0.988644,-0.019369,-0.149626,-0.988653,-0.013317,-0.071423,-0.971751,-0.224942,-0.149022,-0.988644,-0.019369,-0.071423,-0.971751,-0.224942,-0.066069,-0.970864,-0.230344,-0.133243,-0.977871,-0.161289,-0.149022,-0.988644,-0.019369,-0.066069,-0.970864,-0.230344,-0.653269,0.695111,0.300100,-0.653269,0.695111,0.300100,-0.653269,0.695111,0.300100,0.093675,0.973384,-0.209161,0.093675,0.973384,-0.209161,0.093675,0.973384,-0.209161,0.093675,0.973384,-0.209161,0.093675,0.973384,-0.209161,0.093675,0.973384,-0.209161,-0.076138,0.964050,-0.254578,-0.076138,0.964051,-0.254578,-0.076138,0.964050,-0.254578,0.091982,-0.900455,-0.425113,0.281267,-0.263806,-0.922657,0.724330,-0.334227,-0.603024,0.724330,-0.334227,-0.603024,0.364077,-0.863758,-0.348382,0.091982,-0.900455,-0.425113,0.724330,-0.334227,-0.603024,0.675293,-0.602782,-0.425010,0.364077,-0.863758,-0.348382,-0.125625,0.848579,-0.513938,0.125739,0.847631,-0.515473,0.304491,0.667434,-0.679571,0.304491,0.667434,-0.679571,-0.305752,0.668689,-0.677770};
			return value;
		}
		private double[] getNormal_7_20_vector_30()
		{
			double[] value = {-0.125625,0.848579,-0.513938,-0.216223,-0.447111,0.867951,-0.216223,-0.447111,0.867951,-0.216223,-0.447111,0.867951,0.192241,0.928522,0.317634,-0.183352,0.927566,0.325582,0.000055,0.879508,0.475883,0.000055,0.879508,0.475883,0.000143,0.879508,0.475884,0.192241,0.928522,0.317634,0.000294,0.879506,0.475887,0.192241,0.928522,0.317634,0.000143,0.879508,0.475884,-0.718145,0.175068,-0.673512,0.000055,0.879508,0.475883,-0.183352,0.927566,0.325582,-0.019911,-0.891570,-0.452444,0.028146,-0.908367,-0.417226,0.002766,-0.859278,-0.511501,0.002766,-0.859278,-0.511501,0.040050,-0.929536,-0.366551,-0.019911,-0.891570,-0.452444,0.534105,0.118581,-0.837060,0.967730,0.221553,0.120057,0.485003,0.107238,-0.867913,-0.967730,0.221553,0.120057,-0.534105,0.118581,-0.837060,-0.485003,0.107238,-0.867913,0.248859,0.968029,-0.031431,0.248859,0.968029,-0.031431,0.248859,0.968029,-0.031431,0.106514,0.993389,0.042814,-0.076111,0.993604,0.083413,0.004957,0.909917,0.414760,-0.717690,-0.425460,0.551276,-0.676171,-0.439707,0.591144,-0.994027,-0.077050,0.077291,-0.994027,-0.077050,0.077291,-0.965432,-0.243189,0.093808,-0.717690,-0.425460,0.551276,-0.957811,-0.271167,0.095217,-0.965432,-0.243189,0.093808,-0.994027,-0.077050,0.077291,-0.994027,-0.077050,0.077291,-0.997747,-0.019154,0.064290,-0.957811,-0.271167,0.095217,-0.995610,0.086909,0.034753,-0.998887,-0.008008,0.046473,-0.997747,-0.019154,0.064290,-0.997747,-0.019154,0.064290,-0.994027,-0.077050,0.077291,-0.995610,0.086909,0.034753,-0.988585,-0.147106,0.032542,-0.988585,-0.147106,0.032542,-0.988585,-0.147106,0.032542,-0.988585,-0.147106,0.032542,-0.988585,-0.147106,0.032542,-0.988585,-0.147106,0.032542,-0.988585,-0.147106,0.032542,-0.988585,-0.147106,0.032542,-0.988585,-0.147106,0.032542,-0.998902,-0.010447,0.045668,-0.996315,-0.062079,0.059175,-0.549595,0.246800,0.798145,-0.998902,-0.010447,0.045668,-0.549595,0.246800,0.798145,-0.994654,0.098688,0.030390,-0.998902,-0.010447,0.045668,-0.994654,0.098688,0.030390,-0.998363,0.056009,-0.011597,-0.994027,-0.077050,0.077291,-0.676171,-0.439707,0.591144,-0.996315,-0.062079,0.059175,-0.040308,0.998062,0.047411,-0.040308,0.998062,0.047411,-0.040308,0.998062,0.047411,-0.040308,0.998062,0.047411,-0.040308,0.998062,0.047411,-0.040308,0.998062,0.047411,-0.057546,0.005003,-0.998330,-0.057546,0.005003,-0.998330,-0.057546,0.005003,-0.998330,-0.057546,0.005003,-0.998330,-0.057546,0.005003,-0.998330,-0.057546,0.005003,-0.998330,0.041334,-0.999132,0.005160,0.041334,-0.999132,0.005160,0.041334,-0.999132,0.005160,0.041334,-0.999132,0.005160,0.041334,-0.999132,0.005160,0.041334,-0.999132,0.005160,-0.061887,-0.009803,0.998035,-0.061887,-0.009803,0.998035,-0.061887,-0.009803,0.998035,-0.061887,-0.009803,0.998035,-0.061887,-0.009803,0.998035,-0.061887,-0.009803,0.998035,-0.040980,0.999135,0.007039,-0.040980,0.999135,0.007039,-0.040980,0.999135,0.007039};
			return value;
		}
		private double[] getNormal_7_20_vector_31()
		{
			double[] value = {-0.040980,0.999135,0.007039,-0.040980,0.999135,0.007039,-0.040980,0.999135,0.007039,0.783572,0.604853,-0.142015,0.986473,0.163599,-0.010335,0.954799,0.294834,0.037828,0.998891,-0.007766,0.046444,0.997752,-0.018954,0.064281,0.959415,-0.265642,0.094644,0.959415,-0.265642,0.094644,0.966022,-0.247037,0.075984,0.998891,-0.007766,0.046444,0.998901,-0.010446,0.045681,0.996316,-0.062081,0.059163,0.986473,0.163599,-0.010335,0.986473,0.163599,-0.010335,0.998836,-0.010916,0.046991,0.998901,-0.010446,0.045681,0.994032,-0.077012,0.077268,0.676387,-0.439586,0.590985,0.718795,-0.423377,0.551439,0.718795,-0.423377,0.551439,0.994619,-0.060971,0.083757,0.994032,-0.077012,0.077268,0.994032,-0.077012,0.077268,0.994619,-0.060971,0.083757,0.959415,-0.265642,0.094644,0.959415,-0.265642,0.094644,0.997752,-0.018954,0.064281,0.994032,-0.077012,0.077268,0.997752,-0.018954,0.064281,0.998891,-0.007766,0.046444,0.991739,0.118250,0.049702,0.991739,0.118250,0.049702,0.994032,-0.077012,0.077268,0.997752,-0.018954,0.064281,0.988585,-0.147107,0.032542,0.988585,-0.147107,0.032542,0.988585,-0.147107,0.032542,0.988585,-0.147107,0.032542,0.988585,-0.147107,0.032542,0.988585,-0.147107,0.032542,0.988585,-0.147107,0.032542,0.988585,-0.147107,0.032542,0.988585,-0.147107,0.032542,0.549755,0.246742,0.798053,0.996316,-0.062081,0.059163,0.998901,-0.010446,0.045681,0.994630,0.098935,0.030385,0.549755,0.246742,0.798053,0.998901,-0.010446,0.045681,0.994630,0.098935,0.030385,0.998901,-0.010446,0.045681,0.998836,-0.010916,0.046991,0.676387,-0.439586,0.590985,0.994032,-0.077012,0.077268,0.996316,-0.062081,0.059163,0.040977,0.998034,0.047416,0.040977,0.998034,0.047416,0.040977,0.998034,0.047416,0.040977,0.998034,0.047416,0.040977,0.998034,0.047416,0.040977,0.998034,0.047416,0.057548,0.004983,-0.998330,0.057548,0.004983,-0.998330,0.057548,0.004983,-0.998330,0.057548,0.004983,-0.998330,0.057548,0.004983,-0.998330,0.057548,0.004983,-0.998330,-0.041334,-0.999132,0.005160,-0.041334,-0.999132,0.005160,-0.041334,-0.999132,0.005160,-0.041334,-0.999132,0.005160,-0.041334,-0.999132,0.005160,-0.041334,-0.999132,0.005160,0.061887,-0.009804,0.998035,0.061887,-0.009804,0.998035,0.061887,-0.009804,0.998035,0.061887,-0.009804,0.998035,0.061887,-0.009804,0.998035,0.061887,-0.009804,0.998035,0.041334,0.999116,0.007642,0.041334,0.999116,0.007642,0.041334,0.999116,0.007642,0.041334,0.999116,0.007642,0.041334,0.999116,0.007642,0.041334,0.999116,0.007642,0.676387,-0.439586,0.590985,0.996316,-0.062081,0.059163,0.549755,0.246742,0.798053,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0};
			return value;
		}
		private double[] getNormal_7_20_vector_32()
		{
			double[] value = {1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.471297,0.881974,0.0,-0.471297,0.881975,0.0,-0.471297,0.881975,0.0,-0.471297,0.881975,0.0,-0.471297,0.881975,0.0,-0.471297,0.881974,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.000012,0.0,-1.0,0.000012,0.0,-1.0,0.000012,0.0,-1.0,0.000012,0.0,-1.0,0.000012,0.0,-1.0,0.000012,0.0,-1.0,0.0,-0.471297,-0.881975,0.0,-0.471297,-0.881975,0.0,-0.471297,-0.881975,0.0,-0.471297,-0.881975,0.0,-0.471297,-0.881975,0.0,-0.471297,-0.881975,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-0.471300,-0.881973,0.0,-0.471300,-0.881973,0.0,-0.471300,-0.881973,0.0,-0.471300,-0.881973,0.0,-0.471300,-0.881973,0.0,-0.471300,-0.881973,0.0,1.0,0.0,0.0,1.0,0.0};
			return value;
		}
		private double[] getNormal_7_20_vector_33()
		{
			double[] value = {0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-0.471297,0.881974,0.0,-0.471297,0.881974,0.0,-0.471297,0.881975,0.0,-0.471297,0.881975,0.0,-0.471297,0.881975,0.0,-0.471297,0.881974,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,0.999998,0.001851,0.0,0.999998,0.001851,0.0,0.999998,0.001851,0.0,0.999998,0.001851,0.0,0.999998,0.001851,0.0,0.999998,0.001851,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.471297,0.881975,0.0,-0.471297,0.881975,0.0,-0.471297,0.881975,0.0,-0.471297,0.881975,0.0,-0.471297,0.881975,0.0,-0.471297,0.881975,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.000006,0.000003,-1.0,0.000006,0.000003,-1.0,0.000006,0.000003,-1.0,0.000006,0.000003,-1.0,0.000006,0.000003,-1.0,0.000006,0.000003,-1.0,0.0,-0.471303,-0.881971,0.0,-0.471303,-0.881971,0.0,-0.471303,-0.881971,0.0,-0.471303,-0.881971,0.0,-0.471303,-0.881971,0.0,-0.471303,-0.881971,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.000925,-0.000338,1.0,0.000925,-0.000338,1.0,0.000925,-0.000338,1.0,0.000925,-0.000338,1.0,0.000925,-0.000338,1.0,0.000925,-0.000338,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0};
			return value;
		}
		private double[] getNormal_7_20_vector_34()
		{
			double[] value = {0.999999,0.000925,0.000680,0.999999,0.000925,0.000680,0.999999,0.000925,0.000680,0.999999,0.000925,0.000680,0.999999,0.000925,0.000680,0.999999,0.000925,0.000680,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,-0.942771,-0.333440,0.0,-0.431363,-0.902178,0.0,-0.285253,-0.958452,0.0,-0.285253,-0.958452,0.0,-0.975507,-0.219970,0.0,-0.942771,-0.333440,0.0,0.425966,-0.904739,0.0,0.941139,-0.338020,0.0,0.974463,-0.224548,0.0,0.974463,-0.224548,0.0,0.279277,-0.960210,0.0,0.425966,-0.904739,0.0,0.942771,0.333442,0.0,0.431361,0.902180,0.0,0.285284,0.958443,0.0,0.285284,0.958443,0.0,0.975508,0.219963,0.0,0.942771,0.333442,0.0,-0.425968,0.904738,0.0,-0.941139,0.338021,0.0,-0.974459,0.224563,0.0,-0.974459,0.224563,0.0,-0.279280,0.960210,0.0,-0.425968,0.904738,0.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.941139,0.338021,0.0,-0.942771,-0.333440,0.0,-0.975507,-0.219970,0.0,-0.941139,0.338021,0.0,-0.975507,-0.219970,0.0,-0.975508,-0.219964,-0.000003,-0.941139,0.338021,0.0,-0.975508,-0.219964,-0.000003,-0.942771,-0.333440,-0.000005,-0.942771,-0.333440,-0.000005,-0.941139,0.338020,0.0,-0.974459,0.224567,0.0,-0.942771,-0.333440,-0.000005,-0.974459,0.224567,0.0,-0.974459,0.224563,0.0,-0.941139,0.338021,0.0,-0.942771,-0.333440,-0.000005,-0.974459,0.224563,0.0,-0.285261,-0.958450,-0.000003,-0.431362,-0.902179,-0.000005,-0.942771,-0.333440,-0.000005,-0.942771,-0.333440,-0.000005};
			return value;
		}
		private double[] getNormal_7_20_vector_35()
		{
			double[] value = {-0.975508,-0.219964,-0.000003,-0.285261,-0.958450,-0.000003,-0.431363,-0.902178,0.0,0.425966,-0.904739,0.0,0.279277,-0.960210,0.0,-0.431363,-0.902178,0.0,0.279277,-0.960210,0.0,0.279303,-0.960203,0.0,-0.431363,-0.902178,0.0,0.279303,-0.960203,0.0,0.425968,-0.904738,0.0,0.425968,-0.904738,0.0,-0.431362,-0.902179,-0.000005,-0.285261,-0.958450,-0.000003,0.425968,-0.904738,0.0,-0.285261,-0.958450,-0.000003,-0.285253,-0.958452,0.0,-0.431363,-0.902178,0.0,0.425968,-0.904738,0.0,-0.285253,-0.958452,0.0,0.974468,-0.224528,0.0,0.941138,-0.338022,0.0,0.425968,-0.904738,0.0,0.425968,-0.904738,0.0,0.279303,-0.960203,0.0,0.974468,-0.224528,0.0,0.941139,-0.338020,0.0,0.942771,0.333442,0.0,0.975508,0.219963,0.0,0.941139,-0.338020,0.0,0.975508,0.219963,0.0,0.975507,0.219969,0.000003,0.941139,-0.338020,0.0,0.975507,0.219969,0.000003,0.942772,0.333439,0.000005,0.942772,0.333439,0.000005,0.941138,-0.338022,0.0,0.974468,-0.224528,0.0,0.942772,0.333439,0.000005,0.974468,-0.224528,0.0,0.974463,-0.224548,0.0,0.941139,-0.338020,0.0,0.942772,0.333439,0.000005,0.974463,-0.224548,0.0,0.285276,0.958445,0.000003,0.431362,0.902179,0.000005,0.942772,0.333439,0.000005,0.942772,0.333439,0.000005,0.975507,0.219969,0.000003,0.285276,0.958445,0.000003,0.431361,0.902180,0.0,-0.425968,0.904738,0.0,-0.279280,0.960210,0.0,0.431361,0.902180,0.0,-0.279280,0.960210,0.0,-0.279253,0.960217,0.0,0.431361,0.902180,0.0,-0.279253,0.960217,0.0,-0.425969,0.904738,0.0,-0.425969,0.904738,0.0,0.431362,0.902179,0.000005,0.285276,0.958445,0.000003,-0.425969,0.904738,0.0,0.285276,0.958445,0.000003,0.285284,0.958443,0.0,0.431361,0.902180,0.0,-0.425969,0.904738,0.0,0.285284,0.958443,0.0,-0.974459,0.224567,0.0,-0.941139,0.338020,0.0,-0.425969,0.904738,0.0,-0.425969,0.904738,0.0,-0.279253,0.960217,0.0,-0.974459,0.224567,0.0,-0.776201,-0.630446,-0.007121,-0.776201,-0.630446,-0.007121,-0.776201,-0.630446,-0.007121,-0.776201,-0.630446,-0.007121,-0.776201,-0.630446,-0.007121,-0.776201,-0.630446,-0.007121,0.772867,-0.634527,-0.007161,0.772867,-0.634527,-0.007161,0.772867,-0.634527,-0.007161,0.772867,-0.634527,-0.007161,0.772867,-0.634527,-0.007161,0.772867,-0.634527,-0.007161,0.821899,0.569591,0.006901,0.821899,0.569591,0.006901,0.821899,0.569591,0.006901,0.821899,0.569591,0.006901,0.821899,0.569591,0.006901,0.821899,0.569591,0.006901,-0.772875,0.634518,0.007161,-0.772875,0.634518,0.007161,-0.772875,0.634518,0.007161,-0.772875,0.634518,0.007161,-0.772875,0.634518,0.007161,-0.772875,0.634518,0.007161,-0.515457,-0.418728,-0.747644,-0.515457,-0.418728,-0.747644};
			return value;
		}
		private double[] getNormal_7_20_vector_36()
		{
			double[] value = {-0.515457,-0.418728,-0.747644,-0.515457,-0.418728,-0.747644,-0.515457,-0.418728,-0.747644,-0.515457,-0.418728,-0.747644,0.512721,-0.421044,-0.748224,0.512721,-0.421044,-0.748224,0.512721,-0.421044,-0.748224,0.512721,-0.421044,-0.748224,0.512721,-0.421044,-0.748224,0.512721,-0.421044,-0.748224,0.515796,0.411430,-0.751452,0.515796,0.411430,-0.751452,0.515796,0.411430,-0.751452,0.515796,0.411430,-0.751452,0.515796,0.411430,-0.751452,0.515796,0.411430,-0.751452,-0.510934,0.419360,-0.750390,-0.510934,0.419360,-0.750390,-0.510934,0.419360,-0.750389,-0.510934,0.419360,-0.750389,-0.510934,0.419360,-0.750390,-0.510934,0.419360,-0.750390,-0.867496,-0.497444,-0.000769,-0.867496,-0.497444,-0.000769,-0.867496,-0.497444,-0.000769,-0.867496,-0.497444,-0.000769,-0.867496,-0.497444,-0.000769,-0.867496,-0.497444,-0.000769,0.140409,0.114164,0.983490,0.140409,0.114164,0.983490,0.140409,0.114164,0.983490,0.140409,0.114164,0.983490,0.140409,0.114164,0.983490,0.140409,0.114164,0.983490,0.668974,-0.743280,-0.002928,0.668974,-0.743280,-0.002928,0.668974,-0.743280,-0.002928,0.668974,-0.743280,-0.002928,0.668974,-0.743280,-0.002928,0.668974,-0.743280,-0.002928,-0.139374,0.114763,0.983567,-0.139374,0.114763,0.983567,-0.139374,0.114763,0.983567,-0.139374,0.114763,0.983567,-0.139374,0.114763,0.983567,-0.139374,0.114763,0.983567,0.867670,0.497141,0.000777,0.867670,0.497141,0.000777,0.867670,0.497141,0.000777,0.867670,0.497141,0.000777,0.867670,0.497141,0.000777,0.867670,0.497141,0.000777,-0.138799,-0.109734,0.984222,-0.138799,-0.109734,0.984222,-0.138799,-0.109734,0.984222,-0.138799,-0.109734,0.984222,-0.138799,-0.109734,0.984222,-0.138799,-0.109734,0.984222,-0.649391,0.760454,0.000459,-0.649391,0.760454,0.000459,-0.649391,0.760454,0.000459,-0.649391,0.760454,0.000459,-0.649391,0.760454,0.000459,-0.649391,0.760454,0.000459,0.139696,-0.114338,0.983571,0.139696,-0.114338,0.983571,0.139696,-0.114338,0.983571,0.139696,-0.114338,0.983571,0.139696,-0.114338,0.983571,0.139696,-0.114338,0.983571,-0.853650,0.520843,0.002053,-0.853650,0.520843,0.002053,-0.853650,0.520842,0.002053,-0.853650,0.520842,0.002053,-0.853650,0.520843,0.002053,-0.853650,0.520843,0.002053,-0.654788,-0.755810,-0.001714,-0.654788,-0.755810,-0.001714,-0.654788,-0.755810,-0.001714,-0.654788,-0.755810,-0.001714,-0.654788,-0.755810,-0.001714,-0.654788,-0.755810,-0.001714,0.864902,-0.501940,0.000384,0.864902,-0.501940,0.000384,0.864902,-0.501940,0.000384,0.864902,-0.501940,0.000384,0.864902,-0.501940,0.000384,0.864902,-0.501940,0.000384,0.657426,0.753518,0.001697,0.657426,0.753518,0.001697,0.657426,0.753518,0.001697,0.657426,0.753518,0.001697,0.657426,0.753518,0.001697,0.657426,0.753518,0.001697,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0};
			return value;
		}
		private double[] getNormal_7_20_vector_37()
		{
			double[] value = {0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,0.000003,-0.000002,-1.0,-0.942771,-0.333440,0.0,-0.431363,-0.902179,0.0,-0.285252,-0.958452,0.0,-0.285252,-0.958452,0.0,-0.975503,-0.219987,0.0,-0.942771,-0.333440,0.0,0.425968,-0.904738,0.0,0.941139,-0.338019,0.0,0.974463,-0.224549,0.0,0.974463,-0.224549,0.0,0.279278,-0.960210,0.0,0.425968,-0.904738,0.0,0.942771,0.333441,0.0,0.431360,0.902180,0.0,0.285284,0.958443,0.0,0.285284,0.958443,0.0,0.975508,0.219962,0.0,0.942771,0.333441,0.0,-0.425970,0.904737,0.0,-0.941139,0.338021,0.0,-0.974463,0.224547,0.0,-0.974463,0.224547,0.0,-0.279281,0.960210,0.0,-0.425970,0.904737,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,-0.941139,0.338021,0.0,-0.942771,-0.333440,0.0,-0.975503,-0.219987,0.0,-0.941139,0.338021,0.0,-0.975503,-0.219987,0.0,-0.975508,-0.219964,-0.000003,-0.941139,0.338021,0.0,-0.975508,-0.219964,-0.000003,-0.942771,-0.333441,-0.000005,-0.942771,-0.333441,-0.000005,-0.941139,0.338020,0.0,-0.974458,0.224568,0.0,-0.942771,-0.333441,-0.000005,-0.974458,0.224568,0.0,-0.974463,0.224547,0.0,-0.941139,0.338021,0.0,-0.942771,-0.333441,-0.000005,-0.974463,0.224547,0.0,-0.285260,-0.958450,-0.000003,-0.431362,-0.902179,-0.000005,-0.942771,-0.333441,-0.000005,-0.942771,-0.333441,-0.000005,-0.975508,-0.219964,-0.000003,-0.285260,-0.958450,-0.000003,-0.431363,-0.902179,0.0,0.425968,-0.904738,0.0,0.279278,-0.960210,0.0,-0.431363,-0.902179,0.0,0.279278,-0.960210,0.0,0.279303,-0.960203,0.0,-0.431363,-0.902179,0.0,0.279303,-0.960203,0.0,0.425967,-0.904739,0.0,0.425967,-0.904739,0.0,-0.431362,-0.902179,-0.000005,-0.285260,-0.958450,-0.000003,0.425967,-0.904739,0.0,-0.285260,-0.958450,-0.000003,-0.285252,-0.958452,0.0,-0.431363,-0.902179,0.0,0.425967,-0.904739,0.0,-0.285252,-0.958452,0.0,0.974467,-0.224529,0.0,0.941138,-0.338022,0.0,0.425967,-0.904739,0.0,0.425967,-0.904739,0.0};
			return value;
		}
		private double[] getNormal_7_20_vector_38()
		{
			double[] value = {0.279303,-0.960203,0.0,0.974467,-0.224529,0.0,0.941139,-0.338019,0.0,0.942771,0.333441,0.0,0.975508,0.219962,0.0,0.941139,-0.338019,0.0,0.975508,0.219962,0.0,0.975507,0.219968,0.000003,0.941139,-0.338019,0.0,0.975507,0.219968,0.000003,0.942772,0.333438,0.000005,0.942772,0.333438,0.000005,0.941138,-0.338022,0.0,0.974467,-0.224529,0.0,0.942772,0.333438,0.000005,0.974467,-0.224529,0.0,0.974463,-0.224549,0.0,0.941139,-0.338019,0.0,0.942772,0.333438,0.000005,0.974463,-0.224549,0.0,0.285276,0.958445,0.000003,0.431361,0.902179,0.000005,0.942772,0.333438,0.000005,0.942772,0.333438,0.000005,0.975507,0.219968,0.000003,0.285276,0.958445,0.000003,0.431360,0.902180,0.0,-0.425970,0.904737,0.0,-0.279281,0.960210,0.0,0.431360,0.902180,0.0,-0.279281,0.960210,0.0,-0.279254,0.960217,0.0,0.431360,0.902180,0.0,-0.279254,0.960217,0.0,-0.425971,0.904737,0.0,-0.425971,0.904737,0.0,0.431361,0.902179,0.000005,0.285276,0.958445,0.000003,-0.425971,0.904737,0.0,0.285276,0.958445,0.000003,0.285284,0.958443,0.0,0.431360,0.902180,0.0,-0.425971,0.904737,0.0,0.285284,0.958443,0.0,-0.974458,0.224568,0.0,-0.941139,0.338020,0.0,-0.425971,0.904737,0.0,-0.425971,0.904737,0.0,-0.279254,0.960217,0.0,-0.974458,0.224568,0.0,-0.776201,-0.630445,-0.007122,-0.776201,-0.630445,-0.007122,-0.776201,-0.630445,-0.007122,-0.776201,-0.630445,-0.007122,-0.776201,-0.630445,-0.007122,-0.776201,-0.630445,-0.007122,0.772867,-0.634527,-0.007160,0.772867,-0.634527,-0.007160,0.772867,-0.634527,-0.007160,0.772867,-0.634527,-0.007160,0.772867,-0.634527,-0.007160,0.772867,-0.634527,-0.007160,0.821901,0.569588,0.006901,0.821901,0.569588,0.006901,0.821901,0.569588,0.006901,0.821901,0.569588,0.006901,0.821901,0.569588,0.006901,0.821901,0.569588,0.006901,-0.772872,0.634522,0.007161,-0.772872,0.634522,0.007161,-0.772872,0.634522,0.007161,-0.772872,0.634522,0.007161,-0.772872,0.634522,0.007161,-0.772872,0.634522,0.007161,-0.515454,-0.418730,-0.747645,-0.515454,-0.418730,-0.747645,-0.515454,-0.418730,-0.747645,-0.515454,-0.418730,-0.747645,-0.515454,-0.418730,-0.747645,-0.515454,-0.418730,-0.747645,0.512721,-0.421044,-0.748224,0.512721,-0.421044,-0.748224,0.512721,-0.421044,-0.748224,0.512721,-0.421044,-0.748224,0.512721,-0.421044,-0.748224,0.512721,-0.421044,-0.748224,0.515794,0.411432,-0.751452,0.515794,0.411432,-0.751452,0.515794,0.411432,-0.751452,0.515794,0.411432,-0.751452,0.515794,0.411432,-0.751452,0.515794,0.411432,-0.751452,-0.510935,0.419359,-0.750389,-0.510935,0.419359,-0.750389,-0.510935,0.419359,-0.750389,-0.510935,0.419359,-0.750389,-0.510935,0.419359,-0.750389,-0.510935,0.419359,-0.750389,-0.867495,-0.497444,-0.000770,-0.867495,-0.497445,-0.000770};
			return value;
		}
		private double[] getNormal_7_20_vector_39()
		{
			double[] value = {-0.867495,-0.497444,-0.000770,-0.867495,-0.497444,-0.000770,-0.867495,-0.497444,-0.000770,-0.867495,-0.497444,-0.000770,0.140412,0.114162,0.983489,0.140412,0.114162,0.983489,0.140412,0.114162,0.983489,0.140412,0.114162,0.983489,0.140412,0.114162,0.983489,0.140412,0.114162,0.983489,0.668974,-0.743281,-0.002928,0.668974,-0.743280,-0.002928,0.668974,-0.743280,-0.002928,0.668974,-0.743280,-0.002928,0.668974,-0.743280,-0.002928,0.668974,-0.743281,-0.002928,-0.139374,0.114763,0.983567,-0.139374,0.114763,0.983567,-0.139374,0.114763,0.983567,-0.139374,0.114763,0.983567,-0.139374,0.114763,0.983567,-0.139374,0.114763,0.983567,0.867669,0.497141,0.000777,0.867669,0.497141,0.000777,0.867669,0.497141,0.000777,0.867669,0.497141,0.000777,0.867669,0.497141,0.000777,0.867669,0.497141,0.000777,-0.138800,-0.109733,0.984222,-0.138800,-0.109733,0.984222,-0.138800,-0.109733,0.984222,-0.138800,-0.109733,0.984222,-0.138800,-0.109733,0.984222,-0.138800,-0.109733,0.984222,-0.649391,0.760454,0.000459,-0.649391,0.760454,0.000459,-0.649391,0.760454,0.000459,-0.649391,0.760454,0.000459,-0.649391,0.760454,0.000459,-0.649391,0.760454,0.000459,0.139696,-0.114337,0.983571,0.139696,-0.114337,0.983571,0.139696,-0.114337,0.983571,0.139696,-0.114337,0.983571,0.139696,-0.114337,0.983571,0.139696,-0.114337,0.983571,-0.853651,0.520842,0.002051,-0.853651,0.520842,0.002051,-0.853651,0.520842,0.002051,-0.853651,0.520842,0.002051,-0.853651,0.520842,0.002051,-0.853651,0.520842,0.002051,-0.654788,-0.755810,-0.001714,-0.654788,-0.755810,-0.001714,-0.654788,-0.755810,-0.001714,-0.654788,-0.755810,-0.001714,-0.654788,-0.755810,-0.001714,-0.654788,-0.755810,-0.001714,0.864902,-0.501940,0.000385,0.864902,-0.501940,0.000385,0.864902,-0.501940,0.000385,0.864902,-0.501940,0.000385,0.864902,-0.501940,0.000385,0.864902,-0.501940,0.000385,0.657426,0.753517,0.001697,0.657426,0.753517,0.001697,0.657426,0.753517,0.001697,0.657426,0.753517,0.001697,0.657426,0.753517,0.001697,0.657426,0.753517,0.001697,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.990845,0.0,-0.135002,-0.751786,-0.642529,-0.148238,-0.736336,-0.631062,-0.244070,-0.736336,-0.631062,-0.244070,-0.974981,0.0,-0.222287,-0.990845,0.0,-0.135002,-0.751786,-0.642529,-0.148238,0.0,-0.986364,-0.164581,0.0,-0.962484,-0.271339,0.0,-0.962484,-0.271339,-0.736336,-0.631062,-0.244070,-0.751786,-0.642529,-0.148238};
			return value;
		}
		private double[] getNormal_7_20_vector_40()
		{
			double[] value = {0.0,-0.986364,-0.164581,0.751786,-0.642529,-0.148239,0.736336,-0.631062,-0.244070,0.736336,-0.631062,-0.244070,0.0,-0.962484,-0.271339,0.0,-0.986364,-0.164581,0.751786,-0.642529,-0.148239,0.990845,0.0,-0.135003,0.974981,0.0,-0.222288,0.974981,0.0,-0.222288,0.736336,-0.631062,-0.244070,0.751786,-0.642529,-0.148239,0.990845,0.0,-0.135003,0.751785,0.642529,-0.148238,0.736336,0.631062,-0.244070,0.736336,0.631062,-0.244070,0.974981,0.0,-0.222288,0.990845,0.0,-0.135003,0.751785,0.642529,-0.148238,0.0,0.986364,-0.164581,0.0,0.962484,-0.271339,0.0,0.962484,-0.271339,0.736336,0.631062,-0.244070,0.751785,0.642529,-0.148238,0.0,0.986364,-0.164581,-0.751786,0.642529,-0.148238,-0.736336,0.631062,-0.244069,-0.736336,0.631062,-0.244069,0.0,0.962484,-0.271339,0.0,0.986364,-0.164581,-0.751786,0.642529,-0.148238,-0.990845,0.0,-0.135002,-0.974981,0.0,-0.222287,-0.974981,0.0,-0.222287,-0.736336,0.631062,-0.244069,-0.751786,0.642529,-0.148238,-0.974981,0.0,-0.222287,-0.736336,-0.631062,-0.244070,-0.743351,-0.651961,-0.149587,-0.743351,-0.651961,-0.149587,-0.990464,0.0,-0.137775,-0.974981,0.0,-0.222287,-0.736336,-0.631062,-0.244070,0.0,-0.962484,-0.271339,0.0,-0.986731,-0.162362,0.0,-0.986731,-0.162362,-0.743351,-0.651961,-0.149587,-0.736336,-0.631062,-0.244070,0.0,-0.962484,-0.271339,0.736336,-0.631062,-0.244070,0.743351,-0.651960,-0.149587,0.743351,-0.651960,-0.149587,0.0,-0.986731,-0.162362,0.0,-0.962484,-0.271339,0.736336,-0.631062,-0.244070,0.974981,0.0,-0.222288,0.990464,0.0,-0.137775,0.990464,0.0,-0.137775,0.743351,-0.651960,-0.149587,0.736336,-0.631062,-0.244070,0.974981,0.0,-0.222288,0.736336,0.631062,-0.244070,0.743351,0.651961,-0.149587,0.743351,0.651961,-0.149587,0.990464,0.0,-0.137775,0.974981,0.0,-0.222288,0.736336,0.631062,-0.244070,0.0,0.962484,-0.271339,0.0,0.986731,-0.162362,0.0,0.986731,-0.162362,0.743351,0.651961,-0.149587,0.736336,0.631062,-0.244070,0.0,0.962484,-0.271339,-0.736336,0.631062,-0.244069,-0.743351,0.651960,-0.149587,-0.743351,0.651960,-0.149587,0.0,0.986731,-0.162362,0.0,0.962484,-0.271339,-0.736336,0.631062,-0.244069,-0.974981,0.0,-0.222287,-0.990464,0.0,-0.137775,-0.990464,0.0,-0.137775,-0.743351,0.651960,-0.149587,-0.736336,0.631062,-0.244069,-0.990464,0.0,-0.137775,-0.743351,-0.651961,-0.149587,-0.756331,-0.653827,0.021762,-0.756331,-0.653827,0.021762,-0.999805,0.0,0.019762,-0.990464,0.0,-0.137775,-0.743351,-0.651961,-0.149587,0.0,-0.986731,-0.162362,0.0,-0.999707,0.024199,0.0,-0.999707,0.024199,-0.756331,-0.653827,0.021762,-0.743351,-0.651961,-0.149587,0.0,-0.986731,-0.162362,0.743351,-0.651960,-0.149587,0.756331,-0.653827,0.021762,0.756331,-0.653827,0.021762};
			return value;
		}
		private double[] getNormal_7_20_vector_41()
		{
			double[] value = {0.0,-0.999707,0.024199,0.0,-0.986731,-0.162362,0.743351,-0.651960,-0.149587,0.990464,0.0,-0.137775,0.999805,0.0,0.019762,0.999805,0.0,0.019762,0.756331,-0.653827,0.021762,0.743351,-0.651960,-0.149587,0.990464,0.0,-0.137775,0.743351,0.651961,-0.149587,0.756331,0.653827,0.021762,0.756331,0.653827,0.021762,0.999805,0.0,0.019762,0.990464,0.0,-0.137775,0.743351,0.651961,-0.149587,0.0,0.986731,-0.162362,0.0,0.999707,0.024199,0.0,0.999707,0.024199,0.756331,0.653827,0.021762,0.743351,0.651961,-0.149587,0.0,0.986731,-0.162362,-0.743351,0.651960,-0.149587,-0.756331,0.653826,0.021762,-0.756331,0.653826,0.021762,0.0,0.999707,0.024199,0.0,0.986731,-0.162362,-0.743351,0.651960,-0.149587,-0.990464,0.0,-0.137775,-0.999805,0.0,0.019762,-0.999805,0.0,0.019762,-0.756331,0.653826,0.021762,-0.743351,0.651960,-0.149587,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.990845,0.0,-0.135001,-0.751788,-0.642527,-0.148237,-0.736337,-0.631061,-0.244069,-0.736337,-0.631061,-0.244069,-0.974981,0.0,-0.222287,-0.990845,0.0,-0.135001,-0.751788,-0.642527,-0.148237,-0.000002,-0.986364,-0.164580,0.0,-0.962484,-0.271339,0.0,-0.962484,-0.271339,-0.736337,-0.631061,-0.244069,-0.751788,-0.642527,-0.148237,-0.000002,-0.986364,-0.164580,0.751787,-0.642528,-0.148238,0.736336,-0.631062,-0.244069,0.736336,-0.631062,-0.244069,0.0,-0.962484,-0.271339,-0.000002,-0.986364,-0.164580,0.751787,-0.642528,-0.148238,0.990845,0.0,-0.135002,0.974981,0.0,-0.222287,0.974981,0.0,-0.222287,0.736336,-0.631062,-0.244069,0.751787,-0.642528,-0.148238,0.990845,0.0,-0.135002,0.751786,0.642529,-0.148238,0.736336,0.631062,-0.244069,0.736336,0.631062,-0.244069,0.974981,0.0,-0.222287,0.990845,0.0,-0.135002,0.751786,0.642529,-0.148238,-0.000002,0.986364,-0.164580};
			return value;
		}
		private double[] getNormal_7_20_vector_42()
		{
			double[] value = {0.0,0.962484,-0.271338,0.0,0.962484,-0.271338,0.736336,0.631062,-0.244069,0.751786,0.642529,-0.148238,-0.000002,0.986364,-0.164580,-0.751788,0.642527,-0.148237,-0.736337,0.631061,-0.244069,-0.736337,0.631061,-0.244069,0.0,0.962484,-0.271338,-0.000002,0.986364,-0.164580,-0.751788,0.642527,-0.148237,-0.990845,0.0,-0.135001,-0.974981,0.0,-0.222287,-0.974981,0.0,-0.222287,-0.736337,0.631061,-0.244069,-0.751788,0.642527,-0.148237,-0.974981,0.0,-0.222287,-0.736337,-0.631061,-0.244069,-0.743351,-0.651961,-0.149587,-0.743351,-0.651961,-0.149587,-0.990464,0.0,-0.137775,-0.974981,0.0,-0.222287,-0.736337,-0.631061,-0.244069,0.0,-0.962484,-0.271339,0.0,-0.986731,-0.162362,0.0,-0.986731,-0.162362,-0.743351,-0.651961,-0.149587,-0.736337,-0.631061,-0.244069,0.0,-0.962484,-0.271339,0.736336,-0.631062,-0.244069,0.743351,-0.651961,-0.149587,0.743351,-0.651961,-0.149587,0.0,-0.986731,-0.162362,0.0,-0.962484,-0.271339,0.736336,-0.631062,-0.244069,0.974981,0.0,-0.222287,0.990464,0.0,-0.137775,0.990464,0.0,-0.137775,0.743351,-0.651961,-0.149587,0.736336,-0.631062,-0.244069,0.974981,0.0,-0.222287,0.736336,0.631062,-0.244069,0.743351,0.651961,-0.149587,0.743351,0.651961,-0.149587,0.990464,0.0,-0.137775,0.974981,0.0,-0.222287,0.736336,0.631062,-0.244069,0.0,0.962484,-0.271338,0.0,0.986731,-0.162362,0.0,0.986731,-0.162362,0.743351,0.651961,-0.149587,0.736336,0.631062,-0.244069,0.0,0.962484,-0.271338,-0.736337,0.631061,-0.244069,-0.743352,0.651960,-0.149587,-0.743352,0.651960,-0.149587,0.0,0.986731,-0.162362,0.0,0.962484,-0.271338,-0.736337,0.631061,-0.244069,-0.974981,0.0,-0.222287,-0.990464,0.0,-0.137775,-0.990464,0.0,-0.137775,-0.743352,0.651960,-0.149587,-0.736337,0.631061,-0.244069,-0.990464,0.0,-0.137775,-0.743351,-0.651961,-0.149587,-0.756331,-0.653827,0.021762,-0.756331,-0.653827,0.021762,-0.999805,0.0,0.019762,-0.990464,0.0,-0.137775,-0.743351,-0.651961,-0.149587,0.0,-0.986731,-0.162362,0.0,-0.999707,0.024199,0.0,-0.999707,0.024199,-0.756331,-0.653827,0.021762,-0.743351,-0.651961,-0.149587,0.0,-0.986731,-0.162362,0.743351,-0.651961,-0.149587,0.756331,-0.653827,0.021762,0.756331,-0.653827,0.021762,0.0,-0.999707,0.024199,0.0,-0.986731,-0.162362,0.743351,-0.651961,-0.149587,0.990464,0.0,-0.137775,0.999805,0.0,0.019762,0.999805,0.0,0.019762,0.756331,-0.653827,0.021762,0.743351,-0.651961,-0.149587,0.990464,0.0,-0.137775,0.743351,0.651961,-0.149587,0.756331,0.653827,0.021762,0.756331,0.653827,0.021762,0.999805,0.0,0.019762,0.990464,0.0,-0.137775,0.743351,0.651961,-0.149587,0.0,0.986731,-0.162362,0.0,0.999707,0.024199,0.0,0.999707,0.024199,0.756331,0.653827,0.021762,0.743351,0.651961,-0.149587};
			return value;
		}
		private double[] getNormal_7_20_vector_43()
		{
			double[] value = {0.0,0.986731,-0.162362,-0.743352,0.651960,-0.149587,-0.756331,0.653827,0.021762,-0.756331,0.653827,0.021762,0.0,0.999707,0.024199,0.0,0.986731,-0.162362,-0.743352,0.651960,-0.149587,-0.990464,0.0,-0.137775,-0.999805,0.0,0.019762,-0.999805,0.0,0.019762,-0.756331,0.653827,0.021762,-0.743352,0.651960,-0.149587,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,-0.003252,-0.956279,-0.292436,-0.003252,-0.956280,-0.292436,-0.066069,-0.970864,-0.230344,-0.066069,-0.970864,-0.230344,-0.071423,-0.971751,-0.224942,-0.003252,-0.956279,-0.292436,-0.149626,-0.988653,-0.013317,-0.149022,-0.988644,-0.019369,-0.162782,-0.977198,0.136333,-0.162782,-0.977198,0.136333,-0.162782,-0.977198,0.136333,-0.149626,-0.988653,-0.013317,0.489762,0.793497,0.361243,0.540534,0.798445,0.265156,0.541988,0.798448,0.262164,0.541988,0.798448,0.262164,0.489762,0.793497,0.361243,0.489762,0.793497,0.361243,0.576338,0.808734,0.117406,0.541988,0.798448,0.262164,0.540534,0.798445,0.265156,0.540534,0.798445,0.265156,0.576316,0.808767,0.117288,0.576338,0.808734,0.117406,0.529752,0.848073,0.011649,0.505963,0.862244,-0.023183,0.505963,0.862244,-0.023183,0.505963,0.862244,-0.023183,0.544653,0.837961,0.034279,0.529752,0.848073,0.011649,-0.148918,0.182236,-0.971912,-0.148918,0.182236,-0.971912,-0.148918,0.182236,-0.971912,-0.148918,0.182236,-0.971912,-0.148918,0.182236,-0.971912,-0.148918,0.182236,-0.971912,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.983471,0.181053,-0.002145,0.983471,0.181053,-0.002145,0.983471,0.181053,-0.002145,0.983471,0.181053,-0.002145,0.983471,0.181053,-0.002145,0.983471,0.181053,-0.002145,0.992295,-0.014428,0.123053,0.992295,-0.014428,0.123053,0.992295,-0.014428,0.123053,0.992295,-0.014428,0.123053,0.992295,-0.014428,0.123053,0.992295,-0.014428,0.123053,-0.269133,-0.951829,-0.146930,-0.269133,-0.951829,-0.146930,-0.269133,-0.951829,-0.146930,-0.269133,-0.951829,-0.146930,-0.269133,-0.951829,-0.146930,-0.269133,-0.951829,-0.146930,0.286304,0.955953,0.064679,0.286304,0.955953,0.064679,0.286304,0.955953,0.064679,0.286304,0.955953,0.064679,0.286304,0.955953,0.064679,0.286304,0.955953,0.064679,0.128104,0.120953,-0.984357,0.128104,0.120953,-0.984357,0.128104,0.120953,-0.984358,0.128104,0.120953,-0.984358};
			return value;
		}
		private double[] getNormal_7_20_vector_44()
		{
			double[] value = {0.128104,0.120953,-0.984357,0.128104,0.120953,-0.984358,0.128104,0.120953,-0.984357,0.128104,0.120953,-0.984358,0.128104,0.120953,-0.984358,0.062251,-0.114645,0.991454,0.062251,-0.114645,0.991454,0.062251,-0.114645,0.991454,0.062251,-0.114645,0.991454,0.062251,-0.114645,0.991454,0.062251,-0.114645,0.991454,0.062251,-0.114645,0.991454,0.062251,-0.114645,0.991454,0.062251,-0.114645,0.991454,0.015410,-0.096809,0.995184,0.015410,-0.096809,0.995184,0.015410,-0.096809,0.995184,0.015410,-0.096809,0.995184,0.015410,-0.096809,0.995184,0.015410,-0.096809,0.995184,0.015410,-0.096809,0.995184,0.015410,-0.096809,0.995184,0.015410,-0.096809,0.995184,0.015410,-0.096809,0.995184,0.015410,-0.096809,0.995184,0.015410,-0.096809,0.995184,0.293083,0.955619,0.029913,0.293084,0.955619,0.029913,0.293084,0.955619,0.029913,0.293084,0.955619,0.029913,0.293083,0.955619,0.029913,0.293083,0.955619,0.029913,0.109264,0.152147,-0.982300,0.109264,0.152147,-0.982300,0.109264,0.152147,-0.982300,0.109264,0.152147,-0.982300,0.109264,0.152147,-0.982300,0.109264,0.152147,-0.982300,0.109264,0.152147,-0.982300,0.109264,0.152147,-0.982300,0.109264,0.152147,-0.982300,0.109264,0.152147,-0.982300,0.109264,0.152147,-0.982300,0.109264,0.152147,-0.982300,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.732602,-0.090907,0.674559,0.732602,-0.090907,0.674559,0.732602,-0.090907,0.674559,0.732602,-0.090907,0.674559,0.732602,-0.090907,0.674559,0.732602,-0.090907,0.674559,0.510702,0.856549,0.074212,0.510702,0.856549,0.074212,0.510702,0.856549,0.074212,0.510702,0.856549,0.074212,0.510702,0.856549,0.074212,0.510702,0.856549,0.074212,0.510702,0.856549,0.074212,0.510702,0.856549,0.074212,0.510702,0.856549,0.074212,0.554660,0.337439,-0.760584,0.554660,0.337438,-0.760584,0.554660,0.337439,-0.760584,0.554660,0.337439,-0.760584,0.554660,0.337439,-0.760584,0.554660,0.337439,-0.760584,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-1.0,0.000125,0.000009,-1.0,0.000125,0.000009,-1.0,0.000125,0.000009,-1.0,0.000125,0.000009,-1.0,0.000125,0.000009,-1.0,0.000125,0.000009,0.730316,-0.108503,0.674437,0.730316,-0.108503,0.674437,0.730316,-0.108503,0.674437,0.730316,-0.108503,0.674437,0.730316,-0.108503,0.674437,0.730316,-0.108503,0.674437,0.549916,0.113075,-0.827530,0.549916,0.113075,-0.827530,0.549916,0.113075,-0.827530,0.549916,0.113075,-0.827530,0.549916,0.113075,-0.827530,0.549916,0.113075,-0.827530,0.006984,0.985077,0.171971,0.006984,0.985077,0.171971,0.006984,0.985077,0.171971,-0.006984,-0.985077,-0.171972,-0.006984,-0.985077,-0.171971};
			return value;
		}
		private double[] getNormal_7_20_vector_45()
		{
			double[] value = {-0.006984,-0.985077,-0.171972,0.529752,0.848073,0.011649,0.544653,0.837961,0.034279,0.576338,0.808734,0.117406,0.576338,0.808734,0.117406,0.576316,0.808767,0.117288,0.529752,0.848073,0.011649,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.274700,0.943431,0.185680,0.274700,0.943431,0.185680,0.274700,0.943431,0.185680,0.274700,0.943431,0.185680,0.274700,0.943431,0.185680,0.274700,0.943431,0.185680,-0.291485,-0.946353,-0.139469,-0.291485,-0.946353,-0.139469,-0.291485,-0.946353,-0.139469,-0.291485,-0.946353,-0.139469,-0.291485,-0.946353,-0.139469,-0.291485,-0.946353,-0.139469,-0.259201,-0.955700,-0.139469,-0.259201,-0.955700,-0.139469,-0.259201,-0.955700,-0.139469,-0.259201,-0.955700,-0.139469,-0.259201,-0.955700,-0.139469,-0.259201,-0.955700,-0.139469,0.285199,0.942685,0.173227,0.285199,0.942685,0.173227,0.285199,0.942685,0.173227,0.285199,0.942685,0.173227,0.285199,0.942685,0.173227,0.285199,0.942685,0.173227,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.133518,0.129333,-0.982571,0.133518,0.129333,-0.982571,0.133518,0.129333,-0.982571,0.133518,0.129333,-0.982571,0.133518,0.129333,-0.982571,0.133518,0.129333,-0.982571,0.074464,-0.174564,0.981826,0.074464,-0.174564,0.981826,0.074464,-0.174564,0.981826,0.074464,-0.174564,0.981826,0.074464,-0.174564,0.981826,0.074464,-0.174564,0.981826,-0.999995,0.003110,0.000238,-0.999995,0.003110,0.000238,-0.999995,0.003110,0.000238,-0.999995,0.003110,0.000238,-0.999995,0.003110,0.000238,-0.999995,0.003110,0.000238,0.033261,-0.190436,0.981136,0.033261,-0.190436,0.981136,0.033261,-0.190436,0.981136,0.033261,-0.190436,0.981136,0.033261,-0.190436,0.981136,0.033261,-0.190436,0.981136,-1.0,0.000403,-0.000863,-1.0,0.000403,-0.000863,-1.0,0.000403,-0.000863,-1.0,0.000403,-0.000863,-1.0,0.000403,-0.000863,-1.0,0.000403,-0.000863,0.122953,0.138800,-0.982658,0.122953,0.138800,-0.982658,0.122953,0.138800,-0.982658,0.122953,0.138800,-0.982658,0.122953,0.138800,-0.982658,0.122953,0.138800,-0.982658,1.0,-0.000194,-0.000528,1.0,-0.000194,-0.000528,1.0,-0.000194,-0.000528,1.0,-0.000194,-0.000528,1.0,-0.000194,-0.000528,1.0,-0.000194,-0.000528,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0};
			return value;
		}
		private double[] getNormal_7_20_vector_46()
		{
			double[] value = {-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.000003,-0.471299,0.881974,-0.000003,-0.471298,0.881974,-0.000003,-0.471299,0.881974,-0.000003,-0.471299,0.881974,-0.000003,-0.471298,0.881974,-0.000003,-0.471299,0.881974,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.000012,0.0,-1.0,-0.000012,0.0,-1.0,-0.000012,0.0,-1.0,-0.000012,0.0,-1.0,-0.000012,0.0,-1.0,-0.000012,0.0,-1.0,0.000005,-0.471300,-0.881973,0.000005,-0.471300,-0.881973,0.000005,-0.471300,-0.881973,0.000005,-0.471300,-0.881973,0.000005,-0.471300,-0.881973,0.000005,-0.471300,-0.881973,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-0.471300,-0.881973,0.0,-0.471300,-0.881973,0.0,-0.471300,-0.881973,0.0,-0.471300,-0.881973,0.0,-0.471300,-0.881973,0.0,-0.471300,-0.881973,0.0,1.0,0.0};
			return value;
		}
		private double[] getNormal_7_20_vector_47()
		{
			double[] value = {0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-0.471299,0.881974,0.0,-0.471299,0.881974,0.0,-0.471299,0.881974,0.0,-0.471299,0.881974,0.0,-0.471299,0.881974,0.0,-0.471299,0.881974,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-0.999998,0.001856,0.0,-0.999998,0.001856,0.0,-0.999998,0.001856,0.0,-0.999998,0.001856,0.0,-0.999998,0.001856,0.0,-0.999998,0.001856,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.000003,-0.471302,0.881972,0.000003,-0.471302,0.881972,0.000003,-0.471302,0.881972,0.000003,-0.471302,0.881972,0.000003,-0.471302,0.881972,0.000003,-0.471302,0.881972,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.471297,-0.881975,0.0,-0.471297,-0.881975,0.0,-0.471297,-0.881975,0.0,-0.471297,-0.881975,0.0,-0.471297,-0.881975,0.0,-0.471297,-0.881975,1.0,0.0,-0.000003,1.0,0.0,-0.000003,1.0,0.0,-0.000003,1.0,0.0,-0.000003,1.0,0.0,-0.000003,1.0,0.0,-0.000003,-1.0,0.000928,-0.000337,-1.0,0.000928,-0.000337,-1.0,0.000928,-0.000337,-1.0,0.000928,-0.000337,-1.0,0.000928,-0.000337,-1.0,0.000928,-0.000337,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0};
			return value;
		}
		private double[] getNormal_7_20_vector_48()
		{
			double[] value = {1.0,0.0,0.0,-0.999999,0.000928,0.000682,-0.999999,0.000928,0.000682,-0.999999,0.000928,0.000682,-0.999999,0.000928,0.000682,-0.999999,0.000928,0.000682,-0.999999,0.000928,0.000682,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,-0.000006,0.0,-1.0,0.285250,-0.958453,0.0,0.431358,-0.902181,0.0,0.942769,-0.333446,0.0,0.942769,-0.333446,0.0,0.975502,-0.219991,0.0,0.285250,-0.958453,0.0,-0.974464,-0.224546,0.0,-0.941139,-0.338018,0.0,-0.425967,-0.904739,0.0,-0.425967,-0.904739,0.0,-0.279278,-0.960210,0.0,-0.974464,-0.224546,0.0,-0.285285,0.958443,0.0,-0.431360,0.902180,0.0,-0.942771,0.333440,0.0,-0.942771,0.333440,0.0,-0.975508,0.219964,0.0,-0.285285,0.958443,0.0,0.974464,0.224546,0.0,0.941139,0.338021,0.0,0.425970,0.904737,0.0,0.425970,0.904737,0.0,0.279281,0.960210,0.0,0.974464,0.224546,0.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.000003,0.0,1.0,0.975502,-0.219991,0.0,0.942769,-0.333446,0.0,0.941139,0.338021,0.0,0.975507,-0.219967,-0.000004,0.975502,-0.219991,0.0,0.941139,0.338021,0.0,0.974459,0.224566,0.0,0.941140,0.338018,0.0,0.942770,-0.333444,-0.000006,0.974464,0.224546,0.0,0.974459,0.224566,0.0,0.942770,-0.333444,-0.000006,0.941139,0.338021,0.0,0.974464,0.224546,0.0,0.942770,-0.333444,-0.000006,0.975507,-0.219967,-0.000004,0.941139,0.338021,0.0,0.942770,-0.333444,-0.000006,0.942770,-0.333444,-0.000006,0.431358,-0.902181,-0.000006,0.285259,-0.958450,-0.000004};
			return value;
		}
		private double[] getNormal_7_20_vector_49()
		{
			double[] value = {0.285259,-0.958450,-0.000004,0.975507,-0.219967,-0.000004,0.942770,-0.333444,-0.000006,-0.279278,-0.960210,0.0,-0.425967,-0.904739,0.0,0.431358,-0.902181,0.0,-0.279304,-0.960203,0.0,-0.279278,-0.960210,0.0,0.431358,-0.902181,0.0,0.285259,-0.958450,-0.000004,0.431358,-0.902181,-0.000006,-0.425971,-0.904737,0.0,0.285250,-0.958453,0.0,0.285259,-0.958450,-0.000004,-0.425971,-0.904737,0.0,0.431358,-0.902181,0.0,0.285250,-0.958453,0.0,-0.425971,-0.904737,0.0,-0.279304,-0.960203,0.0,0.431358,-0.902181,0.0,-0.425971,-0.904737,0.0,-0.425971,-0.904737,0.0,-0.941140,-0.338017,0.0,-0.974468,-0.224524,0.0,-0.974468,-0.224524,0.0,-0.279304,-0.960203,0.0,-0.425971,-0.904737,0.0,-0.975508,0.219964,0.0,-0.942771,0.333440,0.0,-0.941139,-0.338018,0.0,-0.975507,0.219969,0.000003,-0.975508,0.219964,0.0,-0.941139,-0.338018,0.0,-0.974468,-0.224524,0.0,-0.941140,-0.338017,0.0,-0.942773,0.333437,0.000005,-0.974464,-0.224546,0.0,-0.974468,-0.224524,0.0,-0.942773,0.333437,0.000005,-0.941139,-0.338018,0.0,-0.974464,-0.224546,0.0,-0.942773,0.333437,0.000005,-0.975507,0.219969,0.000003,-0.941139,-0.338018,0.0,-0.942773,0.333437,0.000005,-0.942773,0.333437,0.000005,-0.431365,0.902178,0.000005,-0.285278,0.958445,0.000003,-0.285278,0.958445,0.000003,-0.975507,0.219969,0.000003,-0.942773,0.333437,0.000005,0.279281,0.960210,0.0,0.425970,0.904737,0.0,-0.431360,0.902180,0.0,0.279254,0.960217,0.0,0.279281,0.960210,0.0,-0.431360,0.902180,0.0,-0.285278,0.958445,0.000003,-0.431365,0.902178,0.000005,0.425970,0.904737,0.0,-0.285285,0.958443,0.0,-0.285278,0.958445,0.000003,0.425970,0.904737,0.0,-0.431360,0.902180,0.0,-0.285285,0.958443,0.0,0.425970,0.904737,0.0,0.279254,0.960217,0.0,-0.431360,0.902180,0.0,0.425970,0.904737,0.0,0.425970,0.904737,0.0,0.941140,0.338018,0.0,0.974459,0.224566,0.0,0.974459,0.224566,0.0,0.279254,0.960217,0.0,0.425970,0.904737,0.0,0.776212,-0.630432,-0.007121,0.776212,-0.630432,-0.007121,0.776212,-0.630432,-0.007121,0.776212,-0.630432,-0.007121,0.776212,-0.630432,-0.007121,0.776212,-0.630432,-0.007121,-0.772867,-0.634527,-0.007161,-0.772867,-0.634527,-0.007161,-0.772867,-0.634527,-0.007161,-0.772867,-0.634527,-0.007161,-0.772867,-0.634527,-0.007161,-0.772867,-0.634527,-0.007161,-0.821883,0.569615,0.006901,-0.821883,0.569615,0.006901,-0.821883,0.569615,0.006901,-0.821883,0.569615,0.006901,-0.821883,0.569615,0.006901,-0.821883,0.569615,0.006901,0.772820,0.634585,0.007162,0.772820,0.634585,0.007162,0.772820,0.634585,0.007162,0.772820,0.634585,0.007162,0.772820,0.634585,0.007162,0.772820,0.634585,0.007162,0.515453,-0.418731,-0.747644};
			return value;
		}
		private double[] getNormal_7_20_vector_50()
		{
			double[] value = {0.515453,-0.418731,-0.747644,0.515453,-0.418731,-0.747644,0.515453,-0.418731,-0.747644,0.515453,-0.418731,-0.747644,0.515453,-0.418731,-0.747644,-0.512724,-0.421041,-0.748224,-0.512724,-0.421041,-0.748224,-0.512724,-0.421041,-0.748224,-0.512724,-0.421041,-0.748224,-0.512724,-0.421041,-0.748224,-0.512724,-0.421041,-0.748224,-0.515797,0.411428,-0.751452,-0.515797,0.411428,-0.751452,-0.515798,0.411428,-0.751452,-0.515798,0.411428,-0.751452,-0.515797,0.411428,-0.751452,-0.515797,0.411428,-0.751452,0.510930,0.419364,-0.750389,0.510930,0.419364,-0.750389,0.510930,0.419364,-0.750389,0.510930,0.419364,-0.750389,0.510930,0.419364,-0.750389,0.510930,0.419364,-0.750389,0.867495,-0.497445,-0.000769,0.867495,-0.497445,-0.000769,0.867495,-0.497445,-0.000769,0.867495,-0.497445,-0.000769,0.867495,-0.497445,-0.000769,0.867495,-0.497445,-0.000769,-0.140409,0.114164,0.983490,-0.140409,0.114164,0.983490,-0.140409,0.114164,0.983490,-0.140409,0.114164,0.983490,-0.140409,0.114164,0.983490,-0.140409,0.114164,0.983490,-0.668972,-0.743282,-0.002928,-0.668972,-0.743282,-0.002928,-0.668972,-0.743282,-0.002928,-0.668972,-0.743282,-0.002928,-0.668972,-0.743282,-0.002928,-0.668972,-0.743282,-0.002928,0.139375,0.114762,0.983567,0.139375,0.114762,0.983567,0.139375,0.114762,0.983567,0.139375,0.114762,0.983567,0.139375,0.114762,0.983567,0.139375,0.114762,0.983567,-0.867668,0.497143,0.000777,-0.867668,0.497143,0.000777,-0.867668,0.497143,0.000777,-0.867668,0.497143,0.000777,-0.867668,0.497143,0.000777,-0.867668,0.497143,0.000777,0.138799,-0.109733,0.984222,0.138799,-0.109733,0.984222,0.138799,-0.109733,0.984222,0.138799,-0.109733,0.984222,0.138799,-0.109733,0.984222,0.138799,-0.109733,0.984222,0.649391,0.760454,0.000459,0.649391,0.760454,0.000459,0.649391,0.760454,0.000459,0.649391,0.760454,0.000459,0.649391,0.760454,0.000459,0.649391,0.760454,0.000459,-0.139698,-0.114335,0.983571,-0.139698,-0.114335,0.983571,-0.139698,-0.114335,0.983571,-0.139698,-0.114335,0.983571,-0.139698,-0.114335,0.983571,-0.139698,-0.114335,0.983571,0.853651,0.520842,0.002054,0.853651,0.520842,0.002054,0.853651,0.520842,0.002054,0.853651,0.520842,0.002054,0.853651,0.520842,0.002054,0.853651,0.520842,0.002054,0.654788,-0.755810,-0.001714,0.654788,-0.755810,-0.001714,0.654788,-0.755810,-0.001714,0.654788,-0.755810,-0.001714,0.654788,-0.755810,-0.001714,0.654788,-0.755810,-0.001714,-0.864900,-0.501944,0.000384,-0.864900,-0.501944,0.000384,-0.864900,-0.501944,0.000384,-0.864900,-0.501944,0.000384,-0.864900,-0.501944,0.000384,-0.864900,-0.501944,0.000384,-0.657428,0.753516,0.001696,-0.657428,0.753516,0.001696,-0.657428,0.753516,0.001696,-0.657428,0.753516,0.001696,-0.657428,0.753516,0.001696,-0.657428,0.753516,0.001696,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0};
			return value;
		}
		private double[] getNormal_7_20_vector_51()
		{
			double[] value = {-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,-0.000003,-0.000002,-1.0,0.285251,-0.958453,0.0,0.431360,-0.902180,0.0,0.942771,-0.333442,0.0,0.942771,-0.333442,0.0,0.975503,-0.219987,0.0,0.285251,-0.958453,0.0,-0.974463,-0.224550,0.0,-0.941139,-0.338020,0.0,-0.425969,-0.904738,0.0,-0.425969,-0.904738,0.0,-0.279279,-0.960210,0.0,-0.974463,-0.224550,0.0,-0.285285,0.958443,0.0,-0.431363,0.902178,0.0,-0.942773,0.333436,0.0,-0.942773,0.333436,0.0,-0.975509,0.219958,0.0,-0.285285,0.958443,0.0,0.974463,0.224549,0.0,0.941138,0.338023,0.0,0.425969,0.904738,0.0,0.425969,0.904738,0.0,0.279281,0.960210,0.0,0.974463,0.224549,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.975503,-0.219987,0.0,0.942771,-0.333442,0.0,0.941138,0.338023,0.0,0.975508,-0.219965,-0.000003,0.975503,-0.219987,0.0,0.941138,0.338023,0.0,0.974458,0.224569,0.0,0.941139,0.338021,0.0,0.942770,-0.333443,-0.000005,0.974463,0.224549,0.0,0.974458,0.224569,0.0,0.942770,-0.333443,-0.000005,0.941138,0.338023,0.0,0.974463,0.224549,0.0,0.942770,-0.333443,-0.000005,0.975508,-0.219965,-0.000003,0.941138,0.338023,0.0,0.942770,-0.333443,-0.000005,0.942770,-0.333443,-0.000005,0.431359,-0.902180,-0.000005,0.285259,-0.958451,-0.000003,0.285259,-0.958451,-0.000003,0.975508,-0.219965,-0.000003,0.942770,-0.333443,-0.000005,-0.279279,-0.960210,0.0,-0.425969,-0.904738,0.0,0.431360,-0.902180,0.0,-0.279304,-0.960203,0.0,-0.279279,-0.960210,0.0,0.431360,-0.902180,0.0,0.285259,-0.958451,-0.000003,0.431359,-0.902180,-0.000005,-0.425968,-0.904738,0.0,0.285251,-0.958453,0.0,0.285259,-0.958451,-0.000003,-0.425968,-0.904738,0.0,0.431360,-0.902180,0.0,0.285251,-0.958453,0.0,-0.425968,-0.904738,0.0,-0.279304,-0.960203,0.0,0.431360,-0.902180,0.0,-0.425968,-0.904738,0.0,-0.425968,-0.904738,0.0,-0.941138,-0.338022,0.0,-0.974467,-0.224531,0.0};
			return value;
		}
		private double[] getNormal_7_20_vector_52()
		{
			double[] value = {-0.974467,-0.224531,0.0,-0.279304,-0.960203,0.0,-0.425968,-0.904738,0.0,-0.975509,0.219958,0.0,-0.942773,0.333436,0.0,-0.941139,-0.338020,0.0,-0.975504,0.219982,0.000003,-0.975509,0.219958,0.0,-0.941139,-0.338020,0.0,-0.974467,-0.224531,0.0,-0.941138,-0.338022,0.0,-0.942773,0.333436,0.000005,-0.974463,-0.224550,0.0,-0.974467,-0.224531,0.0,-0.942773,0.333436,0.000005,-0.941139,-0.338020,0.0,-0.974463,-0.224550,0.0,-0.942773,0.333436,0.000005,-0.975504,0.219982,0.000003,-0.941139,-0.338020,0.0,-0.942773,0.333436,0.000005,-0.942773,0.333436,0.000005,-0.431360,0.902180,0.000005,-0.285276,0.958445,0.000003,-0.285276,0.958445,0.000003,-0.975504,0.219982,0.000003,-0.942773,0.333436,0.000005,0.279281,0.960210,0.0,0.425969,0.904738,0.0,-0.431363,0.902178,0.0,0.279253,0.960217,0.0,0.279281,0.960210,0.0,-0.431363,0.902178,0.0,-0.285276,0.958445,0.000003,-0.431360,0.902180,0.000005,0.425970,0.904737,0.0,-0.285285,0.958443,0.0,-0.285276,0.958445,0.000003,0.425970,0.904737,0.0,-0.431363,0.902178,0.0,-0.285285,0.958443,0.0,0.425970,0.904737,0.0,0.279253,0.960217,0.0,-0.431363,0.902178,0.0,0.425970,0.904737,0.0,0.425970,0.904737,0.0,0.941139,0.338021,0.0,0.974458,0.224569,0.0,0.974458,0.224569,0.0,0.279253,0.960217,0.0,0.425970,0.904737,0.0,0.776196,-0.630452,-0.007123,0.776195,-0.630452,-0.007123,0.776196,-0.630452,-0.007123,0.776196,-0.630452,-0.007123,0.776195,-0.630452,-0.007123,0.776196,-0.630452,-0.007123,-0.772867,-0.634527,-0.007160,-0.772867,-0.634527,-0.007160,-0.772867,-0.634527,-0.007160,-0.772867,-0.634527,-0.007160,-0.772867,-0.634527,-0.007160,-0.772867,-0.634527,-0.007160,-0.821857,0.569652,0.006901,-0.821857,0.569652,0.006901,-0.821857,0.569652,0.006901,-0.821857,0.569652,0.006901,-0.821857,0.569652,0.006901,-0.821857,0.569652,0.006901,0.772861,0.634535,0.007163,0.772861,0.634535,0.007163,0.772861,0.634535,0.007163,0.772861,0.634535,0.007163,0.772861,0.634535,0.007163,0.772861,0.634535,0.007163,0.515453,-0.418731,-0.747645,0.515453,-0.418731,-0.747645,0.515453,-0.418731,-0.747645,0.515453,-0.418731,-0.747645,0.515453,-0.418731,-0.747645,0.515453,-0.418731,-0.747645,-0.512723,-0.421041,-0.748224,-0.512723,-0.421041,-0.748224,-0.512723,-0.421041,-0.748224,-0.512723,-0.421041,-0.748224,-0.512723,-0.421041,-0.748224,-0.512723,-0.421041,-0.748224,-0.515792,0.411436,-0.751451,-0.515792,0.411436,-0.751451,-0.515792,0.411436,-0.751451,-0.515792,0.411436,-0.751451,-0.515792,0.411436,-0.751451,-0.515792,0.411436,-0.751451,0.510930,0.419362,-0.750390,0.510930,0.419362,-0.750390,0.510930,0.419362,-0.750390,0.510930,0.419362,-0.750390,0.510930,0.419362,-0.750390,0.510930,0.419362,-0.750390,0.867494,-0.497447,-0.000768};
			return value;
		}
		private double[] getNormal_7_20_vector_53()
		{
			double[] value = {0.867494,-0.497446,-0.000768,0.867494,-0.497446,-0.000768,0.867494,-0.497446,-0.000768,0.867494,-0.497446,-0.000768,0.867494,-0.497447,-0.000768,-0.140407,0.114166,0.983490,-0.140407,0.114166,0.983490,-0.140407,0.114166,0.983490,-0.140407,0.114166,0.983490,-0.140407,0.114166,0.983490,-0.140407,0.114166,0.983490,-0.668974,-0.743281,-0.002927,-0.668973,-0.743280,-0.002927,-0.668973,-0.743280,-0.002927,-0.668973,-0.743280,-0.002927,-0.668973,-0.743280,-0.002927,-0.668974,-0.743281,-0.002927,0.139373,0.114761,0.983567,0.139373,0.114761,0.983567,0.139373,0.114761,0.983568,0.139373,0.114761,0.983568,0.139373,0.114761,0.983567,0.139373,0.114761,0.983567,-0.867668,0.497143,0.000779,-0.867668,0.497143,0.000779,-0.867668,0.497143,0.000779,-0.867668,0.497143,0.000779,-0.867668,0.497143,0.000779,-0.867668,0.497143,0.000779,0.138794,-0.109737,0.984222,0.138794,-0.109737,0.984223,0.138794,-0.109737,0.984223,0.138794,-0.109737,0.984223,0.138794,-0.109737,0.984222,0.138794,-0.109737,0.984222,0.649394,0.760452,0.000458,0.649394,0.760452,0.000458,0.649394,0.760452,0.000458,0.649394,0.760452,0.000458,0.649394,0.760452,0.000458,0.649394,0.760452,0.000458,-0.139699,-0.114334,0.983571,-0.139699,-0.114334,0.983571,-0.139699,-0.114334,0.983571,-0.139699,-0.114334,0.983571,-0.139699,-0.114334,0.983571,-0.139699,-0.114334,0.983571,0.853652,0.520840,0.002049,0.853652,0.520840,0.002049,0.853652,0.520840,0.002049,0.853652,0.520840,0.002049,0.853652,0.520840,0.002049,0.853652,0.520840,0.002049,0.654788,-0.755811,-0.001715,0.654788,-0.755811,-0.001715,0.654788,-0.755811,-0.001715,0.654788,-0.755811,-0.001715,0.654788,-0.755811,-0.001715,0.654788,-0.755811,-0.001715,-0.864903,-0.501939,0.000384,-0.864903,-0.501939,0.000384,-0.864903,-0.501939,0.000384,-0.864903,-0.501939,0.000384,-0.864903,-0.501939,0.000384,-0.864903,-0.501939,0.000384,-0.657426,0.753518,0.001697,-0.657426,0.753518,0.001697,-0.657426,0.753518,0.001697,-0.657426,0.753518,0.001697,-0.657426,0.753518,0.001697,-0.657426,0.753518,0.001697,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.736336,-0.631062,-0.244069,0.751787,-0.642528,-0.148236,0.990846,0.0,-0.135000,0.990846,0.0,-0.135000,0.974981,0.0,-0.222287,0.736336,-0.631062,-0.244069,0.000002,-0.962484,-0.271339,0.000004,-0.986364,-0.164581,0.751787,-0.642528,-0.148236,0.751787,-0.642528,-0.148236,0.736336,-0.631062,-0.244069};
			return value;
		}
		private double[] getNormal_7_20_vector_54()
		{
			double[] value = {0.000002,-0.962484,-0.271339,-0.736335,-0.631063,-0.244070,-0.751784,-0.642531,-0.148238,0.000004,-0.986364,-0.164581,0.000004,-0.986364,-0.164581,0.000002,-0.962484,-0.271339,-0.736335,-0.631063,-0.244070,-0.974981,0.0,-0.222288,-0.990845,0.0,-0.135002,-0.751784,-0.642531,-0.148238,-0.751784,-0.642531,-0.148238,-0.736335,-0.631063,-0.244070,-0.974981,0.0,-0.222288,-0.736335,0.631063,-0.244070,-0.751784,0.642531,-0.148238,-0.990845,0.0,-0.135002,-0.990845,0.0,-0.135002,-0.974981,0.0,-0.222288,-0.736335,0.631063,-0.244070,0.000002,0.962484,-0.271338,0.000004,0.986364,-0.164580,-0.751784,0.642531,-0.148238,-0.751784,0.642531,-0.148238,-0.736335,0.631063,-0.244070,0.000002,0.962484,-0.271338,0.736336,0.631062,-0.244068,0.751787,0.642528,-0.148236,0.000004,0.986364,-0.164580,0.000004,0.986364,-0.164580,0.000002,0.962484,-0.271338,0.736336,0.631062,-0.244068,0.974981,0.0,-0.222287,0.990846,0.0,-0.135000,0.751787,0.642528,-0.148236,0.751787,0.642528,-0.148236,0.736336,0.631062,-0.244068,0.974981,0.0,-0.222287,0.743352,-0.651960,-0.149587,0.736336,-0.631062,-0.244069,0.974981,0.0,-0.222287,0.974981,0.0,-0.222287,0.990463,0.0,-0.137775,0.743352,-0.651960,-0.149587,0.0,-0.986731,-0.162362,0.000002,-0.962484,-0.271339,0.736336,-0.631062,-0.244069,0.736336,-0.631062,-0.244069,0.743352,-0.651960,-0.149587,0.0,-0.986731,-0.162362,-0.743351,-0.651961,-0.149587,-0.736335,-0.631063,-0.244070,0.000002,-0.962484,-0.271339,0.000002,-0.962484,-0.271339,0.0,-0.986731,-0.162362,-0.743351,-0.651961,-0.149587,-0.990464,0.0,-0.137775,-0.974981,0.0,-0.222288,-0.736335,-0.631063,-0.244070,-0.736335,-0.631063,-0.244070,-0.743351,-0.651961,-0.149587,-0.990464,0.0,-0.137775,-0.743351,0.651961,-0.149587,-0.736335,0.631063,-0.244070,-0.974981,0.0,-0.222288,-0.974981,0.0,-0.222288,-0.990464,0.0,-0.137775,-0.743351,0.651961,-0.149587,0.0,0.986731,-0.162362,0.000002,0.962484,-0.271338,-0.736335,0.631063,-0.244070,-0.736335,0.631063,-0.244070,-0.743351,0.651961,-0.149587,0.0,0.986731,-0.162362,0.743352,0.651960,-0.149587,0.736336,0.631062,-0.244068,0.000002,0.962484,-0.271338,0.000002,0.962484,-0.271338,0.0,0.986731,-0.162362,0.743352,0.651960,-0.149587,0.990463,0.0,-0.137775,0.974981,0.0,-0.222287,0.736336,0.631062,-0.244068,0.736336,0.631062,-0.244068,0.743352,0.651960,-0.149587,0.990463,0.0,-0.137775,0.756331,-0.653826,0.021762,0.743352,-0.651960,-0.149587,0.990463,0.0,-0.137775,0.990463,0.0,-0.137775,0.999805,0.0,0.019762,0.756331,-0.653826,0.021762,0.0,-0.999707,0.024199,0.0,-0.986731,-0.162362,0.743352,-0.651960,-0.149587,0.743352,-0.651960,-0.149587,0.756331,-0.653826,0.021762,0.0,-0.999707,0.024199,-0.756330,-0.653827,0.021762,-0.743351,-0.651961,-0.149587,0.0,-0.986731,-0.162362};
			return value;
		}
		private double[] getNormal_7_20_vector_55()
		{
			double[] value = {0.0,-0.986731,-0.162362,0.0,-0.999707,0.024199,-0.756330,-0.653827,0.021762,-0.999805,0.0,0.019762,-0.990464,0.0,-0.137775,-0.743351,-0.651961,-0.149587,-0.743351,-0.651961,-0.149587,-0.756330,-0.653827,0.021762,-0.999805,0.0,0.019762,-0.756331,0.653828,0.021762,-0.743351,0.651961,-0.149587,-0.990464,0.0,-0.137775,-0.990464,0.0,-0.137775,-0.999805,0.0,0.019762,-0.756331,0.653828,0.021762,0.0,0.999707,0.024199,0.0,0.986731,-0.162362,-0.743351,0.651961,-0.149587,-0.743351,0.651961,-0.149587,-0.756331,0.653828,0.021762,0.0,0.999707,0.024199,0.756332,0.653827,0.021763,0.743352,0.651960,-0.149587,0.0,0.986731,-0.162362,0.0,0.986731,-0.162362,0.0,0.999707,0.024199,0.756332,0.653827,0.021763,0.999805,0.0,0.019762,0.990463,0.0,-0.137775,0.743352,0.651960,-0.149587,0.743352,0.651960,-0.149587,0.756332,0.653827,0.021763,0.999805,0.0,0.019762,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.736340,-0.631058,-0.244068,0.751793,-0.642521,-0.148236,0.990846,0.0,-0.134998,0.990846,0.0,-0.134998,0.974982,0.0,-0.222285,0.736340,-0.631058,-0.244068,0.000003,-0.962484,-0.271339,0.000003,-0.986364,-0.164581,0.751793,-0.642521,-0.148236,0.751793,-0.642521,-0.148236,0.736340,-0.631058,-0.244068,0.000003,-0.962484,-0.271339,-0.736333,-0.631066,-0.244070,-0.751780,-0.642536,-0.148238,0.000003,-0.986364,-0.164581,0.000003,-0.986364,-0.164581,0.000003,-0.962484,-0.271339,-0.736333,-0.631066,-0.244070,-0.974981,0.0,-0.222289,-0.990845,0.0,-0.135004,-0.751780,-0.642536,-0.148238,-0.751780,-0.642536,-0.148238,-0.736333,-0.631066,-0.244070,-0.974981,0.0,-0.222289,-0.736332,0.631066,-0.244070,-0.751780,0.642536,-0.148239,-0.990845,0.0,-0.135004,-0.990845,0.0,-0.135004,-0.974981,0.0,-0.222289,-0.736332,0.631066,-0.244070,0.000003,0.962484,-0.271339};
			return value;
		}
		private double[] getNormal_7_20_vector_56()
		{
			double[] value = {0.000003,0.986364,-0.164581,-0.751780,0.642536,-0.148239,-0.751780,0.642536,-0.148239,-0.736332,0.631066,-0.244070,0.000003,0.962484,-0.271339,0.736340,0.631058,-0.244069,0.751793,0.642521,-0.148236,0.000003,0.986364,-0.164581,0.000003,0.986364,-0.164581,0.000003,0.962484,-0.271339,0.736340,0.631058,-0.244069,0.974982,0.0,-0.222285,0.990846,0.0,-0.134998,0.751793,0.642521,-0.148236,0.751793,0.642521,-0.148236,0.736340,0.631058,-0.244069,0.974982,0.0,-0.222285,0.743352,-0.651959,-0.149587,0.736340,-0.631058,-0.244068,0.974982,0.0,-0.222285,0.974982,0.0,-0.222285,0.990464,0.0,-0.137775,0.743352,-0.651959,-0.149587,0.000002,-0.986731,-0.162362,0.000003,-0.962484,-0.271339,0.736340,-0.631058,-0.244068,0.736340,-0.631058,-0.244068,0.743352,-0.651959,-0.149587,0.000002,-0.986731,-0.162362,-0.743350,-0.651962,-0.149587,-0.736333,-0.631066,-0.244070,0.000003,-0.962484,-0.271339,0.000003,-0.962484,-0.271339,0.000002,-0.986731,-0.162362,-0.743350,-0.651962,-0.149587,-0.990463,0.0,-0.137775,-0.974981,0.0,-0.222289,-0.736333,-0.631066,-0.244070,-0.736333,-0.631066,-0.244070,-0.743350,-0.651962,-0.149587,-0.990463,0.0,-0.137775,-0.743350,0.651962,-0.149587,-0.736332,0.631066,-0.244070,-0.974981,0.0,-0.222289,-0.974981,0.0,-0.222289,-0.990463,0.0,-0.137775,-0.743350,0.651962,-0.149587,0.000002,0.986731,-0.162362,0.000003,0.962484,-0.271339,-0.736332,0.631066,-0.244070,-0.736332,0.631066,-0.244070,-0.743350,0.651962,-0.149587,0.000002,0.986731,-0.162362,0.743353,0.651959,-0.149587,0.736340,0.631058,-0.244069,0.000003,0.962484,-0.271339,0.000003,0.962484,-0.271339,0.000002,0.986731,-0.162362,0.743353,0.651959,-0.149587,0.990464,0.0,-0.137775,0.974982,0.0,-0.222285,0.736340,0.631058,-0.244069,0.736340,0.631058,-0.244069,0.743353,0.651959,-0.149587,0.990464,0.0,-0.137775,0.756332,-0.653826,0.021762,0.743352,-0.651959,-0.149587,0.990464,0.0,-0.137775,0.990464,0.0,-0.137775,0.999805,-0.000002,0.019762,0.756332,-0.653826,0.021762,0.0,-0.999707,0.024199,0.000002,-0.986731,-0.162362,0.743352,-0.651959,-0.149587,0.743352,-0.651959,-0.149587,0.756332,-0.653826,0.021762,0.0,-0.999707,0.024199,-0.756330,-0.653828,0.021762,-0.743350,-0.651962,-0.149587,0.000002,-0.986731,-0.162362,0.000002,-0.986731,-0.162362,0.0,-0.999707,0.024199,-0.756330,-0.653828,0.021762,-0.999805,0.0,0.019762,-0.990463,0.0,-0.137775,-0.743350,-0.651962,-0.149587,-0.743350,-0.651962,-0.149587,-0.756330,-0.653828,0.021762,-0.999805,0.0,0.019762,-0.756331,0.653828,0.021762,-0.743350,0.651962,-0.149587,-0.990463,0.0,-0.137775,-0.990463,0.0,-0.137775,-0.999805,0.0,0.019762,-0.756331,0.653828,0.021762,0.0,0.999707,0.024199,0.000002,0.986731,-0.162362,-0.743350,0.651962,-0.149587,-0.743350,0.651962,-0.149587,-0.756331,0.653828,0.021762};
			return value;
		}
		private double[] getNormal_7_20_vector_57()
		{
			double[] value = {0.0,0.999707,0.024199,0.756332,0.653825,0.021762,0.743353,0.651959,-0.149587,0.000002,0.986731,-0.162362,0.000002,0.986731,-0.162362,0.0,0.999707,0.024199,0.756332,0.653825,0.021762,0.999805,-0.000002,0.019762,0.990464,0.0,-0.137775,0.743353,0.651959,-0.149587,0.743353,0.651959,-0.149587,0.756332,0.653825,0.021762,0.999805,-0.000002,0.019762,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.000002,1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.999598,-0.028341,0.001148,-0.510118,-0.860082,0.006139,-0.362836,-0.931826,0.007083,-0.362836,-0.931826,0.007083,-0.992818,-0.119631,0.001350,-0.999598,-0.028341,0.001148,-0.510118,-0.860082,0.006139,0.510118,-0.860082,0.006139,0.362836,-0.931826,0.007083,0.362836,-0.931826,0.007083,-0.362836,-0.931826,0.007083,-0.510118,-0.860082,0.006139,0.510118,-0.860082,0.006139,0.999598,-0.028340,0.001148,0.992818,-0.119630,0.001351,0.992818,-0.119630,0.001351,0.362836,-0.931826,0.007083,0.510118,-0.860082,0.006139,0.999598,-0.028340,0.001148,0.535522,0.844521,0.0,0.535522,0.844521,0.0,0.535522,0.844521,0.0,0.992818,-0.119630,0.001351,0.999598,-0.028340,0.001148,0.535522,0.844521,0.0,-0.535523,0.844521,0.0,-0.535523,0.844521,0.0,-0.535523,0.844521,0.0,0.535522,0.844521,0.0,0.535522,0.844521,0.0,-0.535523,0.844521,0.0,-0.999598,-0.028341,0.001148,-0.992818,-0.119631,0.001350,-0.992818,-0.119631,0.001350,-0.535523,0.844521,0.0,-0.535523,0.844521,0.0,-0.892741,0.422814,0.155698,-0.253110,-0.966295,0.047005,-0.994370,-0.096916,0.042839,-0.838673,0.357315,-0.411040,-0.790160,-0.364242,0.492925,-0.001365,-0.671507,0.740997,-0.790160,-0.364242,0.492925,-0.802539,0.596599,-0.001137,-0.001365,-0.671507,0.740997,-0.676783,-0.734559,0.048864,-0.000416,-0.999831,0.018399,-0.671252,-0.739858,0.045071,-0.671252,-0.739858,0.045071,-0.002634,-0.999891,0.014508,0.000114,-0.999994,-0.003385,-0.678904,-0.734224,-0.002225,-0.671252,-0.739858,0.045071,0.000114,-0.999994,-0.003385,-0.680404,-0.732826,-0.004041,-0.678904,-0.734224,-0.002225,0.000114,-0.999994,-0.003385};
			return value;
		}
		private double[] getNormal_7_20_vector_58()
		{
			double[] value = {-0.995035,-0.092043,0.037864,-0.994221,-0.097015,0.045976,-0.678904,-0.734224,-0.002225,-0.995035,-0.092043,0.037864,-0.678904,-0.734224,-0.002225,-0.680404,-0.732826,-0.004041,-0.995035,-0.092043,0.037864,-0.680404,-0.732826,-0.004041,-0.995384,-0.095953,-0.002108,-0.994221,-0.097015,0.045976,-0.671252,-0.739858,0.045071,-0.678904,-0.734224,-0.002225,-0.676783,-0.734559,0.048864,-0.993262,-0.102955,0.053198,-0.666746,-0.744944,-0.022537,-0.647226,-0.761456,-0.035819,0.001683,-0.963345,0.268261,0.003109,-0.966442,0.256865,0.003109,-0.966442,0.256865,-0.000042,-1.0,-0.000733,-0.647226,-0.761456,-0.035819,0.994243,-0.090169,-0.057879,0.739897,-0.665928,0.095355,0.986790,0.110227,-0.118721,0.986790,0.110227,-0.118721,0.982485,-0.105737,-0.153439,0.994243,-0.090169,-0.057879,0.925375,0.258899,-0.276862,0.675293,-0.602782,-0.425010,0.970135,0.084042,-0.227541,-0.127828,-0.958305,0.255560,-0.127828,-0.958305,0.255560,-0.127828,-0.958305,0.255560,-0.127828,-0.958305,0.255560,-0.127828,-0.958305,0.255560,-0.127828,-0.958305,0.255560,-0.000597,-0.999382,0.035158,-0.000597,-0.999382,0.035158,-0.000597,-0.999382,0.035158,-0.000597,-0.999382,0.035158,-0.000597,-0.999382,0.035158,-0.000597,-0.999382,0.035158,0.013260,-0.998160,-0.059172,0.013260,-0.998160,-0.059172,0.013260,-0.998160,-0.059172,0.013260,-0.998160,-0.059172,0.013260,-0.998160,-0.059172,0.013260,-0.998160,-0.059172,-0.218564,-0.847187,0.484256,-0.218564,-0.847187,0.484256,-0.218564,-0.847187,0.484256,0.088459,-0.733620,-0.673777,0.088459,-0.733620,-0.673777,0.088459,-0.733620,-0.673777,-0.978608,-0.171434,0.113736,-0.978608,-0.171434,0.113736,-0.978608,-0.171434,0.113736,-0.978608,-0.171434,0.113736,-0.978608,-0.171434,0.113736,-0.978608,-0.171434,0.113736,-0.992206,-0.088801,0.087421,-0.992206,-0.088801,0.087421,-0.992206,-0.088801,0.087421,-0.992206,-0.088801,0.087421,-0.992206,-0.088801,0.087421,-0.992206,-0.088801,0.087421,0.992761,0.005578,-0.119980,0.992761,0.005578,-0.119980,0.992761,0.005578,-0.119980,0.992761,0.005578,-0.119980,0.992761,0.005578,-0.119980,0.992761,0.005578,-0.119980,0.941051,-0.012482,-0.338036,0.941051,-0.012482,-0.338036,0.941051,-0.012482,-0.338036,0.941051,-0.012482,-0.338036,0.941051,-0.012482,-0.338036,0.941051,-0.012482,-0.338036,-0.005002,-0.151483,0.988447,-0.005002,-0.151483,0.988447,-0.005002,-0.151483,0.988447,-0.005002,-0.151483,0.988447,-0.005002,-0.151483,0.988447,-0.005002,-0.151483,0.988447,0.284018,0.014419,-0.958711,0.284018,0.014419,-0.958711,0.284018,0.014419,-0.958711,0.284018,0.014419,-0.958711,0.284018,0.014419,-0.958711,0.284018,0.014419,-0.958711,-0.991452,0.130312,-0.006506,-0.991452,0.130312,-0.006506,-0.991452,0.130312,-0.006506,-0.984988,-0.167762,-0.040670,-0.980651,-0.109682,-0.162151,-0.935242,0.350600,-0.049009,-0.931093,0.207597,-0.299950,-0.794057,0.215125,-0.568502,-0.784675,0.260319,-0.562600,-0.990030,0.140857,0.000880};
			return value;
		}
		private double[] getNormal_7_20_vector_59()
		{
			double[] value = {-0.990030,0.140857,0.000880,-0.990030,0.140857,0.000880,-0.948062,0.246772,-0.200704,-0.948062,0.246772,-0.200704,-0.948062,0.246772,-0.200704,-0.499718,0.858198,-0.117379,-0.499718,0.858198,-0.117379,-0.499718,0.858198,-0.117379,-0.994370,-0.096916,0.042839,-0.934464,0.162135,-0.316999,-0.842318,0.281950,-0.459353,-0.859056,0.205273,-0.468920,-0.859056,0.205273,-0.468920,-0.859056,0.205273,-0.468921,-0.669950,0.0,0.742406,-0.669950,0.642943,0.371202,-0.669950,0.642942,-0.371204,-0.669950,0.642942,-0.371204,-0.669951,0.0,-0.742405,-0.669950,-0.642942,-0.371204,-0.669950,0.0,0.742406,-0.669950,0.642942,-0.371204,-0.669950,-0.642942,-0.371204,-0.669950,-0.642943,0.371202,-0.669950,0.0,0.742406,-0.669950,-0.642942,-0.371204};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getTextureCoordinate_7_21_point_1()
		{
			double[] value = {0.250119,0.382673,0.017788,0.353698,0.016787,0.326623,0.016787,0.326623,0.251121,0.366512,0.250119,0.382673,0.017788,0.462865,0.250119,0.463550,0.252473,0.492069,0.252473,0.492069,0.017788,0.496076,0.017788,0.462865,0.516910,0.408401,0.250119,0.382673,0.251121,0.366512,0.251121,0.366512,0.516910,0.399455,0.516910,0.408401,0.250119,0.463550,0.516910,0.455264,0.519263,0.476383,0.519263,0.476383,0.252473,0.492069,0.250119,0.463550,0.516910,0.392443,0.650460,0.418773,0.656219,0.429354,0.516910,0.392443,0.656219,0.429354,0.586364,0.420554,0.516910,0.392443,0.586364,0.420554,0.556193,0.416753,0.516910,0.392443,0.556193,0.416753,0.516910,0.408401,0.251121,0.366512,0.016787,0.326623,0.017788,0.299934,0.017788,0.299934,0.250119,0.350007,0.251121,0.366512,0.516910,0.399455,0.251121,0.366512,0.250119,0.350007,0.250119,0.350007,0.516910,0.389962,0.516910,0.399455,0.650460,0.418773,0.516910,0.392443,0.516910,0.389962,0.516910,0.389962,0.650460,0.415596,0.650460,0.418773,0.562706,0.513269,0.566626,0.501668,0.571201,0.492995,0.571201,0.492995,0.573492,0.495442,0.562706,0.513269,0.747598,0.617231,0.745244,0.622823,0.690140,0.622823,0.690140,0.622823,0.692494,0.624905,0.747598,0.617231,0.252473,0.492069,0.519263,0.476383,0.516910,0.481879,0.516910,0.481879,0.250119,0.492069,0.252473,0.492069,0.017788,0.496076,0.252473,0.492069,0.250119,0.492069,0.250119,0.492069,0.017788,0.496076,0.017788,0.496076,0.586364,0.453963,0.673474,0.453963,0.776509,0.607883,0.519263,0.476383,0.533945,0.454235,0.586364,0.497897,0.519263,0.476383,0.586364,0.497897,0.724667,0.607730,0.519263,0.476383,0.724667,0.607730,0.677537,0.607718,0.573492,0.495442,0.667132,0.593747,0.659678,0.606022,0.573492,0.495442,0.659678,0.606022,0.567402,0.518373,0.573492,0.495442,0.567402,0.518373,0.562706,0.513269,0.677537,0.607718};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_2()
		{
			double[] value = {0.675184,0.607718,0.516910,0.481879,0.516910,0.481879,0.519263,0.476383,0.677537,0.607718,0.692494,0.624905,0.690140,0.622823,0.675184,0.607718,0.675184,0.607718,0.677537,0.607718,0.692494,0.624905,0.747598,0.617231,0.692494,0.624905,0.677537,0.607718,0.677537,0.607718,0.724667,0.607730,0.747598,0.617231,0.745244,0.622823,0.747598,0.617231,0.776509,0.607883,0.776509,0.607883,0.776509,0.608010,0.745244,0.622823,0.533945,0.454235,0.519263,0.476383,0.516910,0.455264,0.017788,0.432564,0.250119,0.433249,0.250119,0.463550,0.250119,0.463550,0.017788,0.462865,0.017788,0.432564,0.250119,0.433249,0.516789,0.427240,0.516857,0.442924,0.250119,0.433249,0.516857,0.442924,0.516910,0.455264,0.250119,0.433249,0.516910,0.455264,0.250119,0.463550,0.250119,0.412031,0.015785,0.403394,0.017788,0.353698,0.017788,0.353698,0.250119,0.382673,0.250119,0.412031,0.250119,0.433249,0.017788,0.432564,0.015785,0.403394,0.015785,0.403394,0.250119,0.412031,0.250119,0.433249,0.516789,0.427240,0.250119,0.433249,0.250119,0.412031,0.250119,0.412031,0.516910,0.408401,0.516789,0.427240,0.516910,0.408401,0.250119,0.412031,0.250119,0.382673,0.556193,0.416753,0.545282,0.433188,0.516789,0.427240,0.516789,0.427240,0.516910,0.408401,0.556193,0.416753,0.533945,0.454235,0.586364,0.453963,0.586364,0.489332,0.586364,0.489332,0.586364,0.497897,0.533945,0.454235,0.724667,0.607730,0.776509,0.607883,0.747598,0.617231,0.761309,0.324237,0.761309,0.302392,0.846846,0.288098,0.846846,0.288098,0.844839,0.318309,0.761309,0.324237,0.110839,0.328611,0.062256,0.328611,0.027864,0.491692,0.027864,0.491692,0.107970,0.486688,0.110839,0.328611,0.761309,0.302392,0.761310,0.266223,0.855174,0.266138,0.855174,0.266138,0.846846,0.288098,0.761309,0.302392,0.761310,0.092725,0.761310,0.057554,0.853407,0.092725,0.983605,0.175532,0.983605,0.246007};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_3()
		{
			double[] value = {0.888100,0.245417,0.983605,0.246007,0.983605,0.265956,0.926472,0.266038,0.983605,0.246007,0.926472,0.266038,0.855174,0.266138,0.983605,0.246007,0.855174,0.266138,0.888100,0.245417,0.888100,0.245417,0.855174,0.266138,0.761310,0.266223,0.761310,0.266223,0.776049,0.238848,0.888100,0.245417,0.761309,0.324237,0.831415,0.339363,0.703402,0.339348,0.703402,0.339348,0.680618,0.323726,0.761309,0.324237,0.779789,0.044711,0.779789,0.004556,0.699848,0.005245,0.699848,0.005245,0.699848,0.045534,0.779789,0.044711,0.761309,0.302392,0.761309,0.324237,0.680618,0.323726,0.680618,0.323726,0.680618,0.301881,0.761309,0.302392,0.761310,0.092725,0.761310,0.153719,0.680620,0.153208,0.680620,0.153208,0.680620,0.092725,0.761310,0.092725,0.680620,0.153208,0.761310,0.153719,0.772913,0.213223,0.772913,0.213223,0.680620,0.230285,0.680620,0.153208,0.701462,0.254940,0.776049,0.238848,0.761310,0.266223,0.761310,0.266223,0.688210,0.265711,0.701462,0.254940,0.680618,0.323726,0.703402,0.339348,0.559074,0.339615,0.559074,0.339615,0.558948,0.323977,0.680618,0.323726,0.699848,0.045534,0.699848,0.005245,0.573062,0.005692,0.573062,0.005692,0.573062,0.045667,0.699848,0.045534,0.559720,0.306022,0.559720,0.306022,0.680618,0.301881,0.559720,0.306022,0.680618,0.301881,0.680618,0.323726,0.559720,0.306022,0.680618,0.323726,0.558948,0.323977,0.680620,0.092725,0.680620,0.153208,0.553135,0.153712,0.553135,0.153712,0.553135,0.092725,0.680620,0.092725,0.553135,0.092725,0.553135,0.153712,0.396146,0.153774,0.396146,0.153774,0.396146,0.092725,0.553135,0.092725,0.553135,0.153712,0.553208,0.245782,0.396189,0.245592,0.396189,0.245592,0.396146,0.153774,0.553135,0.153712,0.440056,0.324036,0.440056,0.339674,0.396358,0.339866,0.396358,0.339866,0.396231,0.324229,0.440056,0.324036,0.509680,0.324002,0.440056,0.324036,0.497674,0.311379};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_4()
		{
			double[] value = {0.761309,0.302392,0.680618,0.301881,0.688210,0.265711,0.688210,0.265711,0.761310,0.266223,0.761309,0.302392,0.559417,0.280764,0.558949,0.265963,0.688210,0.265711,0.559417,0.280764,0.688210,0.265711,0.680618,0.301881,0.559417,0.280764,0.680618,0.301881,0.559720,0.306022,0.495905,0.281538,0.396232,0.266215,0.512486,0.263814,0.910094,0.287998,0.983605,0.287916,0.983605,0.312621,0.983605,0.312621,0.910094,0.315105,0.910094,0.287998,0.983605,0.312621,0.910094,0.315105,0.910094,0.315105,0.983605,0.312621,0.910094,0.315105,0.910094,0.315105,0.983605,0.312621,0.910094,0.315105,0.983605,0.312621,0.926472,0.266038,0.983605,0.265956,0.983605,0.287916,0.983605,0.287916,0.910094,0.287998,0.926472,0.266038,0.846846,0.288098,0.910094,0.287998,0.910094,0.315105,0.910094,0.315105,0.844839,0.318309,0.846846,0.288098,0.855174,0.266138,0.926472,0.266038,0.910094,0.287998,0.910094,0.287998,0.846846,0.288098,0.855174,0.266138,0.396231,0.302384,0.396231,0.324229,0.336052,0.319156,0.336052,0.319156,0.341899,0.293961,0.396231,0.302384,0.396231,0.324229,0.396358,0.339866,0.331680,0.338519,0.331680,0.338519,0.336052,0.319156,0.396231,0.324229,0.396358,0.339866,0.396231,0.338826,0.331680,0.338519,0.331680,0.338519,0.331680,0.338519,0.396358,0.339866,0.396231,0.338826,0.395992,0.324262,0.336052,0.319156,0.336052,0.319156,0.331680,0.338519,0.396231,0.338826,0.396189,0.245592,0.396232,0.266215,0.347746,0.268766,0.347746,0.268766,0.351359,0.254928,0.396189,0.245592,0.396232,0.266215,0.396231,0.302384,0.341899,0.293961,0.341899,0.293961,0.347746,0.268766,0.396232,0.266215,0.341899,0.293961,0.336052,0.319156,0.300529,0.318852,0.300529,0.318852,0.300433,0.294731,0.341899,0.293961,0.336052,0.319156,0.331680,0.338519,0.299869,0.336076,0.299869,0.336076,0.300529,0.318852,0.336052,0.319156,0.331680,0.338519};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_5()
		{
			double[] value = {0.331680,0.338519,0.299869,0.336076,0.299869,0.336076,0.299869,0.336076,0.331680,0.338519,0.331680,0.338519,0.336052,0.319156,0.300529,0.318852,0.300529,0.318852,0.299869,0.336076,0.331680,0.338519,0.351359,0.254928,0.347746,0.268766,0.299469,0.274293,0.299469,0.274293,0.307457,0.257016,0.351359,0.254928,0.347746,0.268766,0.341899,0.293961,0.300433,0.294731,0.300433,0.294731,0.299469,0.274293,0.347746,0.268766,0.901460,0.990098,0.829631,0.990098,0.806365,0.959681,0.901460,0.990098,0.806365,0.959681,0.806443,0.831570,0.901460,0.990098,0.806443,0.831570,0.872320,0.832739,0.901460,0.990098,0.872320,0.832739,0.964894,0.834381,0.964894,0.834381,0.960345,0.861250,0.948066,0.910466,0.901460,0.990098,0.964894,0.834381,0.948066,0.910466,0.901460,0.990098,0.948066,0.910466,0.932708,0.959681,0.299469,0.274293,0.307457,0.257016,0.291296,0.259982,0.291296,0.259982,0.299469,0.274293,0.299469,0.274293,0.307457,0.257016,0.299469,0.274293,0.299469,0.274293,0.396146,0.153774,0.396189,0.245592,0.351359,0.254928,0.351359,0.254928,0.351359,0.164930,0.396146,0.153774,0.351359,0.164930,0.351359,0.254928,0.307457,0.257016,0.351359,0.164930,0.307457,0.257016,0.308422,0.214360,0.351359,0.164930,0.308422,0.214360,0.303205,0.165097,0.308422,0.214360,0.307457,0.257016,0.291296,0.259982,0.291296,0.259982,0.281133,0.233488,0.308422,0.214360,0.303205,0.165097,0.308422,0.214360,0.281133,0.233488,0.281133,0.233488,0.273259,0.198404,0.303205,0.165097,0.697298,0.770259,0.700687,0.758073,0.730604,0.758075,0.730604,0.758075,0.733987,0.770261,0.697298,0.770259,0.733987,0.770261,0.730604,0.758075,0.760016,0.743782,0.760016,0.743782,0.770003,0.751916,0.733987,0.770261,0.770003,0.751916,0.760016,0.743782,0.773366,0.713457,0.773366,0.713457,0.787779,0.713884,0.770003,0.751916,0.787779,0.713884,0.773366,0.713457};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_6()
		{
			double[] value = {0.773456,0.682139,0.773456,0.682139,0.787873,0.683441,0.787779,0.713884,0.032906,0.182822,0.032906,0.182822,0.037096,0.201699,0.037096,0.201699,0.037096,0.201699,0.032906,0.182822,0.032906,0.182822,0.029752,0.164199,0.045475,0.180610,0.045475,0.180610,0.037096,0.201699,0.032906,0.182822,0.029752,0.164199,0.028077,0.137222,0.045024,0.143004,0.045024,0.143004,0.045475,0.180610,0.029752,0.164199,0.028077,0.137222,0.027000,0.115608,0.046330,0.115583,0.046330,0.115583,0.045024,0.143004,0.028077,0.137222,0.037096,0.201699,0.037096,0.201699,0.053463,0.217309,0.053463,0.217309,0.053463,0.217309,0.037096,0.201699,0.037096,0.201699,0.045475,0.180610,0.065573,0.190587,0.065573,0.190587,0.053463,0.217309,0.037096,0.201699,0.045475,0.180610,0.045024,0.143004,0.076942,0.163204,0.076942,0.163204,0.065573,0.190587,0.045475,0.180610,0.045024,0.143004,0.046330,0.115583,0.084958,0.133020,0.084958,0.133020,0.076942,0.163204,0.045024,0.143004,0.672023,0.744097,0.658439,0.713852,0.773366,0.713457,0.773366,0.713457,0.760016,0.743782,0.672023,0.744097,0.658439,0.713852,0.658066,0.682131,0.773456,0.682139,0.773456,0.682139,0.773366,0.713457,0.658439,0.713852,0.053463,0.217309,0.053463,0.217309,0.084020,0.236165,0.084020,0.236165,0.084020,0.236165,0.053463,0.217309,0.053463,0.217309,0.065573,0.190587,0.098838,0.206422,0.098838,0.206422,0.084020,0.236165,0.053463,0.217309,0.065573,0.190587,0.076942,0.163204,0.108293,0.182022,0.108293,0.182022,0.098838,0.206422,0.065573,0.190587,0.076942,0.163204,0.084958,0.133020,0.114451,0.150186,0.114451,0.150186,0.108293,0.182022,0.076942,0.163204,0.084020,0.236165,0.084020,0.236165,0.135235,0.251081,0.135235,0.251081,0.135235,0.251081,0.084020,0.236165,0.084020,0.236165,0.098838,0.206422,0.142533,0.229777,0.142533,0.229777,0.135235,0.251081,0.084020,0.236165};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_7()
		{
			double[] value = {0.098838,0.206422,0.108293,0.182022,0.142426,0.200750,0.142426,0.200750,0.142533,0.229777,0.098838,0.206422,0.108293,0.182022,0.114451,0.150186,0.139008,0.178592,0.139008,0.178592,0.142426,0.200750,0.108293,0.182022,0.691896,0.770122,0.696321,0.763726,0.735229,0.763774,0.735229,0.763774,0.739612,0.770181,0.691896,0.770122,0.739612,0.770181,0.735229,0.763774,0.765724,0.736457,0.765724,0.736457,0.777001,0.744367,0.739612,0.770181,0.777001,0.744367,0.765724,0.736457,0.777171,0.689864,0.777171,0.689864,0.788129,0.696071,0.777001,0.744367,0.788129,0.696071,0.777171,0.689864,0.775703,0.652671,0.775703,0.652671,0.783085,0.657311,0.788129,0.696071,0.171007,0.275193,0.171007,0.275193,0.203585,0.284062,0.203585,0.284062,0.203585,0.284062,0.171007,0.275193,0.171007,0.275193,0.166901,0.262115,0.195783,0.267735,0.195783,0.267735,0.203585,0.284062,0.171007,0.275193,0.166901,0.262115,0.160650,0.247760,0.187329,0.242459,0.187329,0.242459,0.195783,0.267735,0.166901,0.262115,0.183660,0.217030,0.187329,0.242459,0.160650,0.247760,0.203585,0.284062,0.203585,0.284062,0.235608,0.290297,0.235608,0.290297,0.235608,0.290297,0.203585,0.284062,0.203585,0.284062,0.195783,0.267735,0.231769,0.270682,0.231769,0.270682,0.235608,0.290297,0.203585,0.284062,0.195783,0.267735,0.187329,0.242459,0.224673,0.243530,0.224673,0.243530,0.231769,0.270682,0.195783,0.267735,0.187329,0.242459,0.183660,0.217030,0.219633,0.222472,0.219633,0.222472,0.224673,0.243530,0.187329,0.242459,0.665897,0.736175,0.654555,0.689712,0.777171,0.689864,0.777171,0.689864,0.765724,0.736457,0.665897,0.736175,0.654555,0.689712,0.654844,0.652327,0.775703,0.652671,0.775703,0.652671,0.777171,0.689864,0.654555,0.689712,0.235608,0.290297,0.235608,0.290297,0.246776,0.288455,0.246776,0.288455,0.246776,0.288455,0.235608,0.290297,0.235608,0.290297};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_8()
		{
			double[] value = {0.231769,0.270682,0.261000,0.267343,0.261000,0.267343,0.246776,0.288455,0.235608,0.290297,0.231769,0.270682,0.224673,0.243530,0.261166,0.236089,0.261166,0.236089,0.261000,0.267343,0.231769,0.270682,0.224673,0.243530,0.219633,0.222472,0.261166,0.236089,0.261166,0.236089,0.261166,0.236089,0.224673,0.243530,0.154795,0.236821,0.148929,0.247639,0.135235,0.251081,0.135235,0.251081,0.142533,0.229777,0.154795,0.236821,0.148929,0.247510,0.135235,0.251081,0.135235,0.251081,0.135235,0.251081,0.148929,0.247639,0.148929,0.247510,0.046330,0.115583,0.035942,0.100014,0.096915,0.125536,0.096915,0.125536,0.084958,0.133020,0.046330,0.115583,0.084958,0.133020,0.084958,0.133020,0.121911,0.139427,0.121911,0.139427,0.114451,0.150186,0.084958,0.133020,0.148431,0.165879,0.139008,0.178592,0.114451,0.150186,0.114451,0.150186,0.121911,0.139427,0.148431,0.165879,0.148431,0.165879,0.146197,0.135651,0.184232,0.123510,0.184232,0.123510,0.182393,0.160371,0.148431,0.165879,0.146421,0.097719,0.221328,0.097574,0.184232,0.123510,0.184232,0.123510,0.146197,0.135651,0.146421,0.097719,0.182393,0.195945,0.182416,0.209225,0.142533,0.229777,0.142533,0.229777,0.142426,0.200750,0.182393,0.195945,0.142426,0.200750,0.139008,0.178592,0.182393,0.195945,0.139008,0.178592,0.148431,0.165879,0.182393,0.160371,0.182393,0.160371,0.182393,0.195945,0.139008,0.178592,0.183660,0.217030,0.182416,0.209225,0.218557,0.213536,0.218557,0.213536,0.219633,0.222472,0.183660,0.217030,0.146197,0.135651,0.148431,0.165879,0.121911,0.139427,0.097621,0.096918,0.121911,0.139427,0.096915,0.125536,0.121911,0.139427,0.097621,0.096918,0.146421,0.097719,0.146421,0.097719,0.146197,0.135651,0.121911,0.139427,0.097621,0.096918,0.096915,0.125536,0.035942,0.100014,0.182416,0.209225,0.182393,0.195945,0.218349,0.198780,0.218349,0.198780,0.218557,0.213536};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_9()
		{
			double[] value = {0.182416,0.209225,0.218557,0.213536,0.218349,0.198780,0.273259,0.198404,0.273259,0.198404,0.253899,0.218088,0.218557,0.213536,0.261000,0.267343,0.261166,0.236089,0.281133,0.233488,0.281133,0.233488,0.291296,0.259982,0.261000,0.267343,0.273259,0.198404,0.281133,0.233488,0.253899,0.218088,0.246776,0.288455,0.261000,0.267343,0.291296,0.259982,0.351359,0.092282,0.351206,0.057363,0.402160,0.058172,0.402160,0.058172,0.396146,0.092725,0.351359,0.092282,0.351206,0.057363,0.351206,0.057363,0.402160,0.058172,0.402160,0.058172,0.402160,0.058172,0.351206,0.057363,0.396146,0.092725,0.396146,0.153774,0.351359,0.164930,0.351359,0.164930,0.351359,0.092282,0.396146,0.092725,0.351359,0.092282,0.351359,0.164930,0.303205,0.165097,0.303205,0.165097,0.303205,0.095188,0.351359,0.092282,0.281645,0.143163,0.281624,0.097511,0.303205,0.095188,0.281645,0.143163,0.303205,0.095188,0.303205,0.165097,0.281645,0.143163,0.303205,0.165097,0.273259,0.198404,0.182393,0.195945,0.182393,0.160371,0.218349,0.152216,0.218349,0.152216,0.218349,0.198780,0.182393,0.195945,0.218349,0.198780,0.218349,0.152216,0.281645,0.143163,0.281645,0.143163,0.273259,0.198404,0.218349,0.198780,0.182393,0.160371,0.184232,0.123510,0.221328,0.097574,0.221328,0.097574,0.218349,0.152216,0.182393,0.160371,0.218349,0.152216,0.221328,0.097574,0.281624,0.097511,0.281624,0.097511,0.281645,0.143163,0.218349,0.152216,0.872272,0.011113,0.779789,0.004556,0.779789,0.044711,0.779789,0.044711,0.876355,0.044711,0.872272,0.011113,0.761310,0.153719,0.761310,0.092725,0.853407,0.092725,0.761310,0.153719,0.853407,0.092725,0.983605,0.142445,0.761310,0.153719,0.983605,0.142445,0.983605,0.175532,0.680620,0.092725,0.680620,0.057043,0.761310,0.057554,0.761310,0.057554,0.761310,0.092725,0.680620,0.092725,0.553135,0.092725,0.553135,0.057547,0.680620,0.057043};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_10()
		{
			double[] value = {0.680620,0.057043,0.680620,0.092725,0.553135,0.092725,0.221328,0.097574,0.146421,0.097719,0.146654,0.066275,0.146654,0.066275,0.220820,0.061535,0.221328,0.097574,0.146421,0.097719,0.097621,0.096918,0.102678,0.058205,0.102678,0.058205,0.146654,0.066275,0.146421,0.097719,0.097621,0.096918,0.035942,0.100014,0.042447,0.058620,0.042447,0.058620,0.102678,0.058205,0.097621,0.096918,0.303046,0.056013,0.351206,0.057363,0.351359,0.092282,0.351359,0.092282,0.303205,0.095188,0.303046,0.056013,0.281116,0.055404,0.303046,0.056013,0.303205,0.095188,0.303205,0.095188,0.281624,0.097511,0.281116,0.055404,0.281624,0.097511,0.221328,0.097574,0.220820,0.061535,0.220820,0.061535,0.281116,0.055404,0.281624,0.097511,0.627973,0.004851,0.545605,0.005798,0.545023,0.044304,0.545023,0.044304,0.627427,0.044304,0.627973,0.004851,0.545605,0.005798,0.473330,0.005168,0.471397,0.044304,0.471397,0.044304,0.545023,0.044304,0.545605,0.005798,0.473330,0.005168,0.427155,0.011395,0.424731,0.044304,0.424731,0.044304,0.471397,0.044304,0.473330,0.005168,0.740481,0.044304,0.804991,0.044304,0.810116,0.004419,0.810116,0.004419,0.745606,0.004419,0.740481,0.044304,0.711106,0.044304,0.740481,0.044304,0.745606,0.004419,0.745606,0.004419,0.716231,0.004632,0.711106,0.044304,0.650393,0.004859,0.650393,0.020380,0.716231,0.004632,0.870332,0.005108,0.804991,0.044304,0.865207,0.043949,0.705193,0.841894,0.705217,0.780916,0.738159,0.785103,0.705193,0.841894,0.738159,0.785103,0.781801,0.801750,0.705193,0.841894,0.781801,0.801750,0.786738,0.844165,0.705193,0.841894,0.786738,0.844165,0.777038,0.893264,0.705193,0.841894,0.777038,0.893264,0.745706,0.922490,0.705193,0.841894,0.745706,0.922490,0.705245,0.922490,0.439685,0.364697,0.439685,0.364697,0.558679,0.373710,0.558679,0.373710,0.558679,0.373710,0.439685,0.364697,0.439685,0.364697};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_11()
		{
			double[] value = {0.439714,0.357746,0.558679,0.363639,0.558679,0.363639,0.558679,0.373710,0.439685,0.364697,0.439714,0.357746,0.439997,0.348383,0.558969,0.350463,0.558969,0.350463,0.558679,0.363639,0.439714,0.357746,0.558679,0.373710,0.558679,0.373710,0.703469,0.376137,0.703469,0.376137,0.703444,0.376137,0.558679,0.373710,0.558679,0.373710,0.558679,0.363639,0.703469,0.366065,0.703469,0.366065,0.703469,0.376137,0.558679,0.373710,0.558679,0.363639,0.558969,0.350463,0.703416,0.349770,0.703416,0.349770,0.703469,0.366065,0.558679,0.363639,0.439997,0.348383,0.440056,0.339674,0.559074,0.339615,0.559074,0.339615,0.558969,0.350463,0.439997,0.348383,0.440056,0.339674,0.439997,0.348383,0.396231,0.338826,0.396231,0.338826,0.396358,0.339866,0.440056,0.339674,0.395992,0.324262,0.395992,0.324262,0.336052,0.319156,0.336052,0.319156,0.336052,0.319156,0.395992,0.324262,0.336052,0.319156,0.336052,0.319156,0.300529,0.318852,0.440061,0.323402,0.440061,0.323402,0.395992,0.324262,0.395992,0.324262,0.395992,0.324262,0.440061,0.323402,0.440061,0.333474,0.440061,0.323402,0.395992,0.324262,0.395992,0.324262,0.396231,0.338826,0.440061,0.333474,0.558969,0.350463,0.559074,0.339615,0.703402,0.339348,0.703402,0.339348,0.703416,0.349770,0.558969,0.350463,0.787873,0.683441,0.773456,0.682139,0.740462,0.654493,0.740462,0.654493,0.783085,0.657311,0.787873,0.683441,0.027000,0.115608,0.014321,0.096934,0.035942,0.100014,0.035942,0.100014,0.046330,0.115583,0.027000,0.115608,0.658066,0.682131,0.687422,0.654491,0.740462,0.654493,0.740462,0.654493,0.773456,0.682139,0.658066,0.682131,0.014321,0.096934,0.010590,0.094841,0.006127,0.079937,0.006127,0.079937,0.016218,0.079002,0.014321,0.096934,0.014321,0.096934,0.016218,0.079002,0.042447,0.058620,0.042447,0.058620,0.035942,0.100014,0.014321,0.096934,0.005786,0.096929,0.006127,0.079937};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_12()
		{
			double[] value = {0.006127,0.079937,0.006127,0.079937,0.010590,0.094841,0.005786,0.096929,0.058421,0.041288,0.032113,0.050390,0.032113,0.050390,0.031140,0.054661,0.032113,0.050390,0.058421,0.041288,0.058421,0.041288,0.058421,0.041146,0.031140,0.054661,0.232467,0.055405,0.158302,0.060144,0.156759,0.039563,0.232467,0.055405,0.156759,0.039563,0.221005,0.048052,0.232467,0.055405,0.221005,0.048052,0.221005,0.048052,0.102184,0.038741,0.156759,0.039563,0.158302,0.060144,0.158302,0.060144,0.106700,0.060144,0.102184,0.038741,0.058421,0.041146,0.102184,0.038741,0.106700,0.060144,0.106700,0.060144,0.051292,0.063699,0.058421,0.041146,0.650393,0.020380,0.650393,0.004859,0.639357,0.004854,0.627973,0.004851,0.627427,0.044304,0.649902,0.044304,0.627973,0.004851,0.649902,0.044304,0.650393,0.020380,0.627973,0.004851,0.650393,0.020380,0.639357,0.004854,0.032113,0.050390,0.031140,0.054661,0.031140,0.054661,0.031140,0.054661,0.011959,0.056790,0.032113,0.050390,0.031140,0.054661,0.058421,0.041146,0.051292,0.063699,0.051292,0.063699,0.031140,0.054661,0.031140,0.054661,0.032113,0.050390,0.032113,0.050390,0.011959,0.056790,0.011959,0.056790,0.008538,0.056252,0.032113,0.050390,0.497674,0.311379,0.440056,0.324036,0.396231,0.324229,0.497674,0.311379,0.396231,0.324229,0.396231,0.302384,0.497674,0.311379,0.396231,0.302384,0.495985,0.302230,0.559720,0.306022,0.558948,0.323977,0.546309,0.323984,0.514832,0.329418,0.440056,0.339674,0.440056,0.324036,0.440056,0.324036,0.509680,0.324002,0.514832,0.329418,0.543215,0.263728,0.553208,0.245782,0.558949,0.265963,0.558949,0.265963,0.559417,0.280764,0.543215,0.263728,0.703469,0.376137,0.703469,0.366065,0.831449,0.361811,0.831449,0.361811,0.831449,0.371882,0.703469,0.376137,0.703469,0.366065,0.703416,0.349770,0.831449,0.345515,0.831449,0.345515,0.831449,0.361811,0.703469,0.366065};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_13()
		{
			double[] value = {0.703416,0.349770,0.703402,0.339348,0.831415,0.339363,0.831415,0.339363,0.831449,0.345515,0.703416,0.349770,0.831415,0.339363,0.761309,0.324237,0.844839,0.318309,0.831449,0.371882,0.831449,0.361811,0.873126,0.344661,0.873126,0.344661,0.854131,0.360900,0.831449,0.371882,0.703444,0.376137,0.703469,0.376137,0.831449,0.371882,0.831449,0.371882,0.831449,0.371882,0.703444,0.376137,0.831449,0.371882,0.831449,0.371882,0.854131,0.360900,0.854131,0.360900,0.854785,0.362516,0.831449,0.371882,0.854785,0.362516,0.854131,0.360900,0.873126,0.344661,0.873126,0.344661,0.873241,0.344761,0.854785,0.362516,0.873241,0.344761,0.873126,0.344661,0.910094,0.315105,0.910094,0.315105,0.910094,0.315105,0.873241,0.344761,0.831449,0.361811,0.831449,0.345515,0.873126,0.333807,0.873126,0.333807,0.873126,0.344661,0.831449,0.361811,0.873126,0.344661,0.873126,0.333807,0.910094,0.315105,0.910094,0.315105,0.910094,0.315105,0.873126,0.344661,0.831449,0.345515,0.831415,0.339363,0.844839,0.318309,0.844839,0.318309,0.873126,0.333807,0.831449,0.345515,0.873126,0.333807,0.844839,0.318309,0.910094,0.315105,0.495905,0.281538,0.495985,0.302230,0.396231,0.302384,0.396231,0.302384,0.396232,0.266215,0.495905,0.281538,0.541334,0.329302,0.546309,0.323984,0.558948,0.323977,0.558948,0.323977,0.559074,0.339615,0.541334,0.329302,0.541334,0.329302,0.559074,0.339615,0.440056,0.339674,0.440056,0.339674,0.514832,0.329418,0.541334,0.329302,0.512486,0.263814,0.396232,0.266215,0.396189,0.245592,0.396189,0.245592,0.553208,0.245782,0.512486,0.263814,0.543215,0.263728,0.512486,0.263814,0.553208,0.245782,0.660309,0.258219,0.701462,0.254940,0.688210,0.265711,0.648674,0.257664,0.660309,0.258219,0.688210,0.265711,0.648674,0.257664,0.688210,0.265711,0.558949,0.265963,0.648674,0.257664,0.558949,0.265963,0.553208,0.245782,0.648674,0.257664};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_14()
		{
			double[] value = {0.553208,0.245782,0.647489,0.234562,0.553208,0.245782,0.553135,0.153712,0.680620,0.153208,0.680620,0.230285,0.647489,0.234562,0.647489,0.234562,0.680620,0.153208,0.680620,0.230285,0.647489,0.234562,0.553208,0.245782,0.680620,0.153208,0.647489,0.234562,0.794318,0.206249,0.772913,0.213223,0.761310,0.153719,0.794318,0.206249,0.761310,0.153719,0.983605,0.175532,0.983605,0.175532,0.888100,0.245417,0.776049,0.238848,0.983605,0.175532,0.776049,0.238848,0.796246,0.228989,0.794318,0.206249,0.983605,0.175532,0.796246,0.228989,0.772913,0.213223,0.794318,0.206249,0.794495,0.206192,0.794495,0.206192,0.772949,0.213125,0.772913,0.213223,0.647489,0.234562,0.680620,0.230285,0.772913,0.213223,0.647489,0.234562,0.772913,0.213223,0.772949,0.213125,0.647489,0.234562,0.772949,0.213125,0.647055,0.232241,0.647489,0.234562,0.647489,0.234562,0.647055,0.232241,0.647055,0.232241,0.647055,0.232241,0.647489,0.234562,0.776049,0.238848,0.774863,0.230430,0.796409,0.223498,0.796409,0.223498,0.796246,0.228989,0.776049,0.238848,0.133295,0.696096,0.133295,0.700946,0.074841,0.700738,0.074841,0.700738,0.075286,0.695546,0.133295,0.696096,0.648674,0.257664,0.648969,0.249546,0.648969,0.249546,0.648969,0.249546,0.660309,0.258219,0.648674,0.257664,0.094490,0.702030,0.093196,0.680586,0.127576,0.681165,0.127576,0.681165,0.129095,0.700225,0.094490,0.702030,0.648969,0.249546,0.648674,0.257664,0.647489,0.234562,0.647489,0.234562,0.647055,0.232241,0.648969,0.249546,0.648969,0.249546,0.648969,0.249546,0.647055,0.232241,0.647055,0.232241,0.647055,0.232241,0.648969,0.249546,0.121288,0.644517,0.056510,0.646421,0.053109,0.631163,0.053109,0.631163,0.117887,0.618589,0.121288,0.644517,0.796409,0.223498,0.774863,0.230430,0.772949,0.213125,0.772949,0.213125,0.794495,0.206192,0.796409,0.223498,0.133793,0.641263,0.045716,0.641927};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_15()
		{
			double[] value = {0.046244,0.692972,0.046244,0.692972,0.133295,0.694842,0.133793,0.641263,0.075286,0.695546,0.045316,0.694226,0.046182,0.638866,0.046182,0.638866,0.076960,0.638277,0.075286,0.695546,0.100290,0.641330,0.129678,0.636520,0.132298,0.699916,0.132298,0.699916,0.102206,0.703202,0.101047,0.648739,0.100290,0.641330,0.132298,0.699916,0.101047,0.648739,0.129352,0.676788,0.092719,0.675646,0.093347,0.623171,0.093347,0.623171,0.129980,0.620934,0.129618,0.634480,0.129352,0.676788,0.093347,0.623171,0.129618,0.634480,0.129980,0.620934,0.093347,0.623171,0.096691,0.526775,0.096691,0.526775,0.133925,0.524882,0.129949,0.563334,0.096691,0.526775,0.129949,0.563334,0.131926,0.583178,0.129980,0.620934,0.096691,0.526775,0.131926,0.583178,0.076960,0.638277,0.046182,0.638866,0.045852,0.530542,0.045852,0.530542,0.079395,0.527883,0.076960,0.638277,0.129678,0.636520,0.100290,0.641330,0.097930,0.595510,0.129678,0.636520,0.097930,0.595510,0.097380,0.589024,0.129678,0.636520,0.097380,0.589024,0.107119,0.546929,0.129678,0.636520,0.107119,0.546929,0.132206,0.555605,0.742226,0.080641,0.660042,0.080641,0.655877,0.080641,0.655877,0.080641,0.748444,0.080641,0.742226,0.080641,0.121288,0.644517,0.117887,0.618589,0.128935,0.611057,0.128935,0.611057,0.132336,0.642636,0.121288,0.644517,0.079395,0.527883,0.045852,0.530542,0.049849,0.527168,0.134291,0.529255,0.079395,0.527883,0.049849,0.527168,0.134291,0.529255,0.049849,0.527168,0.134291,0.526956,0.111014,0.525588,0.128238,0.529938,0.132206,0.555605,0.132206,0.555605,0.107119,0.546929,0.111014,0.525588,0.051836,0.531907,0.118504,0.535687,0.117887,0.618589,0.117887,0.618589,0.053109,0.631163,0.051836,0.531907,0.129577,0.524764,0.048982,0.524764,0.053605,0.700563,0.053605,0.700563,0.133914,0.700563,0.129577,0.524764,0.118504,0.535687,0.129552,0.535687,0.128935,0.611057};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_16()
		{
			double[] value = {0.128935,0.611057,0.117887,0.618589,0.118504,0.535687,0.046839,0.538086,0.046643,0.523990,0.111014,0.525588,0.111014,0.525588,0.107119,0.546929,0.046839,0.538086,0.772913,0.213223,0.680620,0.230285,0.772949,0.213125,0.680620,0.230285,0.772913,0.213223,0.772949,0.213125,0.074841,0.700738,0.046417,0.700450,0.045316,0.694226,0.045316,0.694226,0.075286,0.695546,0.074841,0.700738,0.649787,0.142287,0.758109,0.142287,0.757190,0.142287,0.757190,0.142287,0.650794,0.142287,0.649787,0.142287,0.076960,0.638277,0.133793,0.638918,0.133295,0.696096,0.133295,0.696096,0.075286,0.695546,0.076960,0.638277,0.134789,0.581557,0.045493,0.578693,0.046941,0.638304,0.046941,0.638304,0.133793,0.637663,0.134789,0.581557,0.046473,0.575507,0.134789,0.578276,0.134291,0.528001,0.134291,0.528001,0.046779,0.527193,0.046473,0.575507,0.079395,0.527883,0.134291,0.529255,0.133793,0.638918,0.133793,0.638918,0.076960,0.638277,0.079395,0.527883,0.755395,0.128465,0.654739,0.128465,0.653959,0.128465,0.653959,0.128465,0.755964,0.128465,0.755395,0.128465,0.046744,0.524764,0.131683,0.524764,0.135632,0.700563,0.135632,0.700563,0.050948,0.700563,0.046744,0.524764,0.047738,0.522961,0.132028,0.526048,0.134169,0.693620,0.134169,0.693620,0.047409,0.690746,0.047738,0.522961,0.130418,0.530822,0.049688,0.526813,0.050202,0.686018,0.050202,0.686018,0.131229,0.689775,0.130418,0.530822,0.131960,0.524764,0.046415,0.524764,0.050618,0.700563,0.050618,0.700563,0.135909,0.700563,0.131960,0.524764,0.130266,0.539048,0.055301,0.540938,0.055016,0.676280,0.055016,0.676280,0.127345,0.670798,0.130266,0.539048,0.755964,0.128465,0.653959,0.128465,0.661715,0.188168,0.661715,0.188168,0.763719,0.172465,0.755964,0.128465,0.053385,0.537159,0.117408,0.539048,0.125453,0.673917,0.125453,0.673917,0.053125,0.680151,0.053385,0.537159,0.047817,0.524764};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_17()
		{
			double[] value = {0.130942,0.524764,0.135658,0.700563,0.135658,0.700563,0.052852,0.700563,0.047817,0.524764,0.873126,0.344661,0.873126,0.333807,0.831449,0.361811,0.760016,0.743782,0.730604,0.758075,0.700687,0.758073,0.700687,0.758073,0.672023,0.744097,0.760016,0.743782,0.145674,0.076211,0.152688,0.082487,0.154985,0.095553,0.154985,0.095553,0.125366,0.098221,0.145674,0.076211,0.174779,0.094477,0.154985,0.095553,0.152688,0.082487,0.073863,0.082562,0.145674,0.076211,0.125366,0.098221,0.125366,0.098221,0.083035,0.098317,0.073863,0.082562,0.016218,0.079002,0.006127,0.079937,0.008538,0.056252,0.008538,0.056252,0.026517,0.055524,0.016218,0.079002,0.042447,0.058620,0.016218,0.079002,0.026517,0.055524,0.006127,0.079937,0.006127,0.079937,0.008538,0.056252,0.008538,0.056252,0.008538,0.056252,0.006127,0.079937,0.017788,0.326623,0.017788,0.353698,0.250119,0.382673,0.250119,0.382673,0.251121,0.366512,0.017788,0.326623,0.252473,0.492069,0.250119,0.463550,0.017788,0.462865,0.017788,0.462865,0.017788,0.496076,0.252473,0.492069,0.251121,0.366512,0.250119,0.382673,0.516910,0.408401,0.516910,0.408401,0.516910,0.399455,0.251121,0.366512,0.519263,0.476383,0.516910,0.455328,0.250119,0.463550,0.250119,0.463550,0.252473,0.492069,0.519263,0.476383,0.516910,0.392443,0.516910,0.408401,0.556193,0.416753,0.516910,0.392443,0.556193,0.416753,0.656218,0.429354,0.650460,0.418773,0.516910,0.392443,0.656218,0.429354,0.017788,0.299934,0.017788,0.326623,0.251121,0.366512,0.251121,0.366512,0.250119,0.350007,0.017788,0.299934,0.250119,0.350007,0.251121,0.366512,0.516910,0.399455,0.516910,0.399455,0.516910,0.389962,0.250119,0.350007,0.516910,0.389962,0.516910,0.392443,0.650460,0.418773,0.650460,0.418773,0.650460,0.415596,0.516910,0.389962,0.571201,0.492995,0.576762,0.484915,0.584274,0.477621,0.584274,0.477621,0.573492,0.495442};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_18()
		{
			double[] value = {0.571201,0.492995,0.690140,0.622823,0.745244,0.622823,0.747598,0.617231,0.747598,0.617231,0.692494,0.624905,0.690140,0.622823,0.516910,0.481879,0.519263,0.476383,0.252473,0.492069,0.252473,0.492069,0.250119,0.492069,0.516910,0.481879,0.250119,0.492069,0.252473,0.492069,0.017788,0.496076,0.017788,0.496076,0.017788,0.496076,0.250119,0.492069,0.724667,0.607793,0.533945,0.454298,0.519263,0.476383,0.519263,0.476383,0.677537,0.607718,0.724667,0.607793,0.573492,0.495442,0.584274,0.477621,0.588145,0.484071,0.573492,0.495442,0.588145,0.484071,0.674552,0.581460,0.667132,0.593747,0.573492,0.495442,0.674552,0.581460,0.516910,0.481879,0.675184,0.607718,0.677537,0.607718,0.677537,0.607718,0.519263,0.476383,0.516910,0.481879,0.675184,0.607718,0.690140,0.622823,0.692494,0.624905,0.692494,0.624905,0.677537,0.607718,0.675184,0.607718,0.677537,0.607718,0.692494,0.624905,0.747598,0.617231,0.747598,0.617231,0.724667,0.607793,0.677537,0.607718,0.776509,0.607946,0.747598,0.617231,0.745244,0.622823,0.745244,0.622823,0.776509,0.608010,0.776509,0.607946,0.250119,0.463550,0.250119,0.433249,0.017788,0.432564,0.017788,0.432564,0.017788,0.462865,0.250119,0.463550,0.516910,0.455328,0.516789,0.427304,0.250119,0.433249,0.250119,0.433249,0.250119,0.463550,0.516910,0.455328,0.017788,0.353698,0.015785,0.403394,0.250119,0.412031,0.250119,0.412031,0.250119,0.382673,0.017788,0.353698,0.015785,0.403394,0.017788,0.432564,0.250119,0.433249,0.250119,0.433249,0.250119,0.412031,0.015785,0.403394,0.250119,0.412031,0.250119,0.433249,0.516789,0.427304,0.516789,0.427304,0.516910,0.408401,0.250119,0.412031,0.250119,0.412031,0.516910,0.408401,0.250119,0.382673,0.776509,0.607946,0.724667,0.607793,0.747598,0.617231,0.846846,0.288098,0.761309,0.302392,0.761309,0.324237,0.761309,0.324237,0.844839,0.318309,0.846846,0.288098};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_19()
		{
			double[] value = {0.190945,0.488849,0.159422,0.328611,0.110839,0.328611,0.110839,0.328611,0.107970,0.486688,0.190945,0.488849,0.855174,0.266138,0.761310,0.266222,0.761309,0.302392,0.761309,0.302392,0.846846,0.288098,0.855174,0.266138,0.761310,0.057554,0.761310,0.092725,0.853407,0.092725,0.983605,0.246007,0.983605,0.175532,0.888100,0.245417,0.983605,0.246007,0.888100,0.245417,0.855174,0.266138,0.983605,0.246007,0.855174,0.266138,0.926472,0.266038,0.983605,0.265956,0.983605,0.246007,0.926472,0.266038,0.761310,0.266222,0.855174,0.266138,0.888100,0.245417,0.888100,0.245417,0.776049,0.238848,0.761310,0.266222,0.703402,0.339348,0.831414,0.339363,0.761309,0.324237,0.761309,0.324237,0.680618,0.323726,0.703402,0.339348,0.701081,0.086204,0.782109,0.086071,0.779789,0.044711,0.779789,0.044711,0.699848,0.045534,0.701081,0.086204,0.680618,0.323726,0.761309,0.324237,0.761309,0.302392,0.761309,0.302392,0.680618,0.301881,0.680618,0.323726,0.680620,0.153208,0.761310,0.153719,0.761310,0.092725,0.761310,0.092725,0.680620,0.092725,0.680620,0.153208,0.772913,0.213223,0.761310,0.153719,0.680620,0.153208,0.680620,0.153208,0.680620,0.230285,0.772913,0.213223,0.761310,0.266222,0.776049,0.238848,0.701462,0.254940,0.701462,0.254940,0.690418,0.265711,0.761310,0.266222,0.559074,0.339615,0.703402,0.339348,0.680618,0.323726,0.680618,0.323726,0.558947,0.323977,0.559074,0.339615,0.573062,0.086137,0.701081,0.086204,0.699848,0.045534,0.699848,0.045534,0.573062,0.045667,0.573062,0.086137,0.559720,0.306022,0.558947,0.323977,0.680618,0.323726,0.559720,0.306022,0.680618,0.323726,0.680618,0.301881,0.559720,0.306022,0.559720,0.306022,0.680618,0.301881,0.553135,0.153712,0.680620,0.153208,0.680620,0.092725,0.680620,0.092725,0.553135,0.092725,0.553135,0.153712,0.415415,0.085699,0.573062,0.086137,0.573062,0.045667,0.573062,0.045667};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_20()
		{
			double[] value = {0.415415,0.045667,0.415415,0.085699,0.396146,0.153774,0.553135,0.153712,0.553135,0.092725,0.553135,0.092725,0.396146,0.092725,0.396146,0.153774,0.396189,0.245592,0.553208,0.245782,0.553135,0.153712,0.553135,0.153712,0.396146,0.153774,0.396189,0.245592,0.396358,0.339866,0.440056,0.339674,0.440056,0.324036,0.440056,0.324036,0.396231,0.324229,0.396358,0.339866,0.440056,0.324036,0.509680,0.324002,0.497674,0.311379,0.690418,0.265711,0.680618,0.301881,0.761309,0.302392,0.761309,0.302392,0.761310,0.266222,0.690418,0.265711,0.559417,0.280764,0.559720,0.306022,0.680618,0.301881,0.559417,0.280764,0.680618,0.301881,0.690418,0.265711,0.558949,0.265963,0.559417,0.280764,0.690418,0.265711,0.396232,0.266215,0.495905,0.281538,0.512486,0.263813,0.983605,0.312621,0.983605,0.287916,0.910094,0.287998,0.910094,0.287998,0.910094,0.315105,0.983605,0.312621,0.983605,0.312621,0.983605,0.312621,0.910094,0.315105,0.983605,0.312621,0.910094,0.315105,0.910094,0.315105,0.910094,0.315105,0.983605,0.312621,0.910094,0.315105,0.983605,0.287916,0.983605,0.265956,0.926472,0.266038,0.926472,0.266038,0.910094,0.287998,0.983605,0.287916,0.910094,0.315105,0.910094,0.287998,0.846846,0.288098,0.846846,0.288098,0.844839,0.318309,0.910094,0.315105,0.910094,0.287998,0.926472,0.266038,0.855174,0.266138,0.855174,0.266138,0.846846,0.288098,0.910094,0.287998,0.336052,0.319155,0.396231,0.324229,0.396231,0.302384,0.396231,0.302384,0.341899,0.293961,0.336052,0.319155,0.331680,0.338519,0.396358,0.339866,0.396231,0.324229,0.396231,0.324229,0.336052,0.319155,0.331680,0.338519,0.331680,0.338519,0.396231,0.338826,0.396358,0.339866,0.396358,0.339866,0.331680,0.338519,0.331680,0.338519,0.336052,0.319155,0.395992,0.324262,0.396231,0.338826,0.396231,0.338826,0.331680,0.338519,0.336052,0.319155,0.347746,0.268766,0.396232,0.266215};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_21()
		{
			double[] value = {0.396189,0.245592,0.396189,0.245592,0.351359,0.254928,0.347746,0.268766,0.341899,0.293961,0.396231,0.302384,0.396232,0.266215,0.396232,0.266215,0.347746,0.268766,0.341899,0.293961,0.300529,0.318852,0.336052,0.319155,0.341899,0.293961,0.341899,0.293961,0.300433,0.294731,0.300529,0.318852,0.299869,0.336076,0.331680,0.338519,0.336052,0.319155,0.336052,0.319155,0.300529,0.318852,0.299869,0.336076,0.299869,0.336076,0.331680,0.338519,0.331680,0.338519,0.331680,0.338519,0.299869,0.336076,0.299869,0.336076,0.300529,0.318852,0.336052,0.319155,0.331680,0.338519,0.331680,0.338519,0.299869,0.336076,0.300529,0.318852,0.299469,0.274293,0.347746,0.268766,0.351359,0.254928,0.351359,0.254928,0.307457,0.257016,0.299469,0.274293,0.300433,0.294731,0.341899,0.293961,0.347746,0.268766,0.347746,0.268766,0.299469,0.274293,0.300433,0.294731,0.905638,0.986597,0.935381,0.956426,0.951365,0.906999,0.951365,0.906999,0.960857,0.858044,0.963632,0.831325,0.905638,0.986597,0.951365,0.906999,0.963632,0.831325,0.963632,0.831325,0.893719,0.830061,0.801976,0.828325,0.905638,0.986597,0.963632,0.831325,0.801976,0.828325,0.905638,0.986597,0.801976,0.828325,0.807877,0.960242,0.833148,0.986341,0.905638,0.986597,0.807877,0.960242,0.291296,0.259982,0.307457,0.257016,0.299469,0.274293,0.291296,0.259982,0.291296,0.259982,0.299469,0.274293,0.291296,0.259982,0.299469,0.274293,0.299469,0.274293,0.299469,0.274293,0.299469,0.274293,0.307457,0.257016,0.307457,0.257016,0.291296,0.259982,0.299469,0.274293,0.351359,0.254928,0.396189,0.245592,0.396146,0.153774,0.396146,0.153774,0.351359,0.164930,0.351359,0.254928,0.351359,0.164930,0.303205,0.165097,0.308422,0.214359,0.351359,0.164930,0.308422,0.214359,0.307457,0.257016,0.351359,0.254928,0.351359,0.164930,0.307457,0.257016,0.291296,0.259982,0.307457,0.257016,0.308422,0.214359};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_22()
		{
			double[] value = {0.308422,0.214359,0.281133,0.233488,0.291296,0.259982,0.281133,0.233488,0.308422,0.214359,0.303205,0.165097,0.303205,0.165097,0.273259,0.198404,0.281133,0.233488,0.672023,0.744097,0.700687,0.758073,0.697298,0.770259,0.697298,0.770259,0.661749,0.751912,0.672023,0.744097,0.658439,0.713852,0.672023,0.744097,0.661749,0.751912,0.661749,0.751912,0.644017,0.713879,0.658439,0.713852,0.658066,0.682131,0.658439,0.713852,0.644017,0.713879,0.644017,0.713879,0.643927,0.683436,0.658066,0.682131,0.045475,0.180610,0.029752,0.164199,0.032906,0.182822,0.032906,0.182822,0.037096,0.201699,0.045475,0.180610,0.045024,0.143004,0.028077,0.137222,0.029752,0.164199,0.029752,0.164199,0.045475,0.180610,0.045024,0.143004,0.046330,0.115583,0.027000,0.115608,0.028077,0.137222,0.028077,0.137222,0.045024,0.143004,0.046330,0.115583,0.065573,0.190587,0.045475,0.180610,0.037096,0.201699,0.037096,0.201699,0.053463,0.217309,0.065573,0.190587,0.076942,0.163203,0.045024,0.143004,0.045475,0.180610,0.045475,0.180610,0.065573,0.190587,0.076942,0.163203,0.084958,0.133020,0.046330,0.115583,0.045024,0.143004,0.045024,0.143004,0.076942,0.163203,0.084958,0.133020,0.098838,0.206422,0.065573,0.190587,0.053463,0.217309,0.053463,0.217309,0.084020,0.236165,0.098838,0.206422,0.108293,0.182022,0.076942,0.163203,0.065573,0.190587,0.065573,0.190587,0.098838,0.206422,0.108293,0.182022,0.114451,0.150186,0.084958,0.133020,0.076942,0.163203,0.076942,0.163203,0.108293,0.182022,0.114451,0.150186,0.142533,0.229776,0.098838,0.206422,0.084020,0.236165,0.084020,0.236165,0.135235,0.251081,0.142533,0.229776,0.142426,0.200750,0.108293,0.182022,0.098838,0.206422,0.098838,0.206422,0.142533,0.229776,0.142426,0.200750,0.139008,0.178592,0.114451,0.150186,0.108293,0.182022,0.108293,0.182022,0.142426,0.200750,0.139008,0.178592,0.654576,0.744215};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_23()
		{
			double[] value = {0.665897,0.736175,0.696321,0.763726,0.696321,0.763726,0.691896,0.770122,0.654576,0.744215,0.654555,0.689712,0.665897,0.736175,0.654576,0.744215,0.654576,0.744215,0.643556,0.695892,0.654555,0.689712,0.654844,0.652327,0.654555,0.689712,0.643556,0.695892,0.643556,0.695892,0.648088,0.657126,0.654844,0.652327,0.195783,0.267735,0.166901,0.262115,0.171007,0.275193,0.171007,0.275193,0.203585,0.284062,0.195783,0.267735,0.187329,0.242459,0.160650,0.247760,0.166901,0.262115,0.166901,0.262115,0.195783,0.267735,0.187329,0.242459,0.183660,0.217030,0.154795,0.236691,0.160650,0.247760,0.160650,0.247760,0.187329,0.242459,0.183660,0.217030,0.231769,0.270682,0.195783,0.267735,0.203585,0.284062,0.203585,0.284062,0.235608,0.290297,0.231769,0.270682,0.224673,0.243530,0.187329,0.242459,0.195783,0.267735,0.195783,0.267735,0.231769,0.270682,0.224673,0.243530,0.219633,0.222472,0.183660,0.217030,0.187329,0.242459,0.187329,0.242459,0.224673,0.243530,0.219633,0.222472,0.261000,0.267343,0.231769,0.270682,0.235608,0.290297,0.235608,0.290297,0.246776,0.288455,0.261000,0.267343,0.261166,0.236089,0.224673,0.243530,0.231769,0.270682,0.231769,0.270682,0.261000,0.267343,0.261166,0.236089,0.219633,0.222472,0.224673,0.243530,0.261166,0.236089,0.135235,0.251081,0.148929,0.247510,0.154795,0.236691,0.154795,0.236691,0.142533,0.229776,0.135235,0.251081,0.096915,0.125536,0.035942,0.100014,0.046330,0.115583,0.046330,0.115583,0.084958,0.133020,0.096915,0.125536,0.121911,0.139427,0.084958,0.133020,0.084958,0.133020,0.084958,0.133020,0.114451,0.150186,0.121911,0.139427,0.139008,0.178592,0.148431,0.165879,0.114451,0.150186,0.121911,0.139427,0.114451,0.150186,0.148431,0.165879,0.184232,0.123510,0.146197,0.135651,0.148431,0.165879,0.148431,0.165879,0.182393,0.160371,0.184232,0.123510,0.184232,0.123510,0.221328,0.097574};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_24()
		{
			double[] value = {0.146421,0.097719,0.146421,0.097719,0.146197,0.135651,0.184232,0.123510,0.182393,0.195945,0.142426,0.200750,0.142533,0.229776,0.142533,0.229776,0.182416,0.209225,0.182393,0.195945,0.139008,0.178592,0.142426,0.200750,0.182393,0.195945,0.182393,0.160371,0.148431,0.165879,0.139008,0.178592,0.139008,0.178592,0.182393,0.195945,0.182393,0.160371,0.182416,0.209225,0.142533,0.229776,0.154795,0.236691,0.154795,0.236691,0.183660,0.217030,0.182416,0.209225,0.218557,0.213536,0.182416,0.209225,0.183660,0.217030,0.183660,0.217030,0.219633,0.222472,0.218557,0.213536,0.253899,0.218088,0.218557,0.213536,0.219633,0.222472,0.219633,0.222472,0.261166,0.236089,0.253899,0.218088,0.148431,0.165879,0.146197,0.135651,0.121911,0.139427,0.121911,0.139427,0.097621,0.096918,0.096915,0.125536,0.146421,0.097719,0.097621,0.096918,0.121911,0.139427,0.121911,0.139427,0.146197,0.135651,0.146421,0.097719,0.096915,0.125536,0.097621,0.096918,0.035942,0.100014,0.218349,0.198780,0.182393,0.195945,0.182416,0.209225,0.182416,0.209225,0.218557,0.213536,0.218349,0.198780,0.273259,0.198404,0.218349,0.198780,0.218557,0.213536,0.218557,0.213536,0.253899,0.218088,0.273259,0.198404,0.281133,0.233488,0.261166,0.236089,0.261000,0.267343,0.261000,0.267343,0.291296,0.259982,0.281133,0.233488,0.281133,0.233488,0.253899,0.218088,0.261166,0.236089,0.281133,0.233488,0.273259,0.198404,0.253899,0.218088,0.246776,0.288455,0.299469,0.274293,0.291296,0.259982,0.291296,0.259982,0.261000,0.267343,0.246776,0.288455,0.396146,0.058016,0.351198,0.055404,0.351359,0.092282,0.351359,0.092282,0.396146,0.092725,0.396146,0.058016,0.351359,0.164930,0.396146,0.153774,0.396146,0.092725,0.396146,0.092725,0.351359,0.092282,0.351359,0.164930,0.303205,0.165097,0.351359,0.164930,0.351359,0.092282,0.351359,0.092282,0.303205,0.095188,0.303205,0.165097};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_25()
		{
			double[] value = {0.281645,0.143163,0.273259,0.198404,0.303205,0.165097,0.281645,0.143163,0.303205,0.165097,0.303205,0.095188,0.281624,0.097511,0.281645,0.143163,0.303205,0.095188,0.218349,0.152216,0.182393,0.160371,0.182393,0.195945,0.182393,0.195945,0.218349,0.198780,0.218349,0.152216,0.281645,0.143163,0.218349,0.152216,0.218349,0.198780,0.218349,0.198780,0.273259,0.198404,0.281645,0.143163,0.221328,0.097574,0.184232,0.123510,0.182393,0.160371,0.182393,0.160371,0.218349,0.152216,0.221328,0.097574,0.281624,0.097511,0.221328,0.097574,0.218349,0.152216,0.218349,0.152216,0.281645,0.143163,0.281624,0.097511,0.779789,0.044711,0.782109,0.086071,0.874592,0.079513,0.874592,0.079513,0.876355,0.044711,0.779789,0.044711,0.761310,0.153719,0.983605,0.175532,0.983605,0.142445,0.761310,0.153719,0.983605,0.142445,0.853407,0.092725,0.761310,0.092725,0.761310,0.153719,0.853407,0.092725,0.761310,0.057554,0.680620,0.057043,0.680620,0.092725,0.680620,0.092725,0.761310,0.092725,0.761310,0.057554,0.680620,0.057043,0.553135,0.057547,0.553135,0.092725,0.553135,0.092725,0.680620,0.092725,0.680620,0.057043,0.553135,0.057547,0.396146,0.058016,0.396146,0.092725,0.396146,0.092725,0.553135,0.092725,0.553135,0.057547,0.146550,0.082007,0.230503,0.055560,0.146654,0.066275,0.097299,0.084481,0.146550,0.082007,0.146654,0.066275,0.146654,0.066275,0.102678,0.058205,0.097299,0.084481,0.146421,0.097719,0.146550,0.082007,0.097299,0.084481,0.097299,0.084481,0.097621,0.096918,0.146421,0.097719,0.042447,0.058620,0.035942,0.100014,0.097621,0.096918,0.097621,0.096918,0.097299,0.084481,0.042447,0.058620,0.303043,0.055404,0.303205,0.095188,0.351359,0.092282,0.351359,0.092282,0.351198,0.055404,0.303043,0.055404,0.281116,0.055404,0.281624,0.097511,0.303205,0.095188,0.303205,0.095188,0.303043,0.055404,0.281116,0.055404,0.230503,0.055560};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_26()
		{
			double[] value = {0.221328,0.097574,0.281624,0.097511,0.281624,0.097511,0.281116,0.055404,0.230503,0.055560,0.545023,0.044304,0.545314,0.075131,0.627536,0.077381,0.627536,0.077381,0.627427,0.044304,0.545023,0.044304,0.471397,0.044304,0.471397,0.083502,0.545314,0.075131,0.545314,0.075131,0.545023,0.044304,0.471397,0.044304,0.424731,0.044304,0.425221,0.082198,0.471397,0.083502,0.471397,0.083502,0.471397,0.044304,0.424731,0.044304,0.807554,0.087322,0.804991,0.044304,0.740481,0.044304,0.740481,0.044304,0.743043,0.087322,0.807554,0.087322,0.743043,0.087322,0.740481,0.044304,0.711106,0.044304,0.711106,0.044304,0.713668,0.087096,0.743043,0.087322,0.711106,0.044304,0.649902,0.044304,0.650148,0.086856,0.650148,0.086856,0.713668,0.087096,0.711106,0.044304,0.804991,0.044304,0.807554,0.087322,0.867770,0.086703,0.867770,0.086703,0.865207,0.043949,0.804991,0.044304,0.705193,0.841894,0.705245,0.922490,0.664783,0.922490,0.705193,0.841894,0.664783,0.922490,0.633440,0.893264,0.705193,0.841894,0.633440,0.893264,0.621712,0.843657,0.705193,0.841894,0.621712,0.843657,0.624583,0.801749,0.705193,0.841894,0.624583,0.801749,0.672276,0.785103,0.705217,0.780916,0.705193,0.841894,0.672276,0.785103,0.558679,0.373710,0.439685,0.364697,0.439685,0.364697,0.439685,0.364697,0.558679,0.373710,0.558679,0.373710,0.558679,0.363639,0.439714,0.357746,0.439685,0.364697,0.439685,0.364697,0.558679,0.373710,0.558679,0.363639,0.558969,0.350463,0.439997,0.348383,0.439714,0.357746,0.439714,0.357746,0.558679,0.363639,0.558969,0.350463,0.703469,0.376137,0.558679,0.373710,0.558679,0.373710,0.558679,0.373710,0.703444,0.376137,0.703469,0.376137,0.703469,0.366065,0.558679,0.363639,0.558679,0.373710,0.558679,0.373710,0.703469,0.376137,0.703469,0.366065,0.703416,0.349770,0.558969,0.350463,0.558679,0.363639,0.558679,0.363639,0.703469,0.366065};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_27()
		{
			double[] value = {0.703416,0.349770,0.559074,0.339615,0.440056,0.339674,0.439997,0.348383,0.439997,0.348383,0.558969,0.350463,0.559074,0.339615,0.396231,0.338826,0.439997,0.348383,0.440056,0.339674,0.440056,0.339674,0.396358,0.339866,0.396231,0.338826,0.336052,0.319155,0.395992,0.324262,0.395992,0.324262,0.395992,0.324262,0.336052,0.319155,0.336052,0.319155,0.336052,0.319155,0.336052,0.319155,0.300529,0.318852,0.395992,0.324262,0.440061,0.323402,0.440061,0.323402,0.440061,0.323402,0.395992,0.324262,0.395992,0.324262,0.395992,0.324262,0.440061,0.323402,0.440061,0.333474,0.440061,0.333474,0.396231,0.338826,0.395992,0.324262,0.703402,0.339348,0.559074,0.339615,0.558969,0.350463,0.558969,0.350463,0.703416,0.349770,0.703402,0.339348,0.687422,0.654491,0.658066,0.682131,0.643927,0.683436,0.643927,0.683436,0.648088,0.657126,0.687422,0.654491,0.035942,0.100014,0.014321,0.096934,0.027000,0.115608,0.027000,0.115608,0.046330,0.115583,0.035942,0.100014,0.006127,0.079937,0.005786,0.096929,0.014321,0.096934,0.014321,0.096934,0.016218,0.079001,0.006127,0.079937,0.042447,0.058620,0.016218,0.079001,0.014321,0.096934,0.014321,0.096934,0.035942,0.100014,0.042447,0.058620,0.216695,0.046403,0.156759,0.039563,0.158302,0.060144,0.158302,0.060144,0.230503,0.055560,0.216695,0.046403,0.158302,0.060144,0.156759,0.039563,0.102184,0.038741,0.102184,0.038741,0.102678,0.058205,0.158302,0.060144,0.058421,0.041146,0.057324,0.063312,0.102678,0.058205,0.102678,0.058205,0.102184,0.038741,0.058421,0.041146,0.627536,0.077381,0.650148,0.086856,0.649902,0.044304,0.649902,0.044304,0.627427,0.044304,0.627536,0.077381,0.026517,0.055524,0.026517,0.055524,0.032113,0.050390,0.032113,0.050390,0.008538,0.056252,0.026517,0.055524,0.057324,0.063312,0.058421,0.041146,0.026517,0.055524,0.026517,0.055524,0.026517,0.055524,0.057324,0.063312};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_28()
		{
			double[] value = {0.497674,0.311379,0.495985,0.302230,0.396231,0.302384,0.497674,0.311379,0.396231,0.302384,0.396231,0.324229,0.440056,0.324036,0.497674,0.311379,0.396231,0.324229,0.558947,0.323977,0.559720,0.306022,0.546309,0.323984,0.440056,0.324036,0.440056,0.339674,0.514832,0.329418,0.514832,0.329418,0.509680,0.324002,0.440056,0.324036,0.558949,0.265963,0.553208,0.245782,0.543215,0.263728,0.543215,0.263728,0.559417,0.280764,0.558949,0.265963,0.831449,0.361811,0.703469,0.366065,0.703469,0.376137,0.703469,0.376137,0.831449,0.371882,0.831449,0.361811,0.831449,0.345515,0.703416,0.349770,0.703469,0.366065,0.703469,0.366065,0.831449,0.361811,0.831449,0.345515,0.831414,0.339363,0.703402,0.339348,0.703416,0.349770,0.703416,0.349770,0.831449,0.345515,0.831414,0.339363,0.761309,0.324237,0.831414,0.339363,0.844839,0.318309,0.873126,0.344661,0.831449,0.361811,0.831449,0.371882,0.831449,0.371882,0.854131,0.360900,0.873126,0.344661,0.831449,0.371882,0.703469,0.376137,0.703444,0.376137,0.703444,0.376137,0.831449,0.371882,0.831449,0.371882,0.854131,0.360900,0.831449,0.371882,0.831449,0.371882,0.831449,0.371882,0.854785,0.362516,0.854131,0.360900,0.873126,0.344661,0.854131,0.360900,0.854785,0.362516,0.854785,0.362516,0.873241,0.344761,0.873126,0.344661,0.910094,0.315105,0.873126,0.344661,0.873241,0.344761,0.873241,0.344761,0.910094,0.315105,0.910094,0.315105,0.831449,0.345515,0.831449,0.361811,0.873126,0.333807,0.873126,0.344661,0.873126,0.333807,0.831449,0.361811,0.910094,0.315105,0.873126,0.333807,0.873126,0.344661,0.873126,0.344661,0.910094,0.315105,0.910094,0.315105,0.844839,0.318309,0.831414,0.339363,0.831449,0.345515,0.831449,0.345515,0.873126,0.333807,0.844839,0.318309,0.844839,0.318309,0.873126,0.333807,0.910094,0.315105,0.396231,0.302384,0.495985,0.302230,0.495905,0.281538,0.495905,0.281538};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_29()
		{
			double[] value = {0.396232,0.266215,0.396231,0.302384,0.558947,0.323977,0.546309,0.323984,0.541334,0.329302,0.541334,0.329302,0.559074,0.339615,0.558947,0.323977,0.440056,0.339674,0.559074,0.339615,0.541334,0.329302,0.541334,0.329302,0.514832,0.329418,0.440056,0.339674,0.396189,0.245592,0.396232,0.266215,0.512486,0.263813,0.512486,0.263813,0.553208,0.245782,0.396189,0.245592,0.512486,0.263813,0.543215,0.263728,0.553208,0.245782,0.690418,0.265711,0.701462,0.254940,0.660309,0.258219,0.690418,0.265711,0.660309,0.258219,0.648674,0.257664,0.558949,0.265963,0.690418,0.265711,0.648674,0.257664,0.648674,0.257664,0.648981,0.235048,0.553208,0.245782,0.558949,0.265963,0.648674,0.257664,0.553208,0.245782,0.648981,0.235048,0.648981,0.235048,0.680620,0.230285,0.648981,0.235048,0.680620,0.230285,0.680620,0.153208,0.553208,0.245782,0.648981,0.235048,0.680620,0.153208,0.553135,0.153712,0.553208,0.245782,0.680620,0.153208,0.776049,0.238848,0.888100,0.245417,0.983605,0.175532,0.796246,0.228989,0.776049,0.238848,0.983605,0.175532,0.794318,0.206249,0.796246,0.228989,0.983605,0.175532,0.794318,0.206249,0.983605,0.175532,0.761310,0.153719,0.772913,0.213223,0.794318,0.206249,0.761310,0.153719,0.647489,0.234562,0.647055,0.232241,0.772949,0.213125,0.647489,0.234562,0.772949,0.213125,0.772913,0.213223,0.677257,0.229485,0.647489,0.234562,0.772913,0.213223,0.873126,0.333807,0.873126,0.344661,0.831449,0.361811,0.061852,0.098697,0.057054,0.087417,0.073863,0.082562,0.073863,0.082562,0.083035,0.098317,0.061852,0.098697,0.061852,0.098697,0.042270,0.100238,0.057054,0.087417,0.008538,0.056252,0.006127,0.079937,0.016218,0.079001,0.016218,0.079001,0.026517,0.055524,0.008538,0.056252,0.016218,0.079001,0.042447,0.058620,0.026517,0.055524,0.735229,0.763774,0.696321,0.763726,0.665897,0.736175,0.665897,0.736175,0.765724,0.736457};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_30()
		{
			double[] value = {0.735229,0.763774,0.171007,0.275193,0.166634,0.274046,0.162266,0.260985,0.246776,0.288455,0.246776,0.288455,0.291296,0.259982,0.291296,0.259982,0.291296,0.259982,0.246776,0.288455,0.299469,0.274293,0.246776,0.288455,0.291296,0.259982,0.291296,0.259982,0.291296,0.259982,0.246776,0.288455,0.026517,0.055524,0.058421,0.041146,0.058421,0.041288,0.058421,0.041288,0.032113,0.050390,0.026517,0.055524,0.440061,0.333474,0.396231,0.338826,0.439997,0.348383,0.396231,0.338826,0.440061,0.333474,0.439997,0.348383,0.336052,0.319156,0.395992,0.324262,0.336052,0.319155,0.336052,0.319156,0.336052,0.319155,0.300529,0.318852,0.656219,0.429354,0.673474,0.453963,0.586364,0.443508,0.586364,0.443508,0.586364,0.420554,0.656219,0.429354,0.556193,0.416753,0.586364,0.420554,0.586364,0.443508,0.586364,0.443508,0.545282,0.433188,0.556193,0.416753,0.516857,0.442924,0.516789,0.427240,0.545282,0.433188,0.545282,0.433188,0.586364,0.443508,0.516857,0.442924,0.662672,0.456824,0.663261,0.456394,0.607271,0.493087,0.662672,0.456824,0.607271,0.493087,0.578892,0.510094,0.662672,0.456824,0.578892,0.510094,0.578777,0.510064,0.586364,0.489332,0.586364,0.453963,0.776509,0.607883,0.586364,0.489332,0.776509,0.607883,0.724667,0.607730,0.586364,0.489332,0.724667,0.607730,0.586364,0.497897,0.586364,0.443508,0.673474,0.453963,0.586364,0.453963,0.578892,0.510094,0.607271,0.493087,0.691981,0.589072,0.691981,0.589072,0.662953,0.607184,0.578892,0.510094,0.578777,0.510064,0.578892,0.510094,0.662953,0.607184,0.662953,0.607184,0.662840,0.607156,0.578777,0.510064,0.662672,0.456824,0.578777,0.510064,0.662840,0.607156,0.662840,0.607156,0.737582,0.555833,0.662672,0.456824,0.663261,0.456394,0.662672,0.456824,0.737582,0.555833,0.737582,0.555833,0.737684,0.556058,0.663261,0.456394,0.607271,0.493087,0.663261,0.456394,0.737684,0.556058};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_31()
		{
			double[] value = {0.737684,0.556058,0.691981,0.589072,0.607271,0.493087,0.519263,0.476383,0.533945,0.454298,0.516910,0.455328,0.516789,0.427304,0.545282,0.433188,0.556193,0.416753,0.556193,0.416753,0.516910,0.408401,0.516789,0.427304,0.586364,0.489332,0.586364,0.453963,0.533945,0.454298,0.533945,0.454298,0.586364,0.497897,0.586364,0.489332,0.586364,0.443508,0.673446,0.453932,0.656218,0.429354,0.656218,0.429354,0.586364,0.420554,0.586364,0.443508,0.586364,0.443508,0.586364,0.420554,0.556193,0.416753,0.556193,0.416753,0.545282,0.433188,0.586364,0.443508,0.545282,0.433188,0.516789,0.427304,0.516857,0.442924,0.516857,0.442924,0.586364,0.443508,0.545282,0.433188,0.660874,0.550163,0.694792,0.516253,0.693925,0.515307,0.693925,0.515307,0.647791,0.560949,0.647788,0.560868,0.660874,0.550163,0.693925,0.515307,0.647788,0.560868,0.776509,0.607946,0.586364,0.453963,0.586364,0.489332,0.724667,0.607793,0.776509,0.607946,0.586364,0.489332,0.724667,0.607793,0.586364,0.489332,0.586364,0.497897,0.673446,0.453932,0.586364,0.443508,0.586364,0.453963,0.613235,0.495976,0.660874,0.550163,0.647788,0.560868,0.647788,0.560868,0.596895,0.512625,0.613235,0.495976,0.596895,0.512625,0.647788,0.560868,0.647791,0.560949,0.647791,0.560949,0.596895,0.512703,0.596895,0.512625,0.596895,0.512703,0.647791,0.560949,0.693925,0.515307,0.693925,0.515307,0.649400,0.458558,0.596895,0.512703,0.649400,0.458558,0.693925,0.515307,0.694792,0.516253,0.694792,0.516253,0.650211,0.459444,0.649400,0.458558,0.650211,0.459444,0.694792,0.516253,0.660874,0.550163,0.660874,0.550163,0.613235,0.495976,0.650211,0.459444,0.586364,0.453963,0.586364,0.489332,0.776509,0.607946,0.241751,0.427860,0.363945,0.427860,0.363945,0.469865,0.363945,0.469865,0.241751,0.469866,0.241751,0.427860,0.247724,0.389779,0.241751,0.427860,0.363945,0.427860,0.363945,0.427860};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_32()
		{
			double[] value = {0.357972,0.389779,0.247724,0.389779,0.241751,0.427860,0.241751,0.469866,0.363945,0.469865,0.363945,0.469865,0.363945,0.427860,0.241751,0.427860,0.349980,0.477064,0.363030,0.477064,0.363030,0.386882,0.363030,0.386882,0.349980,0.386882,0.349980,0.477064,0.357972,0.389779,0.357972,0.389779,0.363945,0.427860,0.363945,0.427860,0.363945,0.427860,0.357972,0.389779,0.387098,0.427860,0.387098,0.427860,0.387098,0.469865,0.387098,0.469865,0.387098,0.469865,0.387098,0.427860,0.363945,0.469865,0.363945,0.469865,0.241751,0.469866,0.241751,0.469866,0.241751,0.469866,0.363945,0.469865,0.218916,0.469866,0.218916,0.469866,0.218916,0.427860,0.218916,0.427860,0.218916,0.427860,0.218916,0.469866,0.241751,0.427860,0.241751,0.427860,0.247724,0.389779,0.247724,0.389779,0.247724,0.389779,0.241751,0.427860,0.218916,0.469866,0.218916,0.427860,0.241751,0.427860,0.241751,0.427860,0.241751,0.469866,0.218916,0.469866,0.218916,0.427860,0.218916,0.469866,0.241751,0.469866,0.241751,0.469866,0.241751,0.427860,0.218916,0.427860,0.218916,0.469866,0.218916,0.469866,0.241751,0.469866,0.241751,0.469866,0.241751,0.469866,0.218916,0.469866,0.218916,0.427860,0.218916,0.427860,0.241751,0.427860,0.241751,0.427860,0.241751,0.427860,0.218916,0.427860,0.387098,0.427860,0.387098,0.469865,0.363945,0.469865,0.363945,0.469865,0.363945,0.427860,0.387098,0.427860,0.387098,0.469865,0.387098,0.427860,0.363945,0.427860,0.363945,0.427860,0.363945,0.469865,0.387098,0.469865,0.387098,0.427860,0.387098,0.427860,0.363945,0.427860,0.363945,0.427860,0.363945,0.427860,0.387098,0.427860,0.387098,0.469865,0.387098,0.469865,0.363945,0.469865,0.363945,0.469865,0.363945,0.469865,0.387098,0.469865,0.247724,0.389779,0.241751,0.427860,0.241751,0.427860,0.241751,0.427860,0.247724,0.389779,0.247724,0.389779,0.276168,0.481950,0.276168,0.381996};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_33()
		{
			double[] value = {0.349980,0.381996,0.349980,0.381996,0.349980,0.481950,0.276168,0.481950,0.363945,0.427860,0.357972,0.389779,0.357972,0.389779,0.357972,0.389779,0.363945,0.427860,0.363945,0.427860,0.276168,0.386882,0.276168,0.477065,0.349980,0.477064,0.349980,0.477064,0.349980,0.386882,0.276168,0.386882,0.247724,0.389779,0.357972,0.389779,0.363945,0.427860,0.363945,0.427860,0.241751,0.427860,0.247724,0.389779,0.241751,0.427860,0.363945,0.427860,0.363945,0.469865,0.363945,0.469865,0.241751,0.469866,0.241751,0.427860,0.241751,0.427860,0.241751,0.469866,0.363945,0.469865,0.363945,0.469865,0.363945,0.427860,0.241751,0.427860,0.263076,0.477065,0.276168,0.477065,0.276168,0.386882,0.276168,0.386882,0.263076,0.386882,0.263076,0.477065,0.357972,0.389779,0.357972,0.389779,0.363945,0.427860,0.363945,0.427860,0.363945,0.427860,0.357972,0.389779,0.387098,0.427860,0.387098,0.427860,0.387098,0.469865,0.387098,0.469865,0.387098,0.469865,0.387098,0.427860,0.363945,0.469865,0.363945,0.469865,0.241751,0.469866,0.241751,0.469866,0.241751,0.469866,0.363945,0.469865,0.218916,0.469866,0.218916,0.469866,0.218916,0.427860,0.218916,0.427860,0.218916,0.427860,0.218916,0.469866,0.241751,0.427860,0.241751,0.427860,0.247724,0.389779,0.247724,0.389779,0.247724,0.389779,0.241751,0.427860,0.218916,0.469866,0.218916,0.427860,0.241751,0.427860,0.241751,0.427860,0.241751,0.469866,0.218916,0.469866,0.218916,0.427860,0.218916,0.469866,0.241751,0.469866,0.241751,0.469866,0.241751,0.427860,0.218916,0.427860,0.218916,0.469866,0.218916,0.469866,0.241751,0.469866,0.241751,0.469866,0.241751,0.469866,0.218916,0.469866,0.218916,0.427860,0.218916,0.427860,0.241751,0.427860,0.241751,0.427860,0.241751,0.427860,0.218916,0.427860,0.387098,0.427860,0.387098,0.469865,0.363945,0.469865,0.363945,0.469865,0.363945,0.427860,0.387098,0.427860};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_34()
		{
			double[] value = {0.387098,0.469865,0.387098,0.427860,0.363945,0.427860,0.363945,0.427860,0.363945,0.469865,0.387098,0.469865,0.387098,0.427860,0.387098,0.427860,0.363945,0.427860,0.363945,0.427860,0.363945,0.427860,0.387098,0.427860,0.387098,0.469865,0.387098,0.469865,0.363945,0.469865,0.363945,0.469865,0.363945,0.469865,0.387098,0.469865,0.180402,0.682708,0.164168,0.666386,0.164231,0.643365,0.164231,0.643365,0.180553,0.627131,0.203573,0.627194,0.203573,0.627194,0.219807,0.643516,0.219745,0.666536,0.164231,0.643365,0.203573,0.627194,0.219745,0.666536,0.180402,0.682708,0.164231,0.643365,0.219745,0.666536,0.203423,0.682770,0.180402,0.682708,0.219745,0.666536,0.170351,0.702866,0.160428,0.702866,0.161232,0.588094,0.161232,0.588094,0.171154,0.588094,0.170351,0.702866,0.204900,0.700439,0.186633,0.700439,0.186633,0.587291,0.186633,0.587291,0.204900,0.587291,0.204900,0.700439,0.171719,0.700439,0.159620,0.700439,0.159620,0.587292,0.159620,0.587292,0.171719,0.587292,0.171719,0.700439,0.206114,0.702866,0.187278,0.702866,0.188081,0.588095,0.188081,0.588095,0.206917,0.588095,0.206114,0.702866,0.241297,0.565954,0.241231,0.541874,0.258212,0.524801,0.258212,0.524801,0.282292,0.524736,0.299365,0.541717,0.241297,0.565954,0.258212,0.524801,0.299365,0.541717,0.299365,0.541717,0.299431,0.565797,0.282450,0.582870,0.241297,0.565954,0.299365,0.541717,0.282450,0.582870,0.258370,0.582935,0.241297,0.565954,0.282450,0.582870,0.187278,0.702866,0.170351,0.702866,0.171154,0.588094,0.187278,0.702866,0.171154,0.588094,0.170351,0.544255,0.187278,0.702866,0.170351,0.544255,0.170351,0.522552,0.170351,0.522552,0.187278,0.522552,0.187278,0.544256,0.170351,0.522552,0.187278,0.544256,0.188081,0.588095,0.187278,0.702866,0.170351,0.522552,0.188081,0.588095,0.160428,0.544255,0.160428,0.522552,0.170351,0.522552,0.170351,0.522552};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_35()
		{
			double[] value = {0.170351,0.544255,0.160428,0.544255,0.222819,0.700439,0.204900,0.700439,0.204900,0.587291,0.222819,0.700439,0.204900,0.587291,0.204900,0.547107,0.222819,0.700439,0.204900,0.547107,0.204900,0.521605,0.204900,0.521605,0.222819,0.521605,0.222819,0.547107,0.204900,0.521605,0.222819,0.547107,0.222819,0.587291,0.222819,0.700439,0.204900,0.521605,0.222819,0.587291,0.186633,0.547107,0.186633,0.521605,0.204900,0.521605,0.204900,0.521605,0.204900,0.547107,0.186633,0.547107,0.186633,0.700439,0.171719,0.700439,0.171719,0.587292,0.186633,0.700439,0.171719,0.587292,0.171719,0.547108,0.186633,0.700439,0.171719,0.547108,0.171719,0.521605,0.171719,0.521605,0.186633,0.521605,0.186633,0.547107,0.171719,0.521605,0.186633,0.547107,0.186633,0.587291,0.186633,0.700439,0.171719,0.521605,0.186633,0.587291,0.159620,0.547108,0.159620,0.521605,0.171719,0.521605,0.171719,0.521605,0.171719,0.547108,0.159620,0.547108,0.221450,0.702866,0.206114,0.702866,0.206917,0.588095,0.221450,0.702866,0.206917,0.588095,0.206114,0.544256,0.221450,0.702866,0.206114,0.544256,0.206114,0.522552,0.206114,0.522552,0.221450,0.522552,0.221450,0.544256,0.206114,0.522552,0.221450,0.544256,0.222253,0.588095,0.221450,0.702866,0.206114,0.522552,0.222253,0.588095,0.187278,0.544256,0.187278,0.522552,0.206114,0.522552,0.206114,0.522552,0.206114,0.544256,0.187278,0.544256,0.217192,0.694573,0.220943,0.569284,0.161124,0.571796,0.161124,0.571796,0.170600,0.693306,0.217192,0.694573,0.207202,0.683932,0.212826,0.569341,0.162963,0.571175,0.162963,0.571175,0.166782,0.678207,0.207202,0.683932,0.164148,0.678257,0.159998,0.568517,0.213049,0.567989,0.213049,0.567989,0.211525,0.681506,0.164148,0.678257,0.161404,0.690863,0.160102,0.565574,0.219645,0.566200,0.219645,0.566200,0.213390,0.691489,0.161404,0.690863,0.206197,0.715007,0.205849,0.742301};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_36()
		{
			double[] value = {0.128347,0.742529,0.128347,0.742529,0.128403,0.713543,0.206197,0.715007,0.165448,0.599950,0.219276,0.581468,0.221363,0.697859,0.221363,0.697859,0.161000,0.698148,0.165448,0.599950,0.214691,0.693378,0.163009,0.692717,0.164684,0.563614,0.164684,0.563614,0.220699,0.563496,0.214691,0.693378,0.222856,0.689683,0.169606,0.693378,0.161119,0.570214,0.161119,0.570214,0.217752,0.569330,0.222856,0.689683,0.207092,0.712469,0.207092,0.743661,0.126974,0.743929,0.126974,0.743929,0.126974,0.712469,0.207092,0.712469,0.206317,0.742161,0.206665,0.712997,0.128403,0.713376,0.128403,0.713376,0.128348,0.742362,0.206317,0.742161,0.208589,0.712639,0.208589,0.740904,0.126974,0.743438,0.126974,0.743438,0.127287,0.712362,0.208589,0.712639,0.218320,0.574660,0.164492,0.593142,0.161000,0.697981,0.161000,0.697981,0.221363,0.697692,0.218320,0.574660,0.208589,0.712659,0.208589,0.740925,0.126710,0.743848,0.126710,0.743848,0.127023,0.712772,0.208589,0.712659,0.167641,0.688477,0.219323,0.689138,0.220967,0.563931,0.220967,0.563931,0.164952,0.564048,0.167641,0.688477,0.207092,0.712469,0.207092,0.743661,0.126974,0.743929,0.126974,0.743929,0.126974,0.712469,0.207092,0.712469,0.167650,0.686529,0.220901,0.682834,0.218255,0.569282,0.218255,0.569282,0.161622,0.570166,0.167650,0.686529,0.208589,0.740927,0.208589,0.712661,0.126857,0.712772,0.126857,0.712772,0.126544,0.743849,0.208589,0.740927,0.208589,0.740904,0.208589,0.712638,0.127355,0.712362,0.127355,0.712362,0.127043,0.743438,0.208589,0.740904,0.207092,0.743661,0.207092,0.712469,0.126974,0.712469,0.126974,0.712469,0.126974,0.743929,0.207092,0.743661,0.207092,0.743661,0.207092,0.712469,0.126974,0.712469,0.126974,0.712469,0.126974,0.743929,0.207092,0.743661,0.180402,0.682708,0.164168,0.666386,0.164231,0.643365,0.164231,0.643365,0.180553,0.627131,0.203573,0.627194};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_37()
		{
			double[] value = {0.203573,0.627194,0.219807,0.643516,0.219745,0.666536,0.164231,0.643365,0.203573,0.627194,0.219745,0.666536,0.180402,0.682708,0.164231,0.643365,0.219745,0.666536,0.203423,0.682770,0.180402,0.682708,0.219745,0.666536,0.170351,0.702866,0.160428,0.702866,0.161232,0.588094,0.161232,0.588094,0.171154,0.588094,0.170351,0.702866,0.204900,0.700439,0.186633,0.700439,0.186633,0.587291,0.186633,0.587291,0.204900,0.587291,0.204900,0.700439,0.171719,0.700439,0.159620,0.700439,0.159620,0.587292,0.159620,0.587292,0.171719,0.587292,0.171719,0.700439,0.206114,0.702866,0.187278,0.702866,0.188081,0.588095,0.188081,0.588095,0.206917,0.588095,0.206114,0.702866,0.241297,0.565954,0.241231,0.541874,0.258212,0.524801,0.258212,0.524801,0.282292,0.524736,0.299365,0.541717,0.241297,0.565954,0.258212,0.524801,0.299365,0.541717,0.299365,0.541717,0.299431,0.565797,0.282450,0.582870,0.241297,0.565954,0.299365,0.541717,0.282450,0.582870,0.258370,0.582935,0.241297,0.565954,0.282450,0.582870,0.187278,0.702866,0.170351,0.702866,0.171154,0.588094,0.187278,0.702866,0.171154,0.588094,0.170351,0.544255,0.187278,0.702866,0.170351,0.544255,0.170351,0.522552,0.170351,0.522552,0.187278,0.522552,0.187278,0.544256,0.170351,0.522552,0.187278,0.544256,0.188081,0.588095,0.187278,0.702866,0.170351,0.522552,0.188081,0.588095,0.160428,0.544255,0.160428,0.522552,0.170351,0.522552,0.170351,0.522552,0.170351,0.544255,0.160428,0.544255,0.222819,0.700439,0.204900,0.700439,0.204900,0.587291,0.222819,0.700439,0.204900,0.587291,0.204900,0.547107,0.222819,0.700439,0.204900,0.547107,0.204900,0.521605,0.204900,0.521605,0.222819,0.521605,0.222819,0.547107,0.204900,0.521605,0.222819,0.547107,0.222819,0.587291,0.222819,0.700439,0.204900,0.521605,0.222819,0.587291,0.186633,0.547107,0.186633,0.521605,0.204900,0.521605,0.204900,0.521605};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_38()
		{
			double[] value = {0.204900,0.547107,0.186633,0.547107,0.186633,0.700439,0.171719,0.700439,0.171719,0.587292,0.186633,0.700439,0.171719,0.587292,0.171719,0.547108,0.186633,0.700439,0.171719,0.547108,0.171719,0.521605,0.171719,0.521605,0.186633,0.521605,0.186633,0.547107,0.171719,0.521605,0.186633,0.547107,0.186633,0.587291,0.186633,0.700439,0.171719,0.521605,0.186633,0.587291,0.159620,0.547108,0.159620,0.521605,0.171719,0.521605,0.171719,0.521605,0.171719,0.547108,0.159620,0.547108,0.221450,0.702866,0.206114,0.702866,0.206917,0.588095,0.221450,0.702866,0.206917,0.588095,0.206114,0.544256,0.221450,0.702866,0.206114,0.544256,0.206114,0.522552,0.206114,0.522552,0.221450,0.522552,0.221450,0.544256,0.206114,0.522552,0.221450,0.544256,0.222253,0.588095,0.221450,0.702866,0.206114,0.522552,0.222253,0.588095,0.187278,0.544256,0.187278,0.522552,0.206114,0.522552,0.206114,0.522552,0.206114,0.544256,0.187278,0.544256,0.217192,0.694573,0.220943,0.569284,0.161124,0.571796,0.161124,0.571796,0.170600,0.693306,0.217192,0.694573,0.207202,0.683932,0.212826,0.569341,0.162963,0.571175,0.162963,0.571175,0.166782,0.678207,0.207202,0.683932,0.164148,0.678257,0.159998,0.568517,0.213049,0.567989,0.213049,0.567989,0.211525,0.681506,0.164148,0.678257,0.161404,0.690863,0.160102,0.565574,0.219645,0.566200,0.219645,0.566200,0.213390,0.691489,0.161404,0.690863,0.206197,0.715007,0.205849,0.742301,0.128347,0.742529,0.128347,0.742529,0.128403,0.713543,0.206197,0.715007,0.165448,0.599950,0.219276,0.581468,0.221363,0.697859,0.221363,0.697859,0.161000,0.698148,0.165448,0.599950,0.214691,0.693378,0.163009,0.692717,0.164684,0.563614,0.164684,0.563614,0.220699,0.563496,0.214691,0.693378,0.222856,0.689683,0.169606,0.693378,0.161119,0.570214,0.161119,0.570214,0.217752,0.569330,0.222856,0.689683,0.207092,0.712469,0.207092,0.743661};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_39()
		{
			double[] value = {0.126974,0.743929,0.126974,0.743929,0.126974,0.712469,0.207092,0.712469,0.206317,0.742161,0.206665,0.712997,0.128403,0.713376,0.128403,0.713376,0.128348,0.742362,0.206317,0.742161,0.208589,0.712639,0.208589,0.740904,0.126974,0.743438,0.126974,0.743438,0.127287,0.712362,0.208589,0.712639,0.218320,0.574660,0.164492,0.593142,0.161000,0.697981,0.161000,0.697981,0.221363,0.697692,0.218320,0.574660,0.208589,0.712659,0.208589,0.740925,0.126710,0.743848,0.126710,0.743848,0.127023,0.712772,0.208589,0.712659,0.167641,0.688477,0.219323,0.689138,0.220967,0.563931,0.220967,0.563931,0.164952,0.564048,0.167641,0.688477,0.207092,0.712469,0.207092,0.743661,0.126974,0.743929,0.126974,0.743929,0.126974,0.712469,0.207092,0.712469,0.167650,0.686529,0.220901,0.682834,0.218255,0.569282,0.218255,0.569282,0.161622,0.570166,0.167650,0.686529,0.208589,0.740927,0.208589,0.712661,0.126857,0.712772,0.126857,0.712772,0.126544,0.743849,0.208589,0.740927,0.208589,0.740904,0.208589,0.712638,0.127355,0.712362,0.127355,0.712362,0.127043,0.743438,0.208589,0.740904,0.207092,0.743661,0.207092,0.712469,0.126974,0.712469,0.126974,0.712469,0.126974,0.743929,0.207092,0.743661,0.207092,0.743661,0.207092,0.712469,0.126974,0.712469,0.126974,0.712469,0.126974,0.743929,0.207092,0.743661,0.341055,0.809012,0.337903,0.807707,0.336598,0.804555,0.336598,0.804555,0.337903,0.801404,0.341055,0.800098,0.341055,0.800098,0.344206,0.801404,0.345512,0.804555,0.336598,0.804555,0.341055,0.800098,0.345512,0.804555,0.341055,0.809012,0.336598,0.804555,0.345512,0.804555,0.344206,0.807707,0.341055,0.809012,0.345512,0.804555,0.345512,0.804555,0.344206,0.801404,0.352017,0.793593,0.352017,0.793593,0.356558,0.804555,0.345512,0.804555,0.344206,0.801404,0.341055,0.800098,0.341055,0.789052,0.341055,0.789052,0.352017,0.793593,0.344206,0.801404};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_40()
		{
			double[] value = {0.341055,0.800098,0.337903,0.801404,0.330092,0.793593,0.330092,0.793593,0.341055,0.789052,0.341055,0.800098,0.337903,0.801404,0.336598,0.804555,0.325552,0.804555,0.325552,0.804555,0.330092,0.793593,0.337903,0.801404,0.336598,0.804555,0.337903,0.807707,0.330092,0.815518,0.330092,0.815518,0.325552,0.804555,0.336598,0.804555,0.337903,0.807707,0.341055,0.809012,0.341055,0.820058,0.341055,0.820058,0.330092,0.815518,0.337903,0.807707,0.341055,0.809012,0.344206,0.807707,0.352017,0.815518,0.352017,0.815518,0.341055,0.820058,0.341055,0.809012,0.344206,0.807707,0.345512,0.804555,0.356558,0.804555,0.356558,0.804555,0.352017,0.815518,0.344206,0.807707,0.356558,0.804555,0.352017,0.793593,0.379435,0.766175,0.379435,0.766175,0.395333,0.804555,0.356558,0.804555,0.352017,0.793593,0.341055,0.789052,0.341055,0.750277,0.341055,0.750277,0.379435,0.766175,0.352017,0.793593,0.341055,0.789052,0.330092,0.793593,0.302674,0.766175,0.302674,0.766175,0.341055,0.750277,0.341055,0.789052,0.330092,0.793593,0.325552,0.804555,0.286777,0.804555,0.286777,0.804555,0.302674,0.766175,0.330092,0.793593,0.325552,0.804555,0.330092,0.815518,0.302675,0.842936,0.302675,0.842936,0.286777,0.804555,0.325552,0.804555,0.330092,0.815518,0.341055,0.820058,0.341055,0.858833,0.341055,0.858833,0.302675,0.842936,0.330092,0.815518,0.341055,0.820058,0.352017,0.815518,0.379435,0.842936,0.379435,0.842936,0.341055,0.858833,0.341055,0.820058,0.352017,0.815518,0.356558,0.804555,0.395333,0.804555,0.395333,0.804555,0.379435,0.842936,0.352017,0.815518,0.014919,0.798981,0.014919,0.774800,0.269699,0.774933,0.269699,0.774933,0.269699,0.798981,0.014919,0.798981,0.014919,0.774800,0.014919,0.753784,0.269699,0.753972,0.269699,0.753972,0.269699,0.774933,0.014919,0.774800,0.014919,0.753784,0.014920,0.774800,0.269699,0.774933,0.269699,0.774933};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_41()
		{
			double[] value = {0.269699,0.753972,0.014919,0.753784,0.014920,0.774800,0.014920,0.798981,0.269699,0.798981,0.269699,0.798981,0.269699,0.774933,0.014920,0.774800,0.014920,0.798981,0.014920,0.822643,0.269699,0.822510,0.269699,0.822510,0.269699,0.798981,0.014920,0.798981,0.014920,0.822643,0.014919,0.844178,0.269699,0.843990,0.269699,0.843990,0.269699,0.822510,0.014920,0.822643,0.014919,0.844178,0.014919,0.822643,0.269699,0.822510,0.269699,0.822510,0.269699,0.843990,0.014919,0.844178,0.014919,0.822643,0.014919,0.798981,0.269699,0.798981,0.269699,0.798981,0.269699,0.822510,0.014919,0.822643,0.321372,0.642020,0.308469,0.610870,0.277319,0.597967,0.277319,0.597967,0.246169,0.610870,0.233266,0.642020,0.321372,0.642020,0.277319,0.597967,0.233266,0.642020,0.233266,0.642020,0.246169,0.673171,0.277319,0.686073,0.321372,0.642020,0.233266,0.642020,0.277319,0.686073,0.308469,0.673171,0.321372,0.642020,0.277319,0.686073,0.341055,0.809012,0.337903,0.807707,0.336598,0.804555,0.336598,0.804555,0.337903,0.801404,0.341055,0.800098,0.341055,0.800098,0.344206,0.801404,0.345512,0.804555,0.336598,0.804555,0.341055,0.800098,0.345512,0.804555,0.341055,0.809012,0.336598,0.804555,0.345512,0.804555,0.344206,0.807707,0.341055,0.809012,0.345512,0.804555,0.345512,0.804555,0.344206,0.801404,0.352017,0.793593,0.352017,0.793593,0.356558,0.804555,0.345512,0.804555,0.344206,0.801404,0.341055,0.800098,0.341055,0.789052,0.341055,0.789052,0.352017,0.793593,0.344206,0.801404,0.341055,0.800098,0.337903,0.801404,0.330092,0.793593,0.330092,0.793593,0.341055,0.789052,0.341055,0.800098,0.337903,0.801404,0.336598,0.804555,0.325552,0.804555,0.325552,0.804555,0.330092,0.793593,0.337903,0.801404,0.336598,0.804555,0.337903,0.807707,0.330092,0.815518,0.330092,0.815518,0.325552,0.804555,0.336598,0.804555,0.337903,0.807707,0.341055,0.809012};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_42()
		{
			double[] value = {0.341055,0.820058,0.341055,0.820058,0.330092,0.815518,0.337903,0.807707,0.341055,0.809012,0.344206,0.807707,0.352017,0.815518,0.352017,0.815518,0.341055,0.820058,0.341055,0.809012,0.344206,0.807707,0.345512,0.804555,0.356558,0.804555,0.356558,0.804555,0.352017,0.815518,0.344206,0.807707,0.356558,0.804555,0.352017,0.793593,0.379435,0.766175,0.379435,0.766175,0.395333,0.804555,0.356558,0.804555,0.352017,0.793593,0.341055,0.789052,0.341055,0.750277,0.341055,0.750277,0.379435,0.766175,0.352017,0.793593,0.341055,0.789052,0.330092,0.793593,0.302674,0.766175,0.302674,0.766175,0.341055,0.750277,0.341055,0.789052,0.330092,0.793593,0.325552,0.804555,0.286777,0.804555,0.286777,0.804555,0.302674,0.766175,0.330092,0.793593,0.325552,0.804555,0.330092,0.815518,0.302675,0.842936,0.302675,0.842936,0.286777,0.804555,0.325552,0.804555,0.330092,0.815518,0.341055,0.820058,0.341055,0.858833,0.341055,0.858833,0.302675,0.842936,0.330092,0.815518,0.341055,0.820058,0.352017,0.815518,0.379435,0.842936,0.379435,0.842936,0.341055,0.858833,0.341055,0.820058,0.352017,0.815518,0.356558,0.804555,0.395333,0.804555,0.395333,0.804555,0.379435,0.842936,0.352017,0.815518,0.014919,0.798981,0.014919,0.774800,0.269699,0.774933,0.269699,0.774933,0.269699,0.798981,0.014919,0.798981,0.014919,0.774800,0.014919,0.753784,0.269699,0.753972,0.269699,0.753972,0.269699,0.774933,0.014919,0.774800,0.014919,0.753784,0.014920,0.774800,0.269699,0.774933,0.269699,0.774933,0.269699,0.753972,0.014919,0.753784,0.014920,0.774800,0.014920,0.798981,0.269699,0.798981,0.269699,0.798981,0.269699,0.774933,0.014920,0.774800,0.014920,0.798981,0.014920,0.822643,0.269699,0.822510,0.269699,0.822510,0.269699,0.798981,0.014920,0.798981,0.014920,0.822643,0.014919,0.844178,0.269699,0.843990,0.269699,0.843990,0.269699,0.822510,0.014920,0.822643};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_43()
		{
			double[] value = {0.014919,0.844178,0.014919,0.822643,0.269699,0.822510,0.269699,0.822510,0.269699,0.843990,0.014919,0.844178,0.014919,0.822643,0.014919,0.798981,0.269699,0.798981,0.269699,0.798981,0.269699,0.822510,0.014919,0.822643,0.317359,0.639843,0.304886,0.609732,0.274775,0.597260,0.274775,0.597260,0.244664,0.609732,0.232192,0.639843,0.317359,0.639843,0.274775,0.597260,0.232192,0.639843,0.232192,0.639843,0.244664,0.669954,0.274775,0.682427,0.317359,0.639843,0.232192,0.639843,0.274775,0.682427,0.304886,0.669954,0.317359,0.639843,0.274775,0.682427,0.794495,0.206192,0.794318,0.206249,0.772913,0.213223,0.772913,0.213223,0.772949,0.213125,0.794495,0.206192,0.647055,0.232241,0.647489,0.234562,0.647489,0.234562,0.647489,0.234562,0.647055,0.232241,0.647055,0.232241,0.796409,0.223498,0.774863,0.230430,0.776049,0.238848,0.776049,0.238848,0.796246,0.228989,0.796409,0.223498,0.074841,0.700738,0.133295,0.700946,0.133295,0.696096,0.133295,0.696096,0.075286,0.695546,0.074841,0.700738,0.648969,0.249546,0.648969,0.249546,0.648674,0.257664,0.648674,0.257664,0.660309,0.258219,0.648969,0.249546,0.647489,0.234562,0.648674,0.257664,0.648969,0.249546,0.648969,0.249546,0.647055,0.232241,0.647489,0.234562,0.647055,0.232241,0.648969,0.249546,0.648969,0.249546,0.648969,0.249546,0.647055,0.232241,0.647055,0.232241,0.053109,0.631163,0.056510,0.646421,0.121288,0.644517,0.121288,0.644517,0.117887,0.618589,0.053109,0.631163,0.772949,0.213125,0.774863,0.230430,0.796409,0.223498,0.796409,0.223498,0.794495,0.206192,0.772949,0.213125,0.046244,0.692972,0.045716,0.641927,0.133793,0.641263,0.133793,0.641263,0.133295,0.694842,0.046244,0.692972,0.046182,0.638866,0.045316,0.694226,0.075286,0.695546,0.075286,0.695546,0.076960,0.638277,0.046182,0.638866,0.101047,0.648739,0.102206,0.703202,0.132298,0.699916,0.100290,0.641330};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_44()
		{
			double[] value = {0.101047,0.648739,0.132298,0.699916,0.129678,0.636520,0.100290,0.641330,0.132298,0.699916,0.129618,0.634480,0.129980,0.620934,0.093347,0.623171,0.129352,0.676788,0.129618,0.634480,0.093347,0.623171,0.092719,0.675646,0.129352,0.676788,0.093347,0.623171,0.129949,0.563334,0.133925,0.524882,0.096691,0.526775,0.131926,0.583178,0.129949,0.563334,0.096691,0.526775,0.129980,0.620934,0.131926,0.583178,0.096691,0.526775,0.093347,0.623171,0.129980,0.620934,0.096691,0.526775,0.045852,0.530542,0.046182,0.638866,0.076960,0.638277,0.076960,0.638277,0.079395,0.527883,0.045852,0.530542,0.129678,0.636520,0.132206,0.555605,0.107119,0.546929,0.129678,0.636520,0.107119,0.546929,0.097380,0.589024,0.129678,0.636520,0.097380,0.589024,0.097930,0.595510,0.100290,0.641330,0.129678,0.636520,0.097930,0.595510,0.655877,0.080641,0.660042,0.080641,0.742226,0.080641,0.742226,0.080641,0.748444,0.080641,0.655877,0.080641,0.128935,0.611057,0.117887,0.618589,0.121288,0.644517,0.121288,0.644517,0.132336,0.642636,0.128935,0.611057,0.134291,0.529255,0.134291,0.526956,0.049849,0.527168,0.079395,0.527883,0.134291,0.529255,0.049849,0.527168,0.079395,0.527883,0.049849,0.527168,0.045852,0.530542,0.132206,0.555605,0.128238,0.529938,0.111014,0.525588,0.111014,0.525588,0.107119,0.546929,0.132206,0.555605,0.117887,0.618589,0.118504,0.535687,0.051836,0.531907,0.051836,0.531907,0.053109,0.631163,0.117887,0.618589,0.053605,0.700563,0.048982,0.524764,0.129577,0.524764,0.129577,0.524764,0.133914,0.700563,0.053605,0.700563,0.128935,0.611057,0.129552,0.535687,0.118504,0.535687,0.118504,0.535687,0.117887,0.618589,0.128935,0.611057,0.111014,0.525588,0.046643,0.523990,0.046839,0.538086,0.046839,0.538086,0.107119,0.546929,0.111014,0.525588,0.680620,0.230285,0.772913,0.213223,0.772949,0.213125,0.772913,0.213223,0.680620,0.230285};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_45()
		{
			double[] value = {0.772949,0.213125,0.045316,0.694226,0.046417,0.700450,0.074841,0.700738,0.074841,0.700738,0.075286,0.695546,0.045316,0.694226,0.757190,0.142287,0.758109,0.142287,0.649787,0.142287,0.649787,0.142287,0.650794,0.142287,0.757190,0.142287,0.133295,0.696096,0.133793,0.638918,0.076960,0.638277,0.076960,0.638277,0.075286,0.695546,0.133295,0.696096,0.046941,0.638304,0.045493,0.578693,0.134789,0.581557,0.134789,0.581557,0.133793,0.637663,0.046941,0.638304,0.134291,0.528001,0.134789,0.578276,0.046473,0.575507,0.046473,0.575507,0.046779,0.527193,0.134291,0.528001,0.133793,0.638918,0.134291,0.529255,0.079395,0.527883,0.079395,0.527883,0.076960,0.638277,0.133793,0.638918,0.653959,0.128465,0.654739,0.128465,0.755395,0.128465,0.755395,0.128465,0.755964,0.128465,0.653959,0.128465,0.135632,0.700563,0.131683,0.524764,0.046744,0.524764,0.046744,0.524764,0.050948,0.700563,0.135632,0.700563,0.134169,0.693620,0.132028,0.526048,0.047738,0.522961,0.047738,0.522961,0.047409,0.690746,0.134169,0.693620,0.050202,0.686018,0.049688,0.526813,0.130418,0.530822,0.130418,0.530822,0.131229,0.689775,0.050202,0.686018,0.050618,0.700563,0.046415,0.524764,0.131960,0.524764,0.131960,0.524764,0.135909,0.700563,0.050618,0.700563,0.055016,0.676280,0.055301,0.540938,0.130266,0.539048,0.130266,0.539048,0.127345,0.670798,0.055016,0.676280,0.661715,0.188168,0.653959,0.128465,0.755964,0.128465,0.755964,0.128465,0.763719,0.172465,0.661715,0.188168,0.125453,0.673917,0.117408,0.539048,0.053385,0.537159,0.053385,0.537159,0.053125,0.680151,0.125453,0.673917,0.135658,0.700563,0.130942,0.524764,0.047817,0.524764,0.047817,0.524764,0.052852,0.700563,0.135658,0.700563,0.363945,0.469865,0.363945,0.427860,0.241751,0.427860,0.241751,0.427860,0.241751,0.469866,0.363945,0.469865,0.363945,0.427860,0.241751,0.427860,0.247724,0.389779};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_46()
		{
			double[] value = {0.247724,0.389779,0.357972,0.389779,0.363945,0.427860,0.363945,0.469865,0.241751,0.469866,0.241751,0.427860,0.241751,0.427860,0.363945,0.427860,0.363945,0.469865,0.263277,0.384068,0.263277,0.483657,0.277688,0.483657,0.277688,0.483657,0.277688,0.384068,0.263277,0.384068,0.363945,0.427860,0.357972,0.389779,0.357972,0.389779,0.357972,0.389779,0.363945,0.427860,0.363945,0.427860,0.387098,0.469865,0.387098,0.427860,0.387098,0.427860,0.387098,0.427860,0.387098,0.469865,0.387098,0.469865,0.241751,0.469866,0.363945,0.469865,0.363945,0.469865,0.363945,0.469865,0.241751,0.469866,0.241751,0.469866,0.218916,0.427860,0.218916,0.469866,0.218916,0.469866,0.218916,0.469866,0.218916,0.427860,0.218916,0.427860,0.247724,0.389779,0.241751,0.427860,0.241751,0.427860,0.241751,0.427860,0.247724,0.389779,0.247724,0.389779,0.241751,0.427860,0.218916,0.427860,0.218916,0.469866,0.218916,0.469866,0.241751,0.469866,0.241751,0.427860,0.241751,0.469866,0.218916,0.469866,0.218916,0.427860,0.218916,0.427860,0.241751,0.427860,0.241751,0.469866,0.241751,0.469866,0.218916,0.469866,0.218916,0.469866,0.218916,0.469866,0.241751,0.469866,0.241751,0.469866,0.241751,0.427860,0.218916,0.427860,0.218916,0.427860,0.218916,0.427860,0.241751,0.427860,0.241751,0.427860,0.363945,0.469865,0.387098,0.469865,0.387098,0.427860,0.387098,0.427860,0.363945,0.427860,0.363945,0.469865,0.363945,0.427860,0.387098,0.427860,0.387098,0.469865,0.387098,0.469865,0.363945,0.469865,0.363945,0.427860,0.363945,0.427860,0.387098,0.427860,0.387098,0.427860,0.387098,0.427860,0.363945,0.427860,0.363945,0.427860,0.363945,0.469865,0.387098,0.469865,0.387098,0.469865,0.387098,0.469865,0.363945,0.469865,0.363945,0.469865,0.241751,0.427860,0.241751,0.427860,0.247724,0.389779,0.247724,0.389779,0.247724,0.389779,0.241751,0.427860,0.277688,0.378673};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_47()
		{
			double[] value = {0.359199,0.378673,0.359198,0.489053,0.359198,0.489053,0.277688,0.489052,0.277688,0.378673,0.357972,0.389779,0.357972,0.389779,0.363945,0.427860,0.363945,0.427860,0.363945,0.427860,0.357972,0.389779,0.277688,0.483657,0.359198,0.483657,0.359199,0.384068,0.359199,0.384068,0.277688,0.384068,0.277688,0.483657,0.363945,0.427860,0.357972,0.389779,0.247724,0.389779,0.247724,0.389779,0.241751,0.427860,0.363945,0.427860,0.363945,0.469865,0.363945,0.427860,0.241751,0.427860,0.241751,0.427860,0.241751,0.469866,0.363945,0.469865,0.363945,0.469865,0.241751,0.469866,0.241751,0.427860,0.241751,0.427860,0.363945,0.427860,0.363945,0.469865,0.359199,0.384068,0.359198,0.483657,0.373656,0.483657,0.373656,0.483657,0.373657,0.384068,0.359199,0.384068,0.363945,0.427860,0.357972,0.389779,0.357972,0.389779,0.357972,0.389779,0.363945,0.427860,0.363945,0.427860,0.387098,0.469865,0.387098,0.427860,0.387098,0.427860,0.387098,0.427860,0.387098,0.469865,0.387098,0.469865,0.241751,0.469866,0.363945,0.469865,0.363945,0.469865,0.363945,0.469865,0.241751,0.469866,0.241751,0.469866,0.218916,0.427860,0.218916,0.469866,0.218916,0.469866,0.218916,0.469866,0.218916,0.427860,0.218916,0.427860,0.247724,0.389779,0.241751,0.427860,0.241751,0.427860,0.241751,0.427860,0.247724,0.389779,0.247724,0.389779,0.241751,0.427860,0.218916,0.427860,0.218916,0.469866,0.218916,0.469866,0.241751,0.469866,0.241751,0.427860,0.241751,0.469866,0.218916,0.469866,0.218916,0.427860,0.218916,0.427860,0.241751,0.427860,0.241751,0.469866,0.241751,0.469866,0.218916,0.469866,0.218916,0.469866,0.218916,0.469866,0.241751,0.469866,0.241751,0.469866,0.241751,0.427860,0.218916,0.427860,0.218916,0.427860,0.218916,0.427860,0.241751,0.427860,0.241751,0.427860,0.363945,0.469865,0.387098,0.469865,0.387098,0.427860,0.387098,0.427860,0.363945,0.427860};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_48()
		{
			double[] value = {0.363945,0.469865,0.363945,0.427860,0.387098,0.427860,0.387098,0.469865,0.387098,0.469865,0.363945,0.469865,0.363945,0.427860,0.363945,0.427860,0.387098,0.427860,0.387098,0.427860,0.387098,0.427860,0.363945,0.427860,0.363945,0.427860,0.363945,0.469865,0.387098,0.469865,0.387098,0.469865,0.387098,0.469865,0.363945,0.469865,0.363945,0.469865,0.203573,0.627194,0.180553,0.627131,0.164231,0.643365,0.164231,0.643365,0.164168,0.666386,0.180402,0.682708,0.180402,0.682708,0.203423,0.682770,0.219745,0.666536,0.164231,0.643365,0.180402,0.682708,0.219745,0.666536,0.203573,0.627194,0.164231,0.643365,0.219745,0.666536,0.219807,0.643516,0.203573,0.627194,0.219745,0.666536,0.161232,0.588094,0.160428,0.702866,0.170351,0.702866,0.170351,0.702866,0.171154,0.588094,0.161232,0.588094,0.186633,0.587291,0.186633,0.700439,0.204900,0.700439,0.204900,0.700439,0.204900,0.587291,0.186633,0.587291,0.159620,0.587292,0.159620,0.700439,0.171719,0.700439,0.171719,0.700439,0.171719,0.587292,0.159620,0.587292,0.188081,0.588095,0.187278,0.702866,0.206114,0.702866,0.206114,0.702866,0.206917,0.588095,0.188081,0.588095,0.258370,0.582935,0.282450,0.582870,0.299431,0.565797,0.299431,0.565797,0.299365,0.541717,0.282292,0.524736,0.282292,0.524736,0.258212,0.524801,0.241231,0.541874,0.299431,0.565797,0.282292,0.524736,0.241231,0.541874,0.258370,0.582935,0.299431,0.565797,0.241231,0.541874,0.241297,0.565954,0.258370,0.582935,0.241231,0.541874,0.171154,0.588094,0.170351,0.702866,0.187278,0.702866,0.170351,0.544255,0.171154,0.588094,0.187278,0.702866,0.187278,0.544256,0.187278,0.522552,0.170351,0.522552,0.188081,0.588095,0.187278,0.544256,0.170351,0.522552,0.187278,0.702866,0.188081,0.588095,0.170351,0.522552,0.170351,0.544255,0.187278,0.702866,0.170351,0.522552,0.170351,0.522552,0.160428,0.522552,0.160428,0.544255};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_49()
		{
			double[] value = {0.160428,0.544255,0.170351,0.544255,0.170351,0.522552,0.204900,0.587291,0.204900,0.700439,0.222819,0.700439,0.204900,0.547107,0.204900,0.587291,0.222819,0.700439,0.222819,0.547107,0.222819,0.521605,0.204900,0.521605,0.222819,0.587291,0.222819,0.547107,0.204900,0.521605,0.222819,0.700439,0.222819,0.587291,0.204900,0.521605,0.204900,0.547107,0.222819,0.700439,0.204900,0.521605,0.204900,0.521605,0.186633,0.521605,0.186633,0.547107,0.186633,0.547107,0.204900,0.547107,0.204900,0.521605,0.171719,0.587292,0.171719,0.700439,0.186633,0.700439,0.171719,0.547108,0.171719,0.587292,0.186633,0.700439,0.186633,0.547107,0.186633,0.521605,0.171719,0.521605,0.186633,0.587291,0.186633,0.547107,0.171719,0.521605,0.186633,0.700439,0.186633,0.587291,0.171719,0.521605,0.171719,0.547108,0.186633,0.700439,0.171719,0.521605,0.171719,0.521605,0.159620,0.521605,0.159620,0.547108,0.159620,0.547108,0.171719,0.547108,0.171719,0.521605,0.206917,0.588095,0.206114,0.702866,0.221450,0.702866,0.206114,0.544256,0.206917,0.588095,0.221450,0.702866,0.221450,0.544256,0.221450,0.522552,0.206114,0.522552,0.222253,0.588095,0.221450,0.544256,0.206114,0.522552,0.221450,0.702866,0.222253,0.588095,0.206114,0.522552,0.206114,0.544256,0.221450,0.702866,0.206114,0.522552,0.206114,0.522552,0.187278,0.522552,0.187278,0.544256,0.187278,0.544256,0.206114,0.544256,0.206114,0.522552,0.161124,0.571796,0.220943,0.569284,0.217192,0.694573,0.217192,0.694573,0.170600,0.693306,0.161124,0.571796,0.162963,0.571175,0.212826,0.569341,0.207202,0.683932,0.207202,0.683932,0.166782,0.678207,0.162963,0.571175,0.213049,0.567989,0.159998,0.568517,0.164148,0.678257,0.164148,0.678257,0.211525,0.681506,0.213049,0.567989,0.219645,0.566200,0.160102,0.565574,0.161404,0.690863,0.161404,0.690863,0.213390,0.691489,0.219645,0.566200,0.128347,0.742529};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_50()
		{
			double[] value = {0.205849,0.742301,0.206197,0.715007,0.206197,0.715007,0.128403,0.713543,0.128347,0.742529,0.221363,0.697859,0.219276,0.581468,0.165448,0.599950,0.165448,0.599950,0.161000,0.698148,0.221363,0.697859,0.164684,0.563614,0.163009,0.692717,0.214691,0.693378,0.214691,0.693378,0.220699,0.563496,0.164684,0.563614,0.161119,0.570214,0.169606,0.693378,0.222856,0.689683,0.222856,0.689683,0.217752,0.569330,0.161119,0.570214,0.126974,0.743929,0.207092,0.743661,0.207092,0.712469,0.207092,0.712469,0.126974,0.712469,0.126974,0.743929,0.128403,0.713376,0.206665,0.712997,0.206317,0.742161,0.206317,0.742161,0.128348,0.742362,0.128403,0.713376,0.126974,0.743438,0.208589,0.740904,0.208589,0.712639,0.208589,0.712639,0.127287,0.712362,0.126974,0.743438,0.161000,0.697981,0.164492,0.593142,0.218320,0.574660,0.218320,0.574660,0.221363,0.697692,0.161000,0.697981,0.126710,0.743848,0.208589,0.740925,0.208589,0.712659,0.208589,0.712659,0.127023,0.712772,0.126710,0.743848,0.220967,0.563931,0.219323,0.689138,0.167641,0.688477,0.167641,0.688477,0.164952,0.564048,0.220967,0.563931,0.126974,0.743929,0.207092,0.743661,0.207092,0.712469,0.207092,0.712469,0.126974,0.712469,0.126974,0.743929,0.218255,0.569282,0.220901,0.682834,0.167650,0.686529,0.167650,0.686529,0.161622,0.570166,0.218255,0.569282,0.126857,0.712772,0.208589,0.712661,0.208589,0.740927,0.208589,0.740927,0.126544,0.743849,0.126857,0.712772,0.127355,0.712362,0.208589,0.712638,0.208589,0.740904,0.208589,0.740904,0.127043,0.743438,0.127355,0.712362,0.126974,0.712469,0.207092,0.712469,0.207092,0.743661,0.207092,0.743661,0.126974,0.743929,0.126974,0.712469,0.126974,0.712469,0.207092,0.712469,0.207092,0.743661,0.207092,0.743661,0.126974,0.743929,0.126974,0.712469,0.203573,0.627194,0.180553,0.627131,0.164231,0.643365,0.164231,0.643365,0.164168,0.666386};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_51()
		{
			double[] value = {0.180402,0.682708,0.180402,0.682708,0.203423,0.682770,0.219745,0.666536,0.164231,0.643365,0.180402,0.682708,0.219745,0.666536,0.203573,0.627194,0.164231,0.643365,0.219745,0.666536,0.219807,0.643516,0.203573,0.627194,0.219745,0.666536,0.161232,0.588094,0.160428,0.702866,0.170351,0.702866,0.170351,0.702866,0.171154,0.588094,0.161232,0.588094,0.186633,0.587291,0.186633,0.700439,0.204900,0.700439,0.204900,0.700439,0.204900,0.587291,0.186633,0.587291,0.159620,0.587292,0.159620,0.700439,0.171719,0.700439,0.171719,0.700439,0.171719,0.587292,0.159620,0.587292,0.188081,0.588095,0.187278,0.702866,0.206114,0.702866,0.206114,0.702866,0.206917,0.588095,0.188081,0.588095,0.258370,0.582935,0.282450,0.582870,0.299431,0.565797,0.299431,0.565797,0.299365,0.541717,0.282292,0.524736,0.282292,0.524736,0.258212,0.524801,0.241231,0.541874,0.299431,0.565797,0.282292,0.524736,0.241231,0.541874,0.258370,0.582935,0.299431,0.565797,0.241231,0.541874,0.241297,0.565954,0.258370,0.582935,0.241231,0.541874,0.171154,0.588094,0.170351,0.702866,0.187278,0.702866,0.170351,0.544255,0.171154,0.588094,0.187278,0.702866,0.187278,0.544256,0.187278,0.522552,0.170351,0.522552,0.188081,0.588095,0.187278,0.544256,0.170351,0.522552,0.187278,0.702866,0.188081,0.588095,0.170351,0.522552,0.170351,0.544255,0.187278,0.702866,0.170351,0.522552,0.170351,0.522552,0.160428,0.522552,0.160428,0.544255,0.160428,0.544255,0.170351,0.544255,0.170351,0.522552,0.204900,0.587291,0.204900,0.700439,0.222819,0.700439,0.204900,0.547107,0.204900,0.587291,0.222819,0.700439,0.222819,0.547107,0.222819,0.521605,0.204900,0.521605,0.222819,0.587291,0.222819,0.547107,0.204900,0.521605,0.222819,0.700439,0.222819,0.587291,0.204900,0.521605,0.204900,0.547107,0.222819,0.700439,0.204900,0.521605,0.204900,0.521605,0.186633,0.521605,0.186633,0.547107};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_52()
		{
			double[] value = {0.186633,0.547107,0.204900,0.547107,0.204900,0.521605,0.171719,0.587292,0.171719,0.700439,0.186633,0.700439,0.171719,0.547108,0.171719,0.587292,0.186633,0.700439,0.186633,0.547107,0.186633,0.521605,0.171719,0.521605,0.186633,0.587291,0.186633,0.547107,0.171719,0.521605,0.186633,0.700439,0.186633,0.587291,0.171719,0.521605,0.171719,0.547108,0.186633,0.700439,0.171719,0.521605,0.171719,0.521605,0.159620,0.521605,0.159620,0.547108,0.159620,0.547108,0.171719,0.547108,0.171719,0.521605,0.206917,0.588095,0.206114,0.702866,0.221450,0.702866,0.206114,0.544256,0.206917,0.588095,0.221450,0.702866,0.221450,0.544256,0.221450,0.522552,0.206114,0.522552,0.222253,0.588095,0.221450,0.544256,0.206114,0.522552,0.221450,0.702866,0.222253,0.588095,0.206114,0.522552,0.206114,0.544256,0.221450,0.702866,0.206114,0.522552,0.206114,0.522552,0.187278,0.522552,0.187278,0.544256,0.187278,0.544256,0.206114,0.544256,0.206114,0.522552,0.161124,0.571796,0.220943,0.569284,0.217192,0.694573,0.217192,0.694573,0.170600,0.693306,0.161124,0.571796,0.162963,0.571175,0.212826,0.569341,0.207202,0.683932,0.207202,0.683932,0.166782,0.678207,0.162963,0.571175,0.213049,0.567989,0.159998,0.568517,0.164148,0.678257,0.164148,0.678257,0.211525,0.681506,0.213049,0.567989,0.219645,0.566200,0.160102,0.565574,0.161404,0.690863,0.161404,0.690863,0.213390,0.691489,0.219645,0.566200,0.128347,0.742529,0.205849,0.742301,0.206197,0.715007,0.206197,0.715007,0.128403,0.713543,0.128347,0.742529,0.221363,0.697859,0.219276,0.581468,0.165448,0.599950,0.165448,0.599950,0.161000,0.698148,0.221363,0.697859,0.164684,0.563614,0.163009,0.692717,0.214691,0.693378,0.214691,0.693378,0.220699,0.563496,0.164684,0.563614,0.161119,0.570214,0.169606,0.693378,0.222856,0.689683,0.222856,0.689683,0.217752,0.569330,0.161119,0.570214,0.126974,0.743929};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_53()
		{
			double[] value = {0.207092,0.743661,0.207092,0.712469,0.207092,0.712469,0.126974,0.712469,0.126974,0.743929,0.128403,0.713376,0.206665,0.712997,0.206317,0.742161,0.206317,0.742161,0.128348,0.742362,0.128403,0.713376,0.126974,0.743438,0.208589,0.740904,0.208589,0.712639,0.208589,0.712639,0.127287,0.712362,0.126974,0.743438,0.161000,0.697981,0.164492,0.593142,0.218320,0.574660,0.218320,0.574660,0.221363,0.697692,0.161000,0.697981,0.126710,0.743848,0.208589,0.740925,0.208589,0.712659,0.208589,0.712659,0.127023,0.712772,0.126710,0.743848,0.220967,0.563931,0.219323,0.689138,0.167641,0.688477,0.167641,0.688477,0.164952,0.564048,0.220967,0.563931,0.126974,0.743929,0.207092,0.743661,0.207092,0.712469,0.207092,0.712469,0.126974,0.712469,0.126974,0.743929,0.218255,0.569282,0.220901,0.682834,0.167650,0.686529,0.167650,0.686529,0.161622,0.570166,0.218255,0.569282,0.126857,0.712772,0.208589,0.712661,0.208589,0.740927,0.208589,0.740927,0.126544,0.743849,0.126857,0.712772,0.127355,0.712362,0.208589,0.712638,0.208589,0.740904,0.208589,0.740904,0.127043,0.743438,0.127355,0.712362,0.126974,0.712469,0.207092,0.712469,0.207092,0.743661,0.207092,0.743661,0.126974,0.743929,0.126974,0.712469,0.126974,0.712469,0.207092,0.712469,0.207092,0.743661,0.207092,0.743661,0.126974,0.743929,0.126974,0.712469,0.341055,0.800098,0.337903,0.801404,0.336598,0.804555,0.336598,0.804555,0.337903,0.807707,0.341055,0.809012,0.341055,0.809012,0.344206,0.807707,0.345512,0.804555,0.336598,0.804555,0.341055,0.809012,0.345512,0.804555,0.341055,0.800098,0.336598,0.804555,0.345512,0.804555,0.344206,0.801404,0.341055,0.800098,0.345512,0.804555,0.352017,0.793593,0.344206,0.801404,0.345512,0.804555,0.345512,0.804555,0.356558,0.804555,0.352017,0.793593,0.341055,0.789052,0.341055,0.800098,0.344206,0.801404,0.344206,0.801404,0.352017,0.793593};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_54()
		{
			double[] value = {0.341055,0.789052,0.330092,0.793593,0.337903,0.801404,0.341055,0.800098,0.341055,0.800098,0.341055,0.789052,0.330092,0.793593,0.325552,0.804555,0.336598,0.804555,0.337903,0.801404,0.337903,0.801404,0.330092,0.793593,0.325552,0.804555,0.330092,0.815518,0.337903,0.807707,0.336598,0.804555,0.336598,0.804555,0.325552,0.804555,0.330092,0.815518,0.341055,0.820058,0.341055,0.809012,0.337903,0.807707,0.337903,0.807707,0.330092,0.815518,0.341055,0.820058,0.352017,0.815518,0.344206,0.807707,0.341055,0.809012,0.341055,0.809012,0.341055,0.820058,0.352017,0.815518,0.356558,0.804555,0.345512,0.804555,0.344206,0.807707,0.344206,0.807707,0.352017,0.815518,0.356558,0.804555,0.379435,0.766175,0.352017,0.793593,0.356558,0.804555,0.356558,0.804555,0.395333,0.804555,0.379435,0.766175,0.341055,0.750277,0.341055,0.789052,0.352017,0.793593,0.352017,0.793593,0.379435,0.766175,0.341055,0.750277,0.302674,0.766175,0.330092,0.793593,0.341055,0.789052,0.341055,0.789052,0.341055,0.750277,0.302674,0.766175,0.286777,0.804555,0.325552,0.804555,0.330092,0.793593,0.330092,0.793593,0.302674,0.766175,0.286777,0.804555,0.302675,0.842936,0.330092,0.815518,0.325552,0.804555,0.325552,0.804555,0.286777,0.804555,0.302675,0.842936,0.341055,0.858833,0.341055,0.820058,0.330092,0.815518,0.330092,0.815518,0.302675,0.842936,0.341055,0.858833,0.379435,0.842936,0.352017,0.815518,0.341055,0.820058,0.341055,0.820058,0.341055,0.858833,0.379435,0.842936,0.395333,0.804555,0.356558,0.804555,0.352017,0.815518,0.352017,0.815518,0.379435,0.842936,0.395333,0.804555,0.269699,0.774933,0.014919,0.774800,0.014919,0.798981,0.014919,0.798981,0.269699,0.798981,0.269699,0.774933,0.269699,0.753972,0.014919,0.753784,0.014919,0.774800,0.014919,0.774800,0.269699,0.774933,0.269699,0.753972,0.269699,0.774933,0.014920,0.774800,0.014919,0.753784};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_55()
		{
			double[] value = {0.014919,0.753784,0.269699,0.753972,0.269699,0.774933,0.269699,0.798981,0.014920,0.798981,0.014920,0.774800,0.014920,0.774800,0.269699,0.774933,0.269699,0.798981,0.269699,0.822510,0.014920,0.822643,0.014920,0.798981,0.014920,0.798981,0.269699,0.798981,0.269699,0.822510,0.269699,0.843990,0.014919,0.844178,0.014920,0.822643,0.014920,0.822643,0.269699,0.822510,0.269699,0.843990,0.269699,0.822510,0.014919,0.822643,0.014919,0.844178,0.014919,0.844178,0.269699,0.843990,0.269699,0.822510,0.269699,0.798981,0.014919,0.798981,0.014919,0.822643,0.014919,0.822643,0.269699,0.822510,0.269699,0.798981,0.308469,0.673171,0.277319,0.686073,0.246169,0.673171,0.246169,0.673171,0.233266,0.642020,0.246169,0.610870,0.246169,0.610870,0.277319,0.597967,0.308469,0.610870,0.246169,0.673171,0.246169,0.610870,0.308469,0.610870,0.308469,0.673171,0.246169,0.673171,0.308469,0.610870,0.321372,0.642020,0.308469,0.673171,0.308469,0.610870,0.341055,0.800098,0.337903,0.801404,0.336598,0.804555,0.336598,0.804555,0.337903,0.807707,0.341055,0.809012,0.341055,0.809012,0.344206,0.807707,0.345512,0.804555,0.336598,0.804555,0.341055,0.809012,0.345512,0.804555,0.341055,0.800098,0.336598,0.804555,0.345512,0.804555,0.344206,0.801404,0.341055,0.800098,0.345512,0.804555,0.352017,0.793593,0.344206,0.801404,0.345512,0.804555,0.345512,0.804555,0.356558,0.804555,0.352017,0.793593,0.341055,0.789052,0.341055,0.800098,0.344206,0.801404,0.344206,0.801404,0.352017,0.793593,0.341055,0.789052,0.330092,0.793593,0.337903,0.801404,0.341055,0.800098,0.341055,0.800098,0.341055,0.789052,0.330092,0.793593,0.325552,0.804555,0.336598,0.804555,0.337903,0.801404,0.337903,0.801404,0.330092,0.793593,0.325552,0.804555,0.330092,0.815518,0.337903,0.807707,0.336598,0.804555,0.336598,0.804555,0.325552,0.804555,0.330092,0.815518,0.341055,0.820058};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_56()
		{
			double[] value = {0.341055,0.809012,0.337903,0.807707,0.337903,0.807707,0.330092,0.815518,0.341055,0.820058,0.352017,0.815518,0.344206,0.807707,0.341055,0.809012,0.341055,0.809012,0.341055,0.820058,0.352017,0.815518,0.356558,0.804555,0.345512,0.804555,0.344206,0.807707,0.344206,0.807707,0.352017,0.815518,0.356558,0.804555,0.379435,0.766175,0.352017,0.793593,0.356558,0.804555,0.356558,0.804555,0.395333,0.804555,0.379435,0.766175,0.341055,0.750277,0.341055,0.789052,0.352017,0.793593,0.352017,0.793593,0.379435,0.766175,0.341055,0.750277,0.302674,0.766175,0.330092,0.793593,0.341055,0.789052,0.341055,0.789052,0.341055,0.750277,0.302674,0.766175,0.286777,0.804555,0.325552,0.804555,0.330092,0.793593,0.330092,0.793593,0.302674,0.766175,0.286777,0.804555,0.302675,0.842936,0.330092,0.815518,0.325552,0.804555,0.325552,0.804555,0.286777,0.804555,0.302675,0.842936,0.341055,0.858833,0.341055,0.820058,0.330092,0.815518,0.330092,0.815518,0.302675,0.842936,0.341055,0.858833,0.379435,0.842936,0.352017,0.815518,0.341055,0.820058,0.341055,0.820058,0.341055,0.858833,0.379435,0.842936,0.395333,0.804555,0.356558,0.804555,0.352017,0.815518,0.352017,0.815518,0.379435,0.842936,0.395333,0.804555,0.269699,0.774933,0.014919,0.774800,0.014919,0.798981,0.014919,0.798981,0.269699,0.798981,0.269699,0.774933,0.269699,0.753972,0.014919,0.753784,0.014919,0.774800,0.014919,0.774800,0.269699,0.774933,0.269699,0.753972,0.269699,0.774933,0.014920,0.774800,0.014919,0.753784,0.014919,0.753784,0.269699,0.753972,0.269699,0.774933,0.269699,0.798981,0.014920,0.798981,0.014920,0.774800,0.014920,0.774800,0.269699,0.774933,0.269699,0.798981,0.269699,0.822510,0.014920,0.822643,0.014920,0.798981,0.014920,0.798981,0.269699,0.798981,0.269699,0.822510,0.269699,0.843990,0.014919,0.844178,0.014920,0.822643,0.014920,0.822643,0.269699,0.822510};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_57()
		{
			double[] value = {0.269699,0.843990,0.269699,0.822510,0.014919,0.822643,0.014919,0.844178,0.014919,0.844178,0.269699,0.843990,0.269699,0.822510,0.269699,0.798981,0.014919,0.798981,0.014919,0.822643,0.014919,0.822643,0.269699,0.822510,0.269699,0.798981,0.304886,0.669954,0.274775,0.682427,0.244664,0.669954,0.244664,0.669954,0.232192,0.639843,0.244664,0.609732,0.244664,0.609732,0.274775,0.597260,0.304886,0.609732,0.244664,0.669954,0.244664,0.609732,0.304886,0.609732,0.304886,0.669954,0.244664,0.669954,0.304886,0.609732,0.317359,0.639843,0.304886,0.669954,0.304886,0.609732,0.251896,0.441588,0.251896,0.451432,0.251896,0.461276,0.251896,0.461276,0.251896,0.473055,0.251896,0.482899,0.251896,0.441588,0.251896,0.461276,0.251896,0.482899,0.251896,0.429809,0.251896,0.441588,0.251896,0.482899,0.251896,0.482899,0.251896,0.473055,0.380855,0.473055,0.380855,0.473055,0.380855,0.482899,0.251896,0.482899,0.251896,0.473055,0.251896,0.461276,0.380855,0.461276,0.380855,0.461276,0.380855,0.473055,0.251896,0.473055,0.251896,0.461276,0.251896,0.451432,0.380855,0.451432,0.380855,0.451432,0.380855,0.461276,0.251896,0.461276,0.251896,0.451432,0.251896,0.441588,0.380855,0.441588,0.380855,0.441588,0.380855,0.451432,0.251896,0.451432,0.251896,0.441588,0.251896,0.429809,0.380855,0.429809,0.380855,0.429809,0.380855,0.441588,0.251896,0.441588,0.251896,0.492743,0.251896,0.482899,0.380855,0.482899,0.380855,0.482899,0.380855,0.492743,0.251896,0.492743,0.182393,0.195945,0.182393,0.195945,0.182416,0.209225,0.160650,0.247760,0.154795,0.236821,0.154795,0.236691,0.154795,0.236821,0.142533,0.229777,0.154795,0.236691,0.810116,0.004419,0.804991,0.044304,0.870332,0.005108,0.415415,0.006651,0.415415,0.045667,0.573062,0.045667,0.425761,0.005870,0.415415,0.006651,0.573062,0.045667,0.573062,0.005692,0.425761,0.005870,0.573062,0.045667};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_58()
		{
			double[] value = {0.396146,0.092725,0.397871,0.058454,0.406449,0.057891,0.396146,0.092725,0.406449,0.057891,0.553135,0.057547,0.396146,0.092725,0.553135,0.057547,0.553135,0.092725,0.402160,0.058172,0.402160,0.058172,0.402160,0.058172,0.351206,0.057363,0.351206,0.057363,0.303046,0.056013,0.716231,0.004632,0.650393,0.020380,0.649902,0.044304,0.649902,0.044304,0.711106,0.044304,0.716231,0.004632,0.221328,0.097574,0.230503,0.055560,0.146550,0.082007,0.146550,0.082007,0.146421,0.097719,0.221328,0.097574,0.102678,0.058205,0.042447,0.058620,0.097299,0.084481,0.545305,0.086696,0.627013,0.086744,0.627536,0.077381,0.627536,0.077381,0.545314,0.075131,0.545305,0.086696,0.086544,0.092114,0.156463,0.092290,0.155844,0.046729,0.155844,0.046729,0.087686,0.052210,0.086544,0.092114,0.035465,0.091827,0.086544,0.092114,0.087686,0.052210,0.087686,0.052210,0.033009,0.053445,0.035465,0.091827,0.230503,0.055560,0.216695,0.046403,0.216695,0.046403,0.057324,0.063312,0.058421,0.041146,0.058421,0.041146,0.102247,0.006473,0.158295,0.019452,0.164973,0.037168,0.164973,0.037168,0.106609,0.036247,0.102247,0.006473,0.069717,0.008553,0.102247,0.006473,0.106609,0.036247,0.106609,0.036247,0.062560,0.039077,0.069717,0.008553,0.158678,0.019670,0.102592,0.006217,0.105834,0.036247,0.105834,0.036247,0.165482,0.037168,0.158678,0.019670,0.102592,0.006217,0.069020,0.008590,0.062529,0.038890,0.062529,0.038890,0.105834,0.036247,0.102592,0.006217,0.093009,0.038328,0.125133,0.038310,0.125231,0.073421,0.125231,0.073421,0.085511,0.076432,0.093009,0.038328,0.228244,0.005117,0.263497,0.005047,0.263648,0.045450,0.263648,0.045450,0.228236,0.045363,0.228244,0.005117,0.253899,0.218088,0.224673,0.243530,0.219633,0.222472,0.219633,0.222472,0.218557,0.213536,0.253899,0.218088,0.253899,0.218088,0.281133,0.233488,0.261166,0.236089,0.261166,0.236089};
			return value;
		}
		private double[] getTextureCoordinate_7_21_point_59()
		{
			double[] value = {0.224673,0.243530,0.253899,0.218088,0.182416,0.209225,0.182393,0.195945,0.218349,0.198780,0.154795,0.236821,0.142533,0.229777,0.182416,0.209225,0.182416,0.209225,0.183660,0.217030,0.154795,0.236821,0.183660,0.217030,0.160650,0.247760,0.154795,0.236821,0.623371,0.673847,0.602313,0.715963,0.560197,0.715963,0.560197,0.715963,0.539139,0.673847,0.560197,0.631731,0.623371,0.673847,0.560197,0.715963,0.560197,0.631731,0.602313,0.631731,0.623371,0.673847,0.560197,0.631731};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getMi24_1_GEOMETRY_6_25_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,114,115,116,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,147,148,149,-1,150,151,152,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,162,163,164,-1,165,166,167,-1,168,169,170,-1,171,172,173,-1,174,175,176,-1,177,178,179,-1,180,181,182,-1,183,184,185,-1,186,187,188,-1,189,190,191,-1,192,193,194,-1,195,196,197,-1,198,199,200,-1,201,202,203,-1,204,205,206,-1,207,208,209,-1,210,211,212,-1,213,214,215,-1,216,217,218,-1,219,220,221,-1,222,223,224,-1,225,226,227,-1,228,229,230,-1,231,232,233,-1,234,235,236,-1,237,238,239,-1,240,241,242,-1,243,244,245,-1,246,247,248,-1,249,250,251,-1,252,253,254,-1,255,256,257,-1,258,259,260,-1,261,262,263,-1,264,265,266,-1,267,268,269,-1,270,271,272,-1,273,274,275,-1,276,277,278,-1,279,280,281,-1,282,283,284,-1,285,286,287,-1,288,289,290,-1,291,292,293,-1,294,295,296,-1,297,298,299,-1,300,301,302,-1,303,304,305,-1,306,307,308,-1,309,310,311,-1,312,313,314,-1,315,316,317,-1,318,319,320,-1,321,322,323,-1,324,325,326,-1,327,328,329,-1,330,331,332,-1,333,334,335,-1,336,337,338,-1,339,340,341,-1,342,343,344,-1,345,346,347,-1,348,349,350,-1,351,352,353,-1,354,355,356,-1,357,358,359,-1,360,361,362,-1,363,364,365,-1,366,367,368,-1,369,370,371,-1,372,373,374,-1,375,376,377,-1,378,379,380,-1,381,382,383,-1,384,385,386,-1,387,388,389,-1,390,391,392,-1,393,394,395,-1,396,397,398,-1,399,400,401,-1,402,403,404,-1,405,406,407,-1,408,409,410,-1,411,412,413,-1,414,415,416,-1,417,418,419,-1,420,421,422,-1,423,424,425,-1,426,427,428,-1,429,430,431,-1,432,433,434,-1,435,436,437,-1,438,439,440,-1,441,442,443,-1,444,445,446,-1,447,448,449,-1,450,451,452,-1,453,454,455,-1,456,457,458,-1,459,460,461,-1,462,463,464,-1,465,466,467,-1,468,469,470,-1,471,472,473,-1,474,475,476,-1,477,478,479,-1,480,481,482,-1,483,484,485,-1,486,487,488,-1,489,490,491,-1,492,493,494,-1,495,496,497,-1,498,499,500,-1,501,502,503,-1,504,505,506,-1,507,508,509,-1,510,511,512,-1,513,514,515,-1,516,517,518,-1,519,520,521,-1,522,523,524,-1,525,526,527,-1,528,529,530,-1,531,532,533,-1,534,535,536,-1,537,538,539,-1,540,541,542,-1,543,544,545,-1,546,547,548,-1,549,550,551,-1,552,553,554,-1,555,556,557,-1,558,559,560,-1,561,562,563,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getMi24_1_GEOMETRY_6_25_normalIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,114,115,116,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,147,148,149,-1,150,151,152,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,162,163,164,-1,165,166,167,-1,168,169,170,-1,171,172,173,-1,174,175,176,-1,177,178,179,-1,180,181,182,-1,183,184,185,-1,186,187,188,-1,189,190,191,-1,192,193,194,-1,195,196,197,-1,198,199,200,-1,201,202,203,-1,204,205,206,-1,207,208,209,-1,210,211,212,-1,213,214,215,-1,216,217,218,-1,219,220,221,-1,222,223,224,-1,225,226,227,-1,228,229,230,-1,231,232,233,-1,234,235,236,-1,237,238,239,-1,240,241,242,-1,243,244,245,-1,246,247,248,-1,249,250,251,-1,252,253,254,-1,255,256,257,-1,258,259,260,-1,261,262,263,-1,264,265,266,-1,267,268,269,-1,270,271,272,-1,273,274,275,-1,276,277,278,-1,279,280,281,-1,282,283,284,-1,285,286,287,-1,288,289,290,-1,291,292,293,-1,294,295,296,-1,297,298,299,-1,300,301,302,-1,303,304,305,-1,306,307,308,-1,309,310,311,-1,312,313,314,-1,315,316,317,-1,318,319,320,-1,321,322,323,-1,324,325,326,-1,327,328,329,-1,330,331,332,-1,333,334,335,-1,336,337,338,-1,339,340,341,-1,342,343,344,-1,345,346,347,-1,348,349,350,-1,351,352,353,-1,354,355,356,-1,357,358,359,-1,360,361,362,-1,363,364,365,-1,366,367,368,-1,369,370,371,-1,372,373,374,-1,375,376,377,-1,378,379,380,-1,381,382,383,-1,384,385,386,-1,387,388,389,-1,390,391,392,-1,393,394,395,-1,396,397,398,-1,399,400,401,-1,402,403,404,-1,405,406,407,-1,408,409,410,-1,411,412,413,-1,414,415,416,-1,417,418,419,-1,420,421,422,-1,423,424,425,-1,426,427,428,-1,429,430,431,-1,432,433,434,-1,435,436,437,-1,438,439,440,-1,441,442,443,-1,444,445,446,-1,447,448,449,-1,450,451,452,-1,453,454,455,-1,456,457,458,-1,459,460,461,-1,462,463,464,-1,465,466,467,-1,468,469,470,-1,471,472,473,-1,474,475,476,-1,477,478,479,-1,480,481,482,-1,483,484,485,-1,486,487,488,-1,489,490,491,-1,492,493,494,-1,495,496,497,-1,498,499,500,-1,501,502,503,-1,504,505,506,-1,507,508,509,-1,510,511,512,-1,513,514,515,-1,516,517,518,-1,519,520,521,-1,522,523,524,-1,525,526,527,-1,528,529,530,-1,531,532,533,-1,534,535,536,-1,537,538,539,-1,540,541,542,-1,543,544,545,-1,546,547,548,-1,549,550,551,-1,552,553,554,-1,555,556,557,-1,558,559,560,-1,561,562,563,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getMi24_1_GEOMETRY_6_25_texCoordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,114,115,116,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,147,148,149,-1,150,151,152,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,162,163,164,-1,165,166,167,-1,168,169,170,-1,171,172,173,-1,174,175,176,-1,177,178,179,-1,180,181,182,-1,183,184,185,-1,186,187,188,-1,189,190,191,-1,192,193,194,-1,195,196,197,-1,198,199,200,-1,201,202,203,-1,204,205,206,-1,207,208,209,-1,210,211,212,-1,213,214,215,-1,216,217,218,-1,219,220,221,-1,222,223,224,-1,225,226,227,-1,228,229,230,-1,231,232,233,-1,234,235,236,-1,237,238,239,-1,240,241,242,-1,243,244,245,-1,246,247,248,-1,249,250,251,-1,252,253,254,-1,255,256,257,-1,258,259,260,-1,261,262,263,-1,264,265,266,-1,267,268,269,-1,270,271,272,-1,273,274,275,-1,276,277,278,-1,279,280,281,-1,282,283,284,-1,285,286,287,-1,288,289,290,-1,291,292,293,-1,294,295,296,-1,297,298,299,-1,300,301,302,-1,303,304,305,-1,306,307,308,-1,309,310,311,-1,312,313,314,-1,315,316,317,-1,318,319,320,-1,321,322,323,-1,324,325,326,-1,327,328,329,-1,330,331,332,-1,333,334,335,-1,336,337,338,-1,339,340,341,-1,342,343,344,-1,345,346,347,-1,348,349,350,-1,351,352,353,-1,354,355,356,-1,357,358,359,-1,360,361,362,-1,363,364,365,-1,366,367,368,-1,369,370,371,-1,372,373,374,-1,375,376,377,-1,378,379,380,-1,381,382,383,-1,384,385,386,-1,387,388,389,-1,390,391,392,-1,393,394,395,-1,396,397,398,-1,399,400,401,-1,402,403,404,-1,405,406,407,-1,408,409,410,-1,411,412,413,-1,414,415,416,-1,417,418,419,-1,420,421,422,-1,423,424,425,-1,426,427,428,-1,429,430,431,-1,432,433,434,-1,435,436,437,-1,438,439,440,-1,441,442,443,-1,444,445,446,-1,447,448,449,-1,450,451,452,-1,453,454,455,-1,456,457,458,-1,459,460,461,-1,462,463,464,-1,465,466,467,-1,468,469,470,-1,471,472,473,-1,474,475,476,-1,477,478,479,-1,480,481,482,-1,483,484,485,-1,486,487,488,-1,489,490,491,-1,492,493,494,-1,495,496,497,-1,498,499,500,-1,501,502,503,-1,504,505,506,-1,507,508,509,-1,510,511,512,-1,513,514,515,-1,516,517,518,-1,519,520,521,-1,522,523,524,-1,525,526,527,-1,528,529,530,-1,531,532,533,-1,534,535,536,-1,537,538,539,-1,540,541,542,-1,543,544,545,-1,546,547,548,-1,549,550,551,-1,552,553,554,-1,555,556,557,-1,558,559,560,-1,561,562,563,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_7_25_point_1()
		{
			double[] value = {-0.365866,-0.699174,-3.923532,-0.448276,-0.467054,-3.776039,-0.284298,-0.467982,-3.791280,-0.365866,-0.699174,-3.923532,-0.284298,-0.467982,-3.791280,-0.163682,-0.616787,-3.828074,-0.365866,-0.699174,-3.923532,-0.163682,-0.616787,-3.828074,-0.157083,-0.826301,-3.864868,-0.365866,-0.699174,-3.923532,-0.157083,-0.826301,-3.864868,-0.268366,-0.973794,-3.880109,-0.365866,-0.699174,-3.923532,-0.268366,-0.973794,-3.880109,-0.432344,-0.972866,-3.864868,-0.365866,-0.699174,-3.923532,-0.432344,-0.972866,-3.864868,-0.552960,-0.824060,-3.828074,-0.365866,-0.699174,-3.923532,-0.552960,-0.824060,-3.828074,-0.559559,-0.614547,-3.791280,-0.365866,-0.699174,-3.923532,-0.559559,-0.614547,-3.791280,-0.448276,-0.467054,-3.776039,-0.256390,-0.416521,-3.558017,-0.284298,-0.467982,-3.791280,-0.448276,-0.467054,-3.776039,-0.448276,-0.467054,-3.776039,-0.474722,-0.417656,-3.526895,-0.256390,-0.416521,-3.558017,-0.097209,-0.609681,-3.617041,-0.163682,-0.616787,-3.828074,-0.284298,-0.467982,-3.791280,-0.284298,-0.467982,-3.791280,-0.256390,-0.416521,-3.558017,-0.097209,-0.609681,-3.617041,-0.090424,-0.883987,-3.692181,-0.157083,-0.826301,-3.864868,-0.163682,-0.616787,-3.828074,-0.163682,-0.616787,-3.828074,-0.097209,-0.609681,-3.617041,-0.090424,-0.883987,-3.692181,-0.240011,-1.078753,-3.723305,-0.268366,-0.973794,-3.880109,-0.157083,-0.826301,-3.864868,-0.157083,-0.826301,-3.864868,-0.090424,-0.883987,-3.692181,-0.240011,-1.078753,-3.723305,-0.458344,-1.079888,-3.692181,-0.432344,-0.972866,-3.864868,-0.268366,-0.973794,-3.880109,-0.268366,-0.973794,-3.880109,-0.240011,-1.078753,-3.723305,-0.458344,-1.079888,-3.692181,-0.617525,-0.886728,-3.617043,-0.552960,-0.824060,-3.828074,-0.432344,-0.972866,-3.864868,-0.432344,-0.972866,-3.864868,-0.458344,-1.079888,-3.692181,-0.617525,-0.886728,-3.617043,-0.624309,-0.612422,-3.541903,-0.559559,-0.614547,-3.791280,-0.552960,-0.824060,-3.828074,-0.552960,-0.824060,-3.828074,-0.617525,-0.886728,-3.617043,-0.624309,-0.612422,-3.541903,-0.474722,-0.417656,-3.526895,-0.448276,-0.467054,-3.776039,-0.559559,-0.614547,-3.791280,-0.559559,-0.614547,-3.791280,-0.624309,-0.612422,-3.541903,-0.474722,-0.417656,-3.526895,-0.226515,-0.336344,-3.370642,-0.256390,-0.416521,-3.558017,-0.474722,-0.417656,-3.526895,-0.474722,-0.417656,-3.526895,-0.510060,-0.338646,-3.330445,-0.226515,-0.336344,-3.370642,-0.020282,-0.585464,-3.445580,-0.097209,-0.609681,-3.617041,-0.256390,-0.416521,-3.558017,-0.256390,-0.416521,-3.558017,-0.226515,-0.336344,-3.370642,-0.020282,-0.585464,-3.445580,-0.012170,-0.940075,-3.536508,-0.090424,-0.883987,-3.692181,-0.097209,-0.609681,-3.617041,-0.097209,-0.609681,-3.617041,-0.020282,-0.585464,-3.445580,-0.012170,-0.940075,-3.536508,-0.206931,-1.192451,-3.604921,-0.240011,-1.078753,-3.723305,-0.090424,-0.883987,-3.692181,-0.090424,-0.883987,-3.692181,-0.012170,-0.940075,-3.536508,-0.206931,-1.192451,-3.604921,-0.490477,-1.194753,-3.564725,-0.458344,-1.079888,-3.692181,-0.240011,-1.078753,-3.723305,-0.240011,-1.078753,-3.723305};
			return value;
		}
		private double[] getCoordinate_7_25_point_2()
		{
			double[] value = {-0.206931,-1.192451,-3.604921,-0.490477,-1.194753,-3.564725,-0.696709,-0.945633,-3.491896,-0.617525,-0.886728,-3.617043,-0.458344,-1.079888,-3.692181,-0.458344,-1.079888,-3.692181,-0.490477,-1.194753,-3.564725,-0.696709,-0.945633,-3.491896,-0.704821,-0.591022,-3.396940,-0.624309,-0.612422,-3.541903,-0.617525,-0.886728,-3.617043,-0.617525,-0.886728,-3.617043,-0.696709,-0.945633,-3.491896,-0.704821,-0.591022,-3.396940,-0.510060,-0.338646,-3.330445,-0.474722,-0.417656,-3.526895,-0.624309,-0.612422,-3.541903,-0.624309,-0.612422,-3.541903,-0.704821,-0.591022,-3.396940,-0.510060,-0.338646,-3.330445,0.462843,-0.467054,-3.776039,0.380433,-0.699174,-3.923532,0.298866,-0.467982,-3.791280,0.298866,-0.467982,-3.791280,0.380433,-0.699174,-3.923532,0.178250,-0.616787,-3.828074,0.178250,-0.616787,-3.828074,0.380433,-0.699174,-3.923532,0.171651,-0.826301,-3.864868,0.171651,-0.826301,-3.864868,0.380433,-0.699174,-3.923532,0.282934,-0.973794,-3.880109,0.282934,-0.973794,-3.880109,0.380433,-0.699174,-3.923532,0.446911,-0.972866,-3.864868,0.446911,-0.972866,-3.864868,0.380433,-0.699174,-3.923532,0.567527,-0.824060,-3.828074,0.567527,-0.824060,-3.828074,0.380433,-0.699174,-3.923532,0.574126,-0.614547,-3.791281,0.574126,-0.614547,-3.791281,0.380433,-0.699174,-3.923532,0.462843,-0.467054,-3.776039,0.462843,-0.467054,-3.776039,0.298866,-0.467982,-3.791280,0.270958,-0.416521,-3.558017,0.270958,-0.416521,-3.558017,0.489290,-0.417656,-3.526895,0.462843,-0.467054,-3.776039,0.298866,-0.467982,-3.791280,0.178250,-0.616787,-3.828074,0.111776,-0.609681,-3.617043,0.111776,-0.609681,-3.617043,0.270958,-0.416521,-3.558017,0.298866,-0.467982,-3.791280,0.178250,-0.616787,-3.828074,0.171651,-0.826301,-3.864868,0.104992,-0.883987,-3.692181,0.104992,-0.883987,-3.692181,0.111776,-0.609681,-3.617043,0.178250,-0.616787,-3.828074,0.171651,-0.826301,-3.864868,0.282934,-0.973794,-3.880109,0.254579,-1.078753,-3.723305,0.254579,-1.078753,-3.723305,0.104992,-0.883987,-3.692181,0.171651,-0.826301,-3.864868,0.282934,-0.973794,-3.880109,0.446911,-0.972866,-3.864868,0.472911,-1.079888,-3.692181,0.472911,-1.079888,-3.692181,0.254579,-1.078753,-3.723305,0.282934,-0.973794,-3.880109,0.446911,-0.972866,-3.864868,0.567527,-0.824060,-3.828074,0.632093,-0.886728,-3.617043,0.632093,-0.886728,-3.617043,0.472911,-1.079888,-3.692181,0.446911,-0.972866,-3.864868,0.567527,-0.824060,-3.828074,0.574126,-0.614547,-3.791281,0.638877,-0.612422,-3.541903,0.638877,-0.612422,-3.541903,0.632093,-0.886728,-3.617043,0.567527,-0.824060,-3.828074,0.574126,-0.614547,-3.791281,0.462843,-0.467054,-3.776039,0.489290,-0.417656,-3.526895,0.489290,-0.417656,-3.526895,0.638877,-0.612422,-3.541903,0.574126,-0.614547,-3.791281,0.489290,-0.417656,-3.526895,0.270958,-0.416521,-3.558017,0.241083,-0.336344,-3.370642,0.241083,-0.336344,-3.370642,0.524628,-0.338646,-3.330445,0.489290,-0.417656,-3.526895,0.270958,-0.416521,-3.558017,0.111776,-0.609681,-3.617043};
			return value;
		}
		private double[] getCoordinate_7_25_point_3()
		{
			double[] value = {0.034850,-0.585464,-3.445580,0.034850,-0.585464,-3.445580,0.241083,-0.336344,-3.370642,0.270958,-0.416521,-3.558017,0.111776,-0.609681,-3.617043,0.104992,-0.883987,-3.692181,0.026738,-0.940075,-3.536508,0.026738,-0.940075,-3.536508,0.034850,-0.585464,-3.445580,0.111776,-0.609681,-3.617043,0.104992,-0.883987,-3.692181,0.254579,-1.078753,-3.723305,0.221499,-1.192451,-3.604921,0.221499,-1.192451,-3.604921,0.026738,-0.940075,-3.536508,0.104992,-0.883987,-3.692181,0.254579,-1.078753,-3.723305,0.472911,-1.079888,-3.692181,0.505044,-1.194753,-3.564725,0.505044,-1.194753,-3.564725,0.221499,-1.192451,-3.604921,0.254579,-1.078753,-3.723305,0.472911,-1.079888,-3.692181,0.632093,-0.886728,-3.617043,0.711277,-0.945633,-3.491896,0.711277,-0.945633,-3.491896,0.505044,-1.194753,-3.564725,0.472911,-1.079888,-3.692181,0.632093,-0.886728,-3.617043,0.638877,-0.612422,-3.541903,0.719389,-0.591022,-3.396940,0.719389,-0.591022,-3.396940,0.711277,-0.945633,-3.491896,0.632093,-0.886728,-3.617043,0.638877,-0.612422,-3.541903,0.489290,-0.417656,-3.526895,0.524628,-0.338646,-3.330445,0.524628,-0.338646,-3.330445,0.719389,-0.591022,-3.396940,0.638877,-0.612422,-3.541903,-0.385077,-1.157255,-0.582776,-0.957689,-1.184767,-0.518169,-1.009973,-1.186466,-0.834143,-1.009973,-1.186466,-0.834143,-0.439410,-1.159162,-0.936970,-0.385077,-1.157255,-0.582776,-0.957689,-1.184767,-0.518169,-0.967332,-1.139691,-0.536198,-1.013439,-1.141190,-0.814838,-1.013439,-1.141190,-0.814838,-1.009973,-1.186466,-0.834143,-0.957689,-1.184767,-0.518169,-0.967332,-1.139691,-0.536198,-0.395098,-1.106727,-0.602984,-0.443011,-1.108408,-0.915329,-0.443011,-1.108408,-0.915329,-1.013439,-1.141190,-0.814838,-0.967332,-1.139691,-0.536198,-0.439410,-1.159162,-0.936970,-1.009973,-1.186466,-0.834143,-1.079440,-0.963696,-1.054402,-1.079440,-0.963696,-1.054402,-0.511019,-0.913736,-1.183932,-0.439410,-1.159162,-0.936970,-1.009973,-1.186466,-0.834143,-1.013439,-1.141190,-0.814838,-1.074698,-0.944741,-1.009072,-1.074698,-0.944741,-1.009072,-1.079440,-0.963696,-1.054402,-1.009973,-1.186466,-0.834143,-1.013439,-1.141190,-0.814838,-0.443011,-1.108408,-0.915329,-0.506091,-0.892488,-1.133119,-0.506091,-0.892488,-1.133119,-1.074698,-0.944741,-1.009072,-1.013439,-1.141190,-0.814838,-0.511019,-0.913736,-1.183932,-1.079440,-0.963696,-1.054402,-1.125396,-0.646950,-1.049924,-1.125396,-0.646950,-1.049924,-0.558774,-0.558676,-1.178910,-0.511019,-0.913736,-1.183932,-1.079440,-0.963696,-1.054402,-1.074698,-0.944741,-1.009072,-1.115224,-0.665421,-1.005122,-1.115224,-0.665421,-1.005122,-1.125396,-0.646950,-1.049924,-1.079440,-0.963696,-1.054402,-1.074698,-0.944741,-1.009072,-0.506091,-0.892488,-1.133119,-0.548204,-0.579381,-1.128689,-0.548204,-0.579381,-1.128689,-1.115224,-0.665421,-1.005122,-1.074698,-0.944741,-1.009072,-0.558774,-0.558676,-1.178910,-1.125396,-0.646950,-1.049924,-1.120922,-0.421776,-0.823328,-1.120922,-0.421776,-0.823328,-0.554123,-0.306263,-0.924906,-0.558774,-0.558676,-1.178910};
			return value;
		}
		private double[] getCoordinate_7_25_point_4()
		{
			double[] value = {-1.125396,-0.646950,-1.049924,-1.115224,-0.665421,-1.005122,-1.111278,-0.466851,-0.805300,-1.111278,-0.466851,-0.805300,-1.120922,-0.421776,-0.823328,-1.125396,-0.646950,-1.049924,-1.115224,-0.665421,-1.005122,-0.548204,-0.579381,-1.128689,-0.544102,-0.356791,-0.904697,-0.544102,-0.356791,-0.904697,-1.111278,-0.466851,-0.805300,-1.115224,-0.665421,-1.005122,-0.554123,-0.306263,-0.924906,-1.120922,-0.421776,-0.823328,-1.068638,-0.420076,-0.507355,-1.068638,-0.420076,-0.507355,-0.500367,-0.300066,-0.570650,-0.554123,-0.306263,-0.924906,-1.120922,-0.421776,-0.823328,-1.111278,-0.466851,-0.805300,-1.065172,-0.465353,-0.526660,-1.065172,-0.465353,-0.526660,-1.068638,-0.420076,-0.507355,-1.120922,-0.421776,-0.823328,-1.111278,-0.466851,-0.805300,-0.544102,-0.356791,-0.904697,-0.496766,-0.350819,-0.592292,-0.496766,-0.350819,-0.592292,-1.065172,-0.465353,-0.526660,-1.111278,-0.466851,-0.805300,-0.500367,-0.300066,-0.570650,-1.068638,-0.420076,-0.507355,-0.999171,-0.642847,-0.287095,-0.999171,-0.642847,-0.287095,-0.428181,-0.549783,-0.323749,-0.500367,-0.300066,-0.570650,-1.068638,-0.420076,-0.507355,-1.065172,-0.465353,-0.526660,-1.003913,-0.661802,-0.332426,-1.003913,-0.661802,-0.332426,-0.999171,-0.642847,-0.287095,-1.068638,-0.420076,-0.507355,-1.065172,-0.465353,-0.526660,-0.496766,-0.350819,-0.592292,-0.433109,-0.571031,-0.374563,-0.433109,-0.571031,-0.374563,-1.003913,-0.661802,-0.332426,-1.065172,-0.465353,-0.526660,-0.428181,-0.549783,-0.323749,-0.999171,-0.642847,-0.287095,-0.953214,-0.959592,-0.291575,-0.953214,-0.959592,-0.291575,-0.380426,-0.904842,-0.328771,-0.428181,-0.549783,-0.323749,-0.999171,-0.642847,-0.287095,-1.003913,-0.661802,-0.332426,-0.963387,-0.941122,-0.336376,-0.963387,-0.941122,-0.336376,-0.953214,-0.959592,-0.291575,-0.999171,-0.642847,-0.287095,-1.003913,-0.661802,-0.332426,-0.433109,-0.571031,-0.374563,-0.390996,-0.884138,-0.378992,-0.390996,-0.884138,-0.378992,-0.963387,-0.941122,-0.336376,-1.003913,-0.661802,-0.332426,-0.380426,-0.904842,-0.328771,-0.953214,-0.959592,-0.291575,-0.957689,-1.184767,-0.518169,-0.957689,-1.184767,-0.518169,-0.385077,-1.157255,-0.582776,-0.380426,-0.904842,-0.328771,-0.953214,-0.959592,-0.291575,-0.963387,-0.941122,-0.336376,-0.967332,-1.139691,-0.536198,-0.967332,-1.139691,-0.536198,-0.957689,-1.184767,-0.518169,-0.953214,-0.959592,-0.291575,-0.963387,-0.941122,-0.336376,-0.390996,-0.884138,-0.378992,-0.395098,-1.106727,-0.602984,-0.395098,-1.106727,-0.602984,-0.967332,-1.139691,-0.536198,-0.963387,-0.941122,-0.336376,-0.433109,-0.571031,-0.374563,-0.496766,-0.350819,-0.592292,-0.544102,-0.356791,-0.904697,-0.544102,-0.356791,-0.904697,-0.548204,-0.579381,-1.128689,-0.433109,-0.571031,-0.374563,-0.390996,-0.884138,-0.378992,-0.433109,-0.571031,-0.374563,-0.548204,-0.579381,-1.128689,-0.548204,-0.579381,-1.128689,-0.506091,-0.892488,-1.133119,-0.390996,-0.884138,-0.378992,-0.395098,-1.106727,-0.602984,-0.390996,-0.884138,-0.378992,-0.506091,-0.892488,-1.133119,-0.506091,-0.892488,-1.133119};
			return value;
		}
		private double[] getCoordinate_7_25_point_5()
		{
			double[] value = {-0.443011,-1.108408,-0.915329,-0.395098,-1.106727,-0.602984,1.009535,-1.186466,-0.834143,0.957251,-1.184767,-0.518169,0.384639,-1.157255,-0.582776,0.384639,-1.157255,-0.582776,0.438971,-1.159162,-0.936970,1.009535,-1.186466,-0.834143,1.013001,-1.141190,-0.814838,0.966894,-1.139691,-0.536198,0.957251,-1.184767,-0.518169,0.957251,-1.184767,-0.518169,1.009535,-1.186466,-0.834143,1.013001,-1.141190,-0.814838,0.442573,-1.108408,-0.915329,0.394660,-1.106727,-0.602984,0.966894,-1.139691,-0.536198,0.966894,-1.139691,-0.536198,1.013001,-1.141190,-0.814838,0.442573,-1.108408,-0.915329,1.079002,-0.963696,-1.054402,1.009535,-1.186466,-0.834143,0.438971,-1.159162,-0.936970,0.438971,-1.159162,-0.936970,0.510581,-0.913736,-1.183932,1.079002,-0.963696,-1.054402,1.074260,-0.944741,-1.009072,1.013001,-1.141190,-0.814838,1.009535,-1.186466,-0.834143,1.009535,-1.186466,-0.834143,1.079002,-0.963696,-1.054402,1.074260,-0.944741,-1.009072,0.505653,-0.892488,-1.133119,0.442573,-1.108408,-0.915329,1.013001,-1.141190,-0.814838,1.013001,-1.141190,-0.814838,1.074260,-0.944741,-1.009072,0.505653,-0.892488,-1.133119,1.124958,-0.646950,-1.049922,1.079002,-0.963696,-1.054402,0.510581,-0.913736,-1.183932,0.510581,-0.913736,-1.183932,0.558336,-0.558676,-1.178910,1.124958,-0.646950,-1.049922,1.114786,-0.665420,-1.005120,1.074260,-0.944741,-1.009072,1.079002,-0.963696,-1.054402,1.079002,-0.963696,-1.054402,1.124958,-0.646950,-1.049922,1.114786,-0.665420,-1.005120,0.547765,-0.579381,-1.128689,0.505653,-0.892488,-1.133119,1.074260,-0.944741,-1.009072,1.074260,-0.944741,-1.009072,1.114786,-0.665420,-1.005120,0.547765,-0.579381,-1.128689,1.120484,-0.421775,-0.823328,1.124958,-0.646950,-1.049922,0.558336,-0.558676,-1.178910,0.558336,-0.558676,-1.178910,0.553685,-0.306263,-0.924905,1.120484,-0.421775,-0.823328,1.110840,-0.466851,-0.805300,1.114786,-0.665420,-1.005120,1.124958,-0.646950,-1.049922,1.124958,-0.646950,-1.049922,1.120484,-0.421775,-0.823328,1.110840,-0.466851,-0.805300,0.543664,-0.356791,-0.904697,0.547765,-0.579381,-1.128689,1.114786,-0.665420,-1.005120,1.114786,-0.665420,-1.005120,1.110840,-0.466851,-0.805300,0.543664,-0.356791,-0.904697,1.068200,-0.420076,-0.507355,1.120484,-0.421775,-0.823328,0.553685,-0.306263,-0.924905,0.553685,-0.306263,-0.924905,0.499929,-0.300066,-0.570650,1.068200,-0.420076,-0.507355,1.064734,-0.465353,-0.526660,1.110840,-0.466851,-0.805300,1.120484,-0.421775,-0.823328,1.120484,-0.421775,-0.823328,1.068200,-0.420076,-0.507355,1.064734,-0.465353,-0.526660,0.496328,-0.350819,-0.592292,0.543664,-0.356791,-0.904697,1.110840,-0.466851,-0.805300,1.110840,-0.466851,-0.805300,1.064734,-0.465353,-0.526660,0.496328,-0.350819,-0.592292,0.998733,-0.642847,-0.287095,1.068200,-0.420076,-0.507355,0.499929,-0.300066,-0.570650,0.499929,-0.300066,-0.570650,0.427743,-0.549783,-0.323749,0.998733,-0.642847,-0.287095,1.003475,-0.661802,-0.332425,1.064734,-0.465353,-0.526660};
			return value;
		}
		private double[] getCoordinate_7_25_point_6()
		{
			double[] value = {1.068200,-0.420076,-0.507355,1.068200,-0.420076,-0.507355,0.998733,-0.642847,-0.287095,1.003475,-0.661802,-0.332425,0.432671,-0.571031,-0.374563,0.496328,-0.350819,-0.592292,1.064734,-0.465353,-0.526660,1.064734,-0.465353,-0.526660,1.003475,-0.661802,-0.332425,0.432671,-0.571031,-0.374563,0.952776,-0.959592,-0.291575,0.998733,-0.642847,-0.287095,0.427743,-0.549783,-0.323749,0.427743,-0.549783,-0.323749,0.379988,-0.904842,-0.328771,0.952776,-0.959592,-0.291575,0.962948,-0.941122,-0.336376,1.003475,-0.661802,-0.332425,0.998733,-0.642847,-0.287095,0.998733,-0.642847,-0.287095,0.952776,-0.959592,-0.291575,0.962948,-0.941122,-0.336376,0.390558,-0.884138,-0.378992,0.432671,-0.571031,-0.374563,1.003475,-0.661802,-0.332425,1.003475,-0.661802,-0.332425,0.962948,-0.941122,-0.336376,0.390558,-0.884138,-0.378992,0.957251,-1.184767,-0.518169,0.952776,-0.959592,-0.291575,0.379988,-0.904842,-0.328771,0.379988,-0.904842,-0.328771,0.384639,-1.157255,-0.582776,0.957251,-1.184767,-0.518169,0.966894,-1.139691,-0.536198,0.962948,-0.941122,-0.336376,0.952776,-0.959592,-0.291575,0.952776,-0.959592,-0.291575,0.957251,-1.184767,-0.518169,0.966894,-1.139691,-0.536198,0.394660,-1.106727,-0.602984,0.390558,-0.884138,-0.378992,0.962948,-0.941122,-0.336376,0.962948,-0.941122,-0.336376,0.966894,-1.139691,-0.536198,0.394660,-1.106727,-0.602984,0.543664,-0.356791,-0.904697,0.496328,-0.350819,-0.592292,0.432671,-0.571031,-0.374563,0.432671,-0.571031,-0.374563,0.547765,-0.579381,-1.128689,0.543664,-0.356791,-0.904697,0.547765,-0.579381,-1.128689,0.432671,-0.571031,-0.374563,0.390558,-0.884138,-0.378992,0.390558,-0.884138,-0.378992,0.505653,-0.892488,-1.133119,0.547765,-0.579381,-1.128689,0.505653,-0.892488,-1.133119,0.390558,-0.884138,-0.378992,0.394660,-1.106727,-0.602984,0.394660,-1.106727,-0.602984,0.442573,-1.108408,-0.915329,0.505653,-0.892488,-1.133119};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_7_26_vector_1()
		{
			double[] value = {-0.087424,0.175381,-0.980611,-0.378515,0.762885,-0.524149,0.287646,0.778279,-0.558160,-0.087424,0.175381,-0.980611,0.287646,0.778279,-0.558160,0.684597,0.380324,-0.621836,-0.087424,0.175381,-0.980611,0.684597,0.380324,-0.621836,0.689216,-0.108523,-0.716383,-0.087424,0.175381,-0.980611,0.689216,-0.108523,-0.716383,0.279436,-0.530977,-0.799987,-0.087424,0.175381,-0.980611,0.279436,-0.530977,-0.799987,-0.385646,-0.528881,-0.756017,-0.087424,0.175381,-0.980611,-0.385646,-0.528881,-0.756017,-0.761579,-0.145513,-0.631525,-0.087424,0.175381,-0.980611,-0.761579,-0.145513,-0.631525,-0.769480,0.328332,-0.547813,-0.087424,0.175381,-0.980611,-0.769480,0.328332,-0.547813,-0.378515,0.762885,-0.524149,0.349881,0.873205,-0.339258,0.287646,0.778279,-0.558160,-0.378515,0.762885,-0.524149,-0.378515,0.762885,-0.524149,-0.420369,0.840647,-0.341470,0.349881,0.873205,-0.339258,0.842566,0.401665,-0.358813,0.684597,0.380324,-0.621836,0.287646,0.778279,-0.558160,0.287646,0.778279,-0.558160,0.349881,0.873205,-0.339258,0.842566,0.401665,-0.358813,0.867657,-0.182668,-0.462389,0.689216,-0.108523,-0.716383,0.684597,0.380324,-0.621836,0.684597,0.380324,-0.621836,0.842566,0.401665,-0.358813,0.867657,-0.182668,-0.462389,0.361057,-0.689732,-0.627620,0.279436,-0.530977,-0.799987,0.689216,-0.108523,-0.716383,0.689216,-0.108523,-0.716383,0.867657,-0.182668,-0.462389,0.361057,-0.689732,-0.627620,-0.446746,-0.657865,-0.606327,-0.385646,-0.528881,-0.756017,0.279436,-0.530977,-0.799987,0.279436,-0.530977,-0.799987,0.361057,-0.689732,-0.627620,-0.446746,-0.657865,-0.606327,-0.864770,-0.185068,-0.466822,-0.761579,-0.145513,-0.631525,-0.385646,-0.528881,-0.756017,-0.385646,-0.528881,-0.756017,-0.446746,-0.657865,-0.606327,-0.864770,-0.185068,-0.466822,-0.854663,0.357626,-0.376369,-0.769480,0.328332,-0.547813,-0.761579,-0.145513,-0.631525,-0.761579,-0.145513,-0.631525,-0.864770,-0.185068,-0.466822,-0.854663,0.357626,-0.376369,-0.420369,0.840647,-0.341470,-0.378515,0.762885,-0.524149,-0.769480,0.328332,-0.547813,-0.769480,0.328332,-0.547813,-0.854663,0.357626,-0.376369,-0.420369,0.840647,-0.341470,0.261704,0.871855,-0.413979,0.349881,0.873205,-0.339258,-0.420369,0.840647,-0.341470,-0.420369,0.840647,-0.341470,-0.386035,0.819919,-0.422741,0.261704,0.871855,-0.413979,0.792091,0.447835,-0.414771,0.842566,0.401665,-0.358813,0.349881,0.873205,-0.339258,0.349881,0.873205,-0.339258,0.261704,0.871855,-0.413979,0.792091,0.447835,-0.414771,0.850556,-0.144661,-0.505596,0.867657,-0.182668,-0.462389,0.842566,0.401665,-0.358813,0.842566,0.401665,-0.358813,0.792091,0.447835,-0.414771,0.850556,-0.144661,-0.505596,0.318328,-0.651977,-0.688182,0.361057,-0.689732,-0.627620,0.867657,-0.182668,-0.462389,0.867657,-0.182668,-0.462389,0.850556,-0.144661,-0.505596,0.318328,-0.651977,-0.688182,-0.438542,-0.595214,-0.673351,-0.446746,-0.657865,-0.606327,0.361057,-0.689732,-0.627620,0.361057,-0.689732,-0.627620};
			return value;
		}
		private double[] getNormal_7_26_vector_2()
		{
			double[] value = {0.318328,-0.651977,-0.688182,-0.438542,-0.595214,-0.673351,-0.818105,-0.139077,-0.557997,-0.864770,-0.185068,-0.466822,-0.446746,-0.657865,-0.606327,-0.446746,-0.657865,-0.606327,-0.438542,-0.595214,-0.673351,-0.818105,-0.139077,-0.557997,-0.789688,0.403155,-0.462450,-0.854663,0.357626,-0.376369,-0.864770,-0.185068,-0.466822,-0.864770,-0.185068,-0.466822,-0.818105,-0.139077,-0.557997,-0.789688,0.403155,-0.462450,-0.386035,0.819919,-0.422741,-0.420369,0.840647,-0.341470,-0.854663,0.357626,-0.376369,-0.854663,0.357626,-0.376369,-0.789688,0.403155,-0.462450,-0.386035,0.819919,-0.422741,0.378515,0.762886,-0.524149,0.087423,0.175381,-0.980611,-0.287646,0.778279,-0.558160,-0.287646,0.778279,-0.558160,0.087423,0.175381,-0.980611,-0.684597,0.380324,-0.621837,-0.684597,0.380324,-0.621837,0.087423,0.175381,-0.980611,-0.689216,-0.108524,-0.716383,-0.689216,-0.108524,-0.716383,0.087423,0.175381,-0.980611,-0.279436,-0.530977,-0.799987,-0.279436,-0.530977,-0.799987,0.087423,0.175381,-0.980611,0.385646,-0.528881,-0.756017,0.385646,-0.528881,-0.756017,0.087423,0.175381,-0.980611,0.761579,-0.145513,-0.631525,0.761579,-0.145513,-0.631525,0.087423,0.175381,-0.980611,0.769478,0.328332,-0.547815,0.769478,0.328332,-0.547815,0.087423,0.175381,-0.980611,0.378515,0.762886,-0.524149,0.378515,0.762886,-0.524149,-0.287646,0.778279,-0.558160,-0.349880,0.873206,-0.339258,-0.349880,0.873206,-0.339258,0.420369,0.840647,-0.341470,0.378515,0.762886,-0.524149,-0.287646,0.778279,-0.558160,-0.684597,0.380324,-0.621837,-0.842567,0.401665,-0.358813,-0.842567,0.401665,-0.358813,-0.349880,0.873206,-0.339258,-0.287646,0.778279,-0.558160,-0.684597,0.380324,-0.621837,-0.689216,-0.108524,-0.716383,-0.867657,-0.182669,-0.462389,-0.867657,-0.182669,-0.462389,-0.842567,0.401665,-0.358813,-0.684597,0.380324,-0.621837,-0.689216,-0.108524,-0.716383,-0.279436,-0.530977,-0.799987,-0.361057,-0.689732,-0.627620,-0.361057,-0.689732,-0.627620,-0.867657,-0.182669,-0.462389,-0.689216,-0.108524,-0.716383,-0.279436,-0.530977,-0.799987,0.385646,-0.528881,-0.756017,0.446746,-0.657865,-0.606327,0.446746,-0.657865,-0.606327,-0.361057,-0.689732,-0.627620,-0.279436,-0.530977,-0.799987,0.385646,-0.528881,-0.756017,0.761579,-0.145513,-0.631525,0.864770,-0.185068,-0.466822,0.864770,-0.185068,-0.466822,0.446746,-0.657865,-0.606327,0.385646,-0.528881,-0.756017,0.761579,-0.145513,-0.631525,0.769478,0.328332,-0.547815,0.854663,0.357626,-0.376369,0.854663,0.357626,-0.376369,0.864770,-0.185068,-0.466822,0.761579,-0.145513,-0.631525,0.769478,0.328332,-0.547815,0.378515,0.762886,-0.524149,0.420369,0.840647,-0.341470,0.420369,0.840647,-0.341470,0.854663,0.357626,-0.376369,0.769478,0.328332,-0.547815,0.420369,0.840647,-0.341470,-0.349880,0.873206,-0.339258,-0.261704,0.871856,-0.413979,-0.261704,0.871856,-0.413979,0.386035,0.819919,-0.422741,0.420369,0.840647,-0.341470,-0.349880,0.873206,-0.339258,-0.842567,0.401665,-0.358813};
			return value;
		}
		private double[] getNormal_7_26_vector_3()
		{
			double[] value = {-0.792092,0.447835,-0.414770,-0.792092,0.447835,-0.414770,-0.261704,0.871856,-0.413979,-0.349880,0.873206,-0.339258,-0.842567,0.401665,-0.358813,-0.867657,-0.182669,-0.462389,-0.850557,-0.144662,-0.505595,-0.850557,-0.144662,-0.505595,-0.792092,0.447835,-0.414770,-0.842567,0.401665,-0.358813,-0.867657,-0.182669,-0.462389,-0.361057,-0.689732,-0.627620,-0.318328,-0.651977,-0.688182,-0.318328,-0.651977,-0.688182,-0.850557,-0.144662,-0.505595,-0.867657,-0.182669,-0.462389,-0.361057,-0.689732,-0.627620,0.446746,-0.657865,-0.606327,0.438542,-0.595214,-0.673351,0.438542,-0.595214,-0.673351,-0.318328,-0.651977,-0.688182,-0.361057,-0.689732,-0.627620,0.446746,-0.657865,-0.606327,0.864770,-0.185068,-0.466822,0.818105,-0.139077,-0.557997,0.818105,-0.139077,-0.557997,0.438542,-0.595214,-0.673351,0.446746,-0.657865,-0.606327,0.864770,-0.185068,-0.466822,0.854663,0.357626,-0.376369,0.789688,0.403155,-0.462450,0.789688,0.403155,-0.462450,0.818105,-0.139077,-0.557997,0.864770,-0.185068,-0.466822,0.854663,0.357626,-0.376369,0.420369,0.840647,-0.341470,0.386035,0.819919,-0.422741,0.386035,0.819919,-0.422741,0.789688,0.403155,-0.462450,0.854663,0.357626,-0.376369,0.086856,-0.921741,0.377954,0.086556,-0.923085,0.374730,-0.025192,-0.924854,-0.379487,-0.025192,-0.924854,-0.379487,-0.023736,-0.927800,-0.372322,0.086856,-0.921741,0.377954,-0.976187,-0.143929,0.162305,-0.976187,-0.143929,0.162305,-0.976187,-0.143928,0.162306,-0.976187,-0.143928,0.162306,-0.976187,-0.143928,0.162306,-0.976187,-0.143929,0.162305,-0.096657,0.922588,-0.373482,-0.096961,0.921223,-0.376758,0.013668,0.927345,0.373957,0.013668,0.927345,0.373957,0.015134,0.924383,0.381167,-0.096657,0.922588,-0.373482,-0.023736,-0.927800,-0.372322,-0.025192,-0.924854,-0.379487,-0.170323,-0.390592,-0.904670,-0.170323,-0.390592,-0.904670,-0.168395,-0.401185,-0.900385,-0.023736,-0.927800,-0.372322,-0.976187,-0.143928,0.162306,-0.976187,-0.143928,0.162306,-0.976187,-0.143929,0.162306,-0.976187,-0.143929,0.162306,-0.976187,-0.143929,0.162306,-0.976187,-0.143928,0.162306,0.015134,0.924383,0.381167,0.013668,0.927345,0.373957,0.158586,0.400369,0.902527,0.158586,0.400369,0.902527,0.160517,0.389785,0.906809,0.015134,0.924383,0.381167,-0.168395,-0.401185,-0.900385,-0.170323,-0.390592,-0.904670,-0.260803,0.366215,-0.893235,-0.260803,0.366215,-0.893235,-0.260454,0.360257,-0.895756,-0.168395,-0.401185,-0.900385,-0.976187,-0.143929,0.162306,-0.976187,-0.143929,0.162306,-0.976187,-0.143930,0.162305,-0.976187,-0.143930,0.162305,-0.976187,-0.143930,0.162305,-0.976187,-0.143929,0.162306,0.160517,0.389785,0.906809,0.158586,0.400369,0.902527,0.250920,-0.361844,0.897835,0.250920,-0.361844,0.897835,0.251269,-0.367784,0.895321,0.160517,0.389785,0.906809,-0.260454,0.360257,-0.895756,-0.260803,0.366215,-0.893235,-0.249741,0.899890,-0.357530,-0.249741,0.899890,-0.357530,-0.249500,0.901048,-0.354771,-0.260454,0.360257,-0.895756};
			return value;
		}
		private double[] getNormal_7_26_vector_4()
		{
			double[] value = {-0.976187,-0.143930,0.162305,-0.976187,-0.143930,0.162305,-0.976187,-0.143929,0.162304,-0.976187,-0.143929,0.162304,-0.976187,-0.143929,0.162304,-0.976187,-0.143930,0.162305,0.251269,-0.367784,0.895321,0.250920,-0.361844,0.897835,0.239970,-0.902781,0.356932,0.239970,-0.902781,0.356932,0.240207,-0.901639,0.359650,0.251269,-0.367784,0.895321,-0.249500,0.901048,-0.354771,-0.249741,0.899890,-0.357530,-0.145385,0.907121,0.394962,-0.145385,0.907121,0.394962,-0.143845,0.903822,0.403008,-0.249500,0.901048,-0.354771,-0.976187,-0.143929,0.162304,-0.976187,-0.143929,0.162304,-0.976187,-0.143929,0.162305,-0.976187,-0.143929,0.162305,-0.976187,-0.143929,0.162305,-0.976187,-0.143929,0.162304,0.240207,-0.901639,0.359650,0.239970,-0.902781,0.356932,0.134104,-0.906055,-0.401349,0.134104,-0.906055,-0.401349,0.135645,-0.909346,-0.393306,0.240207,-0.901639,0.359650,-0.143845,0.903822,0.403008,-0.145385,0.907121,0.394962,-0.001532,0.376051,0.926598,-0.001532,0.376051,0.926598,-0.000238,0.369188,0.929355,-0.143845,0.903822,0.403008,-0.976187,-0.143929,0.162305,-0.976187,-0.143929,0.162305,-0.976187,-0.143930,0.162305,-0.976187,-0.143930,0.162305,-0.976187,-0.143930,0.162305,-0.976187,-0.143929,0.162305,0.135645,-0.909346,-0.393306,0.134104,-0.906055,-0.401349,-0.009806,-0.370909,-0.928618,-0.009806,-0.370909,-0.928618,-0.008501,-0.377831,-0.925836,0.135645,-0.909346,-0.393306,-0.000238,0.369188,0.929355,-0.001532,0.376051,0.926598,0.096132,-0.382853,0.918794,0.096132,-0.382853,0.918794,0.096292,-0.385192,0.917799,-0.000238,0.369188,0.929355,-0.976187,-0.143930,0.162305,-0.976187,-0.143930,0.162305,-0.976187,-0.143930,0.162304,-0.976187,-0.143930,0.162304,-0.976187,-0.143930,0.162304,-0.976187,-0.143930,0.162305,-0.008501,-0.377831,-0.925836,-0.009806,-0.370909,-0.928618,-0.106400,0.384180,-0.917107,-0.106400,0.384180,-0.917107,-0.106238,0.381801,-0.918118,-0.008501,-0.377831,-0.925836,0.096292,-0.385192,0.917799,0.096132,-0.382853,0.918794,0.086556,-0.923085,0.374730,0.086556,-0.923085,0.374730,0.086856,-0.921741,0.377954,0.096292,-0.385192,0.917799,-0.976187,-0.143930,0.162304,-0.976187,-0.143930,0.162304,-0.976187,-0.143929,0.162305,-0.976187,-0.143929,0.162305,-0.976187,-0.143929,0.162305,-0.976187,-0.143930,0.162304,-0.106238,0.381801,-0.918118,-0.106400,0.384180,-0.917107,-0.096961,0.921223,-0.376758,-0.096961,0.921223,-0.376758,-0.096657,0.922588,-0.373482,-0.106238,0.381801,-0.918118,-0.979433,-0.133867,0.150963,-0.979433,-0.133867,0.150963,-0.979433,-0.133867,0.150963,-0.979433,-0.133867,0.150963,-0.979433,-0.133867,0.150963,-0.979433,-0.133867,0.150963,-0.979433,-0.133868,0.150963,-0.979433,-0.133867,0.150963,-0.979433,-0.133867,0.150963,-0.979433,-0.133867,0.150963,-0.979433,-0.133867,0.150963,-0.979433,-0.133868,0.150963,-0.979433,-0.133867,0.150963,-0.979433,-0.133868,0.150963,-0.979433,-0.133867,0.150963,-0.979433,-0.133867,0.150963};
			return value;
		}
		private double[] getNormal_7_26_vector_5()
		{
			double[] value = {-0.979433,-0.133867,0.150963,-0.979433,-0.133867,0.150963,0.025192,-0.924854,-0.379487,-0.086556,-0.923085,0.374729,-0.086856,-0.921741,0.377954,-0.086856,-0.921741,0.377954,0.023736,-0.927800,-0.372322,0.025192,-0.924854,-0.379487,0.976187,-0.143929,0.162306,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,0.976187,-0.143929,0.162306,0.976187,-0.143929,0.162306,-0.013669,0.927345,0.373957,0.096961,0.921223,-0.376757,0.096657,0.922588,-0.373482,0.096657,0.922588,-0.373482,-0.015134,0.924382,0.381167,-0.013669,0.927345,0.373957,0.170325,-0.390591,-0.904670,0.025192,-0.924854,-0.379487,0.023736,-0.927800,-0.372322,0.023736,-0.927800,-0.372322,0.168396,-0.401184,-0.900386,0.170325,-0.390591,-0.904670,0.976187,-0.143929,0.162307,0.976187,-0.143929,0.162306,0.976187,-0.143929,0.162306,0.976187,-0.143929,0.162306,0.976187,-0.143929,0.162307,0.976187,-0.143929,0.162307,-0.158587,0.400368,0.902527,-0.013669,0.927345,0.373957,-0.015134,0.924382,0.381167,-0.015134,0.924382,0.381167,-0.160518,0.389784,0.906809,-0.158587,0.400368,0.902527,0.260804,0.366216,-0.893234,0.170325,-0.390591,-0.904670,0.168396,-0.401184,-0.900386,0.168396,-0.401184,-0.900386,0.260455,0.360257,-0.895756,0.260804,0.366216,-0.893234,0.976187,-0.143930,0.162306,0.976187,-0.143929,0.162307,0.976187,-0.143929,0.162307,0.976187,-0.143929,0.162307,0.976187,-0.143930,0.162306,0.976187,-0.143930,0.162306,-0.250921,-0.361844,0.897835,-0.158587,0.400368,0.902527,-0.160518,0.389784,0.906809,-0.160518,0.389784,0.906809,-0.251270,-0.367784,0.895320,-0.250921,-0.361844,0.897835,0.249741,0.899890,-0.357531,0.260804,0.366216,-0.893234,0.260455,0.360257,-0.895756,0.260455,0.360257,-0.895756,0.249500,0.901048,-0.354771,0.249741,0.899890,-0.357531,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162306,0.976187,-0.143930,0.162306,0.976187,-0.143930,0.162306,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,-0.239970,-0.902781,0.356933,-0.250921,-0.361844,0.897835,-0.251270,-0.367784,0.895320,-0.251270,-0.367784,0.895320,-0.240208,-0.901638,0.359651,-0.239970,-0.902781,0.356933,0.145385,0.907121,0.394962,0.249741,0.899890,-0.357531,0.249500,0.901048,-0.354771,0.249500,0.901048,-0.354771,0.143845,0.903821,0.403008,0.145385,0.907121,0.394962,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,-0.134104,-0.906055,-0.401349,-0.239970,-0.902781,0.356933,-0.240208,-0.901638,0.359651,-0.240208,-0.901638,0.359651,-0.135645,-0.909346,-0.393306,-0.134104,-0.906055,-0.401349,0.001532,0.376051,0.926598,0.145385,0.907121,0.394962,0.143845,0.903821,0.403008,0.143845,0.903821,0.403008,0.000238,0.369187,0.929355,0.001532,0.376051,0.926598,0.976187,-0.143930,0.162306,0.976187,-0.143930,0.162305};
			return value;
		}
		private double[] getNormal_7_26_vector_6()
		{
			double[] value = {0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162306,0.976187,-0.143930,0.162306,0.009807,-0.370909,-0.928618,-0.134104,-0.906055,-0.401349,-0.135645,-0.909346,-0.393306,-0.135645,-0.909346,-0.393306,0.008501,-0.377831,-0.925836,0.009807,-0.370909,-0.928618,-0.096132,-0.382853,0.918794,0.001532,0.376051,0.926598,0.000238,0.369187,0.929355,0.000238,0.369187,0.929355,-0.096292,-0.385192,0.917799,-0.096132,-0.382853,0.918794,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162306,0.976187,-0.143930,0.162306,0.976187,-0.143930,0.162306,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,0.106400,0.384180,-0.917106,0.009807,-0.370909,-0.928618,0.008501,-0.377831,-0.925836,0.008501,-0.377831,-0.925836,0.106238,0.381802,-0.918118,0.106400,0.384180,-0.917106,-0.086556,-0.923085,0.374729,-0.096132,-0.382853,0.918794,-0.096292,-0.385192,0.917799,-0.096292,-0.385192,0.917799,-0.086856,-0.921741,0.377954,-0.086556,-0.923085,0.374729,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,0.976187,-0.143930,0.162305,0.096961,0.921223,-0.376757,0.106400,0.384180,-0.917106,0.106238,0.381802,-0.918118,0.106238,0.381802,-0.918118,0.096657,0.922588,-0.373482,0.096961,0.921223,-0.376757,0.979433,-0.133867,0.150963,0.979433,-0.133867,0.150963,0.979433,-0.133868,0.150963,0.979433,-0.133868,0.150963,0.979433,-0.133868,0.150963,0.979433,-0.133867,0.150963,0.979433,-0.133868,0.150963,0.979433,-0.133868,0.150963,0.979433,-0.133868,0.150963,0.979433,-0.133868,0.150963,0.979433,-0.133868,0.150963,0.979433,-0.133868,0.150963,0.979433,-0.133868,0.150963,0.979433,-0.133868,0.150963,0.979433,-0.133867,0.150963,0.979433,-0.133867,0.150963,0.979433,-0.133867,0.150963,0.979433,-0.133868,0.150963};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getTextureCoordinate_7_27_point_1()
		{
			double[] value = {0.883696,0.509398,0.904649,0.559957,0.860385,0.559755,0.883696,0.509398,0.860385,0.559755,0.829118,0.527343,0.883696,0.509398,0.829118,0.527343,0.827337,0.481708,0.883696,0.509398,0.827337,0.481708,0.860391,0.449582,0.883696,0.509398,0.860391,0.449582,0.904655,0.449784,0.883696,0.509398,0.904655,0.449784,0.934200,0.482196,0.883696,0.509398,0.934200,0.482196,0.935981,0.527831,0.883696,0.509398,0.935981,0.527831,0.904649,0.559957,0.852852,0.575701,0.860385,0.559755,0.904649,0.559957,0.904649,0.559957,0.911788,0.575454,0.852852,0.575701,0.811174,0.533628,0.829118,0.527343,0.860385,0.559755,0.860385,0.559755,0.852852,0.575701,0.811174,0.533628,0.809343,0.473880,0.827337,0.481708,0.829118,0.527343,0.829118,0.527343,0.811174,0.533628,0.809343,0.473880,0.852737,0.431457,0.860391,0.449582,0.827337,0.481708,0.827337,0.481708,0.809343,0.473880,0.852737,0.431457,0.911673,0.431210,0.904655,0.449784,0.860391,0.449582,0.860391,0.449582,0.852737,0.431457,0.911673,0.431210,0.951628,0.473283,0.934200,0.482196,0.904655,0.449784,0.904655,0.449784,0.911673,0.431210,0.951628,0.473283,0.953460,0.533031,0.935981,0.527831,0.934200,0.482196,0.934200,0.482196,0.951628,0.473283,0.953460,0.533031,0.911788,0.575454,0.904649,0.559957,0.935981,0.527831,0.935981,0.527831,0.953460,0.533031,0.911788,0.575454,0.834462,0.594456,0.852852,0.575701,0.911788,0.575454,0.911788,0.575454,0.931921,0.593955,0.834462,0.594456,0.791384,0.543209,0.811174,0.533628,0.852852,0.575701,0.852852,0.575701,0.834462,0.594456,0.791384,0.543209,0.791384,0.461663,0.809343,0.473880,0.811174,0.533628,0.811174,0.533628,0.791384,0.543209,0.791384,0.461663,0.833214,0.406692,0.852737,0.431457,0.809343,0.473880,0.809343,0.473880,0.791384,0.461663,0.833214,0.406692,0.930673,0.406191,0.911673,0.431210,0.852737,0.431457,0.852737,0.431457};
			return value;
		}
		private double[] getTextureCoordinate_7_27_point_2()
		{
			double[] value = {0.833214,0.406692,0.930673,0.406191,0.976018,0.460453,0.951628,0.473283,0.911673,0.431210,0.911673,0.431210,0.930673,0.406191,0.976018,0.460453,0.978208,0.541998,0.953460,0.533031,0.951628,0.473283,0.951628,0.473283,0.976018,0.460453,0.978208,0.541998,0.931921,0.593955,0.911788,0.575454,0.953460,0.533031,0.953460,0.533031,0.978208,0.541998,0.931921,0.593955,0.906539,0.559957,0.883696,0.509398,0.860385,0.559755,0.860385,0.559755,0.883696,0.509398,0.829118,0.527343,0.829118,0.527343,0.883696,0.509398,0.827337,0.481708,0.827337,0.481708,0.883696,0.509398,0.860391,0.449582,0.860391,0.449582,0.883696,0.509398,0.906545,0.449784,0.906545,0.449784,0.883696,0.509398,0.936089,0.482196,0.936089,0.482196,0.883696,0.509398,0.937871,0.527831,0.937871,0.527831,0.883696,0.509398,0.906539,0.559957,0.906539,0.559957,0.860385,0.559755,0.852852,0.575701,0.852852,0.575701,0.913678,0.575454,0.906539,0.559957,0.860385,0.559755,0.829118,0.527343,0.811174,0.533628,0.811174,0.533628,0.852852,0.575701,0.860385,0.559755,0.829118,0.527343,0.827337,0.481708,0.809343,0.473880,0.809343,0.473880,0.811174,0.533628,0.829118,0.527343,0.827337,0.481708,0.860391,0.449582,0.852737,0.431457,0.852737,0.431457,0.809343,0.473880,0.827337,0.481708,0.860391,0.449582,0.906545,0.449784,0.913563,0.431210,0.913563,0.431210,0.852737,0.431457,0.860391,0.449582,0.906545,0.449784,0.936089,0.482196,0.953518,0.473283,0.953518,0.473283,0.913563,0.431210,0.906545,0.449784,0.936089,0.482196,0.937871,0.527831,0.955350,0.533031,0.955350,0.533031,0.953518,0.473283,0.936089,0.482196,0.937871,0.527831,0.906539,0.559957,0.913678,0.575454,0.913678,0.575454,0.955350,0.533031,0.937871,0.527831,0.913678,0.575454,0.852852,0.575701,0.834462,0.594456,0.834462,0.594456,0.933810,0.593955,0.913678,0.575454,0.852852,0.575701,0.811174,0.533628};
			return value;
		}
		private double[] getTextureCoordinate_7_27_point_3()
		{
			double[] value = {0.791384,0.543209,0.791384,0.543209,0.834462,0.594456,0.852852,0.575701,0.811174,0.533628,0.809343,0.473880,0.791384,0.461663,0.791384,0.461663,0.791384,0.543209,0.811174,0.533628,0.809343,0.473880,0.852737,0.431457,0.833214,0.406692,0.833214,0.406692,0.791384,0.461663,0.809343,0.473880,0.852737,0.431457,0.913563,0.431210,0.932562,0.406191,0.932562,0.406191,0.833214,0.406692,0.852737,0.431457,0.913563,0.431210,0.953518,0.473283,0.974128,0.460453,0.974128,0.460453,0.932562,0.406191,0.913563,0.431210,0.953518,0.473283,0.955350,0.533031,0.976318,0.541998,0.976318,0.541998,0.974128,0.460453,0.953518,0.473283,0.955350,0.533031,0.913678,0.575454,0.933810,0.593955,0.933810,0.593955,0.976318,0.541998,0.955350,0.533031,0.799447,0.669471,0.988905,0.669447,0.988904,0.746436,0.988904,0.746436,0.799450,0.746412,0.799447,0.669471,0.988905,0.669447,0.988905,0.673995,0.988904,0.741888,0.988904,0.741888,0.988904,0.746436,0.988905,0.669447,0.988905,0.673995,0.799447,0.674016,0.799450,0.741866,0.799450,0.741866,0.988904,0.741888,0.988905,0.673995,0.799450,0.746412,0.988904,0.746436,0.988904,0.800876,0.988904,0.800876,0.799454,0.800817,0.799450,0.746412,0.988904,0.746436,0.988904,0.741888,0.988904,0.789895,0.988904,0.789895,0.988904,0.800876,0.988904,0.746436,0.988904,0.741888,0.799450,0.741866,0.799453,0.789843,0.799453,0.789843,0.988904,0.789895,0.988904,0.741888,0.799454,0.800817,0.988904,0.800876,0.988904,0.800876,0.988904,0.800876,0.799456,0.800817,0.799454,0.800817,0.988904,0.800876,0.988904,0.789895,0.988904,0.789895,0.988904,0.789895,0.988904,0.800876,0.988904,0.800876,0.988904,0.789895,0.799453,0.789843,0.799455,0.789843,0.799455,0.789843,0.988904,0.789895,0.988904,0.789895,0.799456,0.800817,0.988904,0.800876,0.988905,0.746436,0.988905,0.746436,0.799455,0.746412,0.799456,0.800817};
			return value;
		}
		private double[] getTextureCoordinate_7_27_point_4()
		{
			double[] value = {0.988904,0.800876,0.988904,0.789895,0.988905,0.741888,0.988905,0.741888,0.988905,0.746436,0.988904,0.800876,0.988904,0.789895,0.799455,0.789843,0.799455,0.741866,0.799455,0.741866,0.988905,0.741888,0.988904,0.789895,0.799455,0.746412,0.988905,0.746436,0.988905,0.669447,0.988905,0.669447,0.799452,0.669471,0.799455,0.746412,0.988905,0.746436,0.988905,0.741888,0.988905,0.673995,0.988905,0.673995,0.988905,0.669447,0.988905,0.746436,0.988905,0.741888,0.799455,0.741866,0.799452,0.674017,0.799452,0.674017,0.988905,0.673995,0.988905,0.741888,0.799452,0.669471,0.988905,0.669447,0.988905,0.615008,0.988905,0.615008,0.799448,0.615066,0.799452,0.669471,0.988905,0.669447,0.988905,0.673995,0.988905,0.625988,0.988905,0.625988,0.988905,0.615008,0.988905,0.669447,0.988905,0.673995,0.799452,0.674017,0.799449,0.626039,0.799449,0.626039,0.988905,0.625988,0.988905,0.673995,0.799448,0.615066,0.988905,0.615008,0.988905,0.615008,0.988905,0.615008,0.799446,0.615066,0.799448,0.615066,0.988905,0.615008,0.988905,0.625988,0.988905,0.625988,0.988905,0.625988,0.988905,0.615008,0.988905,0.615008,0.988905,0.625988,0.799449,0.626039,0.799447,0.626039,0.799447,0.626039,0.988905,0.625988,0.988905,0.625988,0.799446,0.615066,0.988905,0.615008,0.988905,0.669447,0.988905,0.669447,0.799447,0.669471,0.799446,0.615066,0.988905,0.615008,0.988905,0.625988,0.988905,0.673995,0.988905,0.673995,0.988905,0.669447,0.988905,0.615008,0.988905,0.625988,0.799447,0.626039,0.799447,0.674016,0.799447,0.674016,0.988905,0.673995,0.988905,0.625988,0.799449,0.626039,0.799452,0.674017,0.799455,0.741866,0.799455,0.741866,0.799455,0.789843,0.799449,0.626039,0.799447,0.626039,0.799449,0.626039,0.799455,0.789843,0.799455,0.789843,0.799453,0.789843,0.799447,0.626039,0.799447,0.674016,0.799447,0.626039,0.799453,0.789843,0.799453,0.789843};
			return value;
		}
		private double[] getTextureCoordinate_7_27_point_5()
		{
			double[] value = {0.799450,0.741866,0.799447,0.674016,0.988904,0.746436,0.988905,0.669447,0.799447,0.669471,0.799447,0.669471,0.799450,0.746412,0.988904,0.746436,0.988904,0.741888,0.988905,0.673995,0.988905,0.669447,0.988905,0.669447,0.988904,0.746436,0.988904,0.741888,0.799450,0.741866,0.799447,0.674016,0.988905,0.673995,0.988905,0.673995,0.988904,0.741888,0.799450,0.741866,0.988904,0.800876,0.988904,0.746436,0.799450,0.746412,0.799450,0.746412,0.799454,0.800817,0.988904,0.800876,0.988904,0.789895,0.988904,0.741888,0.988904,0.746436,0.988904,0.746436,0.988904,0.800876,0.988904,0.789895,0.799453,0.789843,0.799450,0.741866,0.988904,0.741888,0.988904,0.741888,0.988904,0.789895,0.799453,0.789843,0.988904,0.800876,0.988904,0.800876,0.799454,0.800817,0.799454,0.800817,0.799456,0.800817,0.988904,0.800876,0.988904,0.789895,0.988904,0.789895,0.988904,0.800876,0.988904,0.800876,0.988904,0.800876,0.988904,0.789895,0.799455,0.789843,0.799453,0.789843,0.988904,0.789895,0.988904,0.789895,0.988904,0.789895,0.799455,0.789843,0.988905,0.746436,0.988904,0.800876,0.799456,0.800817,0.799456,0.800817,0.799455,0.746412,0.988905,0.746436,0.988905,0.741888,0.988904,0.789895,0.988904,0.800876,0.988904,0.800876,0.988905,0.746436,0.988905,0.741888,0.799455,0.741866,0.799455,0.789843,0.988904,0.789895,0.988904,0.789895,0.988905,0.741888,0.799455,0.741866,0.988905,0.669447,0.988905,0.746436,0.799455,0.746412,0.799455,0.746412,0.799452,0.669471,0.988905,0.669447,0.988905,0.673995,0.988905,0.741888,0.988905,0.746436,0.988905,0.746436,0.988905,0.669447,0.988905,0.673995,0.799452,0.674017,0.799455,0.741866,0.988905,0.741888,0.988905,0.741888,0.988905,0.673995,0.799452,0.674017,0.988905,0.615008,0.988905,0.669447,0.799452,0.669471,0.799452,0.669471,0.799448,0.615066,0.988905,0.615008,0.988905,0.625988,0.988905,0.673995};
			return value;
		}
		private double[] getTextureCoordinate_7_27_point_6()
		{
			double[] value = {0.988905,0.669447,0.988905,0.669447,0.988905,0.615008,0.988905,0.625988,0.799449,0.626039,0.799452,0.674017,0.988905,0.673995,0.988905,0.673995,0.988905,0.625988,0.799449,0.626039,0.988905,0.615008,0.988905,0.615008,0.799448,0.615066,0.799448,0.615066,0.799446,0.615066,0.988905,0.615008,0.988905,0.625988,0.988905,0.625988,0.988905,0.615008,0.988905,0.615008,0.988905,0.615008,0.988905,0.625988,0.799447,0.626039,0.799449,0.626039,0.988905,0.625988,0.988905,0.625988,0.988905,0.625988,0.799447,0.626039,0.988905,0.669447,0.988905,0.615008,0.799446,0.615066,0.799446,0.615066,0.799447,0.669471,0.988905,0.669447,0.988905,0.673995,0.988905,0.625988,0.988905,0.615008,0.988905,0.615008,0.988905,0.669447,0.988905,0.673995,0.799447,0.674016,0.799447,0.626039,0.988905,0.625988,0.988905,0.625988,0.988905,0.673995,0.799447,0.674016,0.799455,0.741866,0.799452,0.674017,0.799449,0.626039,0.799449,0.626039,0.799455,0.789843,0.799455,0.741866,0.799455,0.789843,0.799449,0.626039,0.799447,0.626039,0.799447,0.626039,0.799453,0.789843,0.799455,0.789843,0.799453,0.789843,0.799447,0.626039,0.799447,0.674016,0.799447,0.674016,0.799450,0.741866,0.799453,0.789843};
			return value;
		}



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


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


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


		/** Define subarrays using type double[] */
		private double[] getCoordinate_7_44_point_1()
		{
			double[] value = {0.163427,1.065905,-0.081694,0.168929,0.934774,0.082786,0.171332,0.934774,-0.085645,0.163427,1.065905,-0.081694,0.161134,1.065905,0.078966,0.168929,0.934774,0.082786,0.161134,1.065905,0.078966,0.071214,0.934774,0.202722,0.168929,0.934774,0.082786,0.161134,1.065905,0.078966,0.068096,1.065905,0.193368,0.071214,0.934774,0.202722,0.068096,1.065905,0.193368,-0.069727,0.934774,0.203907,0.071214,0.934774,0.202722,0.068096,1.065905,0.193368,-0.066341,1.065905,0.194498,-0.069727,0.934774,0.203907,-0.066341,1.065905,0.194498,-0.171332,0.934774,0.085645,-0.069727,0.934774,0.203907,-0.066341,1.065905,0.194498,-0.163427,1.065905,0.081693,-0.171332,0.934774,0.085645,-0.163427,1.065905,0.081693,-0.168929,0.934774,-0.082786,-0.171332,0.934774,0.085645,-0.163427,1.065905,0.081693,-0.161134,1.065904,-0.078966,-0.168929,0.934774,-0.082786,-0.161134,1.065904,-0.078966,-0.067569,0.934774,-0.202722,-0.168929,0.934774,-0.082786,-0.161134,1.065904,-0.078966,-0.064451,1.065904,-0.193368,-0.067569,0.934774,-0.202722,-0.064451,1.065904,-0.193368,0.073372,0.934774,-0.203907,-0.067569,0.934774,-0.202722,-0.064451,1.065904,-0.193368,0.069986,1.065904,-0.194498,0.073372,0.934774,-0.203907,0.069986,1.065904,-0.194498,0.171332,0.934774,-0.085645,0.073372,0.934774,-0.203907,0.069986,1.065904,-0.194498,0.163427,1.065905,-0.081694,0.171332,0.934774,-0.085645,0.171332,0.934774,-0.085645,0.085081,0.919008,0.043789,0.085446,0.919008,-0.042713,0.171332,0.934774,-0.085645,0.168929,0.934774,0.082786,0.085081,0.919008,0.043789,0.168929,0.934774,0.082786,0.034878,0.919008,0.104640,0.085081,0.919008,0.043789,0.168929,0.934774,0.082786,0.071214,0.934774,0.202722,0.034878,0.919008,0.104640,0.071214,0.934774,0.202722,-0.035757,0.919008,0.104194,0.034878,0.919008,0.104640,0.071214,0.934774,0.202722,-0.069727,0.934774,0.203907,-0.035757,0.919008,0.104194,-0.069727,0.934774,0.203907,-0.085446,0.919008,0.042712,-0.035757,0.919008,0.104194,-0.069727,0.934774,0.203907,-0.171332,0.934774,0.085645,-0.085446,0.919008,0.042712,-0.171332,0.934774,0.085645,-0.085081,0.919008,-0.043790,-0.085446,0.919008,0.042712,-0.171332,0.934774,0.085645,-0.168929,0.934774,-0.082786,-0.085081,0.919008,-0.043790,-0.168929,0.934774,-0.082786,-0.034877,0.919008,-0.104640,-0.085081,0.919008,-0.043790,-0.168929,0.934774,-0.082786,-0.067569,0.934774,-0.202722,-0.034877,0.919008,-0.104640,-0.067569,0.934774,-0.202722,0.035757,0.919008,-0.104194,-0.034877,0.919008,-0.104640,-0.067569,0.934774,-0.202722,0.073372,0.934774,-0.203907,0.035757,0.919008,-0.104194,0.073372,0.934774,-0.203907,0.085446,0.919008,-0.042713,0.035757,0.919008,-0.104194,0.073372,0.934774,-0.203907,0.171332,0.934774,-0.085645,0.085446,0.919008,-0.042713,0.196450,0.583005,-0.015523,0.196303,0.583005,0.020917,0.196303,0.237778,0.020917,0.034877,0.192342,0.104640};
			return value;
		}
		private double[] getCoordinate_7_44_point_2()
		{
			double[] value = {-0.035757,0.654807,0.104194,-0.035757,0.192342,0.104194,-0.035757,0.654807,0.104194,-0.085446,0.654807,0.042712,-0.085446,0.192342,0.042713,-0.085081,0.654807,-0.043790,-0.059224,0.654807,-0.075131,-0.034877,0.192342,-0.104640,-0.034877,0.654807,-0.104640,0.005737,0.654807,-0.104384,0.035757,0.192342,-0.104194,0.035757,0.654807,-0.104194,0.085446,0.654807,-0.042712,0.085446,0.192342,-0.042712,0.085446,0.192342,-0.042712,0.138453,0.125439,0.071259,0.139046,0.125439,-0.069506,0.085446,0.192342,-0.042712,0.085081,0.192342,0.043790,0.138453,0.125439,0.071259,0.085081,0.192342,0.043790,0.060401,0.125439,0.170281,0.138453,0.125439,0.071259,0.085081,0.192342,0.043790,0.034877,0.192342,0.104640,0.060401,0.125439,0.170281,0.034877,0.192342,0.104640,-0.054543,0.125439,0.169555,0.060401,0.125439,0.170281,0.034877,0.192342,0.104640,-0.035757,0.192342,0.104194,-0.054543,0.125439,0.169555,-0.035757,0.192342,0.104194,-0.139046,0.125439,0.069506,-0.054543,0.125439,0.169555,-0.035757,0.192342,0.104194,-0.085446,0.192342,0.042713,-0.139046,0.125439,0.069506,-0.085446,0.192342,0.042713,-0.138453,0.125439,-0.071259,-0.139046,0.125439,0.069506,-0.085446,0.192342,0.042713,-0.085081,0.192342,-0.043789,-0.138453,0.125439,-0.071259,-0.085081,0.192342,-0.043789,-0.056756,0.125439,-0.170281,-0.138453,0.125439,-0.071259,-0.085081,0.192342,-0.043789,-0.034877,0.192342,-0.104640,-0.056756,0.125439,-0.170281,-0.034877,0.192342,-0.104640,0.058188,0.125439,-0.169555,-0.056756,0.125439,-0.170281,-0.034877,0.192342,-0.104640,0.035757,0.192342,-0.104194,0.058188,0.125439,-0.169555,0.035757,0.192342,-0.104194,0.139046,0.125439,-0.069506,0.058188,0.125439,-0.169555,0.035757,0.192342,-0.104194,0.085446,0.192342,-0.042712,0.139046,0.125439,-0.069506,0.139046,0.125439,-0.069506,0.138453,-0.030991,0.071259,0.139046,-0.030991,-0.069506,0.139046,0.125439,-0.069506,0.138453,0.125439,0.071259,0.138453,-0.030991,0.071259,0.138453,0.125439,0.071259,0.060401,-0.030991,0.170281,0.138453,-0.030991,0.071259,0.138453,0.125439,0.071259,0.060401,0.125439,0.170281,0.060401,-0.030991,0.170281,0.060401,0.125439,0.170281,-0.054543,-0.030991,0.169555,0.060401,-0.030991,0.170281,0.060401,0.125439,0.170281,-0.054543,0.125439,0.169555,-0.054543,-0.030991,0.169555,-0.054543,0.125439,0.169555,-0.139046,-0.030991,0.069506,-0.054543,-0.030991,0.169555,-0.054543,0.125439,0.169555,-0.139046,0.125439,0.069506,-0.139046,-0.030991,0.069506,-0.139046,0.125439,0.069506,-0.138453,-0.030991,-0.071258,-0.139046,-0.030991,0.069506,-0.139046,0.125439,0.069506,-0.138453,0.125439,-0.071259,-0.138453,-0.030991,-0.071258,-0.138453,0.125439,-0.071259,-0.056756,-0.030991,-0.170281,-0.138453,-0.030991,-0.071258,-0.138453,0.125439,-0.071259,-0.056756,0.125439,-0.170281,-0.056756,-0.030991,-0.170281,-0.056756,0.125439,-0.170281,0.058188,-0.030991,-0.169555};
			return value;
		}
		private double[] getCoordinate_7_44_point_3()
		{
			double[] value = {-0.056756,-0.030991,-0.170281,-0.056756,0.125439,-0.170281,0.058188,0.125439,-0.169555,0.058188,-0.030991,-0.169555,0.058188,0.125439,-0.169555,0.139046,-0.030991,-0.069506,0.058188,-0.030991,-0.169555,0.058188,0.125439,-0.169555,0.139046,0.125439,-0.069506,0.139046,-0.030991,-0.069506,0.085446,0.742407,-0.042712,0.085081,0.919008,0.043789,0.085081,0.742407,0.043790,0.085446,0.919008,-0.042713,0.085081,0.919008,0.043789,0.085446,0.742407,-0.042712,0.085081,0.654807,0.043790,0.034878,0.919008,0.104640,0.034877,0.192342,0.104640,0.085081,0.919008,0.043789,0.034878,0.919008,0.104640,0.085081,0.742407,0.043790,0.034877,0.192342,0.104640,-0.035757,0.919008,0.104194,-0.035757,0.654807,0.104194,0.034878,0.919008,0.104640,-0.035757,0.919008,0.104194,0.034877,0.192342,0.104640,-0.035757,0.742407,0.104194,-0.085446,0.919008,0.042712,-0.085446,0.742407,0.042712,-0.035757,0.919008,0.104194,-0.085446,0.919008,0.042712,-0.035757,0.742407,0.104194,-7.401358,0.742428,0.355766,-7.404175,0.654828,0.157563,-7.401358,0.654828,0.355766,-0.085446,0.742407,0.042712,-0.085081,0.919008,-0.043790,-0.085081,0.742407,-0.043790,-0.085446,0.919008,0.042712,-0.085081,0.919008,-0.043790,-0.085446,0.742407,0.042712,-0.085081,0.742407,-0.043790,-0.034877,0.919008,-0.104640,-0.059094,0.742407,-0.075288,-0.085081,0.919008,-0.043790,-0.034877,0.919008,-0.104640,-0.085081,0.742407,-0.043790,-0.034877,0.742407,-0.104640,0.035757,0.919008,-0.104194,0.006047,0.742407,-0.104382,-0.034877,0.919008,-0.104640,0.035757,0.919008,-0.104194,-0.034877,0.742407,-0.104640,0.035757,0.742407,-0.104194,0.085446,0.919008,-0.042713,0.085446,0.742407,-0.042712,0.035757,0.919008,-0.104194,0.085446,0.919008,-0.042713,0.035757,0.742407,-0.104194,6.198867,0.654809,4.894412,6.114968,0.742409,5.045810,6.114968,0.654809,5.045810,6.198867,0.742409,4.894412,6.114968,0.742409,5.045810,6.198867,0.654809,4.894412,-2.003660,0.654830,9.157137,-2.155198,0.742430,9.155685,-2.155198,0.654830,9.155685,-2.003660,0.742430,9.157136,-2.155198,0.742430,9.155685,-2.003660,0.654830,9.157137,-7.401358,0.742428,0.355766,-7.404175,0.742428,0.157563,-7.404175,0.654828,0.157563,-0.085081,0.742407,-0.043790,-0.059094,0.742407,-0.075288,-0.085081,0.654807,-0.043790,0.005737,0.654807,-0.104384,0.035757,0.742407,-0.104194,0.035757,0.654807,-0.104194,-2.804466,0.758241,-8.380699,-2.655258,0.758241,-8.451817,-2.804596,0.670641,-8.380543,5.108816,0.654804,-6.561381,5.215059,0.742404,-6.433822,5.215059,0.654804,-6.433822,5.108816,0.742404,-6.561381,5.215059,0.742404,-6.433822,5.108816,0.654804,-6.561381,0.196450,0.583005,-0.015523,0.196303,0.237778,0.020917,0.196450,0.237778,-0.015523,0.085081,0.654807,0.043790,0.034877,0.192342,0.104640,0.085081,0.192342,0.043790,-0.035757,0.654807,0.104194,-0.085446,0.192342,0.042713,-0.035757,0.192342,0.104194};
			return value;
		}
		private double[] getCoordinate_7_44_point_4()
		{
			double[] value = {-0.196450,0.583005,0.015523,-0.196303,0.583005,-0.020917,-0.196450,0.237778,0.015523,-0.196303,0.583005,-0.020917,-0.196303,0.237778,-0.020917,-0.196450,0.237778,0.015523,-0.085081,0.654807,-0.043790,-0.034877,0.192342,-0.104640,-0.085081,0.192342,-0.043789,-0.034877,0.654807,-0.104640,0.035757,0.192342,-0.104194,-0.034877,0.192342,-0.104640,0.035757,0.654807,-0.104194,0.085446,0.192342,-0.042712,0.035757,0.192342,-0.104194,-0.059094,0.742407,-0.075288,-0.059224,0.654807,-0.075131,-0.085081,0.654807,-0.043790,-0.059094,0.742407,-0.075288,-0.034877,0.919008,-0.104640,-0.034877,0.742407,-0.104640,-0.059224,0.654807,-0.075131,-0.034877,0.654807,-0.104640,-0.034877,0.192342,-0.104640,-2.655258,0.758241,-8.451817,-2.655569,0.670641,-8.451818,-2.804596,0.670641,-8.380543,0.006047,0.742407,-0.104382,0.035757,0.919008,-0.104194,0.035757,0.742407,-0.104194,0.006047,0.742407,-0.104382,0.035757,0.742407,-0.104194,0.005737,0.654807,-0.104384,0.005737,0.654807,-0.104384,0.035757,0.654807,-0.104194,0.035757,0.192342,-0.104194,0.005737,0.654807,-0.104384,-0.034877,0.654807,-0.104640,-0.227969,0.654807,-0.580594,-0.227969,0.654807,-0.580594,-0.224383,0.655127,-0.815093,0.005737,0.654807,-0.104384,0.085446,0.654807,-0.042712,0.035757,0.654807,-0.104194,0.352894,0.654807,-0.488587,0.352894,0.654807,-0.488587,0.529437,0.654807,-0.580863,0.085446,0.654807,-0.042712,-0.085081,0.654807,-0.043790,-0.085446,0.654807,0.042712,-0.533264,0.654807,0.100209,-0.533264,0.654807,0.100209,-0.712129,0.654807,0.014900,-0.085081,0.654807,-0.043790,-0.085446,0.654807,0.042712,-0.085446,0.742407,0.042712,-0.533264,0.742407,0.100208,-0.533264,0.742407,0.100208,-0.533264,0.654807,0.100209,-0.085446,0.654807,0.042712,-0.085446,0.742407,0.042712,-0.085081,0.742407,-0.043790,-0.712129,0.742408,0.014900,-0.712129,0.742408,0.014900,-0.533264,0.742407,0.100208,-0.085446,0.742407,0.042712,-0.034877,0.742407,-0.104640,0.006047,0.742407,-0.104382,-0.224072,0.742727,-0.815091,-0.224072,0.742727,-0.815091,-0.227839,0.742407,-0.580751,-0.034877,0.742407,-0.104640,0.035757,0.742407,-0.104194,0.085446,0.742407,-0.042712,0.529437,0.742407,-0.580863,0.529437,0.742407,-0.580863,0.352894,0.742407,-0.488587,0.035757,0.742407,-0.104194,0.085446,0.742407,-0.042712,0.085446,0.654807,-0.042712,0.529437,0.654807,-0.580863,0.529437,0.654807,-0.580863,0.529437,0.742407,-0.580863,0.085446,0.742407,-0.042712,-0.085081,0.742407,-0.043790,-0.085081,0.654807,-0.043790,-0.712129,0.654807,0.014900,-0.712129,0.654807,0.014900,-0.712129,0.742408,0.014900,-0.085081,0.742407,-0.043790,-0.034877,0.654807,-0.104640,-0.059224,0.654807,-0.075131,-0.227969,0.654807,-0.580594,0.035757,0.654807,-0.104194,0.035757,0.742407,-0.104194,0.352894,0.742407,-0.488587,0.352894,0.742407,-0.488587,0.352894,0.654807,-0.488587,0.035757,0.654807,-0.104194,-0.059224,0.654807,-0.075131};
			return value;
		}
		private double[] getCoordinate_7_44_point_5()
		{
			double[] value = {-0.059094,0.742407,-0.075288,-0.227839,0.742407,-0.580751,-0.227839,0.742407,-0.580751,-0.227969,0.654807,-0.580594,-0.059224,0.654807,-0.075131,-0.059094,0.742407,-0.075288,-0.034877,0.742407,-0.104640,-0.227839,0.742407,-0.580751,0.006047,0.742407,-0.104382,0.005737,0.654807,-0.104384,-0.224383,0.655127,-0.815093,-0.224383,0.655127,-0.815093,-0.224072,0.742727,-0.815091,0.006047,0.742407,-0.104382,0.085081,0.654807,0.043790,0.085446,0.654807,-0.042712,0.480045,0.654807,0.273533,0.480045,0.654807,0.273533,0.576812,0.654807,0.443073,0.085081,0.654807,0.043790,-0.085446,0.654807,0.042712,-0.035757,0.654807,0.104194,-0.130088,0.654807,0.609094,-0.130088,0.654807,0.609094,-0.208501,0.654808,0.841958,-0.085446,0.654807,0.042712,0.085446,0.742407,-0.042712,0.085081,0.742407,0.043790,0.576812,0.742407,0.443073,0.576812,0.742407,0.443073,0.480045,0.742407,0.273533,0.085446,0.742407,-0.042712,-0.035757,0.742407,0.104194,-0.085446,0.742407,0.042712,-0.208501,0.742408,0.841958,-0.208501,0.742408,0.841958,-0.130088,0.742407,0.609094,-0.035757,0.742407,0.104194,0.085081,0.742407,0.043790,0.085081,0.654807,0.043790,0.576812,0.654807,0.443073,0.576812,0.654807,0.443073,0.576812,0.742407,0.443073,0.085081,0.742407,0.043790,0.085446,0.654807,-0.042712,0.085446,0.742407,-0.042712,0.480045,0.742407,0.273533,0.480045,0.742407,0.273533,0.480045,0.654807,0.273533,0.085446,0.654807,-0.042712,-0.035757,0.654807,0.104194,-0.035757,0.742407,0.104194,-0.130088,0.742407,0.609094,-0.130088,0.742407,0.609094,-0.130088,0.654807,0.609094,-0.035757,0.654807,0.104194,-0.085446,0.742407,0.042712,-0.085446,0.654807,0.042712,-0.208501,0.654808,0.841958,-0.208501,0.654808,0.841958,-0.208501,0.742408,0.841958,-0.085446,0.742407,0.042712,-0.712129,0.654807,0.014900,-0.533264,0.654807,0.100209,-0.709311,0.654807,0.213102,-0.533264,0.654807,0.100209,-0.533264,0.742407,0.100208,-0.709311,0.742408,0.213102,-0.709311,0.742408,0.213102,-0.709311,0.654807,0.213102,-0.533264,0.654807,0.100209,0.576812,0.654807,0.443073,0.480045,0.654807,0.273533,0.660710,0.654807,0.291675,0.576812,0.742407,0.443073,0.660710,0.742407,0.291675,0.480045,0.742407,0.273533,0.480045,0.654807,0.273533,0.480045,0.742407,0.273533,0.660710,0.742407,0.291675,0.660710,0.742407,0.291675,0.660710,0.654807,0.291675,0.480045,0.654807,0.273533,-0.208501,0.654808,0.841958,-0.130088,0.654807,0.609094,-0.056962,0.654808,0.843409,-0.208501,0.742408,0.841958,-0.056962,0.742408,0.843409,-0.130088,0.742407,0.609094,-0.130088,0.654807,0.609094,-0.130088,0.742407,0.609094,-0.056962,0.742408,0.843409,-0.056962,0.742408,0.843409,-0.056962,0.654808,0.843409,-0.130088,0.654807,0.609094,-0.712129,0.742408,0.014900,-0.709311,0.742408,0.213102,-0.533264,0.742407,0.100208,-0.224072,0.742727,-0.815091,-0.373281,0.742727,-0.743974};
			return value;
		}
		private double[] getCoordinate_7_44_point_6()
		{
			double[] value = {-0.227839,0.742407,-0.580751,-0.227969,0.654807,-0.580594,-0.227839,0.742407,-0.580751,-0.373281,0.742727,-0.743974,-0.373281,0.742727,-0.743974,-0.373410,0.655127,-0.743818,-0.227969,0.654807,-0.580594,0.529437,0.654807,-0.580863,0.352894,0.654807,-0.488587,0.423194,0.654806,-0.708421,0.529437,0.742407,-0.580863,0.423194,0.742407,-0.708421,0.352894,0.742407,-0.488587,0.352894,0.654807,-0.488587,0.352894,0.742407,-0.488587,0.423194,0.742407,-0.708421,0.423194,0.742407,-0.708421,0.423194,0.654806,-0.708421,0.352894,0.654807,-0.488587,-0.224383,0.655127,-0.815093,-0.227969,0.654807,-0.580594,-0.373410,0.655127,-0.743818,-0.712129,0.654807,0.014900,-0.709311,0.654807,0.213102,-7.401358,0.654828,0.355766,-7.401358,0.654828,0.355766,-7.404175,0.654828,0.157563,-0.712129,0.654807,0.014900,-0.704074,0.689102,0.581577,-0.704074,0.710809,0.581577,-7.396121,0.710814,0.724241,-7.396121,0.710814,0.724241,-7.396121,0.689107,0.724241,-0.704074,0.689102,0.581577,0.576812,0.742407,0.443073,0.576812,0.654807,0.443073,6.114968,0.654809,5.045810,6.114968,0.654809,5.045810,6.114968,0.742409,5.045810,0.576812,0.742407,0.443073,0.576812,0.654807,0.443073,0.660710,0.654807,0.291675,6.198867,0.654809,4.894412,6.198867,0.654809,4.894412,6.114968,0.654809,5.045810,0.576812,0.654807,0.443073,0.660710,0.742407,0.291675,0.576812,0.742407,0.443073,6.114968,0.742409,5.045810,6.114968,0.742409,5.045810,6.198867,0.742409,4.894412,0.660710,0.742407,0.291675,0.829695,0.689102,-0.013265,0.829695,0.710809,-0.013265,6.367851,0.710811,4.589472,6.367851,0.710811,4.589472,6.367851,0.689104,4.589472,0.829695,0.689102,-0.013265,-0.208501,0.742408,0.841958,-0.208501,0.654808,0.841958,-2.155198,0.654830,9.155685,-2.155198,0.654830,9.155685,-2.155198,0.742430,9.155685,-0.208501,0.742408,0.841958,-0.208501,0.654808,0.841958,-0.056962,0.654808,0.843409,-2.003660,0.654830,9.157137,-2.003660,0.654830,9.157137,-2.155198,0.654830,9.155685,-0.208501,0.654808,0.841958,-0.056962,0.742408,0.843409,-0.208501,0.742408,0.841958,-2.155198,0.742430,9.155685,-2.155198,0.742430,9.155685,-2.003660,0.742430,9.157136,-0.056962,0.742408,0.843409,0.232310,0.689102,0.944993,0.232310,0.710809,0.944993,-1.714388,0.710818,9.258720,-1.714388,0.710818,9.258720,-1.714388,0.689111,9.258720,0.232310,0.689102,0.944993,-0.709311,0.742408,0.213102,-0.712129,0.742408,0.014900,-7.404175,0.742428,0.157563,-7.404175,0.742428,0.157563,-7.401358,0.742428,0.355766,-0.709311,0.742408,0.213102,-0.712129,0.742408,0.014900,-0.712129,0.654807,0.014900,-7.404175,0.654828,0.157563,-7.404175,0.654828,0.157563,-7.404175,0.742428,0.157563,-0.712129,0.742408,0.014900,-0.373281,0.742727,-0.743974,-0.224072,0.742727,-0.815091,-2.655258,0.758241,-8.451817,-2.655258,0.758241,-8.451817,-2.804466,0.758241,-8.380699,-0.373281,0.742727,-0.743974};
			return value;
		}
		private double[] getCoordinate_7_44_point_7()
		{
			double[] value = {-0.653784,0.689394,-0.609951,-0.653655,0.711101,-0.610108,-3.084840,0.714943,-8.246833,-3.084840,0.714943,-8.246833,-3.084970,0.693236,-8.246676,-0.653784,0.689394,-0.609951,0.529437,0.742407,-0.580863,0.529437,0.654807,-0.580863,5.215059,0.654804,-6.433822,5.215059,0.654804,-6.433822,5.215059,0.742404,-6.433822,0.529437,0.742407,-0.580863,0.529437,0.654807,-0.580863,0.423194,0.654806,-0.708421,5.108816,0.654804,-6.561381,5.108816,0.654804,-6.561381,5.215059,0.654804,-6.433822,0.529437,0.654807,-0.580863,0.423194,0.742407,-0.708421,0.529437,0.742407,-0.580863,5.215059,0.742404,-6.433822,5.215059,0.742404,-6.433822,5.108816,0.742404,-6.561381,0.423194,0.742407,-0.708421,0.208308,0.689101,-0.966420,0.208308,0.710808,-0.966420,4.893929,0.710806,-6.819378,4.893929,0.710806,-6.819378,4.893929,0.689099,-6.819378,0.208308,0.689101,-0.966420,-0.224072,0.742727,-0.815091,-0.224383,0.655127,-0.815093,-2.655569,0.670641,-8.451818,-2.655569,0.670641,-8.451818,-2.655258,0.758241,-8.451817,-0.224072,0.742727,-0.815091,-0.224383,0.655127,-0.815093,-0.373410,0.655127,-0.743818,-2.804596,0.670641,-8.380543,-2.804596,0.670641,-8.380543,-2.655569,0.670641,-8.451818,-0.224383,0.655127,-0.815093,-2.804466,0.758241,-8.380699,-2.804596,0.670641,-8.380543,-3.084970,0.693236,-8.246676,-3.084970,0.693236,-8.246676,-3.084840,0.714943,-8.246833,-2.804466,0.758241,-8.380699,-0.373410,0.655127,-0.743818,-0.373281,0.742727,-0.743974,-0.653655,0.711101,-0.610108,-0.653655,0.711101,-0.610108,-0.653784,0.689394,-0.609951,-0.373410,0.655127,-0.743818,-0.373281,0.742727,-0.743974,-2.804466,0.758241,-8.380699,-3.084840,0.714943,-8.246833,-3.084840,0.714943,-8.246833,-0.653655,0.711101,-0.610108,-0.373281,0.742727,-0.743974,-2.804596,0.670641,-8.380543,-0.373410,0.655127,-0.743818,-0.653784,0.689394,-0.609951,-0.653784,0.689394,-0.609951,-3.084970,0.693236,-8.246676,-2.804596,0.670641,-8.380543,5.108816,0.742404,-6.561381,5.108816,0.654804,-6.561381,4.893929,0.689099,-6.819378,4.893929,0.689099,-6.819378,4.893929,0.710806,-6.819378,5.108816,0.742404,-6.561381,0.423194,0.654806,-0.708421,0.423194,0.742407,-0.708421,0.208308,0.710808,-0.966420,0.208308,0.710808,-0.966420,0.208308,0.689101,-0.966420,0.423194,0.654806,-0.708421,5.108816,0.654804,-6.561381,0.423194,0.654806,-0.708421,0.208308,0.689101,-0.966420,0.208308,0.689101,-0.966420,4.893929,0.689099,-6.819378,5.108816,0.654804,-6.561381,0.423194,0.742407,-0.708421,5.108816,0.742404,-6.561381,4.893929,0.710806,-6.819378,4.893929,0.710806,-6.819378,0.208308,0.710808,-0.966420,0.423194,0.742407,-0.708421,-7.401358,0.742428,0.355766,-7.401358,0.654828,0.355766,-7.396121,0.689107,0.724241,-7.396121,0.689107,0.724241,-7.396121,0.710814,0.724241,-7.401358,0.742428,0.355766,-0.709311,0.654807,0.213102,-0.709311,0.742408,0.213102,-0.704074,0.710809,0.581577,-0.704074,0.710809,0.581577};
			return value;
		}
		private double[] getCoordinate_7_44_point_8()
		{
			double[] value = {-0.704074,0.689102,0.581577,-0.709311,0.654807,0.213102,-7.401358,0.654828,0.355766,-0.709311,0.654807,0.213102,-0.704074,0.689102,0.581577,-0.704074,0.689102,0.581577,-7.396121,0.689107,0.724241,-7.401358,0.654828,0.355766,-0.709311,0.742408,0.213102,-7.401358,0.742428,0.355766,-7.396121,0.710814,0.724241,-7.396121,0.710814,0.724241,-0.704074,0.710809,0.581577,-0.709311,0.742408,0.213102,-2.003660,0.742430,9.157136,-2.003660,0.654830,9.157137,-1.714388,0.689111,9.258720,-1.714388,0.689111,9.258720,-1.714388,0.710818,9.258720,-2.003660,0.742430,9.157136,-0.056962,0.654808,0.843409,-0.056962,0.742408,0.843409,0.232310,0.710809,0.944993,0.232310,0.710809,0.944993,0.232310,0.689102,0.944993,-0.056962,0.654808,0.843409,-2.003660,0.654830,9.157137,-0.056962,0.654808,0.843409,0.232310,0.689102,0.944993,0.232310,0.689102,0.944993,-1.714388,0.689111,9.258720,-2.003660,0.654830,9.157137,-0.056962,0.742408,0.843409,-2.003660,0.742430,9.157136,-1.714388,0.710818,9.258720,-1.714388,0.710818,9.258720,0.232310,0.710809,0.944993,-0.056962,0.742408,0.843409,6.198867,0.742409,4.894412,6.198867,0.654809,4.894412,6.367851,0.689104,4.589472,6.367851,0.689104,4.589472,6.367851,0.710811,4.589472,6.198867,0.742409,4.894412,0.660710,0.654807,0.291675,0.660710,0.742407,0.291675,0.829695,0.710809,-0.013265,0.829695,0.710809,-0.013265,0.829695,0.689102,-0.013265,0.660710,0.654807,0.291675,6.198867,0.654809,4.894412,0.660710,0.654807,0.291675,0.829695,0.689102,-0.013265,0.829695,0.689102,-0.013265,6.367851,0.689104,4.589472,6.198867,0.654809,4.894412,0.660710,0.742407,0.291675,6.198867,0.742409,4.894412,6.367851,0.710811,4.589472,6.367851,0.710811,4.589472,0.829695,0.710809,-0.013265,0.660710,0.742407,0.291675,0.085446,0.654807,-0.042712,0.085081,0.654807,0.043790,0.196303,0.583005,0.020917,0.196303,0.583005,0.020917,0.196450,0.583005,-0.015523,0.085446,0.654807,-0.042712,0.085081,0.654807,0.043790,0.085081,0.192342,0.043790,0.196303,0.237778,0.020917,0.196303,0.237778,0.020917,0.196303,0.583005,0.020917,0.085081,0.654807,0.043790,-0.085446,0.192342,0.042713,-0.085446,0.654807,0.042712,-0.196450,0.583005,0.015523,-0.196450,0.583005,0.015523,-0.196450,0.237778,0.015523,-0.085446,0.192342,0.042713,0.085446,0.192342,-0.042712,0.085446,0.654807,-0.042712,0.196450,0.583005,-0.015523,0.196450,0.583005,-0.015523,0.196450,0.237778,-0.015523,0.085446,0.192342,-0.042712,0.085081,0.192342,0.043790,0.085446,0.192342,-0.042712,0.196450,0.237778,-0.015523,0.196450,0.237778,-0.015523,0.196303,0.237778,0.020917,0.085081,0.192342,0.043790,-0.085081,0.192342,-0.043789,-0.085446,0.192342,0.042713,-0.196450,0.237778,0.015523,-0.196450,0.237778,0.015523,-0.196303,0.237778,-0.020917,-0.085081,0.192342,-0.043789,-0.085446,0.654807,0.042712,-0.085081,0.654807,-0.043790};
			return value;
		}
		private double[] getCoordinate_7_44_point_9()
		{
			double[] value = {-0.196303,0.583005,-0.020917,-0.196303,0.583005,-0.020917,-0.196450,0.583005,0.015523,-0.085446,0.654807,0.042712,-0.085081,0.654807,-0.043790,-0.085081,0.192342,-0.043789,-0.196303,0.237778,-0.020917,-0.196303,0.237778,-0.020917,-0.196303,0.583005,-0.020917,-0.085081,0.654807,-0.043790,-0.035757,0.654807,0.104194,-0.035757,0.919008,0.104194,-0.035757,0.742407,0.104194,0.085081,0.742407,0.043790,0.034878,0.919008,0.104640,0.085081,0.654807,0.043790};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_7_45_vector_1()
		{
			double[] value = {0.941690,0.066713,-0.329803,0.778297,-0.559018,0.285925,0.781796,-0.557520,-0.279224,0.941690,0.066713,-0.329803,0.938294,0.065422,0.339595,0.778297,-0.559018,0.285925,0.938294,0.065422,0.339595,0.359419,-0.546573,0.756357,0.778297,-0.559018,0.285925,0.938294,0.065422,0.339595,0.434530,0.074361,0.897582,0.359419,-0.546573,0.756357,0.434530,0.074361,0.897582,-0.343815,-0.547225,0.763110,0.359419,-0.546573,0.756357,0.434530,0.074361,0.897582,-0.413692,0.075530,0.907279,-0.343815,-0.547225,0.763110,-0.413692,0.075530,0.907279,-0.780161,-0.556086,0.286562,-0.343815,-0.547225,0.763110,-0.413692,0.075530,0.907279,-0.938500,0.066791,0.338757,-0.780161,-0.556086,0.286562,-0.938500,0.066791,0.338757,-0.776908,-0.557370,-0.292835,-0.780161,-0.556086,0.286562,-0.938500,0.066791,0.338757,-0.935081,0.065730,-0.348286,-0.776908,-0.557370,-0.292835,-0.935081,0.065730,-0.348286,-0.352020,-0.547255,-0.759338,-0.776908,-0.557370,-0.292835,-0.935081,0.065730,-0.348286,-0.425813,0.074450,-0.901743,-0.352020,-0.547255,-0.759338,-0.425813,0.074450,-0.901743,0.350903,-0.546415,-0.760459,-0.352020,-0.547255,-0.759338,-0.425813,0.074450,-0.901743,0.422215,0.075716,-0.903328,0.350903,-0.546415,-0.760459,0.422215,0.075716,-0.903328,0.781796,-0.557520,-0.279224,0.350903,-0.546415,-0.760459,0.422215,0.075716,-0.903328,0.941690,0.066713,-0.329803,0.781796,-0.557520,-0.279224,0.781796,-0.557520,-0.279224,0.651730,-0.721824,0.232848,0.652773,-0.723380,-0.224965,0.781796,-0.557520,-0.279224,0.778297,-0.559018,0.285925,0.651730,-0.721824,0.232848,0.778297,-0.559018,0.285925,0.281912,-0.755114,0.591885,0.651730,-0.721824,0.232848,0.778297,-0.559018,0.285925,0.359419,-0.546573,0.756357,0.281912,-0.755114,0.591885,0.359419,-0.546573,0.756357,-0.289533,-0.754708,0.588716,0.281912,-0.755114,0.591885,0.359419,-0.546573,0.756357,-0.343815,-0.547225,0.763110,-0.289533,-0.754708,0.588716,-0.343815,-0.547225,0.763110,-0.652756,-0.723097,0.225920,-0.289533,-0.754708,0.588716,-0.343815,-0.547225,0.763110,-0.780161,-0.556086,0.286562,-0.652756,-0.723097,0.225920,-0.780161,-0.556086,0.286562,-0.651730,-0.721824,-0.232847,-0.652756,-0.723097,0.225920,-0.780161,-0.556086,0.286562,-0.776908,-0.557370,-0.292835,-0.651730,-0.721824,-0.232847,-0.776908,-0.557370,-0.292835,-0.282744,-0.754394,-0.592406,-0.651730,-0.721824,-0.232847,-0.776908,-0.557370,-0.292835,-0.352020,-0.547255,-0.759338,-0.282744,-0.754394,-0.592406,-0.352020,-0.547255,-0.759338,0.287369,-0.755874,-0.588279,-0.282744,-0.754394,-0.592406,-0.352020,-0.547255,-0.759338,0.350903,-0.546415,-0.760459,0.287369,-0.755874,-0.588279,0.350903,-0.546415,-0.760459,0.652773,-0.723380,-0.224965,0.287369,-0.755874,-0.588279,0.350903,-0.546415,-0.760459,0.781796,-0.557520,-0.279224,0.652773,-0.723380,-0.224965,0.999992,0.0,0.004037,0.999992,0.0,0.004037,0.999992,0.0,0.004036,0.387582,0.439007,0.810588};
			return value;
		}
		private double[] getNormal_7_45_vector_2()
		{
			double[] value = {-0.287959,0.0,0.957643,-0.405800,0.427159,0.807998,-0.287959,0.0,0.957643,-0.777753,0.0,0.628569,-0.784630,0.489066,0.381013,-0.771361,0.0,-0.636398,-0.771361,0.0,-0.636398,-0.394139,0.432035,-0.811172,-0.423522,0.0,-0.905886,0.006317,0.0,-0.999980,0.403673,0.431413,-0.806803,0.287959,0.0,-0.957643,0.777753,0.0,-0.628570,0.784630,0.489065,-0.381013,0.784630,0.489065,-0.381013,0.888115,0.333380,0.316399,0.887896,0.332718,-0.317710,0.784630,0.489065,-0.381013,0.781217,0.492438,0.383672,0.888115,0.333380,0.316399,0.781217,0.492438,0.383672,0.400052,0.357519,0.843883,0.888115,0.333380,0.316399,0.781217,0.492438,0.383672,0.387582,0.439007,0.810588,0.400052,0.357519,0.843883,0.387582,0.439007,0.810588,-0.389398,0.352184,0.851079,0.400052,0.357519,0.843883,0.387582,0.439007,0.810588,-0.405800,0.427159,0.807998,-0.389398,0.352184,0.851079,-0.405800,0.427159,0.807998,-0.885797,0.330499,0.325783,-0.389398,0.352184,0.851079,-0.405800,0.427159,0.807998,-0.784630,0.489066,0.381013,-0.885797,0.330499,0.325783,-0.784630,0.489066,0.381013,-0.884789,0.332968,-0.326008,-0.885797,0.330499,0.325783,-0.784630,0.489066,0.381013,-0.780833,0.489530,-0.388149,-0.884789,0.332968,-0.326008,-0.780833,0.489530,-0.388149,-0.390298,0.355638,-0.849229,-0.884789,0.332968,-0.326008,-0.780833,0.489530,-0.388149,-0.394139,0.432035,-0.811172,-0.390298,0.355638,-0.849229,-0.394139,0.432035,-0.811172,0.399853,0.355426,-0.844861,-0.390298,0.355638,-0.849229,-0.394139,0.432035,-0.811172,0.403673,0.431413,-0.806803,0.399853,0.355426,-0.844861,0.403673,0.431413,-0.806803,0.887896,0.332718,-0.317710,0.399853,0.355426,-0.844861,0.403673,0.431413,-0.806803,0.784630,0.489065,-0.381013,0.887896,0.332718,-0.317710,0.887896,0.332718,-0.317710,0.944125,0.0,0.329587,0.943502,0.0,-0.331365,0.887896,0.332718,-0.317710,0.888115,0.333380,0.316399,0.944125,0.0,0.329587,0.888115,0.333380,0.316399,0.433596,0.0,0.901107,0.944125,0.0,0.329587,0.888115,0.333380,0.316399,0.400052,0.357519,0.843883,0.433596,0.0,0.901107,0.400052,0.357519,0.843883,-0.424017,0.0,0.905654,0.433596,0.0,0.901107,0.400052,0.357519,0.843883,-0.389398,0.352184,0.851079,-0.424017,0.0,0.905654,-0.389398,0.352184,0.851079,-0.939861,0.0,0.341558,-0.424017,0.0,0.905654,-0.389398,0.352184,0.851079,-0.885797,0.330499,0.325783,-0.939861,0.0,0.341558,-0.885797,0.330499,0.325783,-0.940392,0.0,-0.340093,-0.939861,0.0,0.341558,-0.885797,0.330499,0.325783,-0.884789,0.332968,-0.326008,-0.940392,0.0,-0.340093,-0.884789,0.332968,-0.326008,-0.423522,0.0,-0.905886,-0.940392,0.0,-0.340093,-0.884789,0.332968,-0.326008,-0.390298,0.355638,-0.849229,-0.423522,0.0,-0.905886,-0.390298,0.355638,-0.849229,0.433795,0.0,-0.901012};
			return value;
		}
		private double[] getNormal_7_45_vector_3()
		{
			double[] value = {-0.423522,0.0,-0.905886,-0.390298,0.355638,-0.849229,0.399853,0.355426,-0.844861,0.433795,0.0,-0.901012,0.399853,0.355426,-0.844861,0.943502,0.0,-0.331365,0.433795,0.0,-0.901012,0.399853,0.355426,-0.844861,0.887896,0.332718,-0.317710,0.943502,0.0,-0.331365,0.943502,0.0,-0.331365,0.651730,-0.721824,0.232848,0.893631,0.0,0.448802,0.652773,-0.723380,-0.224965,0.651730,-0.721824,0.232848,0.943502,0.0,-0.331365,0.771361,0.0,0.636398,0.281912,-0.755114,0.591885,0.387582,0.439007,0.810588,0.651730,-0.721824,0.232848,0.281912,-0.755114,0.591885,0.893631,0.0,0.448802,0.387582,0.439007,0.810588,-0.289533,-0.754708,0.588716,-0.287959,0.0,0.957643,0.281912,-0.755114,0.591885,-0.289533,-0.754708,0.588716,0.387582,0.439007,0.810588,-0.928078,0.0,0.372387,-0.652756,-0.723097,0.225920,-0.943502,0.0,0.331365,-0.289533,-0.754708,0.588716,-0.652756,-0.723097,0.225920,-0.928078,0.0,0.372387,-0.999899,0.0,0.014212,-0.999899,0.0,0.014212,-0.999899,0.0,0.014212,-0.943502,0.0,0.331365,-0.651730,-0.721824,-0.232847,-0.893631,0.0,-0.448802,-0.652756,-0.723097,0.225920,-0.651730,-0.721824,-0.232847,-0.943502,0.0,0.331365,-0.893631,0.0,-0.448802,-0.282744,-0.754394,-0.592406,-0.771361,0.0,-0.636398,-0.651730,-0.721824,-0.232847,-0.282744,-0.754394,-0.592406,-0.893631,0.0,-0.448802,-0.423522,0.0,-0.905886,0.287369,-0.755874,-0.588279,0.006317,0.0,-0.999980,-0.282744,-0.754394,-0.592406,0.287369,-0.755874,-0.588279,-0.423522,0.0,-0.905886,0.287959,0.0,-0.957643,0.652773,-0.723380,-0.224965,0.943502,0.0,-0.331365,0.287369,-0.755874,-0.588279,0.652773,-0.723380,-0.224965,0.287959,0.0,-0.957643,0.874675,0.0,0.484710,0.874675,0.0,0.484710,0.874675,0.0,0.484710,0.874675,0.0,0.484710,0.874675,0.0,0.484710,0.874675,0.0,0.484710,-0.009574,0.000007,0.999954,-0.009576,0.000004,0.999954,-0.009578,0.0,0.999954,-0.009572,0.000011,0.999954,-0.009576,0.000004,0.999954,-0.009574,0.000007,0.999954,-0.999899,0.0,0.014212,-0.999899,0.0,0.014212,-0.999899,0.0,0.014212,-0.893631,0.0,-0.448802,-0.771361,0.0,-0.636398,-0.771361,0.0,-0.636398,0.006317,0.0,-0.999980,0.287959,0.0,-0.957643,0.287959,0.0,-0.957643,-0.430259,-0.000975,-0.902705,-0.431090,0.000764,-0.902309,-0.430633,-0.000192,-0.902527,0.768385,0.0,-0.639988,0.768385,0.0,-0.639988,0.768385,0.0,-0.639988,0.768385,0.0,-0.639988,0.768385,0.0,-0.639988,0.768385,0.0,-0.639988,0.999992,0.0,0.004037,0.999992,0.0,0.004036,0.999992,0.0,0.004036,0.771361,0.0,0.636398,0.387582,0.439007,0.810588,0.781217,0.492438,0.383672,-0.287959,0.0,0.957643,-0.784630,0.489066,0.381013,-0.405800,0.427159,0.807998};
			return value;
		}
		private double[] getNormal_7_45_vector_4()
		{
			double[] value = {-0.999992,0.0,-0.004035,-0.999992,0.0,-0.004035,-0.999992,0.0,-0.004036,-0.999992,0.0,-0.004035,-0.999992,0.0,-0.004036,-0.999992,0.0,-0.004036,-0.771361,0.0,-0.636398,-0.394139,0.432035,-0.811172,-0.780833,0.489530,-0.388149,-0.423522,0.0,-0.905886,0.403673,0.431413,-0.806803,-0.394139,0.432035,-0.811172,0.287959,0.0,-0.957643,0.784630,0.489065,-0.381013,0.403673,0.431413,-0.806803,-0.771361,0.0,-0.636398,-0.771361,0.0,-0.636398,-0.771361,0.0,-0.636398,-0.771361,0.0,-0.636398,-0.282744,-0.754394,-0.592406,-0.423522,0.0,-0.905886,-0.771361,0.0,-0.636398,-0.423522,0.0,-0.905886,-0.394139,0.432035,-0.811172,-0.431090,0.000764,-0.902309,-0.431464,0.001547,-0.902129,-0.430633,-0.000192,-0.902527,0.006317,0.0,-0.999980,0.287369,-0.755874,-0.588279,0.287959,0.0,-0.957643,0.006317,0.0,-0.999980,0.287959,0.0,-0.957643,0.006317,0.0,-0.999980,0.006317,0.0,-0.999980,0.287959,0.0,-0.957643,0.403673,0.431413,-0.806803,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.002699,-0.999995,-0.001325,0.002699,-0.999995,-0.001325,0.002699,-0.999996,-0.001325,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.000004,0.0,-1.0,-0.000004,0.0,-1.0,-0.000004,0.127346,0.0,0.991858,0.127346,0.0,0.991858,0.127346,0.0,0.991858,0.127346,0.0,0.991858,0.127346,0.0,0.991858,0.127346,0.0,0.991858,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.000004,0.0,1.0,0.000004,0.0,1.0,0.000004,-0.000003,1.0,0.000452,-0.000003,1.0,0.000452,-0.000003,1.0,0.000452,-0.003244,0.999994,0.001315,-0.003244,0.999994,0.001315,-0.003244,0.999994,0.001315,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.771361,0.0,0.636398,0.771361,0.0,0.636398,0.771361,0.0,0.636398,0.771361,0.0,0.636398,0.771361,0.0,0.636398,0.771361,0.0,0.636398,-0.093189,0.0,-0.995649,-0.093189,0.0,-0.995649,-0.093189,0.0,-0.995649,-0.093189,0.0,-0.995649,-0.093189,0.0,-0.995649,-0.093189,0.0,-0.995649,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.771361,0.0,-0.636398,-0.771361,0.0,-0.636398,-0.771361,0.0,-0.636398,-0.771361,0.0,-0.636398,-0.771361,0.0,-0.636398,-0.771361,0.0,-0.636398,-0.948537,0.001969,0.316662};
			return value;
		}
		private double[] getNormal_7_45_vector_5()
		{
			double[] value = {-0.948536,0.001969,0.316662,-0.948537,0.001969,0.316662,-0.948536,0.001969,0.316662,-0.948537,0.001969,0.316662,-0.948537,0.001969,0.316662,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.951366,-0.003363,-0.308043,0.951366,-0.003363,-0.308043,0.951366,-0.003363,-0.308043,0.951366,-0.003363,-0.308043,0.951366,-0.003363,-0.308043,0.951366,-0.003363,-0.308043,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.000008,-1.0,0.0,-0.000008,-1.0,0.0,-0.000008,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.000016,1.0,0.000003,0.000016,1.0,0.000003,0.000016,1.0,0.000003,-0.630357,0.0,0.776305,-0.630357,0.0,0.776305,-0.630357,0.0,0.776305,-0.630357,0.0,0.776305,-0.630357,0.0,0.776305,-0.630357,0.0,0.776305,0.625378,0.0,-0.780322,0.625378,0.0,-0.780322,0.625378,0.0,-0.780322,0.625378,0.0,-0.780322,0.625378,0.0,-0.780322,0.625378,0.0,-0.780322,0.982991,0.0,0.183654,0.982991,0.0,0.183654,0.982991,0.0,0.183654,0.982991,0.0,0.183654,0.982991,0.0,0.183654,0.982991,0.0,0.183654,-0.988354,0.0,-0.152171,-0.988354,0.0,-0.152171,-0.988354,0.0,-0.152171,-0.988354,0.0,-0.152171,-0.988354,0.0,-0.152171,-0.988354,0.0,-0.152171,-0.000003,-1.0,0.0,-0.000003,-1.0,0.0,-0.000003,-1.0,0.0,0.539811,0.0,0.841787,0.539811,0.0,0.841787,0.539811,0.0,0.841786,0.539811,0.0,0.841786,0.539811,0.0,0.841786,0.539811,0.0,0.841786,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.099915,0.0,-0.994996,0.099915,0.0,-0.994996,0.099915,0.0,-0.994996,0.099915,0.0,-0.994996,0.099915,0.0,-0.994996,0.099915,0.0,-0.994996,0.0,-1.0,0.000003,0.0,-1.0,0.000003,0.0,-1.0,0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.954592,0.0,-0.297916,0.954592,0.0,-0.297916,0.954592,0.0,-0.297916,0.954592,0.0,-0.297916,0.954592,0.0,-0.297916,0.954592,0.0,-0.297916,0.000003,1.0,0.0,0.000003,1.0,0.0,0.000003,1.0,0.0,0.000657,0.999999,0.001377,0.000657,0.999999,0.001377};
			return value;
		}
		private double[] getNormal_7_45_vector_6()
		{
			double[] value = {0.000657,0.999999,0.001377,-0.746600,0.002296,0.665269,-0.746600,0.002296,0.665269,-0.746600,0.002296,0.665269,-0.746601,0.002295,0.665269,-0.746600,0.002295,0.665269,-0.746600,0.002295,0.665269,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.952483,0.0,-0.304591,-0.952483,0.0,-0.304591,-0.952483,0.0,-0.304591,-0.952483,0.0,-0.304591,-0.952483,0.0,-0.304591,-0.952483,0.0,-0.304591,-0.000658,-0.999999,-0.001376,-0.000658,-0.999999,-0.001376,-0.000658,-0.999999,-0.001376,-0.000003,-1.0,0.0,-0.000003,-1.0,0.0,-0.000003,-1.0,0.0,-0.000003,-1.0,0.0,-0.000003,-1.0,0.0,-0.000003,-1.0,0.0,0.021314,0.0,0.999773,0.021314,0.0,0.999773,0.021314,0.0,0.999773,0.021314,0.000003,0.999773,0.021314,0.000003,0.999773,0.021314,0.000003,0.999773,-0.639168,0.0,0.769067,-0.639168,0.0,0.769067,-0.639168,0.0,0.769067,-0.639168,0.0,0.769067,-0.639168,0.0,0.769067,-0.639168,0.0,0.769067,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.639168,0.0,-0.769067,0.639168,0.0,-0.769067,0.639168,0.0,-0.769067,0.639168,0.0,-0.769067,0.639168,0.0,-0.769067,0.639168,0.0,-0.769067,-0.973664,0.0,-0.227988,-0.973664,0.0,-0.227988,-0.973664,0.0,-0.227988,-0.973664,0.0,-0.227988,-0.973664,0.0,-0.227988,-0.973664,0.0,-0.227988,0.0,-1.0,0.000003,0.0,-1.0,0.000003,0.0,-1.0,0.000003,0.0,-1.0,0.000003,0.0,-1.0,0.000003,0.0,-1.0,0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.973664,0.000003,0.227988,0.973664,0.000003,0.227988,0.973664,0.000003,0.227988,0.973664,0.0,0.227988,0.973664,0.0,0.227988,0.973664,0.0,0.227988,0.000003,1.0,0.0,0.000003,1.0,0.0,0.000003,1.0,0.0,0.000003,1.0,0.0,0.000003,1.0,0.0,0.000003,1.0,0.0,-0.021314,0.0,-0.999773,-0.021314,0.0,-0.999773,-0.021314,0.0,-0.999773,-0.021314,0.0,-0.999773,-0.021314,0.0,-0.999773,-0.021314,0.0,-0.999773,0.000841,0.999998,0.001764,0.000841,0.999998,0.001764,0.000841,0.999998,0.001764,0.000841,0.999998,0.001764,0.000841,0.999998,0.001764,0.000841,0.999998,0.001764};
			return value;
		}
		private double[] getNormal_7_45_vector_7()
		{
			double[] value = {-0.952848,0.007875,0.303347,-0.952848,0.007875,0.303347,-0.952848,0.007875,0.303347,-0.952848,0.007879,0.303347,-0.952847,0.007879,0.303347,-0.952847,0.007879,0.303347,0.780657,0.0,0.624960,0.780657,0.0,0.624960,0.780657,0.0,0.624960,0.780657,0.0,0.624960,0.780657,0.0,0.624960,0.780657,0.0,0.624960,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.780657,0.0,-0.624960,-0.780657,0.0,-0.624960,-0.780657,0.0,-0.624960,-0.780657,0.0,-0.624960,-0.780657,0.0,-0.624960,-0.780657,0.0,-0.624960,0.952871,-0.003369,-0.303358,0.952871,-0.003369,-0.303358,0.952871,-0.003369,-0.303358,0.952871,-0.003367,-0.303358,0.952871,-0.003367,-0.303358,0.952871,-0.003367,-0.303358,-0.000843,-0.999998,-0.001763,-0.000843,-0.999998,-0.001763,-0.000843,-0.999998,-0.001763,-0.000844,-0.999998,-0.001763,-0.000844,-0.999998,-0.001763,-0.000844,-0.999998,-0.001763,-0.430928,-0.000973,-0.902386,-0.430928,-0.000973,-0.902386,-0.430928,-0.000973,-0.902386,-0.430366,-0.003932,-0.902646,-0.430366,-0.003932,-0.902646,-0.430366,-0.003932,-0.902646,0.430774,0.000980,0.902459,0.430774,0.000980,0.902459,0.430774,0.000980,0.902459,0.431254,0.003948,0.902222,0.431254,0.003948,0.902222,0.431254,0.003948,0.902222,-0.131918,0.990283,0.044009,-0.131918,0.990283,0.044009,-0.131918,0.990283,0.044009,-0.097197,0.994768,0.031443,-0.097197,0.994768,0.031443,-0.097197,0.994768,0.031443,-0.106275,-0.993828,0.031814,-0.106275,-0.993828,0.031814,-0.106275,-0.993828,0.031814,-0.069975,-0.997311,0.021775,-0.069975,-0.997311,0.021775,-0.069975,-0.997311,0.021775,0.768385,0.0,-0.639988,0.768385,0.0,-0.639988,0.768385,0.0,-0.639988,0.768385,0.0,-0.639988,0.768385,0.0,-0.639988,0.768385,0.0,-0.639988,-0.768386,0.0,0.639986,-0.768386,0.0,0.639986,-0.768386,0.0,0.639986,-0.768386,0.0,0.639986,-0.768386,0.0,0.639986,-0.768386,0.0,0.639987,-0.080939,-0.994611,-0.064796,-0.080939,-0.994611,-0.064796,-0.080939,-0.994611,-0.064796,-0.080939,-0.994611,-0.064796,-0.080939,-0.994611,-0.064796,-0.080939,-0.994611,-0.064796,-0.074636,0.995419,-0.059751,-0.074636,0.995419,-0.059751,-0.074636,0.995419,-0.059751,-0.074636,0.995419,-0.059751,-0.074636,0.995419,-0.059751,-0.074636,0.995419,-0.059751,-0.999899,0.0,0.014213,-0.999899,0.0,0.014213,-0.999899,0.0,0.014213,-0.999899,0.0,0.014213,-0.999899,0.0,0.014213,-0.999899,0.0,0.014213,0.999899,0.0,-0.014212,0.999899,0.0,-0.014212,0.999899,0.0,-0.014212,0.999899,0.0,-0.014212};
			return value;
		}
		private double[] getNormal_7_45_vector_8()
		{
			double[] value = {0.999899,0.0,-0.014212,0.999899,0.0,-0.014212,0.001972,-0.995697,0.092643,0.001972,-0.995697,0.092643,0.001972,-0.995697,0.092643,0.001973,-0.995701,0.092603,0.001973,-0.995701,0.092603,0.001973,-0.995701,0.092603,0.001825,0.996340,0.085456,0.001825,0.996340,0.085456,0.001825,0.996340,0.085456,0.001822,0.996344,0.085415,0.001822,0.996344,0.085415,0.001822,0.996344,0.085415,-0.331335,0.000010,0.943513,-0.331335,0.000010,0.943513,-0.331335,0.000010,0.943513,-0.331336,0.0,0.943513,-0.331336,0.0,0.943513,-0.331337,0.0,0.943513,0.331335,0.0,-0.943513,0.331335,0.0,-0.943513,0.331335,0.0,-0.943513,0.331336,-0.000005,-0.943513,0.331336,-0.000005,-0.943513,0.331336,-0.000005,-0.943513,0.108860,-0.993730,0.025493,0.108860,-0.993730,0.025493,0.108860,-0.993730,0.025493,0.108818,-0.993735,0.025481,0.108818,-0.993735,0.025481,0.108818,-0.993735,0.025481,0.100441,0.994665,0.023516,0.100441,0.994665,0.023516,0.100441,0.994665,0.023516,0.100397,0.994670,0.023507,0.100397,0.994670,0.023507,0.100397,0.994670,0.023507,0.874677,0.0,0.484707,0.874677,0.0,0.484707,0.874677,0.0,0.484707,0.874677,0.0,0.484707,0.874677,0.0,0.484707,0.874677,0.0,0.484707,-0.874676,0.0,-0.484709,-0.874676,0.0,-0.484709,-0.874676,0.0,-0.484709,-0.874676,0.0,-0.484709,-0.874676,0.0,-0.484709,-0.874676,0.0,-0.484709,0.063677,-0.995025,-0.076617,0.063677,-0.995025,-0.076617,0.063677,-0.995025,-0.076617,0.063677,-0.995025,-0.076618,0.063677,-0.995025,-0.076618,0.063677,-0.995025,-0.076618,0.058714,0.995772,-0.070647,0.058714,0.995772,-0.070647,0.058714,0.995772,-0.070647,0.058714,0.995772,-0.070647,0.058714,0.995772,-0.070647,0.058714,0.995772,-0.070647,0.542702,0.839922,0.002285,0.542702,0.839922,0.002285,0.542702,0.839922,0.002285,0.542741,0.839897,0.002190,0.542741,0.839897,0.002190,0.542741,0.839897,0.002190,0.201436,0.0,0.979502,0.201436,0.0,0.979502,0.201436,0.0,0.979502,0.201436,0.0,0.979502,0.201436,0.0,0.979502,0.201436,0.0,0.979502,-0.237908,0.0,0.971288,-0.237908,0.0,0.971288,-0.237908,0.0,0.971288,-0.237909,0.0,0.971288,-0.237909,0.0,0.971288,-0.237909,0.0,0.971288,0.237908,0.0,-0.971288,0.237908,0.0,-0.971288,0.237908,0.0,-0.971288,0.237907,0.0,-0.971288,0.237907,0.0,-0.971288,0.237907,0.0,-0.971288,0.378481,-0.925608,0.001594,0.378481,-0.925608,0.001594,0.378481,-0.925608,0.001594,0.378450,-0.925620,0.001528,0.378450,-0.925620,0.001528,0.378450,-0.925620,0.001528,-0.378481,-0.925608,-0.001594,-0.378481,-0.925608,-0.001594,-0.378481,-0.925608,-0.001594,-0.378451,-0.925620,-0.001527,-0.378451,-0.925620,-0.001527,-0.378451,-0.925620,-0.001527,-0.542702,0.839922,-0.002286,-0.542702,0.839922,-0.002286};
			return value;
		}
		private double[] getNormal_7_45_vector_9()
		{
			double[] value = {-0.542702,0.839922,-0.002286,-0.542741,0.839897,-0.002190,-0.542741,0.839897,-0.002190,-0.542741,0.839897,-0.002190,-0.201435,0.0,-0.979502,-0.201435,0.0,-0.979502,-0.201435,0.0,-0.979502,-0.201435,0.0,-0.979502,-0.201435,0.0,-0.979502,-0.201435,0.0,-0.979502,-0.287959,0.0,0.957643,-0.289533,-0.754708,0.588716,-0.928078,0.0,0.372387,0.893631,0.0,0.448802,0.281912,-0.755114,0.591885,0.771361,0.0,0.636398};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getTextureCoordinate_7_46_point_1()
		{
			double[] value = {0.549921,0.987124,0.531222,0.950828,0.549686,0.950926,0.549921,0.987124,0.531215,0.986978,0.531222,0.950828,0.610952,0.986457,0.590377,0.946283,0.610499,0.946713,0.610952,0.986457,0.590349,0.986579,0.590377,0.946283,0.590349,0.986579,0.567992,0.946200,0.590377,0.946283,0.590349,0.986579,0.568063,0.986500,0.567992,0.946200,0.568063,0.986500,0.548287,0.946513,0.567992,0.946200,0.568063,0.986500,0.548332,0.986799,0.548287,0.946513,0.548332,0.986799,0.531810,0.947042,0.548287,0.946513,0.548332,0.986799,0.531846,0.986771,0.531810,0.947042,0.610471,0.987071,0.592943,0.950879,0.610491,0.950861,0.610471,0.987071,0.592567,0.987079,0.592943,0.950879,0.592567,0.987079,0.572549,0.950948,0.592943,0.950879,0.592567,0.987079,0.572437,0.987144,0.572549,0.950948,0.572437,0.987144,0.549686,0.950926,0.572549,0.950948,0.572437,0.987144,0.549921,0.987124,0.549686,0.950926,0.549686,0.950926,0.531197,0.937754,0.549715,0.937696,0.549686,0.950926,0.531222,0.950828,0.531197,0.937754,0.610499,0.946713,0.590058,0.939230,0.609892,0.939449,0.610499,0.946713,0.590377,0.946283,0.590058,0.939230,0.590377,0.946283,0.568680,0.939192,0.590058,0.939230,0.590377,0.946283,0.567992,0.946200,0.568680,0.939192,0.567992,0.946200,0.548778,0.939356,0.568680,0.939192,0.567992,0.946200,0.548287,0.946513,0.548778,0.939356,0.548287,0.946513,0.532202,0.939627,0.548778,0.939356,0.548287,0.946513,0.531810,0.947042,0.532202,0.939627,0.610491,0.950861,0.592951,0.937658,0.610467,0.937629,0.610491,0.950861,0.592943,0.950879,0.592951,0.937658,0.592943,0.950879,0.572597,0.937787,0.592951,0.937658,0.592943,0.950879,0.572549,0.950948,0.572597,0.937787,0.572549,0.950948,0.549715,0.937696,0.572597,0.937787,0.572549,0.950948,0.549686,0.950926,0.549715,0.937696,0.617521,0.713975,0.616217,0.713975,0.616217,0.630921,0.590058,0.833104};
			return value;
		}
		private double[] getTextureCoordinate_7_46_point_2()
		{
			double[] value = {0.568680,0.880857,0.568680,0.833066,0.568680,0.880857,0.548778,0.881021,0.548778,0.833231,0.610467,0.870390,0.610451,0.870433,0.592951,0.834840,0.592951,0.870413,0.583757,0.870500,0.572597,0.835018,0.572597,0.870520,0.549715,0.870444,0.549715,0.834905,0.549715,0.834905,0.531211,0.816952,0.549770,0.817013,0.549715,0.834905,0.531268,0.834998,0.531211,0.816952,0.609892,0.833323,0.590279,0.817224,0.610281,0.817578,0.609892,0.833323,0.590058,0.833104,0.590279,0.817224,0.590058,0.833104,0.568338,0.817162,0.590279,0.817224,0.590058,0.833104,0.568680,0.833066,0.568338,0.817162,0.568680,0.833066,0.548471,0.817428,0.568338,0.817162,0.568680,0.833066,0.548778,0.833231,0.548471,0.817428,0.548778,0.833231,0.531951,0.817869,0.548471,0.817428,0.548778,0.833231,0.532202,0.833502,0.531951,0.817869,0.610467,0.834747,0.593220,0.817090,0.610472,0.816794,0.610467,0.834747,0.592951,0.834840,0.593220,0.817090,0.592951,0.834840,0.572687,0.816976,0.593220,0.817090,0.592951,0.834840,0.572597,0.835018,0.572687,0.816976,0.572597,0.835018,0.549770,0.817013,0.572687,0.816976,0.572597,0.835018,0.549715,0.834905,0.549770,0.817013,0.549770,0.817013,0.531211,0.747439,0.549770,0.747313,0.549770,0.817013,0.531211,0.816952,0.531211,0.747439,0.610281,0.817578,0.590279,0.742100,0.610281,0.742454,0.610281,0.817578,0.590279,0.817224,0.590279,0.742100,0.590279,0.817224,0.568338,0.742038,0.590279,0.742100,0.590279,0.817224,0.568338,0.817162,0.568338,0.742038,0.568338,0.817162,0.548471,0.742303,0.568338,0.742038,0.568338,0.817162,0.548471,0.817428,0.548471,0.742303,0.548471,0.817428,0.531951,0.742745,0.548471,0.742303,0.548471,0.817428,0.531951,0.817869,0.531951,0.742745,0.610472,0.816794,0.593220,0.747475,0.610472,0.747399,0.610472,0.816794,0.593220,0.817090,0.593220,0.747475,0.593220,0.817090,0.572687,0.747233};
			return value;
		}
		private double[] getTextureCoordinate_7_46_point_3()
		{
			double[] value = {0.593220,0.747475,0.593220,0.817090,0.572687,0.816976,0.572687,0.747233,0.572687,0.816976,0.549770,0.747313,0.572687,0.747233,0.572687,0.816976,0.549770,0.817013,0.549770,0.747313,0.549715,0.888481,0.531197,0.937754,0.531197,0.888488,0.549715,0.937696,0.531197,0.937754,0.549715,0.888481,0.609892,0.881114,0.590058,0.939230,0.590058,0.833104,0.609892,0.939449,0.590058,0.939230,0.609892,0.886982,0.590058,0.833104,0.568680,0.939192,0.568680,0.880857,0.590058,0.939230,0.568680,0.939192,0.590058,0.833104,0.568680,0.886725,0.548778,0.939356,0.548778,0.886889,0.568680,0.939192,0.548778,0.939356,0.568680,0.886725,0.026431,0.943300,0.026411,0.981536,0.026431,0.943300,0.548778,0.886889,0.532202,0.939627,0.532202,0.887161,0.548778,0.939356,0.532202,0.939627,0.548778,0.886889,0.610467,0.888474,0.592951,0.937658,0.610451,0.888480,0.610467,0.937629,0.592951,0.937658,0.610467,0.888474,0.592951,0.888477,0.572597,0.937787,0.583642,0.888489,0.592951,0.937658,0.572597,0.937787,0.592951,0.888477,0.572597,0.888492,0.549715,0.937696,0.549715,0.888481,0.572597,0.937787,0.549715,0.937696,0.572597,0.888492,0.021962,0.944223,0.021954,0.982240,0.021954,0.982240,0.021962,0.944223,0.021954,0.982240,0.021962,0.944223,0.020548,0.950922,0.018857,0.983324,0.018857,0.983324,0.020548,0.950922,0.018857,0.983324,0.020548,0.950922,0.026431,0.943300,0.026411,0.981536,0.026411,0.981536,0.567528,0.942347,0.548291,0.942347,0.567528,0.923110,0.583757,0.870500,0.572597,0.888492,0.572597,0.870520,0.015776,0.955095,0.017523,0.982677,0.015787,0.954766,0.015622,0.949851,0.015617,0.984302,0.015617,0.984302,0.015622,0.949851,0.015617,0.984302,0.015622,0.949851,0.617521,0.713975,0.616217,0.630921,0.617521,0.630921,0.609892,0.881114,0.590058,0.833104,0.609892,0.833323,0.568680,0.880857,0.548778,0.833231,0.568680,0.833066};
			return value;
		}
		private double[] getTextureCoordinate_7_46_point_4()
		{
			double[] value = {0.618120,0.716320,0.617943,0.716320,0.618120,0.621697,0.617943,0.716320,0.617943,0.621697,0.618120,0.621697,0.610467,0.870390,0.592951,0.834840,0.610467,0.834747,0.592951,0.870413,0.572597,0.835018,0.592951,0.834840,0.572597,0.870520,0.549715,0.834905,0.572597,0.835018,0.548291,0.942347,0.548387,0.923110,0.567528,0.923110,0.610451,0.888480,0.592951,0.937658,0.592951,0.888477,0.610451,0.870433,0.592951,0.870413,0.592951,0.834840,0.017523,0.982677,0.017506,0.982105,0.015787,0.954766,0.583642,0.888489,0.572597,0.937787,0.572597,0.888492,0.583642,0.888489,0.572597,0.888492,0.583757,0.870500,0.583757,0.870500,0.572597,0.870520,0.572597,0.835018,0.518089,0.854379,0.517683,0.819756,0.461545,0.799561,0.461545,0.799561,0.417740,0.854330,0.518089,0.854379,0.516800,0.855495,0.516618,0.804684,0.447045,0.803399,0.447045,0.803399,0.416644,0.856143,0.516800,0.855495,0.517842,0.850105,0.516825,0.805988,0.463731,0.794950,0.463731,0.794950,0.419498,0.849440,0.517842,0.850105,0.516825,0.805988,0.517375,0.811260,0.464281,0.800223,0.464281,0.800223,0.463731,0.794950,0.516825,0.805988,0.517375,0.811260,0.518391,0.855377,0.420047,0.854713,0.420047,0.854713,0.464281,0.800223,0.517375,0.811260,0.516672,0.820556,0.517058,0.855049,0.416709,0.855000,0.416709,0.855000,0.460490,0.800328,0.516672,0.820556,0.516618,0.804684,0.516800,0.855495,0.416644,0.856143,0.416644,0.856143,0.447045,0.803399,0.516618,0.804684,0.516800,0.855495,0.516800,0.855495,0.416644,0.856143,0.416644,0.856143,0.416644,0.856143,0.516800,0.855495,0.518391,0.855377,0.517842,0.850105,0.419498,0.849440,0.419498,0.849440,0.420047,0.854713,0.518391,0.855377,0.517683,0.819756,0.518215,0.798369,0.461545,0.799561,0.516618,0.804684,0.516618,0.804684,0.447045,0.803399,0.447045,0.803399,0.447045,0.803399,0.516618,0.804684,0.518215,0.798369};
			return value;
		}
		private double[] getTextureCoordinate_7_46_point_5()
		{
			double[] value = {0.517160,0.799137,0.460490,0.800328,0.460490,0.800328,0.461545,0.799561,0.518215,0.798369,0.517160,0.799137,0.516672,0.820556,0.460490,0.800328,0.517058,0.855049,0.518089,0.854379,0.417740,0.854330,0.417740,0.854330,0.416709,0.855000,0.517058,0.855049,0.516374,0.854006,0.518909,0.791250,0.469132,0.800030,0.469132,0.800030,0.418143,0.855374,0.516374,0.854006,0.515751,0.856236,0.513530,0.804698,0.468268,0.802207,0.468268,0.802207,0.418111,0.857777,0.515751,0.856236,0.519423,0.794481,0.514585,0.855565,0.417191,0.856295,0.417191,0.856295,0.467763,0.799902,0.519423,0.794481,0.513530,0.804698,0.515751,0.856236,0.418111,0.857777,0.418111,0.857777,0.468268,0.802207,0.513530,0.804698,0.514585,0.855565,0.516374,0.854006,0.418143,0.855374,0.418143,0.855374,0.417191,0.856295,0.514585,0.855565,0.518909,0.791250,0.519423,0.794481,0.467763,0.799902,0.467763,0.799902,0.469132,0.800030,0.518909,0.791250,0.513530,0.804698,0.513530,0.804698,0.468268,0.802207,0.468268,0.802207,0.468268,0.802207,0.513530,0.804698,0.515751,0.856236,0.515751,0.856236,0.418111,0.857777,0.418111,0.857777,0.418111,0.857777,0.515751,0.856236,0.419498,0.849440,0.463731,0.794950,0.419600,0.783330,0.463731,0.794950,0.464281,0.800223,0.420150,0.788602,0.420150,0.788602,0.419600,0.783330,0.463731,0.794950,0.418143,0.855374,0.469132,0.800030,0.416593,0.781920,0.417191,0.856295,0.414804,0.783480,0.467763,0.799902,0.469132,0.800030,0.467763,0.799902,0.414804,0.783480,0.414804,0.783480,0.416593,0.781920,0.469132,0.800030,0.418111,0.857777,0.468268,0.802207,0.415885,0.779039,0.418111,0.857777,0.415885,0.779039,0.468268,0.802207,0.468268,0.802207,0.468268,0.802207,0.415885,0.779039,0.415885,0.779039,0.415885,0.779039,0.468268,0.802207,0.420047,0.854713,0.420150,0.788602,0.464281,0.800223,0.416709,0.855000,0.418107,0.786090};
			return value;
		}
		private double[] getTextureCoordinate_7_46_point_6()
		{
			double[] value = {0.460490,0.800328,0.461545,0.799561,0.460490,0.800328,0.418107,0.786090,0.418107,0.786090,0.419162,0.780602,0.461545,0.799561,0.416644,0.856143,0.447045,0.803399,0.417791,0.781228,0.416644,0.856143,0.417791,0.781228,0.447045,0.803399,0.447045,0.803399,0.447045,0.803399,0.417791,0.781228,0.417791,0.781228,0.417791,0.781228,0.447045,0.803399,0.417740,0.854330,0.461545,0.799561,0.419162,0.780602,0.512981,0.981409,0.513001,0.943173,0.026431,0.943300,0.026431,0.943300,0.026411,0.981536,0.512981,0.981409,0.513038,0.880172,0.513038,0.880172,0.026468,0.880300,0.026468,0.880300,0.026468,0.880300,0.513038,0.880172,0.512986,0.981620,0.512986,0.981620,0.021954,0.982240,0.021954,0.982240,0.021954,0.982240,0.512986,0.981620,0.512986,0.981620,0.512994,0.943602,0.021962,0.944223,0.021962,0.944223,0.021954,0.982240,0.512986,0.981620,0.512994,0.943602,0.512986,0.981620,0.021954,0.982240,0.021954,0.982240,0.021962,0.944223,0.512994,0.943602,0.514899,0.889704,0.514899,0.889704,0.023867,0.890324,0.023867,0.890324,0.023867,0.890324,0.514899,0.889704,0.510256,0.984098,0.510256,0.984098,0.018857,0.983324,0.018857,0.983324,0.018857,0.983324,0.510256,0.984098,0.510256,0.984098,0.511947,0.951697,0.020548,0.950922,0.020548,0.950922,0.018857,0.983324,0.510256,0.984098,0.511947,0.951697,0.510256,0.984098,0.018857,0.983324,0.018857,0.983324,0.020548,0.950922,0.511947,0.951697,0.511960,0.881036,0.511960,0.881036,0.020561,0.880262,0.020561,0.880262,0.020561,0.880262,0.511960,0.881036,0.513001,0.943173,0.512981,0.981409,0.026411,0.981536,0.026411,0.981536,0.026431,0.943300,0.513001,0.943173,0.512981,0.981409,0.512981,0.981409,0.026411,0.981536,0.026411,0.981536,0.026411,0.981536,0.512981,0.981409,0.509777,0.956802,0.511524,0.984384,0.017523,0.982677,0.017523,0.982677,0.015776,0.955095,0.509777,0.956802};
			return value;
		}
		private double[] getTextureCoordinate_7_46_point_7()
		{
			double[] value = {0.510083,0.886559,0.510072,0.886889,0.016070,0.885183,0.016070,0.885183,0.016081,0.884853,0.510083,0.886559,0.506961,0.984383,0.506961,0.984383,0.015617,0.984302,0.015617,0.984302,0.015617,0.984302,0.506961,0.984383,0.506961,0.984383,0.506967,0.949933,0.015622,0.949851,0.015622,0.949851,0.015617,0.984302,0.506961,0.984383,0.506967,0.949933,0.506961,0.984383,0.015617,0.984302,0.015617,0.984302,0.015622,0.949851,0.506967,0.949933,0.506978,0.888714,0.506978,0.888714,0.015634,0.888632,0.015634,0.888632,0.015634,0.888632,0.506978,0.888714,0.511524,0.984384,0.511508,0.983811,0.017506,0.982105,0.017506,0.982105,0.017523,0.982677,0.511524,0.984384,0.511508,0.983811,0.509788,0.956472,0.015787,0.954766,0.015787,0.954766,0.017506,0.982105,0.511508,0.983811,0.015776,0.955095,0.015787,0.954766,0.016081,0.884853,0.016081,0.884853,0.016070,0.885183,0.015776,0.955095,0.509788,0.956472,0.509777,0.956802,0.510072,0.886889,0.510072,0.886889,0.510083,0.886559,0.509788,0.956472,0.509777,0.956802,0.015776,0.955095,0.016070,0.885183,0.016070,0.885183,0.510072,0.886889,0.509777,0.956802,0.015787,0.954766,0.509788,0.956472,0.510083,0.886559,0.510083,0.886559,0.016081,0.884853,0.015787,0.954766,0.015622,0.949851,0.015622,0.949851,0.015634,0.888632,0.015634,0.888632,0.015634,0.888632,0.015622,0.949851,0.506967,0.949933,0.506967,0.949933,0.506978,0.888714,0.506978,0.888714,0.506978,0.888714,0.506967,0.949933,0.015622,0.949851,0.506967,0.949933,0.506978,0.888714,0.506978,0.888714,0.015634,0.888632,0.015622,0.949851,0.506967,0.949933,0.015622,0.949851,0.015634,0.888632,0.015634,0.888632,0.506978,0.888714,0.506967,0.949933,0.026431,0.943300,0.026431,0.943300,0.026468,0.880300,0.026468,0.880300,0.026468,0.880300,0.026431,0.943300,0.513001,0.943173,0.513001,0.943173,0.513038,0.880172,0.513038,0.880172};
			return value;
		}
		private double[] getTextureCoordinate_7_46_point_8()
		{
			double[] value = {0.513038,0.880172,0.513001,0.943173,0.026431,0.943300,0.513001,0.943173,0.513038,0.880172,0.513038,0.880172,0.026468,0.880300,0.026431,0.943300,0.513001,0.943173,0.026431,0.943300,0.026468,0.880300,0.026468,0.880300,0.513038,0.880172,0.513001,0.943173,0.020548,0.950922,0.020548,0.950922,0.020561,0.880262,0.020561,0.880262,0.020561,0.880262,0.020548,0.950922,0.511947,0.951697,0.511947,0.951697,0.511960,0.881036,0.511960,0.881036,0.511960,0.881036,0.511947,0.951697,0.020548,0.950922,0.511947,0.951697,0.511960,0.881036,0.511960,0.881036,0.020561,0.880262,0.020548,0.950922,0.511947,0.951697,0.020548,0.950922,0.020561,0.880262,0.020561,0.880262,0.511960,0.881036,0.511947,0.951697,0.021962,0.944223,0.021962,0.944223,0.023867,0.890324,0.023867,0.890324,0.023867,0.890324,0.021962,0.944223,0.512994,0.943602,0.512994,0.943602,0.514899,0.889704,0.514899,0.889704,0.514899,0.889704,0.512994,0.943602,0.021962,0.944223,0.512994,0.943602,0.514899,0.889704,0.514899,0.889704,0.023867,0.890324,0.021962,0.944223,0.512994,0.943602,0.021962,0.944223,0.023867,0.890324,0.023867,0.890324,0.514899,0.889704,0.512994,0.943602,0.542638,0.728498,0.540989,0.728498,0.616217,0.713975,0.616217,0.713975,0.617521,0.713975,0.542638,0.728498,0.540989,0.728498,0.540989,0.621731,0.616217,0.630921,0.616217,0.630921,0.616217,0.713975,0.540989,0.728498,0.538978,0.615956,0.538978,0.725061,0.618120,0.716320,0.618120,0.716320,0.618120,0.621697,0.538978,0.615956,0.542638,0.621731,0.542638,0.728498,0.617521,0.713975,0.617521,0.713975,0.617521,0.630921,0.542638,0.621731,0.540989,0.621731,0.542638,0.621731,0.617521,0.630921,0.617521,0.630921,0.616217,0.630921,0.540989,0.621731,0.538541,0.615956,0.538978,0.615956,0.618120,0.621697,0.618120,0.621697,0.617943,0.621697,0.538541,0.615956,0.538978,0.725061,0.538542,0.725061};
			return value;
		}
		private double[] getTextureCoordinate_7_46_point_9()
		{
			double[] value = {0.617943,0.716320,0.617943,0.716320,0.618120,0.716320,0.538978,0.725061,0.538542,0.725061,0.538541,0.615956,0.617943,0.621697,0.617943,0.621697,0.617943,0.716320,0.538542,0.725061,0.568680,0.880857,0.568680,0.939192,0.568680,0.886725,0.609892,0.886982,0.590058,0.939230,0.609892,0.881114};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_7_51_point_1()
		{
			double[] value = {0.0,0.001168,-0.705791,-0.035894,-0.074967,-0.705791,-0.071787,0.001168,-0.705791,0.0,0.001168,-0.705791,0.035894,-0.074967,-0.705791,-0.035894,-0.074967,-0.705791,0.0,0.001168,-0.705791,0.071787,0.001168,-0.705791,0.035894,-0.074967,-0.705791,0.0,0.001168,-0.705791,0.035894,0.077304,-0.705791,0.071787,0.001168,-0.705791,0.0,0.001168,-0.705791,-0.035894,0.077304,-0.705791,0.035894,0.077304,-0.705791,0.0,0.001168,-0.705791,-0.071787,0.001168,-0.705791,-0.035894,0.077304,-0.705791,-0.071787,0.001168,-0.705791,-0.035894,-0.074967,-0.253690,-0.071787,0.001168,-0.253690,-0.071787,0.001168,-0.705791,-0.035894,-0.074967,-0.705791,-0.035894,-0.074967,-0.253690,-0.035894,-0.074967,-0.705791,0.035894,-0.074967,-0.253690,-0.035894,-0.074967,-0.253690,-0.035894,-0.074967,-0.705791,0.035894,-0.074967,-0.705791,0.035894,-0.074967,-0.253690,0.035894,-0.074967,-0.705791,0.071787,0.001168,-0.253690,0.035894,-0.074967,-0.253690,0.035894,-0.074967,-0.705791,0.071787,0.001168,-0.705791,0.071787,0.001168,-0.253690,0.071787,0.001168,-0.705791,0.035894,0.077304,-0.253690,0.071787,0.001168,-0.253690,0.071787,0.001168,-0.705791,0.035894,0.077304,-0.705791,0.035894,0.077304,-0.253690,0.035894,0.077304,-0.705791,-0.035894,0.077304,-0.253690,0.035894,0.077304,-0.253690,0.035894,0.077304,-0.705791,-0.035894,0.077304,-0.705791,-0.035894,0.077304,-0.253690,-0.035894,0.077304,-0.705791,-0.071787,0.001168,-0.253690,-0.035894,0.077304,-0.253690,-0.035894,0.077304,-0.705791,-0.071787,0.001168,-0.705791,-0.071787,0.001168,-0.253690,0.089673,0.106630,0.101789,-0.089674,0.106630,0.101789,-0.089674,-0.104294,0.101789,0.089673,0.106630,0.101789,-0.089674,-0.104294,0.101789,0.089673,-0.104294,0.101789,-0.071787,0.001168,-0.253690,-0.035894,-0.074967,-0.253690,-0.094879,-0.110416,-0.161364,-0.094879,-0.110416,-0.161364,-0.094879,0.112752,-0.161364,-0.071787,0.001168,-0.253690,-0.035894,-0.074967,-0.253690,0.035894,-0.074967,-0.253690,0.094879,-0.110416,-0.161364,0.094879,-0.110416,-0.161364,-0.094879,-0.110416,-0.161364,-0.035894,-0.074967,-0.253690,0.094879,0.112752,-0.161364,0.094879,-0.110416,-0.161364,0.071787,0.001168,-0.253690,0.071787,0.001168,-0.253690,0.035894,0.077304,-0.253690,0.094879,0.112752,-0.161364,0.035894,0.077304,-0.253690,-0.035894,0.077304,-0.253690,-0.094879,0.112752,-0.161364,-0.094879,0.112752,-0.161364,0.094879,0.112752,-0.161364,0.035894,0.077304,-0.253690,-0.035894,0.077304,-0.253690,-0.071787,0.001168,-0.253690,-0.094879,0.112752,-0.161364,-0.094879,0.112752,-0.161364,-0.094879,-0.110416,-0.161364,-0.089674,-0.104294,0.101789,-0.089674,-0.104294,0.101789,-0.089674,0.106630,0.101789,-0.094879,0.112752,-0.161364,-0.094879,-0.110416,-0.161364,0.094879,-0.110416,-0.161364,0.089673,-0.104294,0.101789,0.089673,-0.104294,0.101789,-0.089674,-0.104294,0.101789,-0.094879,-0.110416,-0.161364,0.094879,-0.110416,-0.161364};
			return value;
		}
		private double[] getCoordinate_7_51_point_2()
		{
			double[] value = {0.094879,0.112752,-0.161364,0.089673,0.106630,0.101789,0.089673,0.106630,0.101789,0.089673,-0.104294,0.101789,0.094879,-0.110416,-0.161364,0.094879,0.112752,-0.161364,-0.094879,0.112752,-0.161364,-0.089674,0.106630,0.101789,-0.089674,0.106630,0.101789,0.089673,0.106630,0.101789,0.094879,0.112752,-0.161364,0.071787,0.001168,-0.253690,0.094879,-0.110416,-0.161364,0.035894,-0.074967,-0.253690};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_7_52_vector_1()
		{
			double[] value = {0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.904520,-0.426431,0.0,-0.904520,-0.426431,0.0,-0.904520,-0.426431,0.0,-0.904520,-0.426431,0.0,-0.904520,-0.426431,0.0,-0.904520,-0.426431,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.904520,-0.426431,0.0,0.904520,-0.426431,0.0,0.904520,-0.426431,0.0,0.904520,-0.426431,0.0,0.904520,-0.426431,0.0,0.904520,-0.426431,0.0,0.904520,0.426431,0.0,0.904520,0.426431,0.0,0.904520,0.426431,0.0,0.904520,0.426431,0.0,0.904520,0.426431,0.0,0.904520,0.426431,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.904520,0.426431,0.0,-0.904520,0.426431,0.0,-0.904520,0.426431,0.0,-0.904520,0.426431,0.0,-0.904520,0.426431,0.0,-0.904520,0.426431,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,-0.894491,0.0,-0.447085,-0.360986,-0.769913,-0.526235,-0.605808,-0.629985,-0.485918,-0.605808,-0.629985,-0.485918,-0.605808,0.629984,-0.485918,-0.894491,0.0,-0.447085,-0.360986,-0.769913,-0.526235,0.360987,-0.769913,-0.526235,0.605808,-0.629985,-0.485918,0.605808,-0.629985,-0.485918,-0.605808,-0.629985,-0.485918,-0.360986,-0.769913,-0.526235,0.605807,0.629985,-0.485918,0.605808,-0.629985,-0.485918,0.894492,0.0,-0.447084,0.894492,0.0,-0.447084,0.360986,0.769913,-0.526234,0.605807,0.629985,-0.485918,0.360986,0.769913,-0.526234,-0.360986,0.769913,-0.526234,-0.605808,0.629984,-0.485918,-0.605808,0.629984,-0.485918,0.605807,0.629985,-0.485918,0.360986,0.769913,-0.526234,-0.360986,0.769913,-0.526234,-0.894491,0.0,-0.447085,-0.605808,0.629984,-0.485918,-0.999804,0.0,0.019777,-0.999804,0.0,0.019777,-0.999804,0.0,0.019777,-0.999804,0.0,0.019777,-0.999804,0.0,0.019777,-0.999804,0.0,0.019777,0.0,-0.999730,0.023258,0.0,-0.999729,0.023258,0.0,-0.999730,0.023258,0.0,-0.999730,0.023258,0.0,-0.999730,0.023258,0.0,-0.999730,0.023258,0.999804,0.0,0.019778};
			return value;
		}
		private double[] getNormal_7_52_vector_2()
		{
			double[] value = {0.999804,0.0,0.019778,0.999804,0.0,0.019778,0.999804,0.0,0.019778,0.999804,0.0,0.019778,0.999804,0.0,0.019778,0.0,0.999730,0.023258,0.0,0.999730,0.023258,0.0,0.999730,0.023258,0.0,0.999730,0.023258,0.0,0.999730,0.023258,0.0,0.999730,0.023258,0.894492,0.0,-0.447084,0.605808,-0.629985,-0.485918,0.360987,-0.769913,-0.526235};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getTextureCoordinate_7_53_point_1()
		{
			double[] value = {0.741337,0.449545,0.754529,0.423163,0.767720,0.449545,0.741337,0.449545,0.728146,0.423163,0.754529,0.423163,0.741337,0.449545,0.714955,0.449545,0.728146,0.423163,0.741337,0.449545,0.728146,0.475928,0.714955,0.449545,0.741337,0.449545,0.754529,0.475928,0.728146,0.475928,0.741337,0.449545,0.767720,0.449545,0.754529,0.475928,0.325377,0.548572,0.454269,0.523726,0.454269,0.548572,0.325377,0.548572,0.325377,0.523726,0.454269,0.523726,0.325377,0.523726,0.454269,0.504842,0.454269,0.523726,0.325377,0.523726,0.325377,0.504842,0.454269,0.504842,0.325886,0.568805,0.455122,0.549630,0.455122,0.568805,0.325886,0.568805,0.325886,0.549631,0.455122,0.549630,0.325886,0.549631,0.455122,0.523718,0.455122,0.549630,0.325886,0.549631,0.325886,0.523719,0.455122,0.523718,0.325886,0.523719,0.455122,0.504544,0.455122,0.523718,0.325886,0.523719,0.325886,0.504544,0.455122,0.504544,0.325377,0.567456,0.454269,0.548572,0.454269,0.567456,0.325377,0.567456,0.325377,0.548572,0.454269,0.548572,0.389500,0.023777,0.389500,0.045621,0.389500,0.002503,0.389500,0.023777,0.389500,0.002503,0.389500,0.002503,0.301795,0.023777,0.301795,0.002435,0.316744,0.002494,0.316744,0.002494,0.316744,0.045630,0.301795,0.023777,0.301795,0.002435,0.301795,0.002435,0.316744,0.002494,0.316744,0.002494,0.316744,0.002494,0.301795,0.002435,0.316744,0.045630,0.316744,0.002494,0.301795,0.023777,0.301795,0.023777,0.301795,0.045689,0.316744,0.045630,0.301795,0.045689,0.301795,0.045689,0.316744,0.045630,0.316744,0.045630,0.316744,0.045630,0.301795,0.045689,0.301795,0.045689,0.301795,0.023777,0.316744,0.045630,0.316744,0.045630,0.316744,0.002494,0.389500,0.002503,0.389500,0.002503,0.389500,0.045621,0.316744,0.045630,0.316744,0.002494,0.316744,0.002494,0.389500,0.002503,0.389500,0.002503,0.389500,0.002503,0.316744,0.002494,0.316744,0.002494};
			return value;
		}
		private double[] getTextureCoordinate_7_53_point_2()
		{
			double[] value = {0.316744,0.045630,0.389500,0.045621,0.389500,0.045621,0.389500,0.002503,0.316744,0.002494,0.316744,0.045630,0.316744,0.045630,0.389500,0.045621,0.389500,0.045621,0.389500,0.045621,0.316744,0.045630,0.301795,0.023777,0.316744,0.002494,0.301795,0.002435};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_7_58_point_1()
		{
			double[] value = {0.0,-0.255736,0.0,0.072994,-0.195603,0.215810,-0.072994,-0.195603,0.215810,0.0,-0.255736,0.0,-0.072994,-0.195603,0.215810,-0.176223,-0.195603,0.089391,0.0,-0.255736,0.0,-0.176223,-0.195603,0.089391,-0.176223,-0.195603,-0.089392,0.0,-0.255736,0.0,-0.176223,-0.195603,-0.089392,-0.058116,-0.219454,-0.127336,0.057201,-0.220132,-0.124903,0.081162,-0.195603,-0.215810,0.176223,-0.195603,-0.089391,0.0,-0.255736,0.0,0.176223,-0.195603,-0.089391,0.176223,-0.195603,0.089391,0.0,-0.255736,0.0,0.176223,-0.195603,0.089391,0.072994,-0.195603,0.215810,0.072994,-0.195603,0.215810,0.103229,0.0,0.305202,-0.103229,0.0,0.305202,0.072994,-0.195603,0.215810,-0.103229,0.0,0.305202,-0.072994,-0.195603,0.215810,-0.072994,-0.195603,0.215810,-0.103229,0.0,0.305202,-0.249217,0.0,0.126419,-0.072994,-0.195603,0.215810,-0.249217,0.0,0.126419,-0.176223,-0.195603,0.089391,-0.176223,-0.195603,0.089391,-0.249217,0.0,0.126419,-0.249217,0.0,-0.126419,-0.176223,-0.195603,0.089391,-0.249217,0.0,-0.126419,-0.176223,-0.195603,-0.089392,-0.176223,-0.195603,-0.089392,-0.249217,0.0,-0.126419,-0.103229,0.0,-0.305202,-0.176223,-0.195603,-0.089392,-0.103229,0.0,-0.305202,-0.081162,-0.195603,-0.215810,0.081162,-0.195603,-0.215810,0.103229,0.0,-0.305202,0.249217,0.0,-0.126419,0.081162,-0.195603,-0.215810,0.249217,0.0,-0.126419,0.176223,-0.195603,-0.089391,0.176223,-0.195603,-0.089391,0.249217,0.0,-0.126419,0.249217,0.0,0.126419,0.176223,-0.195603,-0.089391,0.249217,0.0,0.126419,0.176223,-0.195603,0.089391,0.176223,-0.195603,0.089391,0.249217,0.0,0.126419,0.103229,0.0,0.305202,0.176223,-0.195603,0.089391,0.103229,0.0,0.305202,0.072994,-0.195603,0.215810,0.103229,0.0,0.305202,0.093452,0.167000,0.276296,-0.093452,0.167000,0.276296,0.103229,0.0,0.305202,-0.093452,0.167000,0.276296,-0.103229,0.0,0.305202,-0.103229,0.0,0.305202,-0.093452,0.167000,0.276296,-0.225614,0.167000,0.114445,-0.103229,0.0,0.305202,-0.225614,0.167000,0.114445,-0.249217,0.0,0.126419,-0.249217,0.0,0.126419,-0.225614,0.167000,0.114445,-0.225614,0.167000,-0.114445,-0.249217,0.0,0.126419,-0.225614,0.167000,-0.114445,-0.249217,0.0,-0.126419,-0.249217,0.0,-0.126419,-0.225614,0.167000,-0.114445,-0.093452,0.167000,-0.276296,-0.249217,0.0,-0.126419,-0.093452,0.167000,-0.276296,-0.109183,0.070120,-0.309771,-0.109183,0.070120,-0.309771,-0.093452,0.167000,-0.276296,0.093452,0.167000,-0.276296,-0.109183,0.070120,-0.309771,0.093452,0.167000,-0.276296,0.108622,0.070120,-0.309771,0.108622,0.070120,-0.309771,0.093452,0.167000,-0.276296,0.225614,0.167000,-0.114445,0.103229,0.0,-0.305202,0.225614,0.167000,-0.114445,0.249217,0.0,-0.126419,0.249217,0.0,-0.126419};
			return value;
		}
		private double[] getCoordinate_7_58_point_2()
		{
			double[] value = {0.225614,0.167000,-0.114445,0.225614,0.167000,0.114446,0.249217,0.0,-0.126419,0.225614,0.167000,0.114446,0.249217,0.0,0.126419,0.249217,0.0,0.126419,0.225614,0.167000,0.114446,0.093452,0.167000,0.276296,0.249217,0.0,0.126419,0.093452,0.167000,0.276296,0.103229,0.0,0.305202,0.103229,0.0,-0.305202,0.108622,0.070120,-0.309771,0.225614,0.167000,-0.114445,-0.249217,0.0,-0.126419,-0.109183,0.070120,-0.309771,-0.103229,0.0,-0.305202,-0.109183,0.070120,0.103646,-0.109183,0.070120,-0.309771,0.108622,0.070120,-0.309771,-0.109183,0.070120,0.103646,0.108622,0.070120,-0.309771,0.108622,0.070120,0.103646,-0.058116,-0.219454,-0.127336,-0.176223,-0.195603,-0.089392,-0.081162,-0.195603,-0.215810,0.0,-0.255736,0.0,0.057201,-0.220132,-0.124903,0.176223,-0.195603,-0.089391,0.0,-0.255736,0.0,-0.058116,-0.219454,-0.127336,0.057201,-0.220132,-0.124903,-0.058116,-0.219454,-0.127336,-0.108647,-0.195355,0.115661,0.057201,-0.220132,-0.124903,0.057201,-0.220132,-0.124903,-0.108647,-0.195355,0.115661,0.108622,-0.194133,0.103646,-0.081162,-0.195603,-0.215810,-0.108647,-0.195355,0.115661,-0.058116,-0.219454,-0.127336,0.081162,-0.195603,-0.215810,0.057201,-0.220132,-0.124903,0.108622,-0.194133,0.103646,0.108622,0.070120,0.103646,0.103229,0.0,-0.305202,0.081162,-0.195603,-0.215810,0.108622,0.070120,0.103646,0.081162,-0.195603,-0.215810,0.108622,-0.194133,0.103646,0.108622,0.070120,0.103646,0.108622,0.070120,-0.309771,0.103229,0.0,-0.305202,-0.103229,0.0,-0.305202,-0.109183,0.070120,0.103646,-0.081162,-0.195603,-0.215810,-0.081162,-0.195603,-0.215810,-0.109183,0.070120,0.103646,-0.108647,-0.195355,0.115661,-0.109183,0.070120,-0.309771,-0.109183,0.070120,0.103646,-0.103229,0.0,-0.305202,-0.108647,-0.195355,0.115661,-0.109183,0.070120,0.103646,0.108622,-0.194133,0.103646,0.108622,-0.194133,0.103646,-0.109183,0.070120,0.103646,0.108622,0.070120,0.103646};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_7_59_vector_1()
		{
			double[] value = {-0.000014,-0.999997,0.002487,0.305586,-0.716253,0.627375,-0.305586,-0.716253,0.627374,-0.000014,-0.999997,0.002487,-0.305586,-0.716253,0.627374,-0.676873,-0.696923,0.236942,-0.000014,-0.999997,0.002487,-0.676873,-0.696923,0.236942,-0.683048,-0.693659,-0.228653,-0.000014,-0.999997,0.002487,-0.683048,-0.693659,-0.228653,0.596153,-0.369850,-0.712610,-0.571887,-0.368961,-0.732675,-0.383604,-0.627579,-0.677490,0.682155,-0.696886,-0.221391,-0.000014,-0.999997,0.002487,0.682155,-0.696886,-0.221391,0.676872,-0.696923,0.236942,-0.000014,-0.999997,0.002487,0.676872,-0.696923,0.236942,0.305586,-0.716253,0.627375,0.305586,-0.716253,0.627375,0.417902,-0.123528,0.900055,-0.417902,-0.123528,0.900055,0.305586,-0.716253,0.627375,-0.417902,-0.123528,0.900055,-0.305586,-0.716253,0.627374,-0.305586,-0.716253,0.627374,-0.417902,-0.123528,0.900055,-0.933794,-0.112329,0.339723,-0.305586,-0.716253,0.627374,-0.933794,-0.112329,0.339723,-0.676873,-0.696923,0.236942,-0.676873,-0.696923,0.236942,-0.933794,-0.112329,0.339723,-0.936313,-0.114852,-0.331853,-0.676873,-0.696923,0.236942,-0.936313,-0.114852,-0.331853,-0.683048,-0.693659,-0.228653,-0.683048,-0.693659,-0.228653,-0.936313,-0.114852,-0.331853,0.318116,-0.199127,-0.926904,-0.683048,-0.693659,-0.228653,0.318116,-0.199127,-0.926904,0.375217,-0.620986,-0.688178,-0.383604,-0.627579,-0.677490,-0.284854,-0.116643,-0.951448,0.935409,-0.108180,-0.336611,-0.383604,-0.627579,-0.677490,0.935409,-0.108180,-0.336611,0.682155,-0.696886,-0.221391,0.682155,-0.696886,-0.221391,0.935409,-0.108180,-0.336611,0.933794,-0.112329,0.339723,0.682155,-0.696886,-0.221391,0.933794,-0.112329,0.339723,0.676872,-0.696923,0.236942,0.676872,-0.696923,0.236942,0.933794,-0.112329,0.339723,0.417902,-0.123528,0.900055,0.676872,-0.696923,0.236942,0.417902,-0.123528,0.900055,0.305586,-0.716253,0.627375,0.417902,-0.123528,0.900055,0.427258,0.178430,0.886348,-0.427258,0.178430,0.886348,0.417902,-0.123528,0.900055,-0.427258,0.178430,0.886348,-0.417902,-0.123528,0.900055,-0.417902,-0.123528,0.900055,-0.427258,0.178430,0.886348,-0.932012,0.155210,0.327511,-0.417902,-0.123528,0.900055,-0.932012,0.155210,0.327511,-0.933794,-0.112329,0.339723,-0.933794,-0.112329,0.339723,-0.932012,0.155210,0.327511,-0.932012,0.155210,-0.327511,-0.933794,-0.112329,0.339723,-0.932012,0.155210,-0.327511,-0.936313,-0.114852,-0.331853,-0.936313,-0.114852,-0.331853,-0.932012,0.155210,-0.327511,-0.445547,0.320724,-0.835837,-0.936313,-0.114852,-0.331853,-0.445547,0.320724,-0.835837,-0.267758,-0.190280,-0.944510,-0.267758,-0.190280,-0.944510,-0.445547,0.320724,-0.835837,0.402479,0.354635,-0.843946,-0.267758,-0.190280,-0.944510,0.402479,0.354635,-0.843946,0.297076,-0.275981,-0.914101,0.297076,-0.275981,-0.914101,0.402479,0.354635,-0.843946,0.935790,0.159595,-0.314366,-0.284854,-0.116643,-0.951448,0.935790,0.159595,-0.314366,0.935409,-0.108180,-0.336611,0.935409,-0.108180,-0.336611};
			return value;
		}
		private double[] getNormal_7_59_vector_2()
		{
			double[] value = {0.935790,0.159595,-0.314366,0.932012,0.155210,0.327511,0.935409,-0.108180,-0.336611,0.932012,0.155210,0.327511,0.933794,-0.112329,0.339723,0.933794,-0.112329,0.339723,0.932012,0.155210,0.327511,0.427258,0.178430,0.886348,0.933794,-0.112329,0.339723,0.427258,0.178430,0.886348,0.417902,-0.123528,0.900055,-0.284854,-0.116643,-0.951448,0.297076,-0.275981,-0.914101,0.935790,0.159595,-0.314366,-0.936313,-0.114852,-0.331853,-0.267758,-0.190280,-0.944510,0.318116,-0.199127,-0.926904,0.593862,-0.574543,-0.563230,-0.267758,-0.190280,-0.944510,0.297076,-0.275981,-0.914101,0.593862,-0.574543,-0.563230,0.297076,-0.275981,-0.914101,-0.594680,-0.568786,-0.568189,0.596153,-0.369850,-0.712610,-0.683048,-0.693659,-0.228653,0.375217,-0.620986,-0.688178,-0.000014,-0.999997,0.002487,-0.571887,-0.368961,-0.732675,0.682155,-0.696886,-0.221391,-0.000014,-0.999997,0.002487,0.596153,-0.369850,-0.712610,-0.571887,-0.368961,-0.732675,0.596153,-0.369850,-0.712610,0.591460,0.529702,-0.607939,-0.571887,-0.368961,-0.732675,-0.571887,-0.368961,-0.732675,0.591460,0.529702,-0.607939,-0.624373,0.534867,-0.569277,0.375217,-0.620986,-0.688178,0.591460,0.529702,-0.607939,0.596153,-0.369850,-0.712610,-0.383604,-0.627579,-0.677490,-0.571887,-0.368961,-0.732675,-0.624373,0.534867,-0.569277,-0.594680,-0.568786,-0.568189,-0.284854,-0.116643,-0.951448,-0.383604,-0.627579,-0.677490,-0.594680,-0.568786,-0.568189,-0.383604,-0.627579,-0.677490,-0.624373,0.534867,-0.569277,-0.594680,-0.568786,-0.568189,0.297076,-0.275981,-0.914101,-0.284854,-0.116643,-0.951448,0.318116,-0.199127,-0.926904,0.593862,-0.574543,-0.563230,0.375217,-0.620986,-0.688178,0.375217,-0.620986,-0.688178,0.593862,-0.574543,-0.563230,0.591460,0.529702,-0.607939,-0.267758,-0.190280,-0.944510,0.593862,-0.574543,-0.563230,0.318116,-0.199127,-0.926904,0.591460,0.529702,-0.607939,0.593862,-0.574543,-0.563230,-0.624373,0.534867,-0.569277,-0.624373,0.534867,-0.569277,0.593862,-0.574543,-0.563230,-0.594680,-0.568786,-0.568189};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getTextureCoordinate_7_60_point_1()
		{
			double[] value = {0.468282,0.676794,0.510597,0.689844,0.510597,0.689844,0.468282,0.676794,0.510597,0.689844,0.485138,0.689844,0.468282,0.676794,0.485138,0.689844,0.449135,0.689844,0.468282,0.676794,0.449135,0.689844,0.443043,0.681382,0.443405,0.681234,0.423676,0.689844,0.449135,0.689844,0.468282,0.676794,0.449135,0.689844,0.485138,0.689844,0.468282,0.676794,0.485138,0.689844,0.510597,0.689844,0.510597,0.689844,0.519273,0.732291,0.519273,0.732291,0.510597,0.689844,0.519273,0.732291,0.510597,0.689844,0.510597,0.689844,0.519273,0.732291,0.489403,0.732291,0.510597,0.689844,0.489403,0.732291,0.485138,0.689844,0.485138,0.689844,0.489403,0.732291,0.447160,0.732291,0.485138,0.689844,0.447160,0.732291,0.449135,0.689844,0.449135,0.689844,0.447160,0.732291,0.417291,0.732291,0.449135,0.689844,0.417291,0.732291,0.423676,0.689844,0.423676,0.689844,0.417291,0.732291,0.447160,0.732291,0.423676,0.689844,0.447160,0.732291,0.449135,0.689844,0.449135,0.689844,0.447160,0.732291,0.489403,0.732291,0.449135,0.689844,0.489403,0.732291,0.485138,0.689844,0.485138,0.689844,0.489403,0.732291,0.519273,0.732291,0.485138,0.689844,0.519273,0.732291,0.510597,0.689844,0.519273,0.732291,0.520626,0.768531,0.520626,0.768531,0.519273,0.732291,0.520626,0.768531,0.519273,0.732291,0.519273,0.732291,0.520626,0.768531,0.489963,0.768532,0.519273,0.732291,0.489963,0.768532,0.489403,0.732291,0.489403,0.732291,0.489963,0.768532,0.446600,0.768532,0.489403,0.732291,0.446600,0.768532,0.447160,0.732291,0.447160,0.732291,0.446600,0.768532,0.415938,0.768532,0.447160,0.732291,0.415938,0.768532,0.417139,0.747508,0.417139,0.747508,0.415938,0.768532,0.415938,0.768532,0.417139,0.747508,0.415938,0.768532,0.417139,0.747508,0.417139,0.747508,0.415938,0.768532,0.446600,0.768531,0.417291,0.732291,0.446600,0.768531,0.447160,0.732291,0.447160,0.732291};
			return value;
		}
		private double[] getTextureCoordinate_7_60_point_2()
		{
			double[] value = {0.446600,0.768531,0.489963,0.768531,0.447160,0.732291,0.489963,0.768531,0.489403,0.732291,0.489403,0.732291,0.489963,0.768531,0.520626,0.768531,0.489403,0.732291,0.520626,0.768531,0.519273,0.732291,0.417291,0.732291,0.417139,0.747508,0.446600,0.768531,0.447160,0.732291,0.417139,0.747508,0.417291,0.732291,0.541349,0.613390,0.541349,0.726682,0.618623,0.726682,0.541349,0.613390,0.618623,0.726682,0.618623,0.613390,0.443043,0.681382,0.449135,0.689844,0.423676,0.689844,0.468282,0.676794,0.443405,0.681234,0.449135,0.689844,0.468282,0.676794,0.443043,0.681382,0.443405,0.681234,0.560955,0.704460,0.541539,0.611207,0.601868,0.704018,0.601868,0.704018,0.541539,0.611207,0.618623,0.613390,0.552779,0.720530,0.541539,0.611207,0.560955,0.704460,0.610369,0.720530,0.601868,0.704018,0.618623,0.613390,0.425670,0.855158,0.518548,0.824952,0.512629,0.795169,0.425670,0.855158,0.512629,0.795169,0.420001,0.790332,0.425670,0.855158,0.515387,0.857777,0.518548,0.824952,0.516804,0.823932,0.420366,0.861014,0.511081,0.790087,0.511081,0.790087,0.420366,0.861014,0.420834,0.786592,0.519531,0.859854,0.420366,0.861014,0.516804,0.823932,0.618024,0.626694,0.618481,0.728164,0.542487,0.626305,0.542487,0.626305,0.618481,0.728164,0.542487,0.729142};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getMi24Trotor_0_GEOMETRY_6_65_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,114,115,116,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,147,148,149,-1,150,151,152,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,162,163,164,-1,165,166,167,-1,168,169,170,-1,171,172,173,-1,174,175,176,-1,177,178,179,-1,180,181,182,-1,183,184,185,-1,186,187,188,-1,189,190,191,-1,192,193,194,-1,195,196,197,-1,198,199,200,-1,201,202,203,-1,204,205,206,-1,207,208,209,-1,210,211,212,-1,213,214,215,-1,216,217,218,-1,219,220,221,-1,222,223,224,-1,225,226,227,-1,228,229,230,-1,231,232,233,-1,234,235,236,-1,237,238,239,-1,240,241,242,-1,243,244,245,-1,246,247,248,-1,249,250,251,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getMi24Trotor_0_GEOMETRY_6_65_normalIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,114,115,116,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,147,148,149,-1,150,151,152,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,162,163,164,-1,165,166,167,-1,168,169,170,-1,171,172,173,-1,174,175,176,-1,177,178,179,-1,180,181,182,-1,183,184,185,-1,186,187,188,-1,189,190,191,-1,192,193,194,-1,195,196,197,-1,198,199,200,-1,201,202,203,-1,204,205,206,-1,207,208,209,-1,210,211,212,-1,213,214,215,-1,216,217,218,-1,219,220,221,-1,222,223,224,-1,225,226,227,-1,228,229,230,-1,231,232,233,-1,234,235,236,-1,237,238,239,-1,240,241,242,-1,243,244,245,-1,246,247,248,-1,249,250,251,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getMi24Trotor_0_GEOMETRY_6_65_texCoordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,114,115,116,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,147,148,149,-1,150,151,152,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,162,163,164,-1,165,166,167,-1,168,169,170,-1,171,172,173,-1,174,175,176,-1,177,178,179,-1,180,181,182,-1,183,184,185,-1,186,187,188,-1,189,190,191,-1,192,193,194,-1,195,196,197,-1,198,199,200,-1,201,202,203,-1,204,205,206,-1,207,208,209,-1,210,211,212,-1,213,214,215,-1,216,217,218,-1,219,220,221,-1,222,223,224,-1,225,226,227,-1,228,229,230,-1,231,232,233,-1,234,235,236,-1,237,238,239,-1,240,241,242,-1,243,244,245,-1,246,247,248,-1,249,250,251,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_7_65_point_1()
		{
			double[] value = {0.001090,0.0,0.166709,-0.179887,0.140892,0.074024,-0.179887,0.0,0.157496,0.001090,0.0,0.166709,0.001090,0.149554,0.078796,-0.179887,0.140892,0.074024,-0.175030,1.904187,0.035742,-0.215611,1.912621,-0.056190,-0.215611,1.912620,0.035742,-0.175030,1.904187,0.035742,-0.175030,1.904188,-0.056190,-0.215611,1.912621,-0.056190,0.001090,0.149554,-0.097523,-0.179887,0.0,-0.171552,-0.179887,0.140892,-0.092434,0.001090,0.149554,-0.097523,0.001090,0.0,-0.181656,-0.179887,0.0,-0.171552,-0.175030,-0.946637,-1.708144,-0.215611,-1.031826,-1.659531,-0.215611,-0.946637,-1.708144,-0.175030,-0.946637,-1.708144,-0.175030,-1.028445,-1.660343,-0.215611,-1.031826,-1.659531,0.001090,-0.149554,-0.097523,-0.179887,-0.140892,0.074024,-0.179887,-0.140892,-0.092434,0.001090,-0.149554,-0.097523,0.001090,-0.149554,0.078796,-0.179887,-0.140892,0.074024,-0.175030,-1.054840,1.623252,-0.206643,-0.958330,1.680757,-0.206643,-1.054840,1.623252,-0.175030,-1.054840,1.623252,-0.175030,-0.958330,1.680757,-0.206643,-0.958330,1.680757,0.001090,0.0,0.166709,-0.179887,0.0,0.157496,-0.174663,-0.166653,0.384242,-0.174663,-0.166653,0.384242,-0.120869,-0.166653,0.384242,0.001090,0.0,0.166709,-0.179887,0.140892,0.074024,0.001090,0.149554,0.078796,-0.120869,0.437080,0.035742,-0.120869,0.437080,0.035742,-0.174663,0.437080,0.035742,-0.179887,0.140892,0.074024,-0.179887,0.140892,-0.092434,-0.179887,0.140892,0.074024,-0.174663,0.437080,0.035742,-0.174663,0.437080,0.035742,-0.174663,0.437080,-0.056190,-0.179887,0.140892,-0.092434,0.001090,0.149554,0.078796,0.001090,0.149554,-0.097523,-0.120869,0.437080,-0.056190,-0.120869,0.437080,-0.056190,-0.120869,0.437080,0.035742,0.001090,0.149554,0.078796,0.001090,0.149554,-0.097523,-0.179887,0.140892,-0.092434,-0.174663,0.437080,-0.056190,-0.174663,0.437080,-0.056190,-0.120869,0.437080,-0.056190,0.001090,0.149554,-0.097523,-0.179887,0.0,-0.171552,0.001090,0.0,-0.181656,-0.120869,-0.168817,-0.387830,-0.120869,-0.168817,-0.387830,-0.174663,-0.168817,-0.387830,-0.179887,0.0,-0.171552,-0.179887,-0.140892,-0.092434,-0.179887,0.0,-0.171552,-0.174663,-0.168817,-0.387830,-0.174663,-0.168817,-0.387830,-0.174663,-0.235066,-0.350024,-0.179887,-0.140892,-0.092434,0.001090,0.0,-0.181656,0.001090,-0.149554,-0.097523,-0.120869,-0.232437,-0.350656,-0.120869,-0.232437,-0.350656,-0.120869,-0.168817,-0.387830,0.001090,0.0,-0.181656,0.001090,-0.149554,-0.097523,-0.179887,-0.140892,-0.092434,-0.174663,-0.235066,-0.350024,-0.174663,-0.235066,-0.350024,-0.120869,-0.232437,-0.350656,0.001090,-0.149554,-0.097523,-0.179887,-0.140892,0.074024,0.001090,-0.149554,0.078796,-0.120869,-0.241707,0.339522,-0.120869,-0.241707,0.339522,-0.174663,-0.241707,0.339522,-0.179887,-0.140892,0.074024,-0.179887,0.0,0.157496,-0.179887,-0.140892,0.074024,-0.174663,-0.241707,0.339522,-0.174663,-0.241707,0.339522};
			return value;
		}
		private double[] getCoordinate_7_65_point_2()
		{
			double[] value = {-0.174663,-0.166653,0.384242,-0.179887,0.0,0.157496,0.001090,-0.149554,0.078796,0.001090,0.0,0.166709,-0.120869,-0.166653,0.384242,-0.120869,-0.166653,0.384242,-0.120869,-0.241707,0.339522,0.001090,-0.149554,0.078796,-0.174663,0.437080,-0.056190,-0.174663,0.437080,0.035742,-0.215611,1.912620,0.035742,-0.215611,1.912620,0.035742,-0.215611,1.912621,-0.056190,-0.174663,0.437080,-0.056190,-0.173971,0.437080,0.196199,-0.143374,0.437080,0.196199,-0.198228,1.904079,0.196199,-0.198228,1.904079,0.196199,-0.215611,1.912511,0.196199,-0.173971,0.437080,0.196199,-0.120869,0.437080,0.035742,-0.120869,0.437080,-0.056190,-0.175030,1.904188,-0.056190,-0.175030,1.904188,-0.056190,-0.175030,1.904187,0.035742,-0.120869,0.437080,0.035742,-0.120869,0.437080,-0.056190,-0.174663,0.437080,-0.056190,-0.215611,1.912621,-0.056190,-0.215611,1.912621,-0.056190,-0.175030,1.904188,-0.056190,-0.120869,0.437080,-0.056190,-0.174663,-0.235066,-0.350024,-0.174663,-0.168817,-0.387830,-0.215611,-0.946637,-1.708144,-0.215611,-0.946637,-1.708144,-0.215611,-1.031826,-1.659531,-0.174663,-0.235066,-0.350024,-0.174663,-0.168817,-0.387830,-0.120869,-0.168817,-0.387830,-0.175030,-0.946637,-1.708144,-0.175030,-0.946637,-1.708144,-0.215611,-0.946637,-1.708144,-0.174663,-0.168817,-0.387830,-0.120869,-0.168817,-0.387830,-0.120869,-0.232437,-0.350656,-0.175030,-1.028445,-1.660343,-0.175030,-1.028445,-1.660343,-0.175030,-0.946637,-1.708144,-0.120869,-0.168817,-0.387830,-0.155867,-0.362336,-0.261487,-0.163920,-0.364965,-0.260856,-0.215611,-1.161724,-1.570362,-0.215611,-1.161724,-1.570362,-0.198228,-1.158344,-1.571175,-0.155867,-0.362336,-0.261487,-0.174663,-0.166653,0.384242,-0.174663,-0.241707,0.339522,-0.206643,-1.054840,1.623252,-0.206643,-1.054840,1.623252,-0.206643,-0.958330,1.680757,-0.174663,-0.166653,0.384242,-0.174663,-0.241707,0.339522,-0.120869,-0.241707,0.339522,-0.175030,-1.054840,1.623252,-0.175030,-1.054840,1.623252,-0.206643,-1.054840,1.623252,-0.174663,-0.241707,0.339522,-0.120869,-0.241707,0.339522,-0.120869,-0.166653,0.384242,-0.175030,-0.958330,1.680757,-0.175030,-0.958330,1.680757,-0.175030,-1.054840,1.623252,-0.120869,-0.241707,0.339522,-0.144066,-0.011924,0.472307,-0.174663,-0.011924,0.472307,-0.206643,-0.803601,1.768821,-0.206643,-0.803601,1.768821,-0.198228,-0.803601,1.768821,-0.144066,-0.011924,0.472307,-0.175030,1.904187,0.035742,-0.215611,1.912620,0.035742,-0.215611,1.912511,0.196199,-0.215611,1.912511,0.196199,-0.198228,1.904079,0.196199,-0.175030,1.904187,0.035742,-0.174663,0.437080,0.035742,-0.120869,0.437080,0.035742,-0.143374,0.437080,0.196199,-0.143374,0.437080,0.196199,-0.173971,0.437080,0.196199,-0.174663,0.437080,0.035742,-0.215611,1.912620,0.035742,-0.174663,0.437080,0.035742,-0.173971,0.437080,0.196199,-0.173971,0.437080,0.196199,-0.215611,1.912511,0.196199,-0.215611,1.912620,0.035742,-0.120869,0.437080,0.035742,-0.175030,1.904187,0.035742};
			return value;
		}
		private double[] getCoordinate_7_65_point_3()
		{
			double[] value = {-0.198228,1.904079,0.196199,-0.198228,1.904079,0.196199,-0.143374,0.437080,0.196199,-0.120869,0.437080,0.035742,-0.206643,-0.958330,1.680757,-0.175030,-0.958330,1.680757,-0.198228,-0.803601,1.768821,-0.198228,-0.803601,1.768821,-0.206643,-0.803601,1.768821,-0.206643,-0.958330,1.680757,-0.120869,-0.166653,0.384242,-0.174663,-0.166653,0.384242,-0.174663,-0.011924,0.472307,-0.174663,-0.011924,0.472307,-0.144066,-0.011924,0.472307,-0.120869,-0.166653,0.384242,-0.174663,-0.166653,0.384242,-0.206643,-0.958330,1.680757,-0.206643,-0.803601,1.768821,-0.206643,-0.803601,1.768821,-0.174663,-0.011924,0.472307,-0.174663,-0.166653,0.384242,-0.175030,-0.958330,1.680757,-0.120869,-0.166653,0.384242,-0.144066,-0.011924,0.472307,-0.144066,-0.011924,0.472307,-0.198228,-0.803601,1.768821,-0.175030,-0.958330,1.680757,-0.215611,-1.031826,-1.659531,-0.175030,-1.028445,-1.660343,-0.198228,-1.158344,-1.571175,-0.198228,-1.158344,-1.571175,-0.215611,-1.161724,-1.570362,-0.215611,-1.031826,-1.659531,-0.120869,-0.232437,-0.350656,-0.174663,-0.235066,-0.350024,-0.163920,-0.364965,-0.260856,-0.163920,-0.364965,-0.260856,-0.155867,-0.362336,-0.261487,-0.120869,-0.232437,-0.350656,-0.174663,-0.235066,-0.350024,-0.215611,-1.031826,-1.659531,-0.215611,-1.161724,-1.570362,-0.215611,-1.161724,-1.570362,-0.163920,-0.364965,-0.260856,-0.174663,-0.235066,-0.350024,-0.175030,-1.028445,-1.660343,-0.120869,-0.232437,-0.350656,-0.155867,-0.362336,-0.261487,-0.155867,-0.362336,-0.261487,-0.198228,-1.158344,-1.571175,-0.175030,-1.028445,-1.660343};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_7_66_vector_1()
		{
			double[] value = {-0.045447,0.507619,0.860382,-0.045301,0.507758,0.860308,-0.043753,0.509228,0.859519,-0.045447,0.507619,0.860382,-0.046938,0.506201,0.861137,-0.045301,0.507758,0.860308,0.203451,0.979085,0.000006,0.203452,0.979085,0.000005,0.203450,0.979085,0.000006,0.203451,0.979085,0.000006,0.203453,0.979085,0.000005,0.203452,0.979085,0.000005,-0.048277,0.489420,-0.870711,-0.048239,0.489385,-0.870732,-0.047899,0.489071,-0.870928,-0.048277,0.489420,-0.870711,-0.048603,0.489723,-0.870523,-0.048239,0.489385,-0.870732,0.006180,-0.497845,-0.867244,0.018221,-0.502086,-0.864626,0.0,-0.495635,-0.868531,0.006180,-0.497845,-0.867244,0.024737,-0.504346,-0.863147,0.018221,-0.502086,-0.864626,-0.047809,-0.998857,0.0,-0.047809,-0.998857,0.0,-0.047809,-0.998856,0.0,-0.047809,-0.998857,0.0,-0.047809,-0.998856,0.0,-0.047809,-0.998857,0.0,0.0,-0.511864,0.859067,0.0,-0.511864,0.859067,0.0,-0.511864,0.859067,0.0,-0.511864,0.859067,0.0,-0.511864,0.859067,0.0,-0.511864,0.859067,-0.030156,0.805074,0.592407,-0.030156,0.805074,0.592407,-0.030156,0.805074,0.592407,0.0,0.793822,0.608150,0.0,0.793822,0.608150,0.0,0.793822,0.608150,-0.032555,0.134495,0.990379,-0.032555,0.134495,0.990379,-0.032555,0.134495,0.990379,0.0,0.128185,0.991750,0.0,0.128185,0.991750,0.0,0.128185,0.991750,-0.999845,0.017634,0.0,-0.999845,0.017634,0.0,-0.999845,0.017634,0.0,-0.999845,0.017634,0.0,-0.999844,0.017634,0.0,-0.999845,0.017634,0.0,0.920607,0.390492,0.0,0.920606,0.390492,0.0,0.920606,0.390492,0.0,0.920606,0.390492,0.0,0.920607,0.390492,0.0,0.920606,0.390492,0.0,-0.033732,0.121980,-0.991959,-0.033732,0.121980,-0.991959,-0.033732,0.121980,-0.991959,0.0,0.142292,-0.989825,0.0,0.142292,-0.989825,0.0,0.142292,-0.989825,-0.034660,0.783207,-0.620794,-0.034660,0.783207,-0.620794,-0.034660,0.783207,-0.620794,0.0,0.788290,-0.615304,0.0,0.788290,-0.615304,0.0,0.788290,-0.615304,-0.999815,-0.009428,-0.016789,-0.999815,-0.009428,-0.016789,-0.999815,-0.009428,-0.016789,-0.999813,-0.009573,-0.016775,-0.999813,-0.009573,-0.016775,-0.999814,-0.009573,-0.016775,0.906131,-0.207397,-0.368665,0.906131,-0.207397,-0.368665,0.906131,-0.207397,-0.368665,0.907314,-0.212119,-0.363024,0.907314,-0.212119,-0.363024,0.907314,-0.212119,-0.363024,-0.035305,-0.938845,0.342524,-0.035305,-0.938845,0.342524,-0.035305,-0.938845,0.342524,0.050118,-0.956049,0.288892,0.050118,-0.956049,0.288892,0.050118,-0.956049,0.288892,-0.035670,-0.936881,-0.347824,-0.035670,-0.936881,-0.347824,-0.035670,-0.936881,-0.347824,0.0,-0.934870,-0.354990,0.0,-0.934870,-0.354990,0.0,-0.934870,-0.354990,-0.999826,-0.009514,0.016059,-0.999826,-0.009514,0.016059,-0.999826,-0.009514,0.016059,-0.999826,-0.009545,0.016019};
			return value;
		}
		private double[] getNormal_7_66_vector_2()
		{
			double[] value = {-0.999826,-0.009545,0.016019,-0.999826,-0.009545,0.016019,0.912466,-0.207342,0.352725,0.912466,-0.207342,0.352725,0.912466,-0.207342,0.352725,0.911995,-0.209968,0.352390,0.911995,-0.209968,0.352390,0.911995,-0.209968,0.352390,-0.999615,-0.027740,0.0,-0.999615,-0.027740,0.0,-0.999615,-0.027740,0.0,-0.999615,-0.027740,0.0,-0.999615,-0.027740,0.0,-0.999615,-0.027740,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,-0.000003,0.0,1.0,0.999319,0.036892,0.0,0.999319,0.036892,0.0,0.999319,0.036892,0.0,0.999319,0.036892,0.0,0.999319,0.036892,0.0,0.999319,0.036892,0.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.999643,0.013240,0.023202,-0.999643,0.013240,0.023202,-0.999643,0.013240,0.023202,-0.999643,0.013241,0.023202,-0.999643,0.013241,0.023202,-0.999643,0.013241,0.023202,0.0,0.861602,-0.507585,0.0,0.861602,-0.507585,0.0,0.861602,-0.507585,0.0,0.861602,-0.507585,0.0,0.861602,-0.507585,0.0,0.861602,-0.507585,0.999376,-0.017820,-0.030498,0.999376,-0.017820,-0.030498,0.999376,-0.017820,-0.030498,0.999376,-0.017820,-0.030498,0.999376,-0.017820,-0.030498,0.999376,-0.017820,-0.030498,0.305449,-0.818773,0.486119,0.305449,-0.818773,0.486119,0.305449,-0.818773,0.486119,0.187395,-0.842084,0.505745,0.187395,-0.842084,0.505745,0.187395,-0.842084,0.505745,-0.999779,0.010774,-0.018082,-0.999779,0.010774,-0.018082,-0.999778,0.010774,-0.018082,-0.999779,0.010774,-0.018082,-0.999779,0.010774,-0.018082,-0.999778,0.010774,-0.018082,0.0,-0.844788,-0.535101,0.0,-0.844788,-0.535101,0.0,-0.844788,-0.535101,0.0,-0.844788,-0.535101,0.0,-0.844788,-0.535101,0.0,-0.844788,-0.535101,0.999365,-0.018239,0.030611,0.999365,-0.018239,0.030611,0.999365,-0.018239,0.030611,0.999365,-0.018239,0.030611,0.999365,-0.018239,0.030611,0.999365,-0.018239,0.030611,0.0,0.853468,0.521144,0.0,0.853469,0.521144,0.0,0.853468,0.521144,0.000006,0.853468,0.521145,0.000006,0.853468,0.521145,0.000006,0.853468,0.521145,0.203450,0.979085,0.000663,0.203450,0.979085,0.000663,0.203450,0.979085,0.000663,0.435550,0.897917,0.063573,0.435549,0.897917,0.063573,0.435550,0.897917,0.063573,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.999606,-0.027740,0.004313,-0.999606,-0.027740,0.004313,-0.999606,-0.027740,0.004313,-0.999602,-0.028211,-0.000019,-0.999602,-0.028211,-0.000019,-0.999602,-0.028211,-0.000019,0.989048,0.036513,0.143010,0.989047,0.036513,0.143010};
			return value;
		}
		private double[] getNormal_7_66_vector_3()
		{
			double[] value = {0.989047,0.036513,0.143010,0.989629,0.037004,0.138800,0.989629,0.037004,0.138800,0.989629,0.037004,0.138800,0.0,-0.494649,0.869093,0.0,-0.494649,0.869093,0.0,-0.494649,0.869093,-0.000004,-0.494649,0.869093,-0.000004,-0.494649,0.869093,-0.000004,-0.494649,0.869093,0.0,0.494648,-0.869093,0.0,0.494648,-0.869093,0.0,0.494648,-0.869093,0.000002,0.494649,-0.869093,0.000002,0.494649,-0.869093,0.000002,0.494649,-0.869093,-0.999778,0.010416,-0.018300,-0.999778,0.010416,-0.018300,-0.999778,0.010416,-0.018300,-0.999778,0.010416,-0.018300,-0.999778,0.010416,-0.018300,-0.999778,0.010416,-0.018300,0.990851,0.092755,0.098031,0.990851,0.092755,0.098031,0.990851,0.092755,0.098031,0.990851,0.092755,0.098031,0.990851,0.092755,0.098031,0.990851,0.092755,0.098031,0.030993,-0.569425,-0.821459,0.030993,-0.569425,-0.821459,0.030993,-0.569425,-0.821459,0.071345,-0.564499,-0.822345,0.071345,-0.564499,-0.822345,0.071345,-0.564499,-0.822345,-0.017918,0.564842,0.825005,-0.017918,0.564842,0.825005,-0.017918,0.564842,0.825005,-0.127967,0.584492,0.801245,-0.127967,0.584492,0.801245,-0.127967,0.584492,0.801245,-0.999642,0.015136,0.022049,-0.999642,0.015136,0.022049,-0.999642,0.015136,0.022049,-0.997236,-0.039117,0.063165,-0.997236,-0.039117,0.063165,-0.997236,-0.039117,0.063165,0.975149,-0.204920,0.084221,0.975149,-0.204920,0.084221,0.975149,-0.204920,0.084221,0.988713,-0.140075,0.053157,0.988713,-0.140075,0.053157,0.988713,-0.140075,0.053156};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getTextureCoordinate_7_67_point_1()
		{
			double[] value = {0.546847,0.942935,0.537512,0.757871,0.548736,0.757871,0.546847,0.942935,0.535623,0.942935,0.537512,0.757871,0.511566,0.953744,0.512273,0.980545,0.512260,0.953737,0.511566,0.953744,0.511579,0.980552,0.512273,0.980545,0.593949,0.942935,0.584614,0.757871,0.595838,0.757871,0.593949,0.942935,0.582725,0.942935,0.584614,0.757871,0.019751,0.981860,0.017705,0.943031,0.019751,0.981860,0.019751,0.981860,0.017780,0.944472,0.017705,0.943031,0.571501,0.942935,0.559960,0.757871,0.573390,0.757871,0.571501,0.942935,0.558070,0.942935,0.559960,0.757871,0.019941,0.978935,0.020156,0.945113,0.019941,0.978935,0.019941,0.978935,0.020156,0.945113,0.020156,0.945113,0.432026,0.855665,0.429613,0.854565,0.514545,0.825604,0.514545,0.825604,0.514545,0.825604,0.432026,0.855665,0.428462,0.801771,0.430092,0.800262,0.484211,0.813875,0.484211,0.813875,0.484211,0.813875,0.428462,0.801771,0.428462,0.854402,0.428462,0.801771,0.484211,0.813875,0.484211,0.813875,0.484211,0.842942,0.428462,0.854402,0.430092,0.800262,0.430092,0.856011,0.484211,0.842942,0.484211,0.842942,0.484211,0.813875,0.430092,0.800262,0.430092,0.856011,0.428462,0.854402,0.484211,0.842942,0.484211,0.842942,0.484211,0.842942,0.430092,0.856011,0.424716,0.798276,0.427616,0.796923,0.513298,0.824551,0.513298,0.824551,0.513298,0.824551,0.424716,0.798276,0.423814,0.854015,0.424716,0.798276,0.513298,0.824551,0.513298,0.824551,0.513590,0.853507,0.423814,0.854015,0.427616,0.796923,0.426732,0.856459,0.513329,0.852474,0.513329,0.852474,0.513298,0.824551,0.427616,0.796923,0.426732,0.856459,0.423814,0.854015,0.513590,0.853507,0.513590,0.853507,0.513329,0.852474,0.426732,0.856459,0.429334,0.797231,0.431911,0.794888,0.514330,0.795031,0.514330,0.795031,0.514330,0.795031,0.429334,0.797231,0.429613,0.854565,0.429334,0.797231,0.514330,0.795031,0.514330,0.795031};
			return value;
		}
		private double[] getTextureCoordinate_7_67_point_2()
		{
			double[] value = {0.514545,0.825604,0.429613,0.854565,0.431911,0.794888,0.432026,0.855665,0.514545,0.825604,0.514545,0.825604,0.514330,0.795031,0.431911,0.794888,0.020407,0.979899,0.020393,0.953091,0.512260,0.953737,0.512260,0.953737,0.512273,0.980545,0.020407,0.979899,0.020370,0.889843,0.020370,0.889843,0.511533,0.890497,0.511533,0.890497,0.512227,0.890490,0.020370,0.889843,0.020393,0.953091,0.020407,0.979899,0.511579,0.980552,0.511579,0.980552,0.511566,0.953744,0.020393,0.953091,0.020407,0.979899,0.020407,0.979899,0.512273,0.980545,0.512273,0.980545,0.511579,0.980552,0.020407,0.979899,0.509821,0.943358,0.512252,0.981948,0.019751,0.981860,0.019751,0.981860,0.017705,0.943031,0.509821,0.943358,0.512252,0.981948,0.512252,0.981948,0.019751,0.981860,0.019751,0.981860,0.019751,0.981860,0.512252,0.981948,0.512252,0.981948,0.509879,0.944479,0.017780,0.944472,0.017780,0.944472,0.019751,0.981860,0.512252,0.981948,0.510148,0.889580,0.510089,0.888460,0.018393,0.887922,0.018393,0.887922,0.018468,0.889364,0.510148,0.889580,0.512404,0.945135,0.512237,0.978863,0.019941,0.978935,0.019941,0.978935,0.020156,0.945113,0.512404,0.945135,0.512237,0.978863,0.512237,0.978863,0.019941,0.978935,0.019941,0.978935,0.019941,0.978935,0.512237,0.978863,0.512237,0.978863,0.512404,0.945135,0.020156,0.945113,0.020156,0.945113,0.019941,0.978935,0.512237,0.978863,0.512494,0.882778,0.512494,0.882778,0.020896,0.882563,0.020896,0.882563,0.020896,0.882563,0.512494,0.882778,0.511566,0.953744,0.512260,0.953737,0.512227,0.890490,0.512227,0.890490,0.511533,0.890497,0.511566,0.953744,0.020393,0.953091,0.020393,0.953091,0.020370,0.889843,0.020370,0.889843,0.020370,0.889843,0.020393,0.953091,0.512260,0.953737,0.020393,0.953091,0.020370,0.889843,0.020370,0.889843,0.512227,0.890490,0.512260,0.953737,0.020393,0.953091,0.511566,0.953744};
			return value;
		}
		private double[] getTextureCoordinate_7_67_point_3()
		{
			double[] value = {0.511533,0.890497,0.511533,0.890497,0.020370,0.889843,0.020393,0.953091,0.020156,0.945113,0.020156,0.945113,0.020896,0.882563,0.020896,0.882563,0.020896,0.882563,0.020156,0.945113,0.512404,0.945135,0.512404,0.945135,0.512494,0.882778,0.512494,0.882778,0.512494,0.882778,0.512404,0.945135,0.512404,0.945135,0.020156,0.945113,0.020896,0.882563,0.020896,0.882563,0.512494,0.882778,0.512404,0.945135,0.020156,0.945113,0.512404,0.945135,0.512494,0.882778,0.512494,0.882778,0.020896,0.882563,0.020156,0.945113,0.017705,0.943031,0.017780,0.944472,0.018468,0.889364,0.018468,0.889364,0.018393,0.887922,0.017705,0.943031,0.509879,0.944479,0.509821,0.943358,0.510089,0.888460,0.510089,0.888460,0.510148,0.889580,0.509879,0.944479,0.509821,0.943358,0.017705,0.943031,0.018393,0.887922,0.018393,0.887922,0.510089,0.888460,0.509821,0.943358,0.017780,0.944472,0.509879,0.944479,0.510148,0.889580,0.510148,0.889580,0.018468,0.889364,0.017780,0.944472};
			return value;
		}

		/** Large attribute array: IndexedFaceSet DEF='Mi24_0-GEOMETRY' coordIndex field, scene-graph level=6, element #19, 7768 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getMi24_0_GEOMETRY_6_19_coordIndex()
		{
			MFInt32 Mi24_0_GEOMETRY_6_19_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_coordIndex_1()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_coordIndex_2()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_coordIndex_3()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_coordIndex_4()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_coordIndex_5()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_coordIndex_6()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_coordIndex_7()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_coordIndex_8()));
			return Mi24_0_GEOMETRY_6_19_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet DEF='Mi24_0-GEOMETRY' normalIndex field, scene-graph level=6, element #19, 7768 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getMi24_0_GEOMETRY_6_19_normalIndex()
		{
			MFInt32 Mi24_0_GEOMETRY_6_19_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_normalIndex_1()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_normalIndex_2()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_normalIndex_3()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_normalIndex_4()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_normalIndex_5()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_normalIndex_6()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_normalIndex_7()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_normalIndex_8()));
			return Mi24_0_GEOMETRY_6_19_normalIndex;
		}
		/** Large attribute array: IndexedFaceSet DEF='Mi24_0-GEOMETRY' texCoordIndex field, scene-graph level=6, element #19, 7768 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getMi24_0_GEOMETRY_6_19_texCoordIndex()
		{
			MFInt32 Mi24_0_GEOMETRY_6_19_texCoordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_texCoordIndex_1()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_texCoordIndex_2()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_texCoordIndex_3()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_texCoordIndex_4()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_texCoordIndex_5()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_texCoordIndex_6()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_texCoordIndex_7()))
				.append(new MFInt32(getMi24_0_GEOMETRY_6_19_texCoordIndex_8()));
			return Mi24_0_GEOMETRY_6_19_texCoordIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=7, element #19, 17478 total numbers made up of 5826 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getCoordinate_7_19_point()
		{
			MFVec3f Coordinate_7_19_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_7_19_point_1()))
				.append(new MFVec3f(getCoordinate_7_19_point_2()))
				.append(new MFVec3f(getCoordinate_7_19_point_3()))
				.append(new MFVec3f(getCoordinate_7_19_point_4()))
				.append(new MFVec3f(getCoordinate_7_19_point_5()))
				.append(new MFVec3f(getCoordinate_7_19_point_6()))
				.append(new MFVec3f(getCoordinate_7_19_point_7()))
				.append(new MFVec3f(getCoordinate_7_19_point_8()))
				.append(new MFVec3f(getCoordinate_7_19_point_9()))
				.append(new MFVec3f(getCoordinate_7_19_point_10()))
				.append(new MFVec3f(getCoordinate_7_19_point_11()))
				.append(new MFVec3f(getCoordinate_7_19_point_12()))
				.append(new MFVec3f(getCoordinate_7_19_point_13()))
				.append(new MFVec3f(getCoordinate_7_19_point_14()))
				.append(new MFVec3f(getCoordinate_7_19_point_15()))
				.append(new MFVec3f(getCoordinate_7_19_point_16()))
				.append(new MFVec3f(getCoordinate_7_19_point_17()))
				.append(new MFVec3f(getCoordinate_7_19_point_18()))
				.append(new MFVec3f(getCoordinate_7_19_point_19()))
				.append(new MFVec3f(getCoordinate_7_19_point_20()))
				.append(new MFVec3f(getCoordinate_7_19_point_21()))
				.append(new MFVec3f(getCoordinate_7_19_point_22()))
				.append(new MFVec3f(getCoordinate_7_19_point_23()))
				.append(new MFVec3f(getCoordinate_7_19_point_24()))
				.append(new MFVec3f(getCoordinate_7_19_point_25()))
				.append(new MFVec3f(getCoordinate_7_19_point_26()))
				.append(new MFVec3f(getCoordinate_7_19_point_27()))
				.append(new MFVec3f(getCoordinate_7_19_point_28()))
				.append(new MFVec3f(getCoordinate_7_19_point_29()))
				.append(new MFVec3f(getCoordinate_7_19_point_30()))
				.append(new MFVec3f(getCoordinate_7_19_point_31()))
				.append(new MFVec3f(getCoordinate_7_19_point_32()))
				.append(new MFVec3f(getCoordinate_7_19_point_33()))
				.append(new MFVec3f(getCoordinate_7_19_point_34()))
				.append(new MFVec3f(getCoordinate_7_19_point_35()))
				.append(new MFVec3f(getCoordinate_7_19_point_36()))
				.append(new MFVec3f(getCoordinate_7_19_point_37()))
				.append(new MFVec3f(getCoordinate_7_19_point_38()))
				.append(new MFVec3f(getCoordinate_7_19_point_39()))
				.append(new MFVec3f(getCoordinate_7_19_point_40()))
				.append(new MFVec3f(getCoordinate_7_19_point_41()))
				.append(new MFVec3f(getCoordinate_7_19_point_42()))
				.append(new MFVec3f(getCoordinate_7_19_point_43()))
				.append(new MFVec3f(getCoordinate_7_19_point_44()))
				.append(new MFVec3f(getCoordinate_7_19_point_45()))
				.append(new MFVec3f(getCoordinate_7_19_point_46()))
				.append(new MFVec3f(getCoordinate_7_19_point_47()))
				.append(new MFVec3f(getCoordinate_7_19_point_48()))
				.append(new MFVec3f(getCoordinate_7_19_point_49()))
				.append(new MFVec3f(getCoordinate_7_19_point_50()))
				.append(new MFVec3f(getCoordinate_7_19_point_51()))
				.append(new MFVec3f(getCoordinate_7_19_point_52()))
				.append(new MFVec3f(getCoordinate_7_19_point_53()))
				.append(new MFVec3f(getCoordinate_7_19_point_54()))
				.append(new MFVec3f(getCoordinate_7_19_point_55()))
				.append(new MFVec3f(getCoordinate_7_19_point_56()))
				.append(new MFVec3f(getCoordinate_7_19_point_57()))
				.append(new MFVec3f(getCoordinate_7_19_point_58()))
				.append(new MFVec3f(getCoordinate_7_19_point_59()));
			return Coordinate_7_19_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=7, element #20, 17478 total numbers made up of 5826 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getNormal_7_20_vector()
		{
			MFVec3f Normal_7_20_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_7_20_vector_1()))
				.append(new MFVec3f(getNormal_7_20_vector_2()))
				.append(new MFVec3f(getNormal_7_20_vector_3()))
				.append(new MFVec3f(getNormal_7_20_vector_4()))
				.append(new MFVec3f(getNormal_7_20_vector_5()))
				.append(new MFVec3f(getNormal_7_20_vector_6()))
				.append(new MFVec3f(getNormal_7_20_vector_7()))
				.append(new MFVec3f(getNormal_7_20_vector_8()))
				.append(new MFVec3f(getNormal_7_20_vector_9()))
				.append(new MFVec3f(getNormal_7_20_vector_10()))
				.append(new MFVec3f(getNormal_7_20_vector_11()))
				.append(new MFVec3f(getNormal_7_20_vector_12()))
				.append(new MFVec3f(getNormal_7_20_vector_13()))
				.append(new MFVec3f(getNormal_7_20_vector_14()))
				.append(new MFVec3f(getNormal_7_20_vector_15()))
				.append(new MFVec3f(getNormal_7_20_vector_16()))
				.append(new MFVec3f(getNormal_7_20_vector_17()))
				.append(new MFVec3f(getNormal_7_20_vector_18()))
				.append(new MFVec3f(getNormal_7_20_vector_19()))
				.append(new MFVec3f(getNormal_7_20_vector_20()))
				.append(new MFVec3f(getNormal_7_20_vector_21()))
				.append(new MFVec3f(getNormal_7_20_vector_22()))
				.append(new MFVec3f(getNormal_7_20_vector_23()))
				.append(new MFVec3f(getNormal_7_20_vector_24()))
				.append(new MFVec3f(getNormal_7_20_vector_25()))
				.append(new MFVec3f(getNormal_7_20_vector_26()))
				.append(new MFVec3f(getNormal_7_20_vector_27()))
				.append(new MFVec3f(getNormal_7_20_vector_28()))
				.append(new MFVec3f(getNormal_7_20_vector_29()))
				.append(new MFVec3f(getNormal_7_20_vector_30()))
				.append(new MFVec3f(getNormal_7_20_vector_31()))
				.append(new MFVec3f(getNormal_7_20_vector_32()))
				.append(new MFVec3f(getNormal_7_20_vector_33()))
				.append(new MFVec3f(getNormal_7_20_vector_34()))
				.append(new MFVec3f(getNormal_7_20_vector_35()))
				.append(new MFVec3f(getNormal_7_20_vector_36()))
				.append(new MFVec3f(getNormal_7_20_vector_37()))
				.append(new MFVec3f(getNormal_7_20_vector_38()))
				.append(new MFVec3f(getNormal_7_20_vector_39()))
				.append(new MFVec3f(getNormal_7_20_vector_40()))
				.append(new MFVec3f(getNormal_7_20_vector_41()))
				.append(new MFVec3f(getNormal_7_20_vector_42()))
				.append(new MFVec3f(getNormal_7_20_vector_43()))
				.append(new MFVec3f(getNormal_7_20_vector_44()))
				.append(new MFVec3f(getNormal_7_20_vector_45()))
				.append(new MFVec3f(getNormal_7_20_vector_46()))
				.append(new MFVec3f(getNormal_7_20_vector_47()))
				.append(new MFVec3f(getNormal_7_20_vector_48()))
				.append(new MFVec3f(getNormal_7_20_vector_49()))
				.append(new MFVec3f(getNormal_7_20_vector_50()))
				.append(new MFVec3f(getNormal_7_20_vector_51()))
				.append(new MFVec3f(getNormal_7_20_vector_52()))
				.append(new MFVec3f(getNormal_7_20_vector_53()))
				.append(new MFVec3f(getNormal_7_20_vector_54()))
				.append(new MFVec3f(getNormal_7_20_vector_55()))
				.append(new MFVec3f(getNormal_7_20_vector_56()))
				.append(new MFVec3f(getNormal_7_20_vector_57()))
				.append(new MFVec3f(getNormal_7_20_vector_58()))
				.append(new MFVec3f(getNormal_7_20_vector_59()));
			return Normal_7_20_vector;
		}
		/** Large attribute array: TextureCoordinate point field, scene-graph level=7, element #21, 11652 total numbers made up of 5826 2-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec2f getTextureCoordinate_7_21_point()
		{
			MFVec2f TextureCoordinate_7_21_point = new MFVec2f()/*2.finalize*/
				.append(new MFVec2f(getTextureCoordinate_7_21_point_1()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_2()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_3()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_4()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_5()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_6()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_7()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_8()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_9()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_10()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_11()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_12()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_13()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_14()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_15()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_16()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_17()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_18()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_19()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_20()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_21()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_22()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_23()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_24()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_25()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_26()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_27()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_28()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_29()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_30()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_31()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_32()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_33()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_34()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_35()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_36()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_37()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_38()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_39()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_40()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_41()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_42()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_43()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_44()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_45()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_46()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_47()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_48()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_49()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_50()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_51()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_52()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_53()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_54()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_55()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_56()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_57()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_58()))
				.append(new MFVec2f(getTextureCoordinate_7_21_point_59()));
			return TextureCoordinate_7_21_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='Mi24_1-GEOMETRY' coordIndex field, scene-graph level=6, element #25, 752 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getMi24_1_GEOMETRY_6_25_coordIndex()
		{
			MFInt32 Mi24_1_GEOMETRY_6_25_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getMi24_1_GEOMETRY_6_25_coordIndex_1()));
			return Mi24_1_GEOMETRY_6_25_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet DEF='Mi24_1-GEOMETRY' normalIndex field, scene-graph level=6, element #25, 752 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getMi24_1_GEOMETRY_6_25_normalIndex()
		{
			MFInt32 Mi24_1_GEOMETRY_6_25_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getMi24_1_GEOMETRY_6_25_normalIndex_1()));
			return Mi24_1_GEOMETRY_6_25_normalIndex;
		}
		/** Large attribute array: IndexedFaceSet DEF='Mi24_1-GEOMETRY' texCoordIndex field, scene-graph level=6, element #25, 752 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getMi24_1_GEOMETRY_6_25_texCoordIndex()
		{
			MFInt32 Mi24_1_GEOMETRY_6_25_texCoordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getMi24_1_GEOMETRY_6_25_texCoordIndex_1()));
			return Mi24_1_GEOMETRY_6_25_texCoordIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=7, element #25, 1692 total numbers made up of 564 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getCoordinate_7_25_point()
		{
			MFVec3f Coordinate_7_25_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_7_25_point_1()))
				.append(new MFVec3f(getCoordinate_7_25_point_2()))
				.append(new MFVec3f(getCoordinate_7_25_point_3()))
				.append(new MFVec3f(getCoordinate_7_25_point_4()))
				.append(new MFVec3f(getCoordinate_7_25_point_5()))
				.append(new MFVec3f(getCoordinate_7_25_point_6()));
			return Coordinate_7_25_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=7, element #26, 1692 total numbers made up of 564 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getNormal_7_26_vector()
		{
			MFVec3f Normal_7_26_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_7_26_vector_1()))
				.append(new MFVec3f(getNormal_7_26_vector_2()))
				.append(new MFVec3f(getNormal_7_26_vector_3()))
				.append(new MFVec3f(getNormal_7_26_vector_4()))
				.append(new MFVec3f(getNormal_7_26_vector_5()))
				.append(new MFVec3f(getNormal_7_26_vector_6()));
			return Normal_7_26_vector;
		}
		/** Large attribute array: TextureCoordinate point field, scene-graph level=7, element #27, 1128 total numbers made up of 564 2-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec2f getTextureCoordinate_7_27_point()
		{
			MFVec2f TextureCoordinate_7_27_point = new MFVec2f()/*2.finalize*/
				.append(new MFVec2f(getTextureCoordinate_7_27_point_1()))
				.append(new MFVec2f(getTextureCoordinate_7_27_point_2()))
				.append(new MFVec2f(getTextureCoordinate_7_27_point_3()))
				.append(new MFVec2f(getTextureCoordinate_7_27_point_4()))
				.append(new MFVec2f(getTextureCoordinate_7_27_point_5()))
				.append(new MFVec2f(getTextureCoordinate_7_27_point_6()));
			return TextureCoordinate_7_27_point;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=7, element #31, 108 total numbers made up of 36 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getCoordinate_7_31_point()
		{
			MFVec3f Coordinate_7_31_point = new MFVec3f(new double[] {-0.082049,0.923303,14.125216,-0.082049,1.111796,14.016388,-0.412225,1.065227,13.989502,-0.412225,1.065227,13.989502,-0.412225,0.923303,14.071442,-0.082049,0.923303,14.125216,-0.082049,1.111796,14.016388,-0.082049,1.111796,13.798735,-0.412225,1.065227,13.825622,-0.412225,1.065227,13.825622,-0.412225,1.065227,13.989502,-0.082049,1.111796,14.016388,-0.082049,1.111796,13.798735,-0.082049,0.923303,13.689907,-0.412224,0.923303,13.743683,-0.412224,0.923303,13.743683,-0.412225,1.065227,13.825622,-0.082049,1.111796,13.798735,-0.082049,0.923303,13.689907,-0.082049,0.734809,13.798735,-0.412224,0.781379,13.825622,-0.412224,0.781379,13.825622,-0.412224,0.923303,13.743683,-0.082049,0.923303,13.689907,-0.082049,0.734809,13.798735,-0.082049,0.734809,14.016388,-0.412225,0.781379,13.989502,-0.412225,0.781379,13.989502,-0.412224,0.781379,13.825622,-0.082049,0.734809,13.798735,-0.082049,0.734809,14.016388,-0.082049,0.923303,14.125216,-0.412225,0.923303,14.071442,-0.412225,0.923303,14.071442,-0.412225,0.781379,13.989502,-0.082049,0.734809,14.016388});
			return Coordinate_7_31_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='Mi24Brotor_1-GEOMETRY' coordIndex field, scene-graph level=6, element #44, 1088 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getMi24Brotor_1_GEOMETRY_6_44_coordIndex()
		{
			MFInt32 Mi24Brotor_1_GEOMETRY_6_44_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getMi24Brotor_1_GEOMETRY_6_44_coordIndex_1()))
				.append(new MFInt32(getMi24Brotor_1_GEOMETRY_6_44_coordIndex_2()));
			return Mi24Brotor_1_GEOMETRY_6_44_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet DEF='Mi24Brotor_1-GEOMETRY' normalIndex field, scene-graph level=6, element #44, 1088 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getMi24Brotor_1_GEOMETRY_6_44_normalIndex()
		{
			MFInt32 Mi24Brotor_1_GEOMETRY_6_44_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getMi24Brotor_1_GEOMETRY_6_44_normalIndex_1()))
				.append(new MFInt32(getMi24Brotor_1_GEOMETRY_6_44_normalIndex_2()));
			return Mi24Brotor_1_GEOMETRY_6_44_normalIndex;
		}
		/** Large attribute array: IndexedFaceSet DEF='Mi24Brotor_1-GEOMETRY' texCoordIndex field, scene-graph level=6, element #44, 1088 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getMi24Brotor_1_GEOMETRY_6_44_texCoordIndex()
		{
			MFInt32 Mi24Brotor_1_GEOMETRY_6_44_texCoordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getMi24Brotor_1_GEOMETRY_6_44_texCoordIndex_1()))
				.append(new MFInt32(getMi24Brotor_1_GEOMETRY_6_44_texCoordIndex_2()));
			return Mi24Brotor_1_GEOMETRY_6_44_texCoordIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=7, element #44, 2448 total numbers made up of 816 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getCoordinate_7_44_point()
		{
			MFVec3f Coordinate_7_44_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_7_44_point_1()))
				.append(new MFVec3f(getCoordinate_7_44_point_2()))
				.append(new MFVec3f(getCoordinate_7_44_point_3()))
				.append(new MFVec3f(getCoordinate_7_44_point_4()))
				.append(new MFVec3f(getCoordinate_7_44_point_5()))
				.append(new MFVec3f(getCoordinate_7_44_point_6()))
				.append(new MFVec3f(getCoordinate_7_44_point_7()))
				.append(new MFVec3f(getCoordinate_7_44_point_8()))
				.append(new MFVec3f(getCoordinate_7_44_point_9()));
			return Coordinate_7_44_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=7, element #45, 2448 total numbers made up of 816 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getNormal_7_45_vector()
		{
			MFVec3f Normal_7_45_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_7_45_vector_1()))
				.append(new MFVec3f(getNormal_7_45_vector_2()))
				.append(new MFVec3f(getNormal_7_45_vector_3()))
				.append(new MFVec3f(getNormal_7_45_vector_4()))
				.append(new MFVec3f(getNormal_7_45_vector_5()))
				.append(new MFVec3f(getNormal_7_45_vector_6()))
				.append(new MFVec3f(getNormal_7_45_vector_7()))
				.append(new MFVec3f(getNormal_7_45_vector_8()))
				.append(new MFVec3f(getNormal_7_45_vector_9()));
			return Normal_7_45_vector;
		}
		/** Large attribute array: TextureCoordinate point field, scene-graph level=7, element #46, 1632 total numbers made up of 816 2-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec2f getTextureCoordinate_7_46_point()
		{
			MFVec2f TextureCoordinate_7_46_point = new MFVec2f()/*2.finalize*/
				.append(new MFVec2f(getTextureCoordinate_7_46_point_1()))
				.append(new MFVec2f(getTextureCoordinate_7_46_point_2()))
				.append(new MFVec2f(getTextureCoordinate_7_46_point_3()))
				.append(new MFVec2f(getTextureCoordinate_7_46_point_4()))
				.append(new MFVec2f(getTextureCoordinate_7_46_point_5()))
				.append(new MFVec2f(getTextureCoordinate_7_46_point_6()))
				.append(new MFVec2f(getTextureCoordinate_7_46_point_7()))
				.append(new MFVec2f(getTextureCoordinate_7_46_point_8()))
				.append(new MFVec2f(getTextureCoordinate_7_46_point_9()));
			return TextureCoordinate_7_46_point;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=7, element #51, 342 total numbers made up of 114 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getCoordinate_7_51_point()
		{
			MFVec3f Coordinate_7_51_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_7_51_point_1()))
				.append(new MFVec3f(getCoordinate_7_51_point_2()));
			return Coordinate_7_51_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=7, element #52, 342 total numbers made up of 114 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getNormal_7_52_vector()
		{
			MFVec3f Normal_7_52_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_7_52_vector_1()))
				.append(new MFVec3f(getNormal_7_52_vector_2()));
			return Normal_7_52_vector;
		}
		/** Large attribute array: TextureCoordinate point field, scene-graph level=7, element #53, 228 total numbers made up of 114 2-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec2f getTextureCoordinate_7_53_point()
		{
			MFVec2f TextureCoordinate_7_53_point = new MFVec2f()/*2.finalize*/
				.append(new MFVec2f(getTextureCoordinate_7_53_point_1()))
				.append(new MFVec2f(getTextureCoordinate_7_53_point_2()));
			return TextureCoordinate_7_53_point;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=7, element #58, 504 total numbers made up of 168 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getCoordinate_7_58_point()
		{
			MFVec3f Coordinate_7_58_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_7_58_point_1()))
				.append(new MFVec3f(getCoordinate_7_58_point_2()));
			return Coordinate_7_58_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=7, element #59, 504 total numbers made up of 168 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getNormal_7_59_vector()
		{
			MFVec3f Normal_7_59_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_7_59_vector_1()))
				.append(new MFVec3f(getNormal_7_59_vector_2()));
			return Normal_7_59_vector;
		}
		/** Large attribute array: TextureCoordinate point field, scene-graph level=7, element #60, 336 total numbers made up of 168 2-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec2f getTextureCoordinate_7_60_point()
		{
			MFVec2f TextureCoordinate_7_60_point = new MFVec2f()/*2.finalize*/
				.append(new MFVec2f(getTextureCoordinate_7_60_point_1()))
				.append(new MFVec2f(getTextureCoordinate_7_60_point_2()));
			return TextureCoordinate_7_60_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='Mi24Trotor_0-GEOMETRY' coordIndex field, scene-graph level=6, element #65, 336 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getMi24Trotor_0_GEOMETRY_6_65_coordIndex()
		{
			MFInt32 Mi24Trotor_0_GEOMETRY_6_65_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getMi24Trotor_0_GEOMETRY_6_65_coordIndex_1()));
			return Mi24Trotor_0_GEOMETRY_6_65_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet DEF='Mi24Trotor_0-GEOMETRY' normalIndex field, scene-graph level=6, element #65, 336 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getMi24Trotor_0_GEOMETRY_6_65_normalIndex()
		{
			MFInt32 Mi24Trotor_0_GEOMETRY_6_65_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getMi24Trotor_0_GEOMETRY_6_65_normalIndex_1()));
			return Mi24Trotor_0_GEOMETRY_6_65_normalIndex;
		}
		/** Large attribute array: IndexedFaceSet DEF='Mi24Trotor_0-GEOMETRY' texCoordIndex field, scene-graph level=6, element #65, 336 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getMi24Trotor_0_GEOMETRY_6_65_texCoordIndex()
		{
			MFInt32 Mi24Trotor_0_GEOMETRY_6_65_texCoordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getMi24Trotor_0_GEOMETRY_6_65_texCoordIndex_1()));
			return Mi24Trotor_0_GEOMETRY_6_65_texCoordIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=7, element #65, 756 total numbers made up of 252 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getCoordinate_7_65_point()
		{
			MFVec3f Coordinate_7_65_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_7_65_point_1()))
				.append(new MFVec3f(getCoordinate_7_65_point_2()))
				.append(new MFVec3f(getCoordinate_7_65_point_3()));
			return Coordinate_7_65_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=7, element #66, 756 total numbers made up of 252 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getNormal_7_66_vector()
		{
			MFVec3f Normal_7_66_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_7_66_vector_1()))
				.append(new MFVec3f(getNormal_7_66_vector_2()))
				.append(new MFVec3f(getNormal_7_66_vector_3()));
			return Normal_7_66_vector;
		}
		/** Large attribute array: TextureCoordinate point field, scene-graph level=7, element #67, 504 total numbers made up of 252 2-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec2f getTextureCoordinate_7_67_point()
		{
			MFVec2f TextureCoordinate_7_67_point = new MFVec2f()/*2.finalize*/
				.append(new MFVec2f(getTextureCoordinate_7_67_point_1()))
				.append(new MFVec2f(getTextureCoordinate_7_67_point_2()))
				.append(new MFVec2f(getTextureCoordinate_7_67_point_3()));
			return TextureCoordinate_7_67_point;
		}

	/** The initialized model object, created within initialize() method. */
	private X3D x3dModel;

	/** 
	 * Provide a 
	 * <a href="https://dzone.com/articles/java-copy-shallow-vs-deep-in-which-you-will-swim" target="_blank">shallow copy</a>
	 * of the X3D model.
	 * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/Core/X3D.html">X3D</a>
	 * @return Mi24 model
	 */
	public X3D getX3dModel()
	{	  
		return x3dModel;
	}
	   
    /** 
     * Default main() method provided for test purposes, uses CommandLine to set global ConfigurationProperties for this object.
     * @param args array of input parameters, provided as arguments
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/Core/X3D.html#handleArguments-java.lang.String:A-">X3D.handleArguments(args)</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/Core/X3D.html#validationReport--">X3D.validationReport()</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/CommandLine.html">CommandLine</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/CommandLine.html#USAGE">CommandLine.USAGE</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/ConfigurationProperties.html">ConfigurationProperties</a>
     */
    public static void main(String args[])
    {
        System.out.println("Build this X3D model, showing validation diagnostics...");
        X3D thisExampleX3dModel = new Mi24().getX3dModel();
//      System.out.println("X3D model construction complete.");
	
        // next handle command line arguments
        boolean hasArguments = (args != null) && (args.length > 0);
        boolean validate = true; // default
        boolean argumentsLoadNewModel = false;
        String  fileName = new String();

        if (args != null)
        {
                for (String arg : args)
                {
                        if (arg.toLowerCase().startsWith("-v") || arg.toLowerCase().contains("validate"))
                        {
                                validate = true; // making sure
                        }
                        if (arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_X3D) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_CLASSICVRML) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_X3DB) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_VRML97) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_EXI) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_GZIP) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_ZIP) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_HTML) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_XHTML))
                        {
                                argumentsLoadNewModel = true;
                                fileName = arg;
                        }
                }
        }
        if      (argumentsLoadNewModel)
                System.out.println("WARNING: \"Savage.AircraftHelicopters.Mi24HindRussia.Mi24\" model invocation is attempting to load file \"" + fileName + "\" instead of simply validating itself... file loading ignored.");
        else if (hasArguments) // if no arguments provided, this method produces usage warning
                thisExampleX3dModel.handleArguments(args);
	
        if (validate)
        {
            //  System.out.println("--- TODO fix duplicated outputs ---"); // omit when duplicated outputs problem is solved/refactored
		String validationResults = thisExampleX3dModel.validationReport();
            //  System.out.println("-----------------------------------"); // omit when duplicated outputs problem is solved/refactored
                System.out.print("Savage.AircraftHelicopters.Mi24HindRussia.Mi24 self-validation test confirmation: ");
                if (!validationResults.equals("success"))
                    System.out.println();
                System.out.println(validationResults.trim());

                // experimental: test X3DJSAIL output files
                // AircraftHelicopters/Mi24HindRussia/Mi24_JavaExport.* file validation is checked when building X3D Example Archives
                String filenameX3D  = "AircraftHelicopters/Mi24HindRussia/Mi24_JavaExport.x3d"; 
                String filenameX3DV = "AircraftHelicopters/Mi24HindRussia/Mi24_JavaExport.x3dv"; 
                String filenameJSON = "AircraftHelicopters/Mi24HindRussia/Mi24_JavaExport.json";
                thisExampleX3dModel.toFileX3D        (filenameX3D);
                thisExampleX3dModel.toFileClassicVRML(filenameX3DV);
// TODO         thisExampleX3dModel.toFileJSON       (filenameJSON);
        }
    }
}
