package HumanoidAnimation.Medical;

import org.web3d.x3d.jsail.Core.*;
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.*;

// Javadoc metadata annotations follow, see below for X3DJSAIL Java source code.
/**
 * <p> Human bone model for Left Hand. </p>
 <p> Related links:  source BonesLeftHand.java, <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;">HumanoidAnimation.Medical.BonesLeftHand&nbsp; Document Metadata </td>
		</tr>

		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> title </i> </td>
			<td> <a href="https://www.web3d.org/x3d/content/examples/HumanoidAnimation/Medical/BonesLeftHand.x3d">BonesLeftHand.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> creator </i> </td>
			<td> Damon Hernandez, Joe Williams </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> description </i> </td>
			<td> Human bone model for Left Hand </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> translator </i> </td>
			<td> Joe Williams, Don Brutzman </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> created </i> </td>
			<td> 5 December 2013 </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> modified </i> </td>
			<td> 2 March 2026 </td>
		</tr>
		<tr style="color:burntorange">
			<td style="text-align:right; vertical-align: text-top;"> <i> warning </i> </td>
			<td> This model has no HAnim nodes, rather it is purely geometry </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> TODO </i> </td>
			<td> document unit conversions applied: approximation of inches to meters, which ordinarily is a scale factor of 0.0254 </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> generator </i> </td>
			<td> X3D-Edit 4.0, <a href="https://www.web3d.org/x3d/tools/X3D-Edit" target="_blank">https://www.web3d.org/x3d/tools/X3D-Edit</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/HumanoidAnimation/Medical/BonesLeftHand.x3d" target="_blank">https://www.web3d.org/x3d/content/examples/HumanoidAnimation/Medical/BonesLeftHand.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> license </i> </td>
			<td> <a href="https://www.web3d.org/x3d/content/examples/HumanoidAnimation/Medical/../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 Damon Hernandez, Joe Williams
 */

public class BonesLeftHand
{
	/** Default constructor to create this object. */
	public BonesLeftHand ()
	{
	  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("BonesLeftHand.x3d"))
    .addMeta(new meta().setName(meta.NAME_CREATOR    ).setContent("Damon Hernandez, Joe Williams"))
    .addMeta(new meta().setName(meta.NAME_DESCRIPTION).setContent("Human bone model for Left Hand"))
    .addMeta(new meta().setName(meta.NAME_TRANSLATOR ).setContent("Joe Williams, Don Brutzman"))
    .addMeta(new meta().setName(meta.NAME_CREATED    ).setContent("5 December 2013"))
    .addMeta(new meta().setName(meta.NAME_MODIFIED   ).setContent("2 March 2026"))
    .addMeta(new meta().setName(meta.NAME_WARNING    ).setContent("This model has no HAnim nodes, rather it is purely geometry"))
    .addMeta(new meta().setName(meta.NAME_TODO       ).setContent("document unit conversions applied: approximation of inches to meters, which ordinarily is a scale factor of 0.0254"))
    .addMeta(new meta().setName(meta.NAME_GENERATOR  ).setContent("X3D-Edit 4.0, https://www.web3d.org/x3d/tools/X3D-Edit"))
    .addMeta(new meta().setName(meta.NAME_IDENTIFIER ).setContent("https://www.web3d.org/x3d/content/examples/HumanoidAnimation/Medical/BonesLeftHand.x3d"))
    .addMeta(new meta().setName(meta.NAME_LICENSE    ).setContent("../license.html")))
  .setScene(new Scene()
    .addChild(new WorldInfo().setTitle("BonesLeftHand.x3d"))
    .addChild(new NavigationInfo().setType(new String[] {"EXAMINE","LOOKAT","ANY"}))
    .addChild(new Transform("LeftHandSkeletonParts").setScale(0.029,0.029,0.029)
      .addChild(new Viewpoint("LeftHand").setDescription("Left Hand").setPosition(5.0,29.0,24.0))
      .addComments(" lcaptate lscphoid lhamate llunate lpisform ltrpzium ltrpzoid ltrqtral lmc lmc2 lmc3 lmc4 lmc5 lpphal lpphal2 lpphal3 lpphal4 lpphal5 lmphal2 lmphal3 lmphal4 lmphal5 ldphal ldphal2 ldphal3 ldphal4 ldphal5 ")
      .addChild(new Shape("lcaptate")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lcaptate_Geo").setDEF("lcaptate_Geo").setCreaseAngle(1.571).setCoordIndex(getlcaptate_Geo_5_18_coordIndex())
          .setCoord(new Coordinate("lcaptate_Coord").setPoint(getlcaptate_Coord_6_18_point()))))
      .addChild(new Shape("llunate")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("llunate_Geo").setDEF("llunate_Geo").setCreaseAngle(1.571).setCoordIndex(getllunate_Geo_5_23_coordIndex())
          .setCoord(new Coordinate("llunate_Coord").setPoint(getllunate_Coord_6_23_point()))))
      .addChild(new Shape("lmc")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lmc_Geo").setDEF("lmc_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc_Geo_5_28_coordIndex())
          .setCoord(new Coordinate("lmc_Coord").setPoint(getlmc_Coord_6_28_point()))))
      .addChild(new Shape("lmc2")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lmc2_Geo").setDEF("lmc2_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc2_Geo_5_33_coordIndex())
          .setCoord(new Coordinate("lmc2_Coord").setPoint(getlmc2_Coord_6_33_point()))))
      .addChild(new Shape("lmc3")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lmc3_Geo").setDEF("lmc3_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc3_Geo_5_38_coordIndex())
          .setCoord(new Coordinate("lmc3_Coord").setPoint(getlmc3_Coord_6_38_point()))))
      .addChild(new Shape("lmc4")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lmc4_Geo").setDEF("lmc4_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc4_Geo_5_43_coordIndex())
          .setCoord(new Coordinate("lmc4_Coord").setPoint(getlmc4_Coord_6_43_point()))))
      .addChild(new Shape("lmc5")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lmc5_Geo").setDEF("lmc5_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc5_Geo_5_48_coordIndex())
          .setCoord(new Coordinate("lmc5_Coord").setPoint(getlmc5_Coord_6_48_point()))))
      .addChild(new Shape("lmphal2")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lmphal2_Geo").setDEF("lmphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getlmphal2_Geo_5_53_coordIndex())
          .setCoord(new Coordinate("lmphal2_Coord").setPoint(getlmphal2_Coord_6_53_point()))))
      .addChild(new Shape("lmphal3")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lmphal3_Geo").setDEF("lmphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getlmphal3_Geo_5_58_coordIndex())
          .setCoord(new Coordinate("lmphal3_Coord").setPoint(getlmphal3_Coord_6_58_point()))))
      .addChild(new Shape("lmphal4")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lmphal4_Geo").setDEF("lmphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getlmphal4_Geo_5_63_coordIndex())
          .setCoord(new Coordinate("lmphal4_Coord").setPoint(getlmphal4_Coord_6_63_point()))))
      .addChild(new Shape("lmphal5")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lmphal5_Geo").setDEF("lmphal5_Geo").setCreaseAngle(1.571).setCoordIndex(getlmphal5_Geo_5_68_coordIndex())
          .setCoord(new Coordinate("lmphal5_Coord").setPoint(getlmphal5_Coord_6_68_point()))))
      .addChild(new Shape("lpisform")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lpisform_Geo").setDEF("lpisform_Geo").setCreaseAngle(1.571).setCoordIndex(getlpisform_Geo_5_73_coordIndex())
          .setCoord(new Coordinate("lpisform_Coord").setPoint(getlpisform_Coord_6_73_point()))))
      .addChild(new Shape("lpphal")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lpphal_Geo").setDEF("lpphal_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal_Geo_5_78_coordIndex())
          .setCoord(new Coordinate("lpphal_Coord").setPoint(getlpphal_Coord_6_78_point()))))
      .addChild(new Shape("lpphal2")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lpphal2_Geo").setDEF("lpphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal2_Geo_5_83_coordIndex())
          .setCoord(new Coordinate("lpphal2_Coord").setPoint(getlpphal2_Coord_6_83_point()))))
      .addChild(new Shape("lpphal3")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lpphal3_Geo").setDEF("lpphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal3_Geo_5_88_coordIndex())
          .setCoord(new Coordinate("lpphal3_Coord").setPoint(getlpphal3_Coord_6_88_point()))))
      .addChild(new Shape("lpphal4")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lpphal4_Geo").setDEF("lpphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal4_Geo_5_93_coordIndex())
          .setCoord(new Coordinate("lpphal4_Coord").setPoint(getlpphal4_Coord_6_93_point()))))
      .addChild(new Shape("lpphal5")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lpphal5_Geo").setDEF("lpphal5_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal5_Geo_5_98_coordIndex())
          .setCoord(new Coordinate("lpphal5_Coord").setPoint(getlpphal5_Coord_6_98_point()))))
      .addChild(new Shape("lhamate")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lhamate_Geo").setDEF("lhamate_Geo").setCreaseAngle(1.571).setCoordIndex(getlhamate_Geo_5_103_coordIndex())
          .setCoord(new Coordinate("lhamate_Coord").setPoint(getlhamate_Coord_6_103_point()))))
      .addChild(new Shape("lscphoid")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lscphoid_Geo").setDEF("lscphoid_Geo").setCreaseAngle(1.571).setCoordIndex(getlscphoid_Geo_5_108_coordIndex())
          .setCoord(new Coordinate("lscphoid_Coord").setPoint(getlscphoid_Coord_6_108_point()))))
      .addChild(new Shape("ltrpzium")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("ltrpzium_Geo").setDEF("ltrpzium_Geo").setCreaseAngle(1.571).setCoordIndex(getltrpzium_Geo_5_113_coordIndex())
          .setCoord(new Coordinate("ltrpzium_Coord").setPoint(getltrpzium_Coord_6_113_point()))))
      .addChild(new Shape("ltrpzoid")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("ltrpzoid_Geo").setDEF("ltrpzoid_Geo").setCreaseAngle(1.571).setCoordIndex(getltrpzoid_Geo_5_118_coordIndex())
          .setCoord(new Coordinate("ltrpzoid_Coord").setPoint(getltrpzoid_Coord_6_118_point()))))
      .addChild(new Shape("ltrqtral")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("ltrqtral_Geo").setDEF("ltrqtral_Geo").setCreaseAngle(1.571).setCoordIndex(getltrqtral_Geo_5_123_coordIndex())
          .setCoord(new Coordinate("ltrqtral_Coord").setPoint(getltrqtral_Coord_6_123_point()))))
      .addChild(new Shape("ldphal")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("ldphal_Geo").setDEF("ldphal_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal_Geo_5_128_coordIndex())
          .setCoord(new Coordinate("ldphal_Coord").setPoint(getldphal_Coord_6_128_point()))))
      .addChild(new Shape("ldphal2")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("ldphal2_Geo").setDEF("ldphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal2_Geo_5_133_coordIndex())
          .setCoord(new Coordinate("ldphal2_Coord").setPoint(getldphal2_Coord_6_133_point()))))
      .addChild(new Shape("ldphal3")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("ldphal3_Geo").setDEF("ldphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal3_Geo_5_138_coordIndex())
          .setCoord(new Coordinate("ldphal3_Coord").setPoint(getldphal3_Coord_6_138_point()))))
      .addChild(new Shape("ldphal4")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("ldphal4_Geo").setDEF("ldphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal4_Geo_5_143_coordIndex())
          .setCoord(new Coordinate("ldphal4_Coord").setPoint(getldphal4_Coord_6_143_point()))))
      .addChild(new Shape("ldphal5")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(0.8,0.8,0.8).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("ldphal5_Geo").setDEF("ldphal5_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal5_Geo_5_148_coordIndex())
          .setCoord(new Coordinate("ldphal5_Coord").setPoint(getldphal5_Coord_6_148_point()))))));
            }
            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 subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcaptate_Geo_5_18_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,5,6,3,-1,6,7,3,-1,8,9,10,-1,10,11,8,-1,12,13,14,-1,15,16,17,-1,18,14,13,-1,19,11,20,-1,19,21,11,-1,22,23,24,-1,24,25,22,-1,12,26,27,-1,26,28,27,-1,29,30,31,-1,31,32,29,-1,33,34,35,-1,34,36,35,-1,37,38,39,-1,40,41,42,-1,43,44,45,-1,44,46,45,-1,47,48,49,-1,47,50,48,-1,2,51,0,-1,52,53,54,-1,55,56,49,-1,57,58,59,-1,57,60,58,-1,61,62,63,-1,63,64,61,-1,42,65,40,-1,42,66,65,-1,67,68,62,-1,62,61,67,-1,69,70,71,-1,71,72,69,-1,69,73,74,-1,75,76,77,-1,78,79,80,-1,78,81,79,-1,82,83,84,-1,83,6,84,-1,85,86,87,-1,88,89,90,-1,88,91,89,-1,92,89,73,-1,73,93,92,-1,94,27,95,-1,30,29,96,-1,97,98,22,-1,99,100,101,-1,102,103,104,-1,102,34,103,-1,105,106,107,-1,107,108,105,-1,45,109,110,-1,111,101,112,-1,113,101,114,-1,25,115,33,-1,115,116,33,-1,117,118,54,-1,119,120,121,-1,122,123,124,-1,121,40,119,-1,7,125,126,-1,7,127,125,-1,52,128,129,-1,129,130,52,-1,131,132,133,-1,132,134,133,-1,135,136,67,-1,136,137,67,-1,138,139,140,-1,138,141,139,-1,142,63,140,-1,138,62,68,-1,131,143,144,-1,145,146,147,-1,148,149,150,-1,150,151,148,-1,152,153,154,-1,77,155,156,-1,157,155,158,-1,159,155,160,-1,161,155,162,-1,163,155,164,-1,57,165,166,-1,57,59,165,-1,167,46,44,-1,168,149,169,-1,110,53,170,-1,171,172,173,-1,174,175,176,-1,174,177,175,-1,178,143,179,-1,178,144,143,-1,180,181,58,-1,180,182,181,-1,183,184,185,-1,183,186,187,-1,183,181,186,-1,188,189,190,-1,190,191,188,-1,136,192,137,-1,122,124,193,-1,194,41,193,-1,194,195,41,-1,166,124,123,-1,47,196,197,-1,198,199,165,-1,200,201,202,-1,203,204,202,-1,203,205,204,-1,206,207,30,-1,208,209,210,-1,209,211,210,-1,212,97,36,-1,97,35,36,-1,97,22,35,-1,213,26,214,-1,95,215,94,-1,8,215,216,-1,215,95,217,-1,218,219,220,-1,221,216,32,-1,222,223,224,-1,224,225,222,-1,219,4,220,-1,226,85,84,-1,84,85,82,-1,227,3,228,-1,125,229,230,-1,125,231,229,-1,228,232,233,-1,233,227,228,-1,4,221,220,-1,234,9,233,-1,9,8,233,-1,11,235,8,-1,236,13,94,-1,237,20,10,-1,20,11,10,-1,238,239,70,-1,45,110,43,-1,240,241,242,-1,240,243,241,-1,124,244,107,-1,245,101,100,-1,124,246,247,-1,247,248,249,-1,169,149,250,-1,154,251,152,-1,252,25,253,-1,25,254,253,-1,255,18,256,-1,256,19,255,-1,195,194,249,-1,194,247,249,-1,141,257,139,-1,257,258,139,-1,255,19,259,-1,259,15,255,-1,154,14,260,-1,260,251,154,-1,152,261,262,-1,152,251,261,-1,24,154,153,-1,247,194,124,-1,246,124,106,-1,34,263,103,-1,107,264,108,-1,107,244,264,-1,244,124,197,-1,51,224,265,-1,266,63,142,-1,267,16,268,-1,88,90,64,-1,19,256,21,-1,10,9,239,-1,239,238,10,-1,233,216,221,-1,227,221,4,-1,227,233,221,-1,232,234,233,-1,126,125,269,-1,125,230,269,-1,3,232,228,-1,78,86,85,-1,85,226,81,-1,4,3,227,-1,265,224,223,-1,233,8,216,-1,96,29,200,-1,215,8,94,-1,27,13,12,-1,27,94,13,-1,12,14,154,-1,28,26,213,-1,211,207,210,-1,201,28,270,-1,200,202,204,-1,198,165,59,-1,165,197,124,-1,271,57,123,-1,57,166,123,-1,124,194,193,-1,272,271,123,-1,134,273,136,-1,273,192,136,-1,274,275,132,-1,276,277,278,-1,279,176,175,-1,175,182,279,-1,280,155,163,-1,180,58,281,-1,197,165,199,-1,87,82,85,-1,166,165,124,-1,60,282,281,-1,156,280,283,-1,283,284,156,-1,164,155,161,-1,162,155,159,-1,160,155,157,-1,158,155,77,-1,156,155,280,-1,150,149,168,-1,168,285,150,-1,66,148,151,-1,66,42,148,-1,286,257,141,-1,286,287,257,-1,133,189,131,-1,189,143,131,-1,67,190,135,-1,67,61,190,-1,140,63,62,-1,62,138,140,-1,140,139,142,-1,68,141,138,-1,68,286,141,-1,288,289,290,-1,122,41,291,-1,122,193,41,-1,281,58,60,-1,263,292,103,-1,263,293,292,-1,101,113,99,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcaptate_Geo_5_18_coordIndex_2()
		{
			int[] value = {114,101,111,-1,112,101,245,-1,107,106,124,-1,294,295,296,-1,294,297,295,-1,34,33,263,-1,212,298,98,-1,98,97,212,-1,96,206,30,-1,96,299,206,-1,270,202,201,-1,270,203,202,-1,152,254,153,-1,126,232,7,-1,174,300,177,-1,301,71,70,-1,302,49,303,-1,49,56,303,-1,73,91,74,-1,73,89,91,-1,179,304,178,-1,220,31,218,-1,305,86,78,-1,78,80,305,-1,225,219,222,-1,219,218,222,-1,85,81,78,-1,196,306,197,-1,72,307,69,-1,70,69,74,-1,74,238,70,-1,63,88,64,-1,63,266,88,-1,41,121,291,-1,41,40,121,-1,198,185,184,-1,184,199,198,-1,149,148,249,-1,148,195,249,-1,308,309,289,-1,43,265,44,-1,242,306,229,-1,45,310,38,-1,38,109,45,-1,311,309,308,-1,207,211,218,-1,211,222,218,-1,214,26,12,-1,12,154,214,-1,45,46,310,-1,21,235,11,-1,256,236,235,-1,235,21,256,-1,142,17,16,-1,224,51,2,-1,2,305,224,-1,4,219,5,-1,219,79,5,-1,80,224,305,-1,80,225,224,-1,7,83,127,-1,7,6,83,-1,232,3,7,-1,1,83,2,-1,127,83,1,-1,80,219,225,-1,219,80,79,-1,15,268,16,-1,259,268,15,-1,18,236,256,-1,18,13,236,-1,312,102,313,-1,314,102,312,-1,223,315,167,-1,223,209,315,-1,33,22,25,-1,33,35,22,-1,28,95,27,-1,95,28,201,-1,31,207,218,-1,30,207,31,-1,196,229,306,-1,229,196,302,-1,240,1,0,-1,240,231,1,-1,117,53,110,-1,117,54,53,-1,289,173,290,-1,289,309,173,-1,248,172,250,-1,248,316,172,-1,38,317,109,-1,38,37,317,-1,290,172,316,-1,290,173,172,-1,195,42,41,-1,195,148,42,-1,318,319,320,-1,321,319,318,-1,49,184,55,-1,49,48,184,-1,291,120,272,-1,291,121,120,-1,192,286,137,-1,192,287,286,-1,72,318,320,-1,318,72,71,-1,185,59,58,-1,185,198,59,-1,322,88,266,-1,322,91,88,-1,146,323,324,-1,146,145,323,-1,87,305,2,-1,86,305,87,-1,81,5,79,-1,226,5,81,-1,325,326,92,-1,326,325,191,-1,327,179,188,-1,327,304,179,-1,178,277,276,-1,178,304,277,-1,328,327,325,-1,329,327,328,-1,322,10,238,-1,322,237,10,-1,56,330,303,-1,56,321,330,-1,71,331,318,-1,331,71,301,-1,69,93,73,-1,69,307,93,-1,177,332,333,-1,177,300,332,-1,334,320,319,-1,334,335,320,-1,336,126,269,-1,336,232,126,-1,24,254,25,-1,153,254,24,-1,98,270,337,-1,98,203,270,-1,204,96,200,-1,204,299,96,-1,297,206,299,-1,297,294,206,-1,338,208,296,-1,39,208,338,-1,212,295,298,-1,339,295,212,-1,116,263,33,-1,263,116,293,-1,314,338,339,-1,314,312,338,-1,128,288,129,-1,128,289,288,-1,38,315,39,-1,38,310,315,-1,111,340,341,-1,111,112,340,-1,292,114,311,-1,292,113,114,-1,245,116,115,-1,245,100,116,-1,341,252,342,-1,341,340,252,-1,103,311,308,-1,103,292,311,-1,243,0,170,-1,240,0,243,-1,342,173,309,-1,173,342,171,-1,135,189,133,-1,135,190,189,-1,343,40,65,-1,343,119,40,-1,168,262,285,-1,168,253,262,-1,158,76,344,-1,158,77,76,-1,345,157,346,-1,345,160,157,-1,347,159,348,-1,347,162,159,-1,164,349,350,-1,164,161,349,-1,283,163,351,-1,283,280,163,-1,323,284,352,-1,75,284,323,-1,346,274,144,-1,346,344,274,-1,276,345,178,-1,276,348,345,-1,349,353,174,-1,349,347,353,-1,351,176,279,-1,351,350,176,-1,352,283,354,-1,352,284,283,-1,244,241,264,-1,241,244,197,-1,281,354,180,-1,281,352,354,-1,279,180,354,-1,279,182,180,-1,355,276,278,-1,353,276,355,-1,147,274,145,-1,274,147,275,-1,182,186,181,-1,175,186,182,-1,300,356,332,-1,300,355,356,-1,357,277,329,-1,278,277,357,-1,132,273,134,-1,132,275,273,-1,186,334,187,-1,334,186,333,-1,332,358,335,-1,358,332,356,-1,72,359,307,-1,72,358,359,-1,359,329,328,-1,357,329,359,-1,273,65,192,-1,273,343,65,-1,324,282,120,-1,324,281,282,-1,297,298,295,-1,298,297,205,-1,23,213,214,-1,23,337,213,-1,301,336,331,-1,301,360,336,-1,230,302,303,-1,230,229,302,-1,237,266,267,-1,237,322,266,-1,267,142,16,-1,266,142,267,-1,197,242,241,-1,197,306,242,-1,130,108,264,-1,108,130,129,-1,39,312,37,-1,338,312,39,-1,246,105,316,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcaptate_Geo_5_18_coordIndex_3()
		{
			int[] value = {246,106,105,-1,169,172,171,-1,172,169,250,-1,150,361,258,-1,285,361,150,-1,17,251,260,-1,251,17,261,-1,139,361,142,-1,139,258,361,-1,267,20,237,-1,267,268,20,-1,64,326,61,-1,90,326,64,-1,258,151,150,-1,257,151,258,-1,17,361,261,-1,17,142,361,-1,285,261,361,-1,285,262,261,-1,169,253,168,-1,252,253,169,-1,169,342,252,-1,169,171,342,-1,248,246,316,-1,248,247,246,-1,105,290,316,-1,290,105,288,-1,362,118,104,-1,362,54,118,-1,43,170,0,-1,170,43,110,-1,235,94,8,-1,235,236,94,-1,234,239,9,-1,234,360,239,-1,232,360,234,-1,360,232,336,-1,269,303,330,-1,269,230,303,-1,223,44,265,-1,44,223,167,-1,31,221,32,-1,220,221,31,-1,217,216,215,-1,217,32,216,-1,337,28,213,-1,337,270,28,-1,296,210,294,-1,296,208,210,-1,298,203,98,-1,203,298,205,-1,299,205,297,-1,205,299,204,-1,257,66,151,-1,66,257,287,-1,191,61,326,-1,61,191,190,-1,328,307,359,-1,93,307,328,-1,357,358,356,-1,358,357,359,-1,360,70,239,-1,360,301,70,-1,358,320,335,-1,358,72,320,-1,187,319,55,-1,187,334,319,-1,55,183,187,-1,184,183,55,-1,183,58,181,-1,183,185,58,-1,275,343,273,-1,275,147,343,-1,143,188,179,-1,143,189,188,-1,356,278,357,-1,355,278,356,-1,175,333,186,-1,175,177,333,-1,324,352,281,-1,323,352,324,-1,174,355,300,-1,174,353,355,-1,264,243,130,-1,264,241,243,-1,317,118,117,-1,317,313,118,-1,354,351,279,-1,354,283,351,-1,350,174,176,-1,350,349,174,-1,353,348,276,-1,353,347,348,-1,178,346,144,-1,178,345,346,-1,344,145,274,-1,344,76,145,-1,163,350,351,-1,163,164,350,-1,161,347,349,-1,161,162,347,-1,348,160,345,-1,348,159,160,-1,157,344,346,-1,157,158,344,-1,75,156,284,-1,77,156,75,-1,152,253,254,-1,262,253,152,-1,343,146,119,-1,147,146,343,-1,133,136,135,-1,133,134,136,-1,132,144,274,-1,144,132,131,-1,170,130,243,-1,53,130,170,-1,53,52,130,-1,231,127,1,-1,125,127,231,-1,146,120,119,-1,146,324,120,-1,272,122,291,-1,272,123,122,-1,252,115,25,-1,252,340,115,-1,311,342,309,-1,311,341,342,-1,340,245,115,-1,340,112,245,-1,293,113,292,-1,99,113,293,-1,114,341,311,-1,114,111,341,-1,104,313,102,-1,104,118,313,-1,129,105,108,-1,129,288,105,-1,308,104,103,-1,104,308,362,-1,36,339,212,-1,36,314,339,-1,116,99,293,-1,116,100,99,-1,339,296,295,-1,338,296,339,-1,39,209,208,-1,315,209,39,-1,206,210,207,-1,206,294,210,-1,22,337,23,-1,22,98,337,-1,269,331,336,-1,331,269,330,-1,333,335,334,-1,333,332,335,-1,330,318,331,-1,330,321,318,-1,325,93,328,-1,325,92,93,-1,329,304,327,-1,277,304,329,-1,327,191,325,-1,191,327,188,-1,90,92,326,-1,90,89,92,-1,5,84,6,-1,84,5,226,-1,83,87,2,-1,87,83,82,-1,145,75,323,-1,145,76,75,-1,65,287,192,-1,65,66,287,-1,282,272,120,-1,282,271,272,-1,184,50,199,-1,184,48,50,-1,238,91,322,-1,91,238,74,-1,137,68,67,-1,137,286,68,-1,57,282,60,-1,271,282,57,-1,55,321,56,-1,55,319,321,-1,199,47,197,-1,199,50,47,-1,109,117,110,-1,109,317,117,-1,248,149,249,-1,149,248,250,-1,289,362,308,-1,289,128,362,-1,54,128,52,-1,362,128,54,-1,51,43,0,-1,51,265,43,-1,231,242,229,-1,242,231,240,-1,302,47,49,-1,302,196,47,-1,29,217,200,-1,32,217,29,-1,214,24,23,-1,154,24,214,-1,34,314,36,-1,34,102,314,-1,310,167,315,-1,167,310,46,-1,211,223,222,-1,211,209,223,-1,201,217,95,-1,201,200,217,-1,313,37,312,-1,317,37,313,-1,260,15,17,-1,255,15,260,-1,18,260,14,-1,255,260,18,-1,19,268,259,-1,268,19,20,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getllunate_Geo_5_23_coordIndex_2()
		{
			int[] value = {254,119,118,-1,110,217,109,-1,110,177,217,-1,112,107,80,-1,107,112,106,-1,228,178,104,-1,228,230,178,-1,221,231,210,-1,255,231,221,-1,102,99,141,-1,101,99,102,-1,256,215,190,-1,214,215,256,-1,173,257,258,-1,173,172,257,-1,196,48,246,-1,195,48,196,-1,241,45,170,-1,241,243,45,-1,197,259,260,-1,197,70,259,-1,142,261,262,-1,143,261,142,-1,245,263,264,-1,47,263,245,-1,98,142,73,-1,98,144,142,-1,24,146,155,-1,146,24,145,-1,123,160,121,-1,160,123,159,-1,183,42,40,-1,184,42,183,-1,170,40,241,-1,169,40,170,-1,259,237,265,-1,266,237,259,-1,182,38,234,-1,181,38,182,-1,193,100,23,-1,101,100,193,-1,153,233,208,-1,154,233,153,-1,25,179,35,-1,179,25,267,-1,108,221,220,-1,221,108,255,-1,249,256,258,-1,249,248,256,-1,132,268,135,-1,268,132,251,-1,59,269,13,-1,269,59,89,-1,124,164,125,-1,164,124,94,-1,47,187,263,-1,47,49,187,-1,204,140,139,-1,204,206,140,-1,93,124,161,-1,124,93,94,-1,267,180,179,-1,270,180,267,-1,116,183,169,-1,116,166,183,-1,70,266,259,-1,70,152,266,-1,151,68,67,-1,150,68,151,-1,166,66,185,-1,66,166,116,-1,103,267,79,-1,267,103,270,-1,198,217,222,-1,217,198,109,-1,188,215,16,-1,188,190,215,-1,248,214,256,-1,248,213,214,-1,39,196,242,-1,196,39,194,-1,184,168,229,-1,184,166,168,-1,254,7,6,-1,254,4,7,-1,271,90,272,-1,88,90,271,-1,91,120,162,-1,91,92,120,-1,159,93,161,-1,77,93,159,-1,164,127,125,-1,164,84,127,-1,126,86,163,-1,85,86,126,-1,87,131,128,-1,87,60,131,-1,52,162,141,-1,272,162,52,-1,252,271,51,-1,269,271,252,-1,268,227,247,-1,227,268,226,-1,202,158,137,-1,223,158,202,-1,100,121,24,-1,121,100,122,-1,180,260,181,-1,260,180,197,-1,46,152,44,-1,46,266,152,-1,69,270,103,-1,71,270,69,-1,273,203,253,-1,273,130,203,-1,95,32,27,-1,95,53,32,-1,273,97,96,-1,97,273,253,-1,103,147,69,-1,30,147,103,-1,98,101,193,-1,98,99,101,-1,192,36,144,-1,192,232,36,-1,239,262,261,-1,264,262,239,-1,263,20,72,-1,263,187,20,-1,157,43,137,-1,157,10,43,-1,133,250,225,-1,135,250,133,-1,251,226,268,-1,251,50,226,-1,273,128,130,-1,273,163,128,-1,96,163,273,-1,163,96,126,-1,51,272,52,-1,271,272,51,-1,127,85,126,-1,84,85,127,-1,92,123,120,-1,92,78,123,-1,272,91,162,-1,90,91,272,-1,269,88,271,-1,89,88,269,-1,4,244,200,-1,244,4,254,-1,195,174,212,-1,195,175,174,-1,258,224,249,-1,257,224,258,-1,198,11,64,-1,198,216,11,-1,216,222,219,-1,198,222,216,-1,105,255,108,-1,255,105,178,-1,33,160,34,-1,160,33,145,-1,199,151,67,-1,151,199,66,-1,150,70,68,-1,152,70,150,-1,141,61,62,-1,141,99,61,-1,270,197,180,-1,197,270,71,-1,161,26,34,-1,26,161,124,-1,139,49,204,-1,187,49,139,-1,236,264,239,-1,236,245,264,-1,13,252,136,-1,252,13,269,-1,247,135,268,-1,250,135,247,-1,107,220,218,-1,108,220,107,-1,28,267,25,-1,267,28,79,-1,191,234,207,-1,182,234,191,-1,181,235,38,-1,235,181,260,-1,266,238,237,-1,238,266,46,-1,229,42,184,-1,229,211,42,-1,78,159,123,-1,159,78,77,-1,121,145,24,-1,145,121,160,-1,193,144,98,-1,144,193,192,-1,264,72,262,-1,264,263,72,-1,42,74,41,-1,42,211,74,-1,73,262,72,-1,142,262,73,-1,260,265,235,-1,260,259,265,-1,69,68,70,-1,147,68,69,-1,232,23,22,-1,23,232,192,-1,170,44,65,-1,170,45,44,-1,242,246,240,-1,196,246,242,-1,195,205,48,-1,212,205,195,-1,114,64,63,-1,114,111,64,-1,258,190,173,-1,256,190,258,-1,60,13,131,-1,60,59,13,-1,12,219,165,-1,12,216,219,-1,255,230,231,-1,178,230,255,-1,80,218,81,-1,218,80,107,-1,119,6,12,-1,6,119,254,-1,253,138,56,-1,253,203,138,-1,252,50,251,-1,252,51,50,-1,248,250,247,-1,248,249,250,-1,246,47,245,-1,246,48,47,-1,46,243,238,-1,46,45,243,-1,204,48,205,-1,49,48,204,-1,241,39,242,-1,39,241,40,-1,27,30,28,-1,27,32,30,-1,31,67,29,-1,67,31,200,-1,238,240,236,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getllunate_Geo_5_23_coordIndex_3()
		{
			int[] value = {243,240,238,-1,237,261,265,-1,237,239,261,-1,143,265,261,-1,265,143,235,-1,234,208,207,-1,208,234,153,-1,22,154,232,-1,154,22,233,-1,146,207,155,-1,146,191,207,-1,25,34,26,-1,35,34,25,-1,200,199,67,-1,244,199,200,-1,231,186,210,-1,186,231,167,-1,228,168,230,-1,168,228,229,-1,21,52,19,-1,50,52,21,-1,257,111,114,-1,111,257,172,-1,227,205,213,-1,227,206,205,-1,83,189,188,-1,83,82,189,-1,114,224,257,-1,114,113,224,-1,158,225,156,-1,158,133,225,-1,134,15,14,-1,15,134,223,-1,221,165,219,-1,221,209,165,-1,221,210,209,-1,222,218,220,-1,217,218,222,-1,148,2,149,-1,2,148,57,-1,9,57,148,-1,8,57,9,-1,3,7,4,-1,149,7,3,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc_Geo_5_28_coordIndex_2()
		{
			int[] value = {24,61,60,-1,34,232,130,-1,229,50,228,-1,229,51,50,-1,117,61,118,-1,64,136,58,-1,57,240,54,-1,57,56,240,-1,53,51,19,-1,50,52,133,-1,138,263,27,-1,75,72,111,-1,235,254,126,-1,182,178,180,-1,180,264,182,-1,178,182,184,-1,185,98,44,-1,10,87,42,-1,40,90,265,-1,265,41,40,-1,226,50,24,-1,181,266,265,-1,266,175,265,-1,21,38,39,-1,27,118,29,-1,20,46,21,-1,36,133,52,-1,52,232,36,-1,18,53,19,-1,18,130,53,-1,23,22,29,-1,29,118,23,-1,263,70,27,-1,7,3,45,-1,264,255,182,-1,267,268,269,-1,270,268,267,-1,52,130,232,-1,130,52,53,-1,25,133,36,-1,133,25,24,-1,244,16,15,-1,244,249,16,-1,135,28,134,-1,26,28,135,-1,87,192,42,-1,87,86,192,-1,186,98,185,-1,186,221,98,-1,125,222,271,-1,125,127,222,-1,209,272,2,-1,272,209,201,-1,264,273,1,-1,264,180,273,-1,252,254,235,-1,252,17,254,-1,233,72,74,-1,112,72,233,-1,117,54,240,-1,54,117,71,-1,274,112,233,-1,110,112,274,-1,275,245,67,-1,246,245,275,-1,231,65,230,-1,66,65,231,-1,262,94,251,-1,261,94,262,-1,63,50,226,-1,63,228,50,-1,240,61,117,-1,240,59,61,-1,67,276,68,-1,67,245,276,-1,211,277,88,-1,210,277,211,-1,265,179,181,-1,179,265,90,-1,180,277,273,-1,277,180,179,-1,256,278,279,-1,256,257,278,-1,259,280,6,-1,280,259,258,-1,91,215,82,-1,91,191,215,-1,102,17,16,-1,17,102,247,-1,12,248,13,-1,249,248,12,-1,7,281,4,-1,282,281,7,-1,254,100,126,-1,254,253,100,-1,67,242,275,-1,242,67,69,-1,283,241,69,-1,141,241,283,-1,139,241,103,-1,242,241,139,-1,135,138,26,-1,138,135,73,-1,271,234,125,-1,234,271,284,-1,132,285,286,-1,287,285,132,-1,288,237,236,-1,288,131,237,-1,289,238,239,-1,289,156,238,-1,290,78,262,-1,78,290,123,-1,291,289,124,-1,291,292,289,-1,284,292,234,-1,284,158,292,-1,235,290,252,-1,235,291,290,-1,250,15,17,-1,250,276,15,-1,274,243,246,-1,243,274,30,-1,38,237,129,-1,38,239,237,-1,79,19,230,-1,79,20,19,-1,137,66,229,-1,136,66,137,-1,28,22,120,-1,28,293,22,-1,25,121,22,-1,25,286,121,-1,275,139,110,-1,275,242,139,-1,225,261,77,-1,294,261,225,-1,294,153,95,-1,153,294,154,-1,142,77,76,-1,77,142,225,-1,142,146,145,-1,142,143,146,-1,64,147,224,-1,64,148,147,-1,64,57,223,-1,58,57,64,-1,144,149,223,-1,144,150,149,-1,216,287,171,-1,287,216,285,-1,122,177,295,-1,119,177,122,-1,238,162,236,-1,162,238,296,-1,284,186,187,-1,284,271,186,-1,116,297,220,-1,116,115,297,-1,298,155,299,-1,296,155,298,-1,299,157,217,-1,155,157,299,-1,164,299,219,-1,299,164,298,-1,9,257,84,-1,9,267,257,-1,257,269,278,-1,269,257,267,-1,268,168,281,-1,268,218,168,-1,175,41,265,-1,43,41,175,-1,300,266,184,-1,300,176,266,-1,300,297,295,-1,300,214,297,-1,282,278,269,-1,280,278,282,-1,258,194,279,-1,258,260,194,-1,256,212,85,-1,256,196,212,-1,210,273,277,-1,273,210,209,-1,212,204,193,-1,212,205,204,-1,203,210,211,-1,203,202,210,-1,2,199,208,-1,199,272,201,-1,2,272,199,-1,207,260,190,-1,207,206,260,-1,206,194,260,-1,206,197,194,-1,190,198,207,-1,190,189,198,-1,279,196,256,-1,279,194,196,-1,259,190,260,-1,213,190,259,-1,281,167,4,-1,281,168,167,-1,189,92,208,-1,92,189,91,-1,5,44,3,-1,5,185,44,-1,214,220,297,-1,214,97,220,-1,214,184,183,-1,184,214,300,-1,255,83,182,-1,255,81,83,-1,266,178,184,-1,266,181,178,-1,176,295,177,-1,295,176,300,-1,174,266,176,-1,175,266,174,-1,173,171,172,-1,216,171,173,-1,161,42,172,-1,161,10,42,-1,270,218,268,-1,270,165,218,-1,165,11,163,-1,11,165,270,-1,165,219,218,-1,165,164,219,-1,298,163,160,-1,298,164,163,-1,217,219,299,-1,217,166,219,-1,157,188,217,-1,157,187,188,-1,296,160,162,-1,296,298,160,-1,295,115,122,-1,295,297,115,-1,158,187,157,-1,158,284,187,-1,156,296,238,-1,296,156,155,-1,159,236,162,-1,159,288,236,-1,177,285,216,-1,285,177,119,-1,171,288,159,-1,287,288,171,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc_Geo_5_28_coordIndex_3()
		{
			int[] value = {143,147,146,-1,143,224,147,-1,224,80,65,-1,80,224,143,-1,225,154,294,-1,154,225,145,-1,152,95,153,-1,152,108,95,-1,261,95,94,-1,95,261,294,-1,152,283,108,-1,152,106,283,-1,141,103,241,-1,104,103,141,-1,286,36,132,-1,286,25,36,-1,129,131,35,-1,237,131,129,-1,245,15,276,-1,15,245,244,-1,99,32,33,-1,32,99,13,-1,262,252,290,-1,262,251,252,-1,234,291,235,-1,234,292,291,-1,292,156,289,-1,156,292,158,-1,124,290,291,-1,123,290,124,-1,239,124,289,-1,124,239,38,-1,131,287,132,-1,288,287,131,-1,286,119,121,-1,285,119,286,-1,127,116,222,-1,127,113,116,-1,29,293,28,-1,22,293,29,-1,30,233,31,-1,30,274,233,-1,109,283,69,-1,108,283,109,-1,106,141,283,-1,105,141,106,-1,140,103,47,-1,140,139,103,-1,105,47,104,-1,151,47,105,-1,101,100,99,-1,100,101,126,-1,253,14,100,-1,253,247,14,-1,221,97,98,-1,220,97,221,-1,86,212,193,-1,85,212,86,-1,6,213,259,-1,213,6,8,-1,280,279,278,-1,258,279,280,-1,88,179,90,-1,277,179,88,-1,49,263,138,-1,48,263,49,-1,60,63,226,-1,60,62,63,-1,80,230,65,-1,80,79,230,-1,276,93,68,-1,93,276,250,-1,110,246,275,-1,110,274,246,-1,48,70,263,-1,70,48,55,-1,273,2,1,-1,2,273,209,-1,271,221,186,-1,271,222,221,-1,39,35,34,-1,39,129,35,-1,249,243,248,-1,243,249,244,-1,33,227,128,-1,33,31,227,-1,30,248,243,-1,30,32,248,-1,227,134,128,-1,227,135,134,-1,269,281,282,-1,269,268,281,-1,9,270,267,-1,11,270,9,-1,6,282,7,-1,6,280,282,-1,255,1,0,-1,255,264,1,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmc2_Geo_5_33_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,4,6,5,-1,7,8,0,-1,0,9,7,-1,10,9,0,-1,11,12,13,-1,12,14,13,-1,15,16,17,-1,17,18,15,-1,19,20,21,-1,22,23,24,-1,25,26,27,-1,28,29,30,-1,28,27,29,-1,31,29,26,-1,32,33,34,-1,35,36,37,-1,38,39,40,-1,41,42,43,-1,44,45,46,-1,47,48,49,-1,50,51,52,-1,50,53,51,-1,54,55,56,-1,54,57,55,-1,58,59,60,-1,61,62,63,-1,64,65,66,-1,25,67,68,-1,67,69,68,-1,70,71,72,-1,70,73,71,-1,74,75,76,-1,77,78,79,-1,78,80,79,-1,81,70,72,-1,72,82,81,-1,83,75,84,-1,83,85,75,-1,86,87,88,-1,87,89,88,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,94,98,-1,106,107,108,-1,109,110,107,-1,111,112,113,-1,114,112,111,-1,115,116,117,-1,118,119,116,-1,120,121,122,-1,123,124,121,-1,125,120,122,-1,122,126,125,-1,123,127,124,-1,127,128,124,-1,129,130,131,-1,129,132,130,-1,131,130,112,-1,130,133,112,-1,10,134,135,-1,135,9,10,-1,130,132,121,-1,136,137,138,-1,136,139,137,-1,136,140,139,-1,136,141,142,-1,143,144,135,-1,145,146,147,-1,148,149,150,-1,148,151,149,-1,152,153,154,-1,152,155,92,-1,112,156,113,-1,156,157,113,-1,158,159,160,-1,146,142,141,-1,146,160,142,-1,161,13,162,-1,163,13,14,-1,164,165,166,-1,166,167,168,-1,169,170,110,-1,171,172,173,-1,173,174,171,-1,175,176,12,-1,177,175,178,-1,177,179,180,-1,180,102,177,-1,181,108,182,-1,180,179,183,-1,183,184,180,-1,171,185,186,-1,171,187,185,-1,185,17,186,-1,188,189,190,-1,34,191,32,-1,192,193,194,-1,195,196,99,-1,196,197,99,-1,37,198,35,-1,199,22,200,-1,4,3,50,-1,50,201,4,-1,202,203,204,-1,203,205,204,-1,206,207,208,-1,208,209,206,-1,210,38,40,-1,49,48,211,-1,48,212,211,-1,213,214,215,-1,75,216,215,-1,30,213,215,-1,76,217,74,-1,217,73,74,-1,218,219,5,-1,218,220,219,-1,54,221,57,-1,221,222,57,-1,223,100,224,-1,225,226,227,-1,228,225,229,-1,225,230,229,-1,231,232,233,-1,232,144,233,-1,234,235,236,-1,236,237,234,-1,238,239,240,-1,241,134,10,-1,242,243,244,-1,242,245,246,-1,242,247,248,-1,249,2,250,-1,246,245,251,-1,245,235,251,-1,252,253,234,-1,254,255,250,-1,254,256,255,-1,257,258,241,-1,257,255,258,-1,259,260,261,-1,261,262,259,-1,263,264,265,-1,264,266,265,-1,100,99,197,-1,267,34,188,-1,268,269,270,-1,269,271,270,-1,272,273,274,-1,273,275,274,-1,272,276,273,-1,277,278,279,-1,264,263,280,-1,263,281,280,-1,282,283,284,-1,282,285,283,-1,195,286,196,-1,195,287,286,-1,65,288,289,-1,290,291,292,-1,291,69,293,-1,291,290,69,-1,294,48,65,-1,295,296,191,-1,189,297,190,-1,189,298,297,-1,208,212,209,-1,299,300,301,-1,299,302,300,-1,303,304,305,-1,303,306,304,-1,307,56,308,-1,308,309,310,-1,310,311,308,-1,307,312,313,-1,313,314,307,-1,315,316,317,-1,318,319,307,-1,307,314,318,-1,319,221,54,-1,319,320,221,-1,321,316,322,-1,322,323,321,-1,324,78,77,-1,77,325,324,-1,202,201,326,-1,326,203,202,-1,202,327,201,-1,60,63,62,-1,328,80,329,-1,330,331,204,-1,332,333,334,-1,335,336,334,-1,337,338,334,-1,45,339,334,-1,340,332,334,-1,341,342,343,-1,344,345,346,-1,344,347,345,-1,348,349,350,-1,89,351,275,-1,275,88,89,-1,352,353,1,-1,354,355,356,-1,357,115,117,-1,357,358,115,-1,359,140,142,-1,256,360,361,-1,256,359,360,-1,352,362,353,-1,352,15,362,-1,363,250,2,-1,364,233,144,-1,144,143,364,-1,232,244,243,-1,243,365,232,-1,240,236,248,-1,248,247,240,-1,237,366,367,-1,237,239,366,-1,368,173,366,-1,173,367,366,-1,187,174,369,-1,370,371,366,-1,364,271,233,-1,372,105,107,-1,107,106,372,-1,127,129,93,-1,93,95,127,-1,373,374,90,-1,373,150,374,-1,90,126,128,-1,141,147,146,-1,90,375,125,-1,90,374,375,-1,125,126,90,-1,376,179,377,-1,376,183,179,-1,178,175,12,-1,164,136,165,-1,136,138,165,-1,13,161,378,-1,379,380,381,-1,381,382,379,-1,383,384,385,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc2_Geo_5_33_coordIndex_2()
		{
			int[] value = {386,387,388,-1,389,390,391,-1,382,381,391,-1,392,393,391,-1,394,385,391,-1,388,395,391,-1,395,389,391,-1,385,388,391,-1,391,393,394,-1,381,392,391,-1,390,382,391,-1,376,389,395,-1,395,396,376,-1,390,379,382,-1,390,377,379,-1,397,398,163,-1,166,21,167,-1,176,175,168,-1,168,167,176,-1,377,177,379,-1,377,179,177,-1,102,180,111,-1,104,118,146,-1,399,148,400,-1,399,401,148,-1,402,150,149,-1,402,374,150,-1,403,354,402,-1,402,149,403,-1,373,90,92,-1,105,269,404,-1,105,372,269,-1,238,233,370,-1,171,174,187,-1,252,367,173,-1,173,172,252,-1,252,237,367,-1,252,234,237,-1,240,247,231,-1,247,405,231,-1,248,236,235,-1,235,245,248,-1,135,365,251,-1,251,9,135,-1,242,244,405,-1,143,135,134,-1,406,137,254,-1,360,159,407,-1,360,359,159,-1,408,345,407,-1,345,409,407,-1,117,151,410,-1,354,403,355,-1,158,116,115,-1,160,116,158,-1,348,410,349,-1,410,401,349,-1,346,408,358,-1,346,345,408,-1,411,346,412,-1,411,344,346,-1,264,413,262,-1,264,280,413,-1,339,414,334,-1,338,45,334,-1,336,415,334,-1,333,335,334,-1,58,46,59,-1,333,331,335,-1,331,329,335,-1,328,329,416,-1,43,417,44,-1,43,418,417,-1,3,53,50,-1,3,419,53,-1,82,330,205,-1,330,204,205,-1,214,76,75,-1,75,215,214,-1,316,315,322,-1,420,421,422,-1,55,57,423,-1,57,222,423,-1,56,307,54,-1,320,319,318,-1,318,424,320,-1,425,314,313,-1,313,312,425,-1,419,309,53,-1,56,426,308,-1,228,427,428,-1,192,429,193,-1,429,430,193,-1,212,208,211,-1,65,48,47,-1,28,223,431,-1,292,291,65,-1,65,64,292,-1,289,66,65,-1,100,432,101,-1,433,318,314,-1,230,434,425,-1,425,229,230,-1,286,287,435,-1,436,437,438,-1,436,439,437,-1,440,285,282,-1,440,441,285,-1,265,278,195,-1,442,443,276,-1,443,441,276,-1,444,284,317,-1,317,424,444,-1,88,275,273,-1,273,341,88,-1,275,351,268,-1,278,287,195,-1,278,445,287,-1,263,265,195,-1,255,256,361,-1,361,258,255,-1,143,258,259,-1,139,140,254,-1,363,353,362,-1,18,161,162,-1,242,405,247,-1,242,248,245,-1,242,246,243,-1,232,405,244,-1,232,231,405,-1,251,234,7,-1,251,235,234,-1,238,240,233,-1,240,231,233,-1,7,234,253,-1,228,36,35,-1,228,229,36,-1,446,317,284,-1,319,54,307,-1,426,56,55,-1,55,326,426,-1,324,64,61,-1,324,292,64,-1,447,218,42,-1,447,220,218,-1,74,84,75,-1,75,85,216,-1,431,67,28,-1,213,448,214,-1,213,31,448,-1,47,288,65,-1,49,211,38,-1,38,210,49,-1,207,39,208,-1,207,41,39,-1,327,202,331,-1,202,204,331,-1,415,337,334,-1,326,201,52,-1,426,51,308,-1,449,450,451,-1,37,200,198,-1,37,199,200,-1,297,196,286,-1,286,429,297,-1,452,194,193,-1,453,454,455,-1,452,299,455,-1,452,302,299,-1,456,457,347,-1,169,458,170,-1,458,459,170,-1,184,460,96,-1,184,183,460,-1,271,370,233,-1,372,106,370,-1,106,371,370,-1,110,109,169,-1,109,461,169,-1,168,136,164,-1,168,462,136,-1,177,102,145,-1,145,175,177,-1,186,172,171,-1,16,172,17,-1,172,186,17,-1,166,168,164,-1,20,167,21,-1,20,176,167,-1,13,163,162,-1,146,116,160,-1,348,350,412,-1,350,411,412,-1,410,357,117,-1,184,96,114,-1,152,154,463,-1,152,92,153,-1,117,403,149,-1,149,151,117,-1,118,116,146,-1,175,462,168,-1,136,462,141,-1,462,147,141,-1,136,142,140,-1,139,254,137,-1,21,166,165,-1,120,133,121,-1,114,131,112,-1,131,114,96,-1,96,129,131,-1,129,127,123,-1,123,132,129,-1,123,121,132,-1,156,112,133,-1,121,124,122,-1,130,121,133,-1,156,125,375,-1,117,116,403,-1,116,355,403,-1,356,355,116,-1,116,119,356,-1,108,107,110,-1,461,97,464,-1,461,109,97,-1,96,93,129,-1,93,96,98,-1,98,94,93,-1,90,128,91,-1,465,404,269,-1,364,270,271,-1,86,88,341,-1,420,423,222,-1,420,422,423,-1,81,422,421,-1,85,323,322,-1,85,83,323,-1,446,315,317,-1,446,466,315,-1,214,217,76,-1,214,448,217,-1,67,431,69,-1,431,293,69,-1,61,66,62,-1,61,64,66,-1,48,294,467,-1,50,52,201,-1,41,40,39,-1,468,37,449,-1,468,199,37,-1,469,470,468,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc2_Geo_5_33_coordIndex_3()
		{
			int[] value = {67,27,28,-1,67,25,27,-1,27,26,29,-1,26,68,471,-1,26,25,68,-1,472,303,23,-1,303,24,23,-1,303,305,24,-1,200,24,473,-1,200,22,24,-1,15,398,362,-1,15,18,398,-1,12,474,14,-1,7,9,251,-1,7,253,8,-1,340,334,414,-1,419,5,219,-1,419,3,5,-1,0,8,1,-1,249,0,2,-1,249,10,0,-1,219,309,419,-1,309,219,472,-1,340,475,476,-1,340,414,475,-1,266,278,265,-1,266,279,278,-1,477,260,478,-1,261,260,477,-1,398,162,163,-1,18,162,398,-1,397,406,363,-1,397,19,406,-1,300,430,435,-1,300,302,430,-1,479,435,480,-1,435,479,300,-1,472,220,303,-1,219,220,472,-1,447,206,306,-1,447,207,206,-1,31,471,448,-1,31,26,471,-1,306,301,304,-1,301,306,206,-1,43,40,41,-1,43,481,40,-1,210,481,482,-1,210,40,481,-1,431,296,293,-1,431,483,296,-1,331,416,329,-1,331,330,416,-1,216,315,466,-1,216,322,315,-1,216,85,322,-1,421,83,81,-1,83,421,323,-1,320,317,316,-1,317,320,424,-1,321,222,221,-1,321,420,222,-1,343,439,484,-1,439,343,342,-1,485,486,399,-1,486,485,487,-1,488,270,364,-1,488,489,270,-1,464,396,387,-1,460,396,464,-1,109,98,97,-1,109,105,98,-1,109,107,105,-1,490,156,375,-1,157,156,490,-1,133,125,156,-1,133,120,125,-1,91,127,95,-1,91,128,127,-1,232,135,144,-1,232,365,135,-1,400,92,155,-1,400,373,92,-1,463,87,152,-1,87,463,89,-1,184,111,180,-1,184,114,111,-1,410,412,357,-1,410,348,412,-1,368,174,173,-1,491,174,368,-1,363,398,397,-1,363,362,398,-1,19,137,406,-1,138,137,19,-1,372,271,269,-1,271,372,370,-1,459,492,369,-1,458,492,459,-1,187,161,185,-1,161,187,493,-1,494,457,456,-1,494,445,457,-1,301,209,299,-1,206,209,301,-1,302,193,430,-1,302,452,193,-1,267,453,467,-1,267,454,453,-1,453,209,212,-1,453,299,209,-1,453,455,299,-1,429,190,297,-1,192,190,429,-1,197,224,100,-1,197,298,224,-1,468,451,469,-1,468,449,451,-1,39,211,208,-1,39,38,211,-1,52,426,326,-1,426,52,51,-1,337,63,60,-1,415,63,337,-1,77,448,471,-1,79,448,77,-1,79,217,448,-1,290,68,69,-1,290,325,68,-1,60,66,289,-1,60,62,66,-1,323,420,321,-1,420,323,421,-1,289,58,60,-1,289,288,58,-1,446,283,495,-1,283,446,284,-1,456,227,494,-1,456,496,227,-1,496,411,497,-1,411,496,344,-1,10,257,241,-1,10,249,257,-1,2,353,363,-1,2,1,353,-1,258,260,259,-1,361,260,258,-1,188,454,267,-1,188,194,454,-1,273,342,341,-1,273,440,342,-1,444,282,284,-1,444,498,282,-1,272,442,276,-1,272,489,442,-1,441,499,285,-1,441,443,499,-1,495,101,432,-1,495,283,101,-1,499,99,101,-1,281,99,499,-1,342,437,439,-1,342,498,437,-1,437,434,438,-1,437,433,434,-1,436,500,497,-1,436,438,500,-1,501,445,494,-1,287,445,501,-1,500,225,227,-1,500,230,225,-1,226,228,428,-1,226,225,228,-1,425,433,314,-1,434,433,425,-1,444,318,433,-1,444,424,318,-1,223,483,431,-1,223,224,483,-1,467,212,48,-1,212,467,453,-1,480,502,479,-1,502,480,428,-1,428,473,502,-1,428,427,473,-1,22,310,23,-1,470,310,22,-1,427,200,473,-1,198,200,427,-1,425,36,229,-1,36,425,450,-1,311,451,312,-1,311,469,451,-1,312,450,425,-1,312,451,450,-1,326,423,203,-1,326,55,423,-1,205,81,82,-1,81,205,422,-1,215,466,30,-1,216,466,215,-1,471,325,77,-1,471,68,325,-1,71,416,72,-1,71,328,416,-1,6,417,418,-1,6,475,417,-1,503,335,329,-1,335,503,336,-1,338,60,59,-1,338,337,60,-1,417,45,44,-1,45,417,339,-1,332,476,327,-1,340,476,332,-1,277,445,278,-1,445,277,457,-1,497,350,436,-1,497,411,350,-1,442,280,443,-1,280,442,413,-1,504,478,409,-1,504,477,478,-1,489,413,442,-1,413,489,488,-1,86,343,487,-1,343,86,341,-1,357,346,358,-1,346,357,412,-1,349,399,486,-1,349,401,399,-1,115,408,158,-1,408,115,358,-1,360,409,478,-1,409,360,407,-1,160,359,142,-1,160,159,359,-1,1,253,352,-1,1,8,253,-1,172,253,252,-1,16,253,172,-1,182,459,491,-1,170,459,182,-1,366,238,370,-1,366,239,238,-1,170,108,110,-1,170,182,108,-1,465,154,404,-1,154,465,463,-1,399,155,485,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmc2_Geo_5_33_coordIndex_4()
		{
			int[] value = {399,400,155,-1,95,92,91,-1,153,92,95,-1,490,354,356,-1,402,354,490,-1,148,410,151,-1,410,148,401,-1,118,103,119,-1,104,103,118,-1,178,379,177,-1,379,178,380,-1,163,474,397,-1,14,474,163,-1,492,383,493,-1,383,492,384,-1,169,386,458,-1,169,461,386,-1,377,389,376,-1,389,377,390,-1,393,11,13,-1,392,11,393,-1,386,385,384,-1,388,385,386,-1,378,393,13,-1,393,378,394,-1,392,380,11,-1,381,380,392,-1,461,387,386,-1,461,464,387,-1,458,384,492,-1,384,458,386,-1,493,378,161,-1,378,493,383,-1,11,178,12,-1,11,380,178,-1,183,396,460,-1,396,183,376,-1,113,119,103,-1,113,157,119,-1,375,402,490,-1,374,402,375,-1,94,404,95,-1,94,105,404,-1,465,89,463,-1,465,351,89,-1,154,95,404,-1,153,95,154,-1,489,268,270,-1,272,268,489,-1,181,366,371,-1,181,368,366,-1,491,369,174,-1,369,491,459,-1,255,249,250,-1,255,257,249,-1,259,364,143,-1,259,488,364,-1,487,87,86,-1,87,487,485,-1,486,350,349,-1,350,486,484,-1,262,488,259,-1,262,413,488,-1,409,347,504,-1,345,347,409,-1,440,276,441,-1,440,273,276,-1,484,436,350,-1,436,484,439,-1,496,347,344,-1,456,347,496,-1,277,477,504,-1,277,279,477,-1,327,333,332,-1,327,331,333,-1,475,339,417,-1,339,475,414,-1,415,503,63,-1,336,503,415,-1,78,63,503,-1,324,63,78,-1,324,61,63,-1,327,4,201,-1,4,327,476,-1,79,328,71,-1,328,79,80,-1,29,213,30,-1,31,213,29,-1,466,495,30,-1,495,466,446,-1,311,307,308,-1,311,312,307,-1,470,311,310,-1,311,470,469,-1,35,427,228,-1,198,427,35,-1,502,24,305,-1,502,473,24,-1,418,5,6,-1,418,218,5,-1,479,305,304,-1,305,479,502,-1,218,43,42,-1,218,418,43,-1,430,286,435,-1,429,286,430,-1,224,32,483,-1,32,224,33,-1,293,295,291,-1,293,296,295,-1,432,223,28,-1,432,100,223,-1,501,428,480,-1,501,226,428,-1,497,227,496,-1,497,500,227,-1,438,230,500,-1,434,230,438,-1,433,498,444,-1,433,437,498,-1,281,443,280,-1,443,281,499,-1,30,432,28,-1,30,495,432,-1,101,285,499,-1,283,285,101,-1,440,498,342,-1,498,440,282,-1,272,275,268,-1,275,272,274,-1,99,263,195,-1,99,281,263,-1,262,266,264,-1,262,261,266,-1,359,254,140,-1,359,256,254,-1,134,258,143,-1,134,241,258,-1,16,352,253,-1,352,16,15,-1,236,239,237,-1,239,236,240,-1,450,37,36,-1,37,450,449,-1,494,226,501,-1,494,227,226,-1,457,504,347,-1,504,457,277,-1,47,58,288,-1,58,47,482,-1,325,292,324,-1,325,290,292,-1,70,74,73,-1,70,84,74,-1,203,422,205,-1,203,423,422,-1,199,470,22,-1,199,468,470,-1,196,298,197,-1,196,297,298,-1,298,33,224,-1,298,189,33,-1,294,191,467,-1,294,295,191,-1,188,192,194,-1,188,190,192,-1,455,194,452,-1,194,455,454,-1,34,467,191,-1,34,267,467,-1,33,188,34,-1,189,188,33,-1,493,369,492,-1,493,187,369,-1,18,185,161,-1,17,185,18,-1,175,147,462,-1,147,175,145,-1,106,181,371,-1,181,106,108,-1,176,474,12,-1,176,20,474,-1,181,491,368,-1,491,181,182,-1,159,408,407,-1,158,408,159,-1,152,485,155,-1,152,87,485,-1,148,373,400,-1,148,150,373,-1,365,246,251,-1,243,246,365,-1,122,128,126,-1,128,122,124,-1,356,157,490,-1,119,157,356,-1,394,383,385,-1,394,378,383,-1,111,103,102,-1,111,113,103,-1,269,351,465,-1,268,351,269,-1,145,104,146,-1,145,102,104,-1,387,395,388,-1,396,395,387,-1,97,460,464,-1,96,460,97,-1,484,487,343,-1,484,486,487,-1,221,316,321,-1,316,221,320,-1,84,81,83,-1,81,84,70,-1,72,330,82,-1,330,72,416,-1,329,78,503,-1,78,329,80,-1,71,217,79,-1,73,217,71,-1,191,483,32,-1,483,191,296,-1,291,294,65,-1,291,295,294,-1,46,482,481,-1,482,46,58,-1,308,53,309,-1,53,308,51,-1,210,47,49,-1,482,47,210,-1,42,207,447,-1,42,41,207,-1,481,44,46,-1,43,44,481,-1,45,59,46,-1,338,59,45,-1,304,300,479,-1,304,301,300,-1,306,220,447,-1,220,306,303,-1,287,480,435,-1,501,480,287,-1,474,19,397,-1,19,474,20,-1,21,138,19,-1,21,165,138,-1,363,254,250,-1,363,406,254,-1,361,478,260,-1,361,360,478,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlmc2_Geo_5_33_coordIndex_5()
		{
			int[] value = {279,261,477,-1,266,261,279,-1,4,475,6,-1,4,476,475,-1,472,310,309,-1,310,472,23,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmc3_Geo_5_38_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,5,6,3,-1,6,7,3,-1,8,9,10,-1,11,12,13,-1,14,15,16,-1,16,17,14,-1,18,19,20,-1,18,21,19,-1,22,23,24,-1,22,25,23,-1,26,27,28,-1,26,29,27,-1,30,31,32,-1,30,33,31,-1,34,35,36,-1,35,37,36,-1,38,39,40,-1,39,41,40,-1,42,43,44,-1,45,46,47,-1,45,48,46,-1,49,50,51,-1,51,52,49,-1,53,54,55,-1,56,57,58,-1,56,59,57,-1,60,61,62,-1,60,63,61,-1,57,59,64,-1,65,66,67,-1,65,68,66,-1,59,56,69,-1,61,63,70,-1,63,71,70,-1,59,69,61,-1,72,73,74,-1,74,75,72,-1,76,77,78,-1,73,79,74,-1,73,80,79,-1,79,81,82,-1,79,80,81,-1,83,0,76,-1,84,85,50,-1,85,55,50,-1,50,49,84,-1,86,85,87,-1,87,88,86,-1,89,90,91,-1,89,92,90,-1,93,94,95,-1,96,97,98,-1,97,99,98,-1,100,99,101,-1,100,102,98,-1,100,103,104,-1,100,101,105,-1,106,107,108,-1,107,109,108,-1,106,108,110,-1,110,111,106,-1,112,113,114,-1,114,115,112,-1,116,117,118,-1,119,120,121,-1,122,123,124,-1,125,126,127,-1,125,128,126,-1,110,129,130,-1,130,131,110,-1,132,133,9,-1,132,119,133,-1,134,135,136,-1,134,70,135,-1,137,118,117,-1,137,108,118,-1,138,139,140,-1,138,58,139,-1,141,142,143,-1,143,144,141,-1,145,28,27,-1,146,147,145,-1,148,149,150,-1,148,151,149,-1,152,65,67,-1,153,154,155,-1,156,154,157,-1,158,154,159,-1,160,161,162,-1,4,163,5,-1,4,24,163,-1,164,165,166,-1,65,152,167,-1,152,168,167,-1,169,170,171,-1,171,172,169,-1,173,174,175,-1,176,177,178,-1,176,179,177,-1,180,181,182,-1,163,183,13,-1,184,185,186,-1,186,187,184,-1,188,189,190,-1,191,175,192,-1,193,194,175,-1,191,195,175,-1,196,197,175,-1,198,199,175,-1,200,201,175,-1,202,203,175,-1,204,205,206,-1,206,207,204,-1,25,17,208,-1,209,16,210,-1,211,212,213,-1,211,214,212,-1,183,165,215,-1,163,216,217,-1,216,218,217,-1,152,148,168,-1,148,219,168,-1,220,66,221,-1,220,67,66,-1,159,222,158,-1,222,223,158,-1,156,224,225,-1,156,157,224,-1,226,68,222,-1,226,66,68,-1,161,227,162,-1,228,229,230,-1,231,178,177,-1,178,232,233,-1,178,231,232,-1,146,234,235,-1,236,43,30,-1,38,237,42,-1,44,43,236,-1,189,43,238,-1,239,43,240,-1,33,43,241,-1,236,30,32,-1,32,242,236,-1,243,244,93,-1,243,189,188,-1,243,240,189,-1,28,245,246,-1,28,145,245,-1,22,247,14,-1,247,248,14,-1,249,250,251,-1,249,252,250,-1,253,254,149,-1,254,255,149,-1,20,256,257,-1,150,219,148,-1,214,19,21,-1,258,259,260,-1,260,261,258,-1,260,262,261,-1,136,130,263,-1,264,265,91,-1,264,266,265,-1,115,114,267,-1,1,0,268,-1,268,269,270,-1,72,83,73,-1,72,0,83,-1,271,272,273,-1,274,275,276,-1,274,277,275,-1,170,169,278,-1,278,279,170,-1,280,281,282,-1,132,9,283,-1,284,285,121,-1,286,121,287,-1,119,121,288,-1,289,121,290,-1,291,289,292,-1,289,293,292,-1,122,124,142,-1,294,124,87,-1,58,138,56,-1,295,292,134,-1,134,263,295,-1,130,295,263,-1,130,296,295,-1,264,297,97,-1,297,298,97,-1,299,300,301,-1,301,302,299,-1,303,304,305,-1,304,306,305,-1,307,308,309,-1,308,310,309,-1,311,69,56,-1,296,130,129,-1,292,312,134,-1,313,314,141,-1,313,126,314,-1,291,121,289,-1,290,121,120,-1,286,288,121,-1,287,121,285,-1,284,121,291,-1,315,280,282,-1,282,316,315,-1,125,281,128,-1,79,82,317,-1,318,319,317,-1,268,0,269,-1,320,321,322,-1,323,324,325,-1,326,327,328,-1,136,263,134,-1,261,329,330,-1,261,262,329,-1,331,332,60,-1,333,334,335,-1,335,336,333,-1,337,214,211,-1,337,19,214,-1,151,338,149,-1,339,31,33,-1,30,43,33,-1,241,43,239,-1,240,43,189,-1,238,43,42,-1,189,238,340,-1,340,190,189,-1,233,341,342,-1,233,232,341,-1,231,184,187,-1,231,343,184,-1,344,222,159,-1,344,226,222,-1,156,184,155,-1,156,225,184,-1,338,67,220,-1,338,151,67,-1,213,345,168,-1,345,167,168,-1,165,217,346,-1,165,183,217,-1,11,213,212,-1,11,345,213,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc3_Geo_5_38_coordIndex_2()
		{
			int[] value = {41,347,40,-1,210,348,190,-1,349,350,351,-1,351,34,349,-1,352,353,160,-1,160,354,352,-1,225,46,185,-1,185,184,225,-1,355,27,29,-1,203,200,175,-1,201,198,175,-1,199,196,175,-1,197,173,175,-1,174,192,175,-1,195,193,175,-1,194,202,175,-1,356,226,343,-1,188,348,357,-1,188,190,348,-1,357,15,358,-1,357,348,15,-1,164,215,165,-1,359,360,321,-1,321,327,359,-1,282,281,125,-1,361,68,167,-1,13,183,11,-1,159,154,344,-1,362,154,158,-1,155,154,156,-1,344,154,153,-1,186,230,235,-1,235,363,186,-1,364,234,146,-1,129,108,137,-1,129,110,108,-1,136,135,365,-1,128,314,126,-1,128,366,314,-1,367,368,123,-1,368,88,123,-1,114,113,369,-1,369,322,114,-1,72,269,0,-1,170,279,370,-1,279,371,370,-1,372,325,109,-1,109,107,372,-1,325,372,297,-1,297,323,325,-1,100,105,103,-1,100,104,102,-1,100,98,99,-1,96,98,102,-1,102,373,96,-1,298,101,99,-1,99,97,298,-1,298,105,101,-1,298,374,105,-1,375,376,377,-1,377,253,375,-1,256,20,378,-1,20,19,378,-1,255,309,379,-1,309,380,379,-1,90,381,323,-1,264,91,90,-1,86,55,85,-1,382,277,274,-1,382,383,277,-1,81,383,382,-1,81,384,383,-1,384,385,386,-1,386,76,78,-1,271,273,387,-1,170,370,388,-1,290,120,127,-1,83,80,73,-1,83,385,80,-1,78,383,386,-1,383,384,386,-1,77,389,78,-1,311,138,331,-1,311,56,138,-1,69,311,62,-1,71,135,70,-1,331,60,311,-1,60,62,311,-1,65,167,68,-1,69,62,61,-1,390,140,86,-1,139,53,55,-1,362,157,154,-1,391,246,41,-1,36,37,203,-1,392,393,394,-1,393,395,394,-1,396,232,397,-1,396,341,232,-1,393,398,395,-1,217,183,163,-1,24,23,163,-1,23,216,163,-1,399,256,400,-1,399,257,256,-1,401,7,6,-1,402,248,247,-1,403,244,243,-1,401,6,12,-1,6,5,12,-1,89,404,328,-1,8,10,272,-1,317,319,74,-1,74,79,317,-1,319,75,74,-1,405,406,407,-1,407,319,318,-1,407,406,319,-1,268,408,333,-1,268,270,408,-1,75,406,409,-1,75,319,406,-1,324,381,369,-1,324,323,381,-1,112,410,113,-1,411,410,112,-1,412,413,405,-1,412,414,413,-1,405,409,406,-1,409,405,413,-1,92,328,327,-1,89,328,92,-1,404,91,415,-1,404,89,91,-1,326,404,416,-1,326,328,404,-1,244,417,418,-1,417,244,403,-1,7,402,3,-1,250,402,7,-1,13,5,163,-1,12,5,13,-1,419,117,420,-1,117,419,421,-1,417,249,418,-1,417,252,249,-1,247,3,402,-1,247,4,3,-1,252,358,248,-1,252,417,358,-1,186,397,187,-1,363,397,186,-1,341,398,393,-1,341,396,398,-1,393,342,341,-1,342,393,392,-1,204,347,205,-1,204,40,347,-1,48,351,422,-1,48,423,351,-1,224,362,424,-1,224,157,362,-1,45,425,227,-1,45,47,425,-1,164,361,167,-1,164,166,361,-1,426,427,428,-1,426,429,427,-1,185,230,186,-1,228,230,185,-1,382,301,430,-1,301,382,274,-1,55,140,139,-1,55,86,140,-1,57,54,53,-1,57,64,54,-1,277,78,389,-1,383,78,277,-1,386,83,76,-1,386,385,83,-1,281,370,371,-1,280,370,281,-1,280,388,370,-1,388,280,275,-1,431,276,315,-1,431,302,276,-1,300,271,387,-1,271,300,299,-1,275,389,388,-1,277,389,275,-1,317,430,318,-1,430,317,82,-1,367,122,432,-1,122,367,123,-1,294,49,143,-1,49,294,84,-1,323,264,90,-1,323,297,264,-1,415,265,433,-1,91,265,415,-1,377,434,435,-1,377,436,434,-1,309,254,307,-1,254,309,255,-1,437,379,380,-1,379,437,438,-1,303,378,439,-1,378,303,256,-1,440,305,441,-1,400,305,440,-1,442,436,181,-1,434,436,442,-1,443,444,445,-1,446,444,443,-1,304,439,335,-1,304,303,439,-1,253,435,254,-1,377,435,253,-1,447,326,330,-1,448,326,447,-1,449,445,444,-1,450,445,449,-1,116,451,452,-1,116,118,451,-1,453,308,454,-1,455,308,453,-1,456,105,374,-1,456,103,105,-1,102,457,373,-1,457,102,104,-1,458,115,267,-1,115,458,459,-1,122,141,314,-1,122,142,141,-1,366,279,432,-1,279,366,371,-1,411,460,410,-1,460,411,461,-1,75,269,72,-1,270,269,75,-1,2,76,0,-1,171,76,2,-1,324,460,325,-1,410,460,324,-1,331,259,332,-1,260,259,331,-1,368,86,88,-1,368,390,86,-1,132,316,462,-1,316,132,283,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc3_Geo_5_38_coordIndex_3()
		{
			int[] value = {365,463,464,-1,135,463,365,-1,465,466,10,-1,466,465,420,-1,130,365,131,-1,130,136,365,-1,293,52,292,-1,52,293,144,-1,347,467,468,-1,347,245,467,-1,450,469,94,-1,449,469,450,-1,363,234,470,-1,234,363,235,-1,355,364,27,-1,355,471,364,-1,472,180,182,-1,472,473,180,-1,474,475,376,-1,474,476,475,-1,342,477,233,-1,477,342,478,-1,479,376,375,-1,479,474,376,-1,348,16,15,-1,348,210,16,-1,480,481,482,-1,481,480,483,-1,484,485,162,-1,218,485,484,-1,217,484,346,-1,217,218,484,-1,337,219,150,-1,337,211,219,-1,282,462,316,-1,125,462,282,-1,405,486,412,-1,486,405,273,-1,487,197,488,-1,487,173,197,-1,200,37,352,-1,37,200,203,-1,198,354,489,-1,354,198,201,-1,490,199,491,-1,490,196,199,-1,492,195,191,-1,492,207,195,-1,493,193,206,-1,493,194,193,-1,36,202,494,-1,36,203,202,-1,226,221,66,-1,221,226,356,-1,495,360,359,-1,495,441,360,-1,479,221,179,-1,220,221,479,-1,345,164,167,-1,345,215,164,-1,165,428,166,-1,165,346,428,-1,243,357,403,-1,243,188,357,-1,344,343,226,-1,153,343,344,-1,496,497,498,-1,496,499,497,-1,340,42,237,-1,340,238,42,-1,174,487,500,-1,174,173,487,-1,355,501,395,-1,355,31,501,-1,355,29,31,-1,422,228,48,-1,422,229,228,-1,502,209,498,-1,500,209,502,-1,349,493,503,-1,493,349,494,-1,352,35,353,-1,35,352,37,-1,160,489,354,-1,160,504,489,-1,505,490,483,-1,490,505,488,-1,506,488,505,-1,488,506,487,-1,350,503,468,-1,350,349,503,-1,353,423,507,-1,423,353,35,-1,204,499,40,-1,497,499,204,-1,468,205,347,-1,205,468,503,-1,343,155,184,-1,155,343,153,-1,424,429,425,-1,429,424,223,-1,346,426,428,-1,426,346,484,-1,176,476,474,-1,176,477,476,-1,508,469,473,-1,508,509,469,-1,470,397,363,-1,470,396,397,-1,396,471,398,-1,396,470,471,-1,244,510,93,-1,244,511,510,-1,339,241,95,-1,339,33,241,-1,237,40,499,-1,237,38,40,-1,391,28,246,-1,391,26,28,-1,422,350,512,-1,422,351,350,-1,41,245,347,-1,41,246,245,-1,244,513,511,-1,244,418,513,-1,480,25,208,-1,480,23,25,-1,514,250,7,-1,514,251,250,-1,434,515,516,-1,442,515,434,-1,438,150,379,-1,150,438,337,-1,517,400,440,-1,399,400,517,-1,181,475,182,-1,181,436,475,-1,375,149,338,-1,375,253,149,-1,399,511,513,-1,399,517,511,-1,511,518,510,-1,517,518,511,-1,519,390,368,-1,520,390,519,-1,519,169,521,-1,519,278,169,-1,268,310,1,-1,268,522,310,-1,523,524,525,-1,523,172,524,-1,1,308,455,-1,1,310,308,-1,453,526,525,-1,453,527,526,-1,520,140,390,-1,138,140,520,-1,138,528,331,-1,138,520,528,-1,527,262,526,-1,262,527,329,-1,330,529,447,-1,529,330,329,-1,135,332,463,-1,71,332,135,-1,433,110,131,-1,110,433,265,-1,416,415,530,-1,416,404,415,-1,448,327,326,-1,448,359,327,-1,267,304,458,-1,304,267,306,-1,320,369,381,-1,320,322,369,-1,107,374,372,-1,374,107,456,-1,373,106,111,-1,373,457,106,-1,296,137,531,-1,296,129,137,-1,109,118,108,-1,118,109,451,-1,267,322,321,-1,114,322,267,-1,486,452,461,-1,452,486,532,-1,459,334,533,-1,458,334,459,-1,407,273,405,-1,407,387,273,-1,385,81,80,-1,384,81,385,-1,420,133,419,-1,420,465,133,-1,288,421,419,-1,288,286,421,-1,531,285,296,-1,287,285,531,-1,296,284,295,-1,296,285,284,-1,126,290,127,-1,290,126,313,-1,128,371,366,-1,128,281,371,-1,515,447,529,-1,515,534,447,-1,535,536,516,-1,536,535,454,-1,309,522,380,-1,309,310,522,-1,335,437,336,-1,439,437,335,-1,441,306,360,-1,305,306,441,-1,380,336,437,-1,380,522,336,-1,516,529,535,-1,516,515,529,-1,537,359,448,-1,495,359,537,-1,131,464,433,-1,464,131,365,-1,84,87,85,-1,294,87,84,-1,432,278,367,-1,432,279,278,-1,289,313,293,-1,313,289,290,-1,144,49,52,-1,49,144,143,-1,284,292,295,-1,291,292,284,-1,286,531,421,-1,286,287,531,-1,119,419,133,-1,119,288,419,-1,388,77,170,-1,388,389,77,-1,9,431,283,-1,431,9,8,-1,431,272,271,-1,272,431,8,-1,77,171,170,-1,77,76,171,-1,533,333,408,-1,334,333,533,-1,272,466,532,-1,272,10,466,-1,452,466,116,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmc3_Geo_5_38_coordIndex_4()
		{
			int[] value = {452,532,466,-1,461,412,486,-1,411,412,461,-1,451,325,460,-1,451,109,325,-1,421,137,117,-1,421,531,137,-1,457,107,106,-1,456,107,457,-1,266,373,111,-1,96,373,266,-1,372,298,297,-1,374,298,372,-1,360,267,321,-1,360,306,267,-1,320,327,321,-1,320,92,327,-1,530,433,464,-1,433,530,415,-1,97,266,264,-1,97,96,266,-1,463,259,538,-1,259,463,332,-1,329,535,529,-1,527,535,329,-1,526,260,539,-1,260,526,262,-1,528,523,539,-1,523,528,521,-1,454,527,453,-1,454,535,527,-1,455,2,1,-1,455,524,2,-1,524,171,2,-1,524,172,171,-1,519,367,278,-1,368,367,519,-1,528,519,521,-1,519,528,520,-1,510,445,450,-1,445,510,518,-1,20,540,18,-1,540,20,257,-1,436,376,475,-1,436,377,376,-1,180,444,181,-1,449,444,180,-1,443,495,537,-1,443,541,495,-1,337,378,19,-1,337,438,378,-1,379,149,255,-1,149,379,150,-1,435,516,536,-1,434,516,435,-1,442,534,515,-1,446,534,442,-1,18,514,21,-1,18,251,514,-1,15,248,358,-1,15,14,248,-1,23,482,216,-1,482,23,480,-1,18,249,251,-1,540,249,18,-1,403,358,417,-1,403,357,358,-1,512,468,467,-1,512,350,468,-1,230,542,235,-1,230,229,542,-1,542,467,147,-1,542,512,467,-1,39,391,41,-1,39,242,391,-1,210,340,496,-1,210,190,340,-1,239,243,93,-1,239,240,243,-1,241,93,95,-1,241,239,93,-1,44,242,39,-1,236,242,44,-1,94,509,95,-1,509,94,469,-1,95,394,339,-1,95,509,394,-1,146,27,364,-1,146,145,27,-1,231,397,232,-1,231,187,397,-1,392,509,508,-1,394,509,392,-1,476,478,472,-1,476,477,478,-1,179,474,479,-1,176,474,179,-1,48,507,423,-1,507,48,45,-1,218,482,485,-1,482,218,216,-1,68,427,222,-1,361,427,68,-1,223,427,429,-1,223,222,427,-1,46,224,47,-1,225,224,46,-1,362,223,424,-1,158,223,362,-1,212,21,514,-1,21,212,214,-1,496,209,210,-1,209,496,498,-1,160,507,161,-1,353,507,160,-1,500,506,209,-1,506,500,487,-1,483,491,481,-1,483,490,491,-1,491,504,481,-1,489,504,491,-1,34,494,349,-1,494,34,36,-1,503,206,205,-1,206,503,493,-1,207,497,204,-1,492,497,207,-1,229,512,542,-1,422,512,229,-1,237,496,340,-1,496,237,499,-1,492,498,497,-1,502,498,492,-1,242,26,391,-1,26,242,32,-1,177,343,231,-1,343,177,356,-1,17,22,14,-1,22,17,25,-1,215,11,183,-1,215,345,11,-1,508,472,478,-1,472,508,473,-1,518,440,541,-1,518,517,440,-1,356,179,221,-1,179,356,177,-1,176,233,477,-1,176,178,233,-1,494,194,493,-1,494,202,194,-1,193,207,206,-1,207,193,195,-1,191,502,492,-1,502,191,192,-1,488,196,490,-1,488,197,196,-1,199,489,491,-1,489,199,198,-1,201,352,354,-1,352,201,200,-1,192,500,502,-1,500,192,174,-1,455,525,524,-1,453,525,455,-1,521,172,523,-1,521,169,172,-1,273,532,486,-1,532,273,272,-1,211,168,219,-1,211,213,168,-1,4,22,24,-1,4,247,22,-1,162,504,160,-1,162,485,504,-1,162,426,484,-1,162,227,426,-1,481,485,482,-1,504,485,481,-1,208,483,480,-1,483,208,505,-1,151,152,67,-1,152,151,148,-1,338,479,375,-1,220,479,338,-1,395,471,355,-1,471,395,398,-1,392,478,342,-1,478,392,508,-1,476,182,475,-1,476,472,182,-1,470,364,471,-1,470,234,364,-1,449,473,469,-1,180,473,449,-1,510,94,93,-1,450,94,510,-1,147,245,145,-1,467,245,147,-1,147,235,542,-1,147,146,235,-1,141,293,313,-1,141,144,293,-1,134,64,70,-1,312,64,134,-1,51,292,52,-1,51,312,292,-1,9,465,10,-1,465,9,133,-1,543,530,538,-1,543,416,530,-1,116,420,117,-1,420,116,466,-1,125,120,462,-1,125,127,120,-1,538,464,463,-1,538,530,464,-1,315,283,431,-1,315,316,283,-1,119,462,120,-1,462,119,132,-1,539,331,528,-1,331,539,260,-1,539,525,526,-1,539,523,525,-1,451,461,452,-1,451,460,461,-1,414,533,413,-1,459,533,414,-1,413,408,409,-1,533,408,413,-1,314,432,122,-1,432,314,366,-1,112,459,414,-1,112,115,459,-1,266,110,265,-1,111,110,266,-1,104,456,457,-1,456,104,103,-1,307,454,308,-1,307,536,454,-1,446,537,534,-1,443,537,446,-1,448,534,537,-1,448,447,534,-1,330,416,543,-1,330,326,416,-1,335,458,304,-1,334,458,335,-1,181,446,442,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlmc3_Geo_5_38_coordIndex_5()
		{
			int[] value = {181,444,446,-1,541,441,495,-1,440,441,541,-1,256,305,400,-1,256,303,305,-1,439,438,437,-1,438,439,378,-1,536,254,435,-1,536,307,254,-1,541,445,518,-1,443,445,541,-1,92,381,90,-1,92,320,381,-1,143,124,294,-1,142,124,143,-1,87,123,88,-1,87,124,123,-1,51,55,54,-1,50,55,51,-1,299,431,271,-1,431,299,302,-1,315,275,280,-1,275,315,276,-1,300,430,301,-1,300,318,430,-1,59,70,64,-1,61,70,59,-1,71,60,332,-1,71,63,60,-1,53,58,57,-1,58,53,139,-1,51,64,312,-1,54,64,51,-1,81,430,82,-1,430,81,382,-1,274,302,301,-1,302,274,276,-1,228,46,48,-1,228,185,46,-1,425,426,227,-1,426,425,429,-1,361,428,427,-1,166,428,361,-1,45,161,507,-1,161,45,227,-1,47,424,425,-1,47,224,424,-1,423,34,351,-1,423,35,34,-1,42,39,38,-1,42,44,39,-1,339,501,31,-1,395,339,394,-1,395,501,339,-1,29,32,31,-1,32,29,26,-1,540,418,249,-1,418,540,513,-1,506,208,17,-1,505,208,506,-1,506,16,209,-1,17,16,506,-1,401,514,7,-1,514,401,212,-1,250,248,402,-1,250,252,248,-1,543,261,330,-1,258,261,543,-1,401,11,212,-1,401,12,11,-1,257,513,540,-1,257,399,513,-1,538,258,543,-1,258,538,259,-1,411,414,412,-1,411,112,414,-1,369,410,324,-1,410,369,113,-1,387,318,300,-1,318,387,407,-1,270,409,408,-1,270,75,409,-1,333,522,268,-1,336,522,333,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmc4_Geo_5_43_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,4,7,-1,8,4,9,-1,10,4,11,-1,12,4,13,-1,14,15,16,-1,17,15,18,-1,19,15,20,-1,21,15,22,-1,23,15,24,-1,25,26,27,-1,26,28,27,-1,29,30,31,-1,29,32,30,-1,33,34,35,-1,36,37,38,-1,30,39,40,-1,41,42,32,-1,32,43,41,-1,42,39,32,-1,44,45,46,-1,47,48,49,-1,18,50,17,-1,18,51,50,-1,52,53,54,-1,54,55,56,-1,57,58,45,-1,57,59,58,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,66,69,67,-1,69,70,67,-1,71,72,73,-1,74,75,76,-1,74,77,75,-1,78,79,80,-1,78,81,79,-1,82,83,84,-1,85,86,87,-1,88,89,90,-1,88,91,89,-1,92,91,88,-1,93,94,95,-1,94,86,95,-1,96,92,97,-1,96,91,92,-1,98,99,100,-1,101,102,103,-1,104,105,89,-1,89,106,104,-1,107,108,109,-1,107,110,108,-1,111,112,113,-1,111,114,112,-1,115,116,117,-1,117,118,115,-1,119,120,121,-1,121,122,119,-1,123,124,125,-1,124,126,125,-1,127,128,129,-1,129,130,127,-1,131,109,121,-1,121,120,131,-1,131,107,109,-1,132,26,133,-1,26,134,133,-1,2,135,136,-1,136,137,2,-1,138,139,140,-1,140,141,138,-1,45,44,142,-1,142,57,45,-1,143,144,145,-1,145,146,143,-1,147,148,149,-1,149,150,147,-1,33,151,50,-1,151,152,50,-1,153,154,155,-1,153,156,154,-1,157,158,159,-1,157,160,158,-1,161,162,163,-1,163,164,161,-1,165,166,167,-1,166,101,167,-1,168,169,170,-1,171,172,173,-1,171,174,172,-1,175,176,177,-1,178,179,180,-1,178,181,179,-1,182,175,124,-1,182,183,175,-1,184,185,186,-1,185,171,186,-1,187,185,188,-1,187,174,185,-1,189,190,191,-1,189,192,190,-1,193,194,195,-1,196,197,198,-1,199,200,201,-1,202,203,153,-1,203,204,153,-1,84,205,82,-1,206,207,94,-1,208,148,205,-1,205,102,208,-1,209,210,211,-1,209,212,210,-1,167,169,165,-1,164,169,167,-1,163,169,164,-1,213,47,214,-1,48,47,215,-1,216,47,217,-1,47,218,214,-1,107,219,110,-1,107,187,219,-1,220,221,222,-1,220,223,224,-1,220,225,226,-1,220,227,228,-1,119,172,120,-1,119,229,172,-1,175,183,176,-1,28,230,27,-1,231,232,233,-1,234,235,236,-1,237,235,234,-1,238,239,240,-1,2,137,0,-1,241,239,242,-1,242,243,241,-1,0,244,1,-1,129,0,242,-1,139,142,245,-1,246,247,145,-1,247,141,145,-1,248,249,246,-1,250,251,85,-1,147,252,82,-1,209,54,53,-1,248,253,254,-1,253,255,254,-1,256,235,257,-1,258,259,260,-1,259,261,260,-1,158,154,262,-1,158,263,154,-1,262,159,158,-1,264,265,257,-1,265,266,257,-1,78,80,56,-1,261,202,153,-1,261,259,202,-1,267,268,191,-1,267,269,268,-1,51,70,270,-1,51,271,50,-1,51,270,271,-1,272,273,274,-1,272,275,273,-1,276,277,278,-1,278,67,276,-1,279,68,280,-1,279,66,68,-1,195,281,282,-1,195,194,281,-1,283,284,285,-1,286,287,288,-1,35,151,33,-1,289,33,290,-1,289,34,33,-1,291,292,293,-1,292,294,293,-1,29,295,293,-1,293,296,29,-1,297,298,295,-1,297,299,298,-1,287,286,300,-1,40,301,30,-1,302,42,41,-1,303,302,304,-1,305,306,307,-1,308,309,306,-1,310,311,312,-1,311,313,312,-1,314,315,302,-1,302,303,314,-1,12,315,314,-1,12,13,315,-1,5,4,316,-1,311,308,313,-1,308,305,313,-1,306,305,308,-1,309,317,306,-1,302,318,304,-1,302,319,318,-1,39,30,32,-1,30,320,31,-1,30,301,320,-1,292,321,294,-1,322,34,289,-1,322,323,34,-1,323,35,34,-1,323,288,35,-1,324,35,288,-1,275,325,326,-1,277,274,273,-1,273,278,277,-1,327,328,329,-1,327,283,328,-1,328,281,330,-1,328,282,281,-1,202,285,203,-1,202,195,285,-1,33,50,271,-1,331,332,333,-1,331,334,332,-1,333,335,336,-1,333,332,335,-1,69,270,70,-1,16,15,23,-1,325,337,326,-1,190,338,339,-1,339,340,190,-1,195,259,193,-1,79,81,341,-1,191,341,342,-1,191,268,341,-1,56,52,54,-1,266,265,338,-1,343,344,345,-1,345,159,343,-1,159,345,157,-1,258,346,53,-1,53,52,258,-1,347,346,258,-1,258,260,347,-1,348,254,255,-1,348,263,254,-1,219,349,350,-1,253,150,255,-1,212,53,346,-1,212,209,53,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc4_Geo_5_43_coordIndex_2()
		{
			int[] value = {250,85,87,-1,253,248,144,-1,144,248,246,-1,246,145,144,-1,136,135,247,-1,247,351,136,-1,178,352,146,-1,138,141,1,-1,0,129,128,-1,136,353,137,-1,354,355,233,-1,355,356,233,-1,231,173,357,-1,357,358,231,-1,359,172,229,-1,172,174,187,-1,360,361,362,-1,227,220,226,-1,225,220,224,-1,223,220,222,-1,221,220,228,-1,226,225,363,-1,363,364,226,-1,110,60,62,-1,110,219,60,-1,107,131,187,-1,47,365,218,-1,47,49,217,-1,47,213,215,-1,170,169,163,-1,103,104,106,-1,212,208,210,-1,212,148,208,-1,212,149,148,-1,195,202,259,-1,38,325,36,-1,195,282,285,-1,191,190,340,-1,340,267,191,-1,266,366,257,-1,186,171,367,-1,171,173,367,-1,368,369,130,-1,175,177,370,-1,370,371,175,-1,218,115,372,-1,132,126,371,-1,146,181,178,-1,146,140,181,-1,26,132,371,-1,371,28,26,-1,177,373,358,-1,177,176,373,-1,369,127,130,-1,235,264,257,-1,185,174,171,-1,169,168,165,-1,167,101,164,-1,101,161,164,-1,261,153,155,-1,374,338,375,-1,374,339,338,-1,146,145,141,-1,141,140,146,-1,253,143,251,-1,253,144,143,-1,57,139,138,-1,57,142,139,-1,250,253,251,-1,250,252,253,-1,94,83,86,-1,376,377,378,-1,376,179,377,-1,129,238,130,-1,379,119,122,-1,111,380,114,-1,238,182,368,-1,368,130,238,-1,381,379,122,-1,381,382,379,-1,383,384,117,-1,117,116,383,-1,385,62,61,-1,47,216,365,-1,241,234,386,-1,91,96,162,-1,166,210,208,-1,161,91,162,-1,161,89,91,-1,101,106,161,-1,101,103,106,-1,97,92,364,-1,361,360,61,-1,61,60,361,-1,65,64,387,-1,64,388,387,-1,190,192,366,-1,97,385,389,-1,270,390,271,-1,89,161,106,-1,138,59,57,-1,184,257,366,-1,236,235,256,-1,256,391,236,-1,355,392,356,-1,355,112,392,-1,393,45,58,-1,393,46,45,-1,201,394,199,-1,201,310,394,-1,395,396,318,-1,395,397,396,-1,285,284,398,-1,316,399,5,-1,316,400,399,-1,42,302,315,-1,401,39,42,-1,42,315,401,-1,402,324,403,-1,403,404,402,-1,405,406,300,-1,301,407,320,-1,296,32,29,-1,285,328,283,-1,285,282,328,-1,24,15,21,-1,22,15,19,-1,20,15,17,-1,18,15,14,-1,316,4,12,-1,13,4,10,-1,11,4,8,-1,9,4,6,-1,7,4,3,-1,342,189,191,-1,219,188,349,-1,219,187,188,-1,2,1,135,-1,342,188,189,-1,349,188,342,-1,287,408,288,-1,287,409,408,-1,407,405,320,-1,407,406,405,-1,410,37,404,-1,37,410,38,-1,410,403,411,-1,404,403,410,-1,63,337,412,-1,337,63,326,-1,10,413,401,-1,413,10,11,-1,13,401,315,-1,401,13,10,-1,414,9,415,-1,9,414,8,-1,395,284,397,-1,398,284,395,-1,397,283,327,-1,284,283,397,-1,308,303,309,-1,308,416,303,-1,196,394,417,-1,199,394,196,-1,418,419,420,-1,418,197,419,-1,297,320,405,-1,31,320,297,-1,317,303,304,-1,303,317,309,-1,201,311,310,-1,201,421,311,-1,422,112,355,-1,422,113,112,-1,391,392,236,-1,356,392,391,-1,256,184,186,-1,256,257,184,-1,274,24,272,-1,24,274,23,-1,14,277,276,-1,16,277,14,-1,423,20,152,-1,20,423,19,-1,36,22,37,-1,22,36,21,-1,271,290,33,-1,271,390,290,-1,385,360,389,-1,385,61,360,-1,184,192,185,-1,366,192,184,-1,317,424,306,-1,317,396,424,-1,72,336,425,-1,336,72,333,-1,60,426,361,-1,60,427,426,-1,428,90,429,-1,428,430,90,-1,100,431,98,-1,100,211,431,-1,166,102,101,-1,166,208,102,-1,104,207,105,-1,104,84,207,-1,392,234,236,-1,386,234,392,-1,365,383,116,-1,365,216,383,-1,385,432,62,-1,432,385,363,-1,111,433,380,-1,434,433,111,-1,435,372,436,-1,435,437,372,-1,384,438,354,-1,438,384,383,-1,382,364,92,-1,364,382,381,-1,123,182,124,-1,123,368,182,-1,439,393,58,-1,393,439,440,-1,367,356,391,-1,233,356,367,-1,376,180,179,-1,376,441,180,-1,95,442,93,-1,95,443,442,-1,82,86,83,-1,82,87,86,-1,252,87,82,-1,252,250,87,-1,444,290,445,-1,290,444,289,-1,446,374,447,-1,446,339,374,-1,448,449,450,-1,447,449,448,-1,451,338,265,-1,375,338,451,-1,264,237,452,-1,264,235,237,-1,249,247,246,-1,247,249,351,-1,168,98,431,-1,170,98,168,-1,241,114,380,-1,386,114,241,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc4_Geo_5_43_coordIndex_3()
		{
			int[] value = {432,223,108,-1,432,224,223,-1,222,121,109,-1,222,221,121,-1,358,232,231,-1,358,373,232,-1,230,371,370,-1,28,371,230,-1,453,454,455,-1,453,369,454,-1,456,457,458,-1,456,459,457,-1,460,429,206,-1,460,428,429,-1,376,456,441,-1,376,455,456,-1,126,175,371,-1,126,124,175,-1,229,230,359,-1,229,27,230,-1,176,117,373,-1,176,118,117,-1,369,123,454,-1,368,123,369,-1,240,433,435,-1,239,433,240,-1,190,266,338,-1,190,366,266,-1,156,204,461,-1,156,153,204,-1,412,462,463,-1,412,411,462,-1,464,465,466,-1,465,464,467,-1,275,36,325,-1,36,275,272,-1,64,468,469,-1,63,468,64,-1,470,471,388,-1,470,472,471,-1,473,280,68,-1,473,471,280,-1,193,258,52,-1,193,259,258,-1,127,453,440,-1,127,369,453,-1,441,458,442,-1,458,441,456,-1,134,474,430,-1,134,475,474,-1,459,133,457,-1,125,133,459,-1,215,434,111,-1,215,213,434,-1,438,49,422,-1,217,49,438,-1,218,116,115,-1,116,218,365,-1,221,122,121,-1,221,228,122,-1,363,224,432,-1,363,225,224,-1,381,226,364,-1,381,227,226,-1,100,360,362,-1,100,389,360,-1,389,100,99,-1,92,474,382,-1,474,92,88,-1,232,354,233,-1,384,354,232,-1,183,118,176,-1,183,436,118,-1,386,112,114,-1,392,112,386,-1,0,439,244,-1,0,128,439,-1,244,138,1,-1,244,59,138,-1,377,181,245,-1,377,179,181,-1,140,245,181,-1,140,139,245,-1,143,352,476,-1,143,146,352,-1,251,476,85,-1,143,476,251,-1,252,150,253,-1,150,252,147,-1,149,346,347,-1,149,212,346,-1,136,344,353,-1,136,345,344,-1,219,427,60,-1,219,350,427,-1,263,160,254,-1,263,158,160,-1,260,255,347,-1,260,348,255,-1,159,477,343,-1,159,262,477,-1,343,375,451,-1,343,477,375,-1,426,56,55,-1,78,56,426,-1,341,349,342,-1,341,350,349,-1,478,52,56,-1,478,193,52,-1,268,79,341,-1,77,79,268,-1,154,479,262,-1,154,156,479,-1,374,477,480,-1,375,477,374,-1,404,423,402,-1,37,423,404,-1,69,335,270,-1,335,69,336,-1,425,73,72,-1,73,425,481,-1,269,331,75,-1,331,269,334,-1,482,332,334,-1,332,482,483,-1,484,270,335,-1,390,270,484,-1,445,390,484,-1,445,290,390,-1,485,483,482,-1,485,486,483,-1,487,71,488,-1,487,76,71,-1,481,489,73,-1,481,490,489,-1,281,489,330,-1,281,488,489,-1,491,328,330,-1,491,329,328,-1,492,285,398,-1,203,285,492,-1,319,395,318,-1,319,493,395,-1,329,494,495,-1,491,494,329,-1,490,279,496,-1,279,490,481,-1,497,471,472,-1,497,280,471,-1,494,497,498,-1,494,496,497,-1,499,470,500,-1,499,472,470,-1,470,501,500,-1,470,469,501,-1,469,502,501,-1,469,468,502,-1,63,463,468,-1,463,63,412,-1,408,324,288,-1,408,403,324,-1,503,445,486,-1,444,445,503,-1,288,504,286,-1,288,323,504,-1,322,505,506,-1,505,322,507,-1,446,486,485,-1,503,486,446,-1,506,299,504,-1,298,299,506,-1,505,292,291,-1,292,505,450,-1,479,449,480,-1,321,449,479,-1,156,321,479,-1,461,321,156,-1,492,508,509,-1,492,493,508,-1,461,294,321,-1,510,294,461,-1,508,32,296,-1,32,508,43,-1,511,501,502,-1,511,312,501,-1,312,500,501,-1,313,500,312,-1,498,495,494,-1,307,495,498,-1,499,313,305,-1,313,499,500,-1,300,420,512,-1,420,300,406,-1,200,196,198,-1,200,199,196,-1,301,418,407,-1,301,513,418,-1,319,41,43,-1,41,319,302,-1,198,514,200,-1,514,198,515,-1,414,513,301,-1,414,415,513,-1,421,400,416,-1,399,400,421,-1,516,421,201,-1,516,399,421,-1,415,6,515,-1,9,6,415,-1,3,399,516,-1,5,399,3,-1,400,12,314,-1,316,12,400,-1,413,8,414,-1,11,8,413,-1,515,7,514,-1,6,7,515,-1,7,516,514,-1,7,3,516,-1,416,314,303,-1,400,314,416,-1,413,301,40,-1,413,414,301,-1,513,515,198,-1,415,515,513,-1,417,511,467,-1,417,394,511,-1,418,198,197,-1,513,198,418,-1,420,464,512,-1,419,464,420,-1,299,405,300,-1,405,299,297,-1,305,498,499,-1,305,307,498,-1,307,424,495,-1,307,306,424,-1,502,467,511,-1,467,502,465,-1,466,512,464,-1,466,409,512,-1,504,300,286,-1,504,299,300,-1,31,295,29,-1,31,297,295,-1,296,509,508,-1,296,510,509,-1,509,203,492,-1,204,203,509,-1,43,493,319,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmc4_Geo_5_43_coordIndex_4()
		{
			int[] value = {493,43,508,-1,294,296,293,-1,294,510,296,-1,291,295,298,-1,295,291,293,-1,321,450,449,-1,321,292,450,-1,506,291,298,-1,291,506,505,-1,447,480,449,-1,447,374,480,-1,450,507,448,-1,450,505,507,-1,506,323,322,-1,506,504,323,-1,485,339,446,-1,485,340,339,-1,462,409,466,-1,462,408,409,-1,411,408,462,-1,408,411,403,-1,468,465,502,-1,465,468,463,-1,273,65,387,-1,275,65,273,-1,499,497,472,-1,499,498,497,-1,280,496,279,-1,496,280,497,-1,496,491,490,-1,496,494,491,-1,327,495,424,-1,495,327,329,-1,398,493,492,-1,395,493,398,-1,490,330,489,-1,491,330,490,-1,194,488,281,-1,194,487,488,-1,488,73,489,-1,73,488,71,-1,482,340,485,-1,340,482,267,-1,486,484,483,-1,486,445,484,-1,483,335,332,-1,335,483,484,-1,267,334,269,-1,334,267,482,-1,66,481,425,-1,66,279,481,-1,402,152,151,-1,402,423,152,-1,51,67,70,-1,276,67,51,-1,269,77,268,-1,77,269,75,-1,480,262,479,-1,477,262,480,-1,261,348,260,-1,155,348,261,-1,80,478,56,-1,80,74,478,-1,350,81,427,-1,341,81,350,-1,344,451,452,-1,451,344,343,-1,254,249,248,-1,254,160,249,-1,353,452,237,-1,353,344,452,-1,351,345,136,-1,351,157,345,-1,361,55,362,-1,361,426,55,-1,82,148,147,-1,82,205,148,-1,476,443,95,-1,476,352,443,-1,245,44,377,-1,142,44,245,-1,352,180,443,-1,180,352,178,-1,58,244,439,-1,244,58,59,-1,239,129,242,-1,238,129,239,-1,243,0,137,-1,243,242,0,-1,137,237,243,-1,137,353,237,-1,380,239,241,-1,239,380,433,-1,234,243,237,-1,241,243,234,-1,238,183,182,-1,238,240,183,-1,384,373,117,-1,384,232,373,-1,186,391,256,-1,186,367,391,-1,382,475,379,-1,475,382,474,-1,99,97,389,-1,99,96,97,-1,131,172,187,-1,131,120,172,-1,228,381,122,-1,227,381,228,-1,437,218,372,-1,214,218,437,-1,383,217,438,-1,216,217,383,-1,48,111,113,-1,48,215,111,-1,434,214,437,-1,213,214,434,-1,457,430,428,-1,457,134,430,-1,133,134,457,-1,429,89,105,-1,90,89,429,-1,362,211,100,-1,362,209,211,-1,103,84,104,-1,84,102,205,-1,84,103,102,-1,442,460,93,-1,460,442,458,-1,455,378,453,-1,455,376,378,-1,453,393,440,-1,453,46,393,-1,453,378,46,-1,193,487,194,-1,193,478,487,-1,76,478,74,-1,478,76,487,-1,473,273,387,-1,273,473,278,-1,388,469,470,-1,64,469,388,-1,394,312,511,-1,310,312,394,-1,514,201,200,-1,514,516,201,-1,419,467,464,-1,467,419,417,-1,463,466,465,-1,463,462,466,-1,509,461,204,-1,461,509,510,-1,185,189,188,-1,185,192,189,-1,435,183,240,-1,435,436,183,-1,358,370,177,-1,357,370,358,-1,119,27,229,-1,119,25,27,-1,125,454,123,-1,459,454,125,-1,428,458,457,-1,458,428,460,-1,459,455,454,-1,455,459,456,-1,370,359,230,-1,370,357,359,-1,108,222,109,-1,108,223,222,-1,172,357,173,-1,172,359,357,-1,165,431,166,-1,168,431,165,-1,98,163,162,-1,163,98,170,-1,160,351,249,-1,351,160,157,-1,155,263,348,-1,155,154,263,-1,265,452,451,-1,265,264,452,-1,448,444,503,-1,448,507,444,-1,503,447,448,-1,503,446,447,-1,507,289,444,-1,289,507,322,-1,347,150,149,-1,150,347,255,-1,46,377,44,-1,46,378,377,-1,441,443,180,-1,442,443,441,-1,173,233,367,-1,231,233,173,-1,128,440,439,-1,440,128,127,-1,125,132,133,-1,132,125,126,-1,25,379,475,-1,119,379,25,-1,62,108,110,-1,108,62,432,-1,354,422,355,-1,422,354,438,-1,434,435,433,-1,434,437,435,-1,436,115,118,-1,115,436,372,-1,134,25,475,-1,25,134,26,-1,363,97,364,-1,363,385,97,-1,207,83,94,-1,83,207,84,-1,166,211,210,-1,431,211,166,-1,162,99,98,-1,162,96,99,-1,206,105,207,-1,429,105,206,-1,88,430,474,-1,90,430,88,-1,85,95,86,-1,85,476,95,-1,93,206,94,-1,93,460,206,-1,427,78,426,-1,427,81,78,-1,80,77,74,-1,80,79,77,-1,75,71,76,-1,331,71,75,-1,331,72,71,-1,331,333,72,-1,66,336,69,-1,425,336,66,-1,278,68,67,-1,68,278,473,-1,471,387,388,-1,387,471,473,-1,141,135,1,-1,135,141,247,-1,55,209,362,-1,209,55,54,-1,272,21,36,-1,21,272,24,-1,22,423,37,-1,19,423,22,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlmc4_Geo_5_43_coordIndex_5()
		{
			int[] value = {20,50,152,-1,17,50,20,-1,18,276,51,-1,14,276,18,-1,277,23,274,-1,23,277,16,-1,422,48,113,-1,49,48,422,-1,311,416,308,-1,311,421,416,-1,396,304,318,-1,304,396,317,-1,406,418,420,-1,406,407,418,-1,197,417,419,-1,197,196,417,-1,327,396,397,-1,327,424,396,-1,401,40,39,-1,40,401,413,-1,275,63,65,-1,326,63,275,-1,337,411,412,-1,410,411,337,-1,337,38,410,-1,38,337,325,-1,35,402,151,-1,35,324,402,-1,512,287,300,-1,512,409,287,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc5_Geo_5_48_coordIndex_2()
		{
			int[] value = {40,39,138,-1,52,275,50,-1,283,54,254,-1,86,50,155,-1,170,163,182,-1,182,284,170,-1,63,24,23,-1,226,46,285,-1,226,44,46,-1,218,55,286,-1,287,0,216,-1,288,249,289,-1,289,290,288,-1,143,142,174,-1,291,292,293,-1,26,31,27,-1,294,295,194,-1,25,24,18,-1,15,19,16,-1,15,17,20,-1,286,296,287,-1,74,297,72,-1,265,298,264,-1,83,5,4,-1,299,55,25,-1,257,153,152,-1,257,265,153,-1,287,218,286,-1,218,287,216,-1,300,291,301,-1,300,292,291,-1,47,299,25,-1,299,47,49,-1,204,71,147,-1,71,204,203,-1,194,302,294,-1,302,194,193,-1,295,303,304,-1,294,303,295,-1,305,306,307,-1,308,306,305,-1,281,294,282,-1,294,281,303,-1,136,168,141,-1,144,168,136,-1,181,72,215,-1,181,309,72,-1,1,78,2,-1,310,78,1,-1,249,174,250,-1,288,174,249,-1,289,217,290,-1,289,311,217,-1,300,55,299,-1,300,286,55,-1,222,285,221,-1,222,226,285,-1,312,182,214,-1,312,284,182,-1,52,283,275,-1,52,54,283,-1,224,206,205,-1,224,208,206,-1,194,293,48,-1,295,293,194,-1,313,314,315,-1,313,316,314,-1,317,296,301,-1,318,296,317,-1,74,230,297,-1,74,213,230,-1,232,183,233,-1,232,188,183,-1,279,231,280,-1,231,279,190,-1,319,282,320,-1,282,319,192,-1,135,278,281,-1,278,135,134,-1,57,188,232,-1,188,57,59,-1,191,279,321,-1,279,191,190,-1,220,65,67,-1,220,195,65,-1,210,322,211,-1,219,322,210,-1,323,324,178,-1,324,323,236,-1,276,310,325,-1,276,78,310,-1,326,274,327,-1,326,209,274,-1,79,254,328,-1,254,79,283,-1,255,115,329,-1,330,115,255,-1,105,331,106,-1,113,331,105,-1,9,332,268,-1,332,9,264,-1,264,11,153,-1,11,264,9,-1,240,333,241,-1,334,333,240,-1,272,156,252,-1,156,272,273,-1,118,169,121,-1,169,118,335,-1,256,103,151,-1,103,256,336,-1,104,336,107,-1,104,103,336,-1,10,268,270,-1,268,10,9,-1,267,269,268,-1,267,266,269,-1,264,337,332,-1,337,264,298,-1,234,191,338,-1,233,191,234,-1,189,191,233,-1,41,339,263,-1,41,245,339,-1,178,340,323,-1,178,180,340,-1,179,253,159,-1,253,179,341,-1,158,261,177,-1,158,154,261,-1,342,266,343,-1,342,269,266,-1,241,258,239,-1,258,241,333,-1,150,273,272,-1,149,273,150,-1,343,335,118,-1,13,335,343,-1,115,344,114,-1,344,115,330,-1,152,103,102,-1,151,103,152,-1,13,266,14,-1,13,343,266,-1,330,270,344,-1,330,10,270,-1,333,298,258,-1,337,298,333,-1,6,334,149,-1,334,6,8,-1,93,323,340,-1,93,89,323,-1,262,82,260,-1,82,262,81,-1,248,345,157,-1,248,166,345,-1,165,345,166,-1,165,251,345,-1,111,251,165,-1,111,252,251,-1,142,250,174,-1,33,250,142,-1,172,245,176,-1,339,245,172,-1,259,113,112,-1,259,331,113,-1,242,175,176,-1,242,243,175,-1,244,106,243,-1,244,100,106,-1,100,277,98,-1,100,244,277,-1,92,171,87,-1,171,92,346,-1,328,237,91,-1,237,328,140,-1,145,237,139,-1,145,346,237,-1,88,276,97,-1,276,88,43,-1,322,341,324,-1,322,347,341,-1,263,288,290,-1,263,339,288,-1,316,187,314,-1,316,348,187,-1,349,133,350,-1,321,133,349,-1,281,308,303,-1,281,278,308,-1,351,307,348,-1,305,307,351,-1,351,301,291,-1,317,301,351,-1,229,213,212,-1,230,213,229,-1,228,220,202,-1,227,220,228,-1,352,200,353,-1,352,354,200,-1,196,131,354,-1,128,131,196,-1,126,198,227,-1,129,198,126,-1,124,228,355,-1,127,228,124,-1,125,355,356,-1,124,355,125,-1,46,356,285,-1,125,356,46,-1,225,44,226,-1,44,225,223,-1,357,358,359,-1,199,358,357,-1,205,225,224,-1,205,360,225,-1,358,122,360,-1,122,358,123,-1,221,229,212,-1,229,221,361,-1,362,319,69,-1,350,319,362,-1,362,353,363,-1,362,352,353,-1,364,359,58,-1,364,357,359,-1,57,234,58,-1,57,232,234,-1,349,364,338,-1,364,349,363,-1,315,95,325,-1,274,95,315,-1,312,55,311,-1,55,312,22,-1,312,23,22,-1,312,214,23,-1,297,215,72,-1,64,215,297,-1,77,209,326,-1,209,77,76,-1,325,97,276,-1,95,97,325,-1,290,216,263,-1,216,290,217,-1,214,181,215,-1,181,214,182,-1,347,219,73,-1,322,219,347,-1,311,284,312,-1,289,284,311,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc5_Geo_5_48_coordIndex_3()
		{
			int[] value = {2,216,0,-1,216,2,41,-1,1,313,310,-1,313,1,318,-1,315,310,313,-1,325,310,315,-1,58,338,364,-1,58,234,338,-1,208,222,207,-1,208,224,222,-1,58,205,56,-1,359,205,58,-1,363,357,364,-1,353,357,363,-1,363,350,362,-1,349,350,363,-1,69,352,362,-1,352,68,197,-1,68,352,69,-1,293,49,48,-1,49,293,292,-1,17,63,21,-1,16,63,17,-1,361,20,229,-1,361,201,20,-1,199,123,358,-1,123,199,132,-1,359,360,205,-1,359,358,360,-1,353,199,357,-1,200,199,353,-1,285,361,221,-1,356,361,285,-1,356,201,361,-1,201,356,355,-1,198,128,196,-1,128,198,129,-1,354,130,200,-1,130,354,131,-1,197,354,352,-1,197,196,354,-1,227,195,220,-1,227,198,195,-1,355,202,201,-1,355,228,202,-1,291,305,351,-1,305,291,304,-1,348,317,351,-1,348,316,317,-1,306,278,280,-1,308,278,306,-1,338,321,349,-1,338,191,321,-1,321,134,133,-1,321,279,134,-1,348,28,187,-1,348,307,28,-1,314,186,327,-1,314,187,186,-1,37,245,41,-1,37,36,245,-1,249,284,289,-1,284,249,170,-1,341,309,253,-1,341,347,309,-1,178,341,179,-1,324,341,178,-1,346,91,237,-1,346,92,91,-1,98,146,139,-1,98,277,146,-1,99,101,100,-1,101,99,5,-1,331,243,106,-1,243,331,175,-1,331,173,175,-1,173,331,259,-1,112,246,259,-1,112,247,246,-1,288,172,174,-1,288,339,172,-1,141,169,164,-1,141,121,169,-1,248,167,166,-1,34,167,248,-1,108,165,164,-1,108,111,165,-1,154,251,155,-1,154,345,251,-1,154,157,345,-1,158,157,154,-1,80,340,82,-1,80,93,340,-1,89,236,323,-1,89,90,236,-1,260,177,261,-1,260,180,177,-1,334,337,333,-1,337,334,8,-1,265,258,298,-1,265,257,258,-1,344,269,342,-1,269,344,270,-1,152,238,257,-1,102,238,152,-1,329,256,255,-1,329,336,256,-1,114,342,120,-1,342,114,344,-1,271,13,12,-1,271,335,13,-1,148,272,110,-1,150,272,148,-1,149,240,273,-1,334,240,149,-1,320,147,70,-1,147,320,302,-1,141,34,136,-1,167,34,141,-1,342,118,120,-1,342,343,118,-1,262,154,50,-1,262,261,154,-1,180,82,340,-1,180,260,82,-1,140,254,4,-1,254,140,328,-1,39,277,138,-1,39,146,277,-1,326,62,77,-1,326,235,62,-1,360,223,225,-1,360,122,223,-1,8,332,337,-1,7,332,8,-1,109,12,116,-1,271,12,109,-1,102,5,238,-1,101,5,102,-1,247,120,119,-1,247,114,120,-1,335,108,169,-1,108,335,271,-1,329,107,336,-1,329,105,107,-1,100,104,106,-1,100,101,104,-1,239,85,241,-1,85,239,83,-1,7,268,332,-1,7,267,268,-1,267,117,14,-1,117,267,7,-1,105,115,113,-1,115,105,329,-1,328,80,79,-1,328,91,80,-1,89,92,87,-1,92,89,93,-1,327,235,326,-1,235,327,186,-1,81,283,79,-1,283,81,275,-1,211,324,236,-1,322,324,211,-1,61,77,62,-1,61,75,77,-1,309,73,72,-1,309,347,73,-1,350,192,319,-1,350,133,192,-1,26,280,231,-1,306,280,26,-1,302,282,294,-1,302,320,282,-1,183,189,233,-1,183,184,189,-1,320,69,319,-1,69,320,70,-1,68,66,65,-1,68,70,66,-1,64,230,21,-1,64,297,230,-1,301,286,300,-1,296,286,301,-1,316,318,317,-1,313,318,316,-1,315,327,274,-1,315,314,327,-1,36,40,138,-1,36,35,40,-1,33,144,136,-1,144,33,142,-1,218,311,55,-1,218,217,311,-1,346,38,171,-1,346,145,38,-1,171,40,43,-1,171,38,40,-1,43,37,42,-1,43,35,37,-1,181,253,309,-1,162,253,181,-1,144,246,168,-1,246,144,143,-1,293,304,291,-1,293,295,304,-1,307,26,28,-1,306,26,307,-1,304,308,305,-1,303,308,304,-1,302,204,147,-1,302,193,204,-1,71,47,25,-1,71,203,47,-1,292,299,49,-1,300,299,292,-1,16,24,63,-1,16,19,24,-1,11,330,255,-1,10,330,11,-1,117,150,148,-1,6,150,117,-1,0,318,1,-1,287,318,0,-1,287,296,318,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmphal2_Geo_5_53_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,0,4,-1,5,6,7,-1,5,8,6,-1,9,10,11,-1,9,12,10,-1,13,14,15,-1,16,17,18,-1,19,20,21,-1,20,22,21,-1,23,24,25,-1,26,24,27,-1,28,24,29,-1,30,24,31,-1,32,24,33,-1,34,35,36,-1,35,37,36,-1,38,3,39,-1,38,0,3,-1,40,41,42,-1,42,43,40,-1,44,45,46,-1,46,47,44,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,55,57,56,-1,58,59,60,-1,59,61,60,-1,62,63,64,-1,65,62,64,-1,66,67,68,-1,68,69,66,-1,70,71,72,-1,73,74,75,-1,74,76,75,-1,77,78,6,-1,76,79,80,-1,79,81,80,-1,67,71,70,-1,82,71,9,-1,15,71,83,-1,13,83,66,-1,84,85,86,-1,84,87,85,-1,16,88,89,-1,85,90,18,-1,91,90,87,-1,92,90,93,-1,88,90,89,-1,94,95,96,-1,95,97,96,-1,98,99,61,-1,61,100,98,-1,65,101,62,-1,49,102,103,-1,103,57,49,-1,63,62,104,-1,102,104,62,-1,105,62,106,-1,106,101,47,-1,107,61,59,-1,107,100,61,-1,98,108,99,-1,98,109,108,-1,110,78,111,-1,111,112,110,-1,113,114,115,-1,113,116,114,-1,116,117,114,-1,116,118,117,-1,119,57,55,-1,119,50,57,-1,115,120,113,-1,18,90,88,-1,89,90,92,-1,93,90,91,-1,87,90,85,-1,18,88,16,-1,89,121,122,-1,89,92,121,-1,51,91,123,-1,51,93,91,-1,124,87,84,-1,83,71,66,-1,15,83,13,-1,125,71,15,-1,82,11,126,-1,82,9,11,-1,72,71,82,-1,5,127,128,-1,129,130,19,-1,130,20,19,-1,131,132,133,-1,12,71,125,-1,78,110,7,-1,7,6,78,-1,134,135,136,-1,136,133,134,-1,66,71,67,-1,101,106,62,-1,137,105,138,-1,105,106,138,-1,56,57,139,-1,57,103,139,-1,69,68,140,-1,68,141,140,-1,142,84,86,-1,86,143,142,-1,52,51,123,-1,123,144,52,-1,57,50,49,-1,145,113,120,-1,146,45,44,-1,146,147,45,-1,148,149,150,-1,148,151,149,-1,152,48,50,-1,50,119,152,-1,107,46,153,-1,153,100,107,-1,33,24,23,-1,31,24,32,-1,29,24,30,-1,27,24,28,-1,25,24,26,-1,47,46,107,-1,80,81,154,-1,155,0,38,-1,155,1,0,-1,156,157,110,-1,157,7,110,-1,112,4,156,-1,156,110,112,-1,89,122,16,-1,66,69,13,-1,71,12,9,-1,5,7,157,-1,127,158,128,-1,158,127,22,-1,159,156,2,-1,159,157,156,-1,19,1,155,-1,1,19,21,-1,140,81,160,-1,154,81,140,-1,14,161,162,-1,14,122,161,-1,77,163,132,-1,164,163,77,-1,164,165,162,-1,164,8,165,-1,13,122,14,-1,13,16,122,-1,53,121,51,-1,53,166,121,-1,167,25,115,-1,167,23,25,-1,62,103,102,-1,62,105,103,-1,37,168,36,-1,109,168,37,-1,98,153,169,-1,100,153,98,-1,135,170,136,-1,135,171,170,-1,172,138,58,-1,138,172,173,-1,174,175,176,-1,177,175,174,-1,118,152,119,-1,118,178,152,-1,148,48,151,-1,49,48,148,-1,146,149,147,-1,146,150,149,-1,43,145,120,-1,42,145,43,-1,178,116,179,-1,178,118,116,-1,124,142,180,-1,124,84,142,-1,86,160,143,-1,86,17,160,-1,181,182,183,-1,182,181,184,-1,126,158,185,-1,126,11,158,-1,144,124,180,-1,144,123,124,-1,166,122,121,-1,161,122,166,-1,105,139,103,-1,139,105,137,-1,112,99,108,-1,111,99,112,-1,186,39,167,-1,38,39,186,-1,114,95,115,-1,95,114,97,-1,40,29,174,-1,40,28,29,-1,187,188,189,-1,190,188,187,-1,147,191,192,-1,149,191,147,-1,104,49,148,-1,104,102,49,-1,44,64,146,-1,65,64,44,-1,130,193,194,-1,193,130,129,-1,133,172,131,-1,133,136,172,-1,157,127,5,-1,157,159,127,-1,12,195,10,-1,12,125,195,-1,196,197,198,-1,196,199,197,-1,94,186,95,-1,94,200,186,-1,21,2,1,-1,2,21,159,-1,96,193,94,-1,96,201,193,-1,75,80,202,-1,75,76,80,-1,199,170,197,-1,170,199,173,-1,159,22,127,-1,21,22,159,-1,201,194,193,-1,201,203,194,-1,198,204,205,-1,204,198,197,-1,133,163,134,-1,132,163,133,-1,22,185,158,-1,22,20,185,-1,181,203,141,-1,203,181,194,-1,81,143,160,-1,79,143,81,-1,206,180,142,-1,206,205,180,-1,144,171,52,-1,144,204,171,-1,166,163,161,-1,166,134,163,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmphal2_Geo_5_53_coordIndex_2()
		{
			int[] value = {182,82,126,-1,72,82,182,-1,125,14,195,-1,125,15,14,-1,123,87,124,-1,123,91,87,-1,92,51,121,-1,92,93,51,-1,33,167,39,-1,23,167,33,-1,29,177,174,-1,29,30,177,-1,26,43,120,-1,26,27,43,-1,25,120,115,-1,25,26,120,-1,54,202,207,-1,54,75,202,-1,151,152,208,-1,152,151,48,-1,178,208,152,-1,178,209,208,-1,209,179,210,-1,179,209,178,-1,210,145,42,-1,179,145,210,-1,78,60,111,-1,78,131,60,-1,109,3,108,-1,109,37,3,-1,45,153,46,-1,211,153,45,-1,168,212,213,-1,168,169,212,-1,45,192,211,-1,147,192,45,-1,191,209,190,-1,209,191,208,-1,188,42,41,-1,188,210,42,-1,212,189,213,-1,212,187,189,-1,139,73,56,-1,139,196,73,-1,58,131,172,-1,131,58,60,-1,199,138,173,-1,138,199,137,-1,187,211,192,-1,187,212,211,-1,176,213,189,-1,213,176,175,-1,190,210,188,-1,209,210,190,-1,208,149,151,-1,208,191,149,-1,213,36,168,-1,213,175,36,-1,211,169,153,-1,212,169,211,-1,2,4,0,-1,4,2,156,-1,119,117,118,-1,119,55,117,-1,96,207,202,-1,207,96,97,-1,38,200,155,-1,186,200,38,-1,43,28,40,-1,43,27,28,-1,30,34,177,-1,31,34,30,-1,85,17,86,-1,85,18,17,-1,67,184,68,-1,184,67,70,-1,166,135,134,-1,166,53,135,-1,205,144,180,-1,205,204,144,-1,79,142,143,-1,206,142,79,-1,141,154,140,-1,141,203,154,-1,130,185,20,-1,130,183,185,-1,171,197,170,-1,171,204,197,-1,198,206,74,-1,198,205,206,-1,203,80,154,-1,80,203,201,-1,77,131,78,-1,77,132,131,-1,74,196,198,-1,73,196,74,-1,202,201,96,-1,202,80,201,-1,129,155,200,-1,129,19,155,-1,56,75,54,-1,56,73,75,-1,79,74,206,-1,74,79,76,-1,193,200,94,-1,193,129,200,-1,137,196,139,-1,196,137,199,-1,183,194,181,-1,194,183,130,-1,184,72,182,-1,184,70,72,-1,47,65,44,-1,101,65,47,-1,63,148,150,-1,63,104,148,-1,146,63,150,-1,63,146,64,-1,192,190,187,-1,191,190,192,-1,189,41,176,-1,188,41,189,-1,97,117,207,-1,97,114,117,-1,115,186,167,-1,186,115,95,-1,4,108,3,-1,4,112,108,-1,111,61,99,-1,60,61,111,-1,55,207,117,-1,207,55,54,-1,10,165,128,-1,195,165,10,-1,183,126,185,-1,183,182,126,-1,68,181,141,-1,68,184,181,-1,47,59,106,-1,47,107,59,-1,37,39,3,-1,35,39,37,-1,179,113,145,-1,113,179,116,-1,40,176,41,-1,174,176,40,-1,175,34,36,-1,175,177,34,-1,58,106,59,-1,106,58,138,-1,173,136,170,-1,136,173,172,-1,52,135,53,-1,171,135,52,-1,169,109,98,-1,169,168,109,-1,35,31,32,-1,35,34,31,-1,35,33,39,-1,35,32,33,-1,16,69,17,-1,13,69,16,-1,162,195,14,-1,162,165,195,-1,77,8,164,-1,77,6,8,-1,162,163,164,-1,162,161,163,-1,17,140,160,-1,140,17,69,-1,11,128,158,-1,11,10,128,-1,8,128,165,-1,128,8,5,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmphal3_Geo_5_58_coordIndex_2()
		{
			int[] value = {148,249,147,-1,271,249,148,-1,272,168,273,-1,170,168,272,-1,76,57,235,-1,76,56,57,-1,74,25,73,-1,25,74,23,-1,61,174,101,-1,175,174,61,-1,106,102,203,-1,106,105,102,-1,127,240,238,-1,198,240,127,-1,134,264,274,-1,134,263,264,-1,211,80,77,-1,80,211,182,-1,84,270,268,-1,84,267,270,-1,251,98,97,-1,251,250,98,-1,176,135,137,-1,176,173,135,-1,184,3,207,-1,3,184,2,-1,10,248,275,-1,10,7,248,-1,218,170,272,-1,170,218,209,-1,210,106,201,-1,210,104,106,-1,199,137,202,-1,137,199,176,-1,202,138,260,-1,138,202,137,-1,275,151,79,-1,248,151,275,-1,164,276,277,-1,164,273,276,-1,259,278,279,-1,278,259,258,-1,232,280,132,-1,280,232,261,-1,183,264,181,-1,183,274,264,-1,255,149,256,-1,150,149,255,-1,14,281,282,-1,14,163,281,-1,279,245,282,-1,245,279,243,-1,278,233,242,-1,278,234,233,-1,274,246,239,-1,274,183,246,-1,283,65,284,-1,283,64,65,-1,273,162,272,-1,164,162,273,-1,241,128,244,-1,241,129,128,-1,198,159,240,-1,160,159,198,-1,89,62,196,-1,89,63,62,-1,160,130,129,-1,160,198,130,-1,21,197,220,-1,21,195,197,-1,285,29,237,-1,29,285,28,-1,25,46,73,-1,32,46,25,-1,60,101,103,-1,60,61,101,-1,271,189,191,-1,271,148,189,-1,36,123,122,-1,37,123,36,-1,33,146,231,-1,146,33,35,-1,40,88,16,-1,40,41,88,-1,286,118,120,-1,118,286,287,-1,70,17,69,-1,70,107,17,-1,113,86,114,-1,113,87,86,-1,145,115,269,-1,145,116,115,-1,227,288,225,-1,227,265,288,-1,43,110,228,-1,43,50,110,-1,82,289,83,-1,82,224,289,-1,85,268,252,-1,268,85,84,-1,112,228,110,-1,228,112,226,-1,68,222,48,-1,68,229,222,-1,225,71,44,-1,71,225,288,-1,269,230,145,-1,230,269,223,-1,265,113,288,-1,113,265,87,-1,287,108,153,-1,287,286,108,-1,109,286,104,-1,286,109,108,-1,18,40,16,-1,39,40,18,-1,41,143,88,-1,41,42,143,-1,146,36,122,-1,36,146,35,-1,139,39,18,-1,39,139,38,-1,254,58,55,-1,254,59,58,-1,30,235,236,-1,30,31,235,-1,154,51,45,-1,26,51,154,-1,66,28,285,-1,28,66,27,-1,220,193,94,-1,220,197,193,-1,238,22,127,-1,238,19,22,-1,158,129,241,-1,129,158,160,-1,244,157,156,-1,128,157,244,-1,94,194,95,-1,193,194,94,-1,282,13,14,-1,13,282,245,-1,212,65,165,-1,212,284,65,-1,279,242,243,-1,279,278,242,-1,282,259,279,-1,282,281,259,-1,215,283,255,-1,214,283,215,-1,77,212,211,-1,212,77,152,-1,132,263,134,-1,280,263,132,-1,258,234,278,-1,234,258,262,-1,257,281,277,-1,259,281,257,-1,247,256,149,-1,247,217,256,-1,79,185,275,-1,79,78,185,-1,257,202,260,-1,257,200,202,-1,203,201,106,-1,201,203,199,-1,273,210,276,-1,168,210,273,-1,217,171,208,-1,171,217,247,-1,206,275,185,-1,206,10,275,-1,1,204,6,-1,204,1,92,-1,253,97,125,-1,97,253,251,-1,267,221,270,-1,267,266,221,-1,18,140,139,-1,18,15,140,-1,183,180,246,-1,183,182,180,-1,283,150,255,-1,283,284,150,-1,274,133,134,-1,133,274,239,-1,101,203,102,-1,174,203,101,-1,288,72,71,-1,288,113,72,-1,214,64,283,-1,64,214,213,-1,155,74,76,-1,23,74,155,-1,271,250,249,-1,271,98,250,-1,144,268,115,-1,144,252,268,-1,270,223,269,-1,223,270,221,-1,267,87,265,-1,267,84,87,-1,83,226,112,-1,83,289,226,-1,79,152,77,-1,79,151,152,-1,181,0,186,-1,0,181,264,-1,91,263,280,-1,91,93,263,-1,260,262,258,-1,260,138,262,-1,163,277,281,-1,164,277,163,-1,277,200,257,-1,276,200,277,-1,98,191,99,-1,271,191,98,-1,122,117,116,-1,121,117,122,-1,231,145,230,-1,146,145,231,-1,81,118,287,-1,111,118,81,-1,251,86,85,-1,251,253,86,-1,249,252,144,-1,249,250,252,-1,74,75,76,-1,72,75,74,-1,73,44,71,-1,44,73,46,-1,153,81,287,-1,49,81,153,-1,237,103,285,-1,103,237,60,-1,142,148,141,-1,142,189,148,-1,67,285,103,-1,67,66,285,-1,173,92,135,-1,173,204,92,-1,136,280,261,-1,91,280,136,-1,63,165,65,-1,63,90,165,-1,213,62,64,-1,177,62,213,-1,245,156,95,-1,156,245,243,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmphal3_Geo_5_58_coordIndex_3()
		{
			int[] value = {233,244,242,-1,241,244,233,-1,240,131,133,-1,240,159,131,-1,19,239,246,-1,19,238,239,-1,58,237,236,-1,58,60,237,-1,114,56,75,-1,114,54,56,-1,286,105,104,-1,286,120,105,-1,262,232,234,-1,262,261,232,-1,152,284,212,-1,152,150,284,-1,207,185,184,-1,207,206,185,-1,230,143,231,-1,143,230,229,-1,289,227,226,-1,289,266,227,-1,44,228,225,-1,228,44,43,-1,266,224,221,-1,224,266,289,-1,46,154,45,-1,46,32,154,-1,22,220,126,-1,21,220,22,-1,219,132,131,-1,132,219,232,-1,256,218,216,-1,218,256,217,-1,194,11,13,-1,178,11,194,-1,272,216,218,-1,272,162,216,-1,214,161,12,-1,161,214,215,-1,11,177,213,-1,11,178,177,-1,187,208,188,-1,209,208,187,-1,190,10,206,-1,10,190,8,-1,207,5,192,-1,207,3,5,-1,205,6,204,-1,6,205,4,-1,201,276,210,-1,201,200,276,-1,96,130,126,-1,130,96,157,-1,177,196,62,-1,196,177,179,-1,4,59,254,-1,205,59,4,-1,5,254,124,-1,5,4,254,-1,100,190,192,-1,99,190,100,-1,9,191,189,-1,9,8,191,-1,140,172,142,-1,140,188,172,-1,169,15,17,-1,169,187,15,-1,80,186,78,-1,80,181,186,-1,20,195,21,-1,20,166,195,-1,182,167,180,-1,182,211,167,-1,107,169,17,-1,109,169,107,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmphal4_Geo_5_63_coordIndex_2()
		{
			int[] value = {135,97,119,-1,135,176,97,-1,255,219,256,-1,255,220,219,-1,257,234,253,-1,258,234,257,-1,259,13,228,-1,260,13,259,-1,261,91,92,-1,91,261,185,-1,247,204,252,-1,204,247,245,-1,152,180,166,-1,152,144,180,-1,184,105,107,-1,105,184,183,-1,65,186,203,-1,65,8,186,-1,262,174,173,-1,262,189,174,-1,239,175,263,-1,239,236,175,-1,65,235,229,-1,203,235,65,-1,236,264,265,-1,236,238,264,-1,237,215,266,-1,237,241,215,-1,160,149,256,-1,160,150,149,-1,243,267,260,-1,243,268,267,-1,195,253,234,-1,195,192,253,-1,269,264,238,-1,269,270,264,-1,269,223,225,-1,266,223,269,-1,159,256,219,-1,256,159,160,-1,267,59,11,-1,257,59,267,-1,270,200,271,-1,270,227,200,-1,139,5,140,-1,139,3,5,-1,226,167,224,-1,226,109,167,-1,162,110,222,-1,162,161,110,-1,218,18,111,-1,19,18,218,-1,1,3,139,-1,3,1,0,-1,67,26,272,-1,67,23,26,-1,155,49,40,-1,155,24,49,-1,28,64,63,-1,27,64,28,-1,92,35,261,-1,92,36,35,-1,273,34,118,-1,273,30,34,-1,37,89,88,-1,89,37,39,-1,261,38,15,-1,261,35,38,-1,87,274,133,-1,87,86,274,-1,275,86,151,-1,274,86,275,-1,129,246,248,-1,246,129,254,-1,251,212,276,-1,251,206,212,-1,208,73,42,-1,208,254,73,-1,205,70,211,-1,205,46,70,-1,132,209,124,-1,132,207,209,-1,230,250,231,-1,230,249,250,-1,41,124,209,-1,124,41,48,-1,210,254,208,-1,254,210,246,-1,251,127,126,-1,127,251,276,-1,129,232,128,-1,248,232,129,-1,71,16,69,-1,16,71,85,-1,121,275,122,-1,274,275,121,-1,38,88,15,-1,88,38,37,-1,31,273,213,-1,31,30,273,-1,34,116,118,-1,34,33,116,-1,94,182,115,-1,182,94,145,-1,56,135,136,-1,55,135,56,-1,20,43,72,-1,20,29,43,-1,24,67,49,-1,24,23,67,-1,272,25,217,-1,272,26,25,-1,17,2,1,-1,171,2,17,-1,161,108,110,-1,108,161,172,-1,147,62,277,-1,61,62,147,-1,172,163,221,-1,172,161,163,-1,222,109,226,-1,110,109,222,-1,262,199,196,-1,262,201,199,-1,253,59,257,-1,59,253,60,-1,255,228,220,-1,259,228,255,-1,266,216,223,-1,215,216,266,-1,270,225,227,-1,269,225,270,-1,271,264,270,-1,202,264,271,-1,234,229,235,-1,234,258,229,-1,255,244,259,-1,242,244,255,-1,158,150,160,-1,158,240,150,-1,238,266,269,-1,238,237,266,-1,201,173,265,-1,173,201,262,-1,263,101,239,-1,263,102,101,-1,98,102,263,-1,98,178,102,-1,174,99,100,-1,99,174,133,-1,198,188,196,-1,198,187,188,-1,183,66,105,-1,66,183,9,-1,214,165,181,-1,214,153,165,-1,178,104,102,-1,104,178,177,-1,249,252,250,-1,252,249,247,-1,244,260,259,-1,243,260,244,-1,256,242,255,-1,242,256,149,-1,111,221,218,-1,111,172,221,-1,99,119,97,-1,134,119,99,-1,135,179,176,-1,135,55,179,-1,75,20,72,-1,75,21,20,-1,52,64,76,-1,52,51,64,-1,196,189,262,-1,196,188,189,-1,231,126,148,-1,231,250,126,-1,252,206,251,-1,252,204,206,-1,247,248,246,-1,248,247,249,-1,78,207,132,-1,207,78,130,-1,106,268,243,-1,268,106,141,-1,244,154,233,-1,244,242,154,-1,239,241,237,-1,241,239,101,-1,202,265,264,-1,202,201,265,-1,265,175,236,-1,265,173,175,-1,145,137,182,-1,145,82,137,-1,118,125,127,-1,118,117,125,-1,213,276,212,-1,213,273,276,-1,122,79,123,-1,275,79,122,-1,232,96,93,-1,232,230,96,-1,231,83,146,-1,231,148,83,-1,273,127,276,-1,273,118,127,-1,75,77,76,-1,75,74,77,-1,151,79,275,-1,151,44,79,-1,90,81,117,-1,90,84,81,-1,217,136,272,-1,217,56,136,-1,141,258,268,-1,141,229,258,-1,68,272,136,-1,67,272,68,-1,177,144,104,-1,144,177,180,-1,103,150,240,-1,103,143,150,-1,61,11,59,-1,11,61,12,-1,190,62,60,-1,190,169,62,-1,227,224,140,-1,227,225,224,-1,216,226,223,-1,216,222,226,-1,221,159,219,-1,159,221,163,-1,19,220,228,-1,220,19,218,-1,58,217,63,-1,56,217,58,-1,128,52,77,-1,52,128,53,-1,116,90,117,-1,116,92,90,-1,274,134,133,-1,134,274,121,-1,241,158,215,-1,240,158,241,-1,268,257,267,-1,258,257,268,-1,106,214,107,-1,106,233,214,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmphal4_Geo_5_63_coordIndex_3()
		{
			int[] value = {213,211,89,-1,212,211,213,-1,130,210,207,-1,210,130,245,-1,209,42,41,-1,42,209,208,-1,245,131,204,-1,245,130,131,-1,43,155,40,-1,155,43,29,-1,18,1,112,-1,18,17,1,-1,167,140,224,-1,167,138,140,-1,235,198,197,-1,235,203,198,-1,14,261,15,-1,185,261,14,-1,202,194,193,-1,202,271,194,-1,191,271,200,-1,271,191,194,-1,195,199,193,-1,195,197,199,-1,190,194,191,-1,190,192,194,-1,260,11,13,-1,260,267,11,-1,189,133,174,-1,87,133,189,-1,187,14,188,-1,185,14,187,-1,186,7,91,-1,7,186,8,-1,137,9,183,-1,137,6,9,-1,115,184,181,-1,115,182,184,-1,180,179,170,-1,179,180,177,-1,176,98,97,-1,176,178,98,-1,100,263,175,-1,263,100,98,-1,138,108,112,-1,138,167,108,-1,169,277,62,-1,169,168,277,-1,168,2,277,-1,168,0,2,-1,171,277,2,-1,171,147,277,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmphal5_Geo_5_68_coordIndex_2()
		{
			int[] value = {100,136,99,-1,100,200,136,-1,208,186,204,-1,64,186,208,-1,210,155,193,-1,210,156,155,-1,199,213,198,-1,213,199,211,-1,6,126,4,-1,6,158,126,-1,203,216,214,-1,203,202,216,-1,201,164,141,-1,164,201,129,-1,85,88,86,-1,88,85,165,-1,154,133,51,-1,133,154,137,-1,142,163,162,-1,142,144,163,-1,81,219,184,-1,81,139,219,-1,143,189,144,-1,196,189,143,-1,196,148,189,-1,148,196,153,-1,188,146,187,-1,146,188,149,-1,57,151,195,-1,54,151,57,-1,187,163,188,-1,187,74,163,-1,139,195,219,-1,57,195,139,-1,184,143,142,-1,184,219,143,-1,108,47,49,-1,108,150,47,-1,51,152,154,-1,51,53,152,-1,86,141,84,-1,201,141,86,-1,61,165,59,-1,88,165,61,-1,135,214,183,-1,135,203,214,-1,202,107,216,-1,202,89,107,-1,105,127,125,-1,105,145,127,-1,159,3,197,-1,159,0,3,-1,191,198,213,-1,191,194,198,-1,208,156,210,-1,208,204,156,-1,104,58,60,-1,104,185,58,-1,103,157,76,-1,157,103,102,-1,31,215,217,-1,215,31,173,-1,207,218,174,-1,218,207,209,-1,178,212,176,-1,178,192,212,-1,214,217,215,-1,216,217,214,-1,101,77,116,-1,78,77,101,-1,118,100,101,-1,118,211,100,-1,192,213,212,-1,191,213,192,-1,207,210,209,-1,208,210,207,-1,41,122,120,-1,41,169,122,-1,43,168,131,-1,43,27,168,-1,206,167,181,-1,206,23,167,-1,34,24,205,-1,170,24,34,-1,185,186,58,-1,185,204,186,-1,89,86,88,-1,89,202,86,-1,203,129,201,-1,203,135,129,-1,66,199,197,-1,66,200,199,-1,194,159,198,-1,194,158,159,-1,196,219,195,-1,196,143,219,-1,194,193,155,-1,194,191,193,-1,180,192,178,-1,190,192,180,-1,53,150,152,-1,150,53,47,-1,189,149,188,-1,148,149,189,-1,184,82,81,-1,82,184,7,-1,2,162,73,-1,1,162,2,-1,147,187,146,-1,160,187,147,-1,197,15,66,-1,197,16,15,-1,183,78,99,-1,183,80,78,-1,87,64,63,-1,64,87,186,-1,51,132,52,-1,51,133,132,-1,50,47,53,-1,48,47,50,-1,129,161,164,-1,129,68,161,-1,172,206,177,-1,205,206,172,-1,177,181,175,-1,181,177,206,-1,182,44,179,-1,182,42,44,-1,45,131,130,-1,131,45,43,-1,35,205,172,-1,205,35,34,-1,45,180,44,-1,180,45,218,-1,176,179,178,-1,176,175,179,-1,45,174,218,-1,45,130,174,-1,40,115,114,-1,40,39,115,-1,173,30,37,-1,31,30,173,-1,79,35,77,-1,79,33,35,-1,177,116,172,-1,116,177,117,-1,171,91,124,-1,121,91,171,-1,92,169,97,-1,169,92,122,-1,27,98,168,-1,27,26,98,-1,28,123,25,-1,166,123,28,-1,96,23,22,-1,23,96,167,-1,93,24,170,-1,93,21,24,-1,29,39,32,-1,39,29,115,-1,50,165,85,-1,50,52,165,-1,164,72,128,-1,161,72,164,-1,18,68,14,-1,18,161,68,-1,17,69,72,-1,9,69,17,-1,110,75,160,-1,109,75,110,-1,140,95,55,-1,95,140,112,-1,138,19,134,-1,19,138,106,-1,20,104,60,-1,11,104,20,-1,56,137,54,-1,56,138,137,-1,9,147,69,-1,147,9,8,-1,162,5,142,-1,162,1,5,-1,3,16,197,-1,157,16,3,-1,7,127,82,-1,127,7,4,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpisform_Geo_5_73_coordIndex_2()
		{
			int[] value = {126,296,128,-1,126,281,296,-1,283,297,298,-1,283,282,297,-1,284,58,299,-1,284,61,58,-1,114,285,300,-1,114,113,285,-1,301,287,302,-1,301,286,287,-1,303,289,304,-1,303,288,289,-1,305,291,306,-1,305,290,291,-1,293,307,292,-1,307,293,308,-1,295,309,294,-1,309,295,310,-1,128,311,130,-1,128,296,311,-1,298,312,313,-1,298,297,312,-1,299,59,314,-1,299,58,59,-1,111,300,315,-1,111,114,300,-1,316,302,317,-1,316,301,302,-1,318,304,319,-1,318,303,304,-1,320,306,321,-1,320,305,306,-1,308,322,307,-1,322,308,323,-1,310,324,309,-1,324,310,325,-1,130,326,133,-1,130,311,326,-1,313,327,328,-1,313,312,327,-1,314,56,329,-1,314,59,56,-1,315,112,111,-1,112,315,330,-1,331,317,332,-1,331,316,317,-1,333,319,334,-1,333,318,319,-1,321,335,320,-1,335,321,336,-1,323,337,322,-1,337,323,338,-1,325,339,324,-1,339,325,340,-1,133,341,135,-1,133,326,341,-1,328,342,343,-1,328,327,342,-1,329,57,344,-1,329,56,57,-1,110,330,345,-1,110,112,330,-1,346,332,347,-1,346,331,332,-1,348,334,349,-1,348,333,334,-1,336,350,335,-1,350,336,351,-1,338,352,337,-1,352,338,353,-1,340,354,339,-1,354,340,355,-1,135,356,136,-1,135,341,356,-1,343,357,358,-1,343,342,357,-1,344,54,359,-1,344,57,54,-1,77,345,75,-1,77,110,345,-1,360,347,361,-1,360,346,347,-1,362,349,363,-1,362,348,349,-1,364,351,365,-1,364,350,351,-1,353,366,352,-1,366,353,367,-1,355,368,354,-1,368,355,369,-1,356,139,136,-1,139,356,370,-1,357,371,358,-1,371,357,372,-1,54,373,359,-1,373,54,55,-1,374,361,375,-1,374,360,361,-1,376,363,377,-1,376,362,363,-1,378,365,379,-1,378,364,365,-1,380,367,381,-1,380,366,367,-1,369,382,368,-1,382,369,383,-1,370,140,139,-1,140,370,384,-1,372,385,371,-1,385,372,386,-1,55,387,373,-1,387,55,52,-1,388,74,76,-1,109,74,388,-1,389,375,390,-1,389,374,375,-1,391,377,392,-1,391,376,377,-1,379,393,378,-1,393,379,394,-1,381,395,380,-1,395,381,396,-1,383,397,382,-1,397,383,398,-1,384,143,140,-1,143,384,399,-1,386,400,385,-1,400,386,401,-1,52,402,387,-1,402,52,53,-1,403,109,388,-1,107,109,403,-1,404,390,405,-1,404,389,390,-1,406,392,407,-1,406,391,392,-1,394,408,393,-1,408,394,409,-1,396,410,395,-1,410,396,411,-1,398,412,397,-1,412,398,413,-1,399,145,143,-1,145,399,414,-1,401,415,400,-1,415,401,416,-1,53,417,402,-1,417,53,50,-1,418,107,403,-1,108,107,418,-1,419,404,405,-1,420,404,419,-1,421,407,422,-1,421,406,407,-1,423,409,424,-1,423,408,409,-1,425,411,426,-1,425,410,411,-1,413,427,412,-1,427,413,428,-1,414,146,145,-1,146,414,429,-1,416,430,415,-1,430,416,431,-1,50,432,417,-1,432,50,51,-1,433,108,418,-1,105,108,433,-1,434,420,419,-1,435,420,434,-1,436,421,422,-1,437,421,436,-1,438,424,439,-1,438,423,424,-1,440,426,441,-1,440,425,426,-1,428,442,427,-1,442,428,443,-1,429,148,146,-1,148,429,444,-1,431,445,430,-1,445,431,446,-1,51,447,432,-1,447,51,48,-1,448,105,433,-1,106,105,448,-1,449,435,434,-1,450,435,449,-1,451,437,436,-1,452,437,451,-1,453,439,454,-1,453,438,439,-1,455,441,456,-1,455,440,441,-1,443,457,442,-1,457,443,458,-1,444,150,148,-1,150,444,459,-1,446,460,445,-1,460,446,461,-1,48,462,447,-1,462,48,49,-1,463,106,448,-1,103,106,463,-1,464,450,449,-1,465,450,464,-1,466,452,451,-1,467,452,466,-1,468,454,469,-1,468,453,454,-1,470,456,471,-1,470,455,456,-1,458,472,457,-1,472,458,473,-1,459,151,150,-1,151,459,474,-1,461,475,460,-1,475,461,476,-1,49,477,462,-1,477,49,46,-1,478,103,463,-1,104,103,478,-1,479,465,464,-1,480,465,479,-1,481,467,466,-1,482,467,481,-1,483,469,484,-1,483,468,469,-1,485,471,486,-1,485,470,471,-1,473,487,472,-1,487,473,488,-1,474,153,151,-1,153,474,489,-1,476,490,475,-1,490,476,491,-1,46,492,477,-1,492,46,47,-1,493,104,478,-1,101,104,493,-1,494,480,479,-1,495,480,494,-1,496,482,481,-1,497,482,496,-1,498,484,499,-1,498,483,484,-1,486,500,485,-1,500,486,501,-1,488,502,487,-1,502,488,503,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpisform_Geo_5_73_coordIndex_3()
		{
			int[] value = {153,504,6,-1,153,489,504,-1,490,505,506,-1,490,491,505,-1,492,44,507,-1,492,47,44,-1,102,493,508,-1,102,101,493,-1,509,494,510,-1,509,495,494,-1,511,496,512,-1,511,497,496,-1,513,499,514,-1,513,498,499,-1,515,500,501,-1,516,500,515,-1,502,517,518,-1,502,503,517,-1,6,519,4,-1,6,504,519,-1,506,520,521,-1,506,505,520,-1,507,45,522,-1,507,44,45,-1,99,508,523,-1,99,102,508,-1,524,510,525,-1,524,509,510,-1,526,512,527,-1,526,511,512,-1,528,513,514,-1,529,513,528,-1,530,516,515,-1,531,516,530,-1,518,532,533,-1,518,517,532,-1,4,534,157,-1,4,519,534,-1,521,535,536,-1,521,520,535,-1,522,42,537,-1,522,45,42,-1,100,523,538,-1,100,99,523,-1,539,525,540,-1,539,524,525,-1,541,527,542,-1,541,526,527,-1,543,529,528,-1,544,529,543,-1,545,531,530,-1,546,531,545,-1,533,547,548,-1,533,532,547,-1,157,549,155,-1,157,534,549,-1,536,550,551,-1,536,535,550,-1,537,43,552,-1,537,42,43,-1,97,538,553,-1,97,100,538,-1,554,540,555,-1,554,539,540,-1,556,542,557,-1,556,541,542,-1,558,544,543,-1,559,544,558,-1,560,546,545,-1,561,546,560,-1,548,94,562,-1,548,547,94,-1,155,563,7,-1,155,549,563,-1,551,564,565,-1,551,550,564,-1,552,40,566,-1,552,43,40,-1,98,553,567,-1,98,97,553,-1,568,555,569,-1,568,554,555,-1,556,570,571,-1,556,557,570,-1,572,559,558,-1,573,559,572,-1,574,561,560,-1,575,561,574,-1,562,96,576,-1,562,94,96,-1,7,577,125,-1,7,563,577,-1,565,578,579,-1,565,564,578,-1,566,41,580,-1,566,40,41,-1,92,567,581,-1,92,98,567,-1,582,569,583,-1,582,568,569,-1,584,571,570,-1,585,571,584,-1,573,586,587,-1,573,572,586,-1,588,575,574,-1,589,575,588,-1,576,590,591,-1,576,96,590,-1,125,592,209,-1,125,577,592,-1,579,593,594,-1,579,578,593,-1,580,38,595,-1,580,41,38,-1,93,581,596,-1,93,92,581,-1,597,582,583,-1,598,582,597,-1,599,585,584,-1,600,585,599,-1,587,601,602,-1,587,586,601,-1,589,603,604,-1,589,588,603,-1,605,591,590,-1,606,591,605,-1,209,607,208,-1,209,592,607,-1,594,608,609,-1,594,593,608,-1,595,39,610,-1,595,38,39,-1,81,596,79,-1,81,93,596,-1,611,598,597,-1,612,598,611,-1,613,600,599,-1,614,600,613,-1,602,615,616,-1,602,601,615,-1,604,617,618,-1,604,603,617,-1,606,619,620,-1,606,605,619,-1,208,621,206,-1,208,607,621,-1,609,622,623,-1,609,608,622,-1,610,36,624,-1,610,39,36,-1,625,612,611,-1,626,612,625,-1,627,614,613,-1,628,614,627,-1,629,616,615,-1,630,616,629,-1,618,631,632,-1,618,617,631,-1,620,633,634,-1,620,619,633,-1,206,635,204,-1,206,621,635,-1,622,636,623,-1,636,622,637,-1,36,638,624,-1,638,36,37,-1,78,639,90,-1,78,80,639,-1,640,626,625,-1,641,626,640,-1,642,628,627,-1,643,628,642,-1,630,644,645,-1,630,629,644,-1,632,646,647,-1,632,631,646,-1,634,648,649,-1,634,633,648,-1,635,202,204,-1,202,635,650,-1,637,651,636,-1,651,637,652,-1,37,653,638,-1,653,37,34,-1,90,654,91,-1,90,639,654,-1,655,641,640,-1,656,641,655,-1,657,643,642,-1,658,643,657,-1,659,645,644,-1,660,645,659,-1,661,647,646,-1,662,647,661,-1,649,663,664,-1,649,648,663,-1,650,197,202,-1,197,650,665,-1,652,666,651,-1,666,652,667,-1,34,668,653,-1,668,34,35,-1,669,91,654,-1,88,91,669,-1,670,656,655,-1,671,656,670,-1,672,658,657,-1,673,658,672,-1,674,660,659,-1,675,660,674,-1,676,662,661,-1,677,662,676,-1,678,664,663,-1,679,664,678,-1,665,200,197,-1,200,665,680,-1,667,681,666,-1,681,667,682,-1,35,683,668,-1,683,35,32,-1,684,88,669,-1,89,88,684,-1,671,685,686,-1,671,670,685,-1,687,673,672,-1,688,673,687,-1,689,675,674,-1,690,675,689,-1,691,677,676,-1,692,677,691,-1,693,679,678,-1,694,679,693,-1,680,69,200,-1,69,680,695,-1,682,696,681,-1,696,682,697,-1,32,698,683,-1,698,32,33,-1,699,89,684,-1,86,89,699,-1,700,686,685,-1,701,686,700,-1,702,688,687,-1,703,688,702,-1,704,690,689,-1,705,690,704,-1,692,706,707,-1,692,691,706,-1,694,708,709,-1,694,693,708,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlpisform_Geo_5_73_coordIndex_4()
		{
			int[] value = {695,67,69,-1,67,695,710,-1,697,711,696,-1,711,697,712,-1,33,713,698,-1,713,33,30,-1,714,86,699,-1,87,86,714,-1,715,701,700,-1,716,701,715,-1,717,703,702,-1,718,703,717,-1,719,705,704,-1,720,705,719,-1,707,721,722,-1,707,706,721,-1,708,723,709,-1,723,708,724,-1,710,196,67,-1,196,710,725,-1,712,726,711,-1,726,712,727,-1,30,728,713,-1,728,30,31,-1,729,87,714,-1,83,87,729,-1,730,716,715,-1,731,716,730,-1,732,718,717,-1,733,718,732,-1,734,720,719,-1,735,720,734,-1,722,736,737,-1,722,721,736,-1,723,738,739,-1,723,724,738,-1,725,194,196,-1,194,725,740,-1,727,741,726,-1,741,727,742,-1,31,743,728,-1,743,31,27,-1,212,83,729,-1,84,83,212,-1,215,731,730,-1,217,731,215,-1,220,733,732,-1,219,733,220,-1,224,735,734,-1,223,735,224,-1,737,229,226,-1,737,736,229,-1,739,233,230,-1,739,738,233,-1,740,192,194,-1,192,740,235,-1,742,236,741,-1,236,742,239,-1,27,240,743,-1,240,27,29,-1,743,239,742,-1,239,743,240,-1,741,235,740,-1,235,741,236,-1,195,233,738,-1,233,195,189,-1,736,230,229,-1,736,739,230,-1,734,226,224,-1,734,737,226,-1,223,732,735,-1,220,732,223,-1,219,730,733,-1,215,730,219,-1,217,729,731,-1,212,729,217,-1,728,742,727,-1,742,728,743,-1,726,740,725,-1,740,726,741,-1,193,738,724,-1,738,193,195,-1,721,739,736,-1,721,723,739,-1,719,737,734,-1,719,722,737,-1,735,717,720,-1,732,717,735,-1,733,715,718,-1,730,715,733,-1,731,714,716,-1,729,714,731,-1,83,85,87,-1,82,85,83,-1,713,727,712,-1,727,713,728,-1,711,725,710,-1,725,711,726,-1,68,724,708,-1,724,68,193,-1,706,723,721,-1,706,709,723,-1,704,722,719,-1,704,707,722,-1,720,702,705,-1,717,702,720,-1,718,700,703,-1,715,700,718,-1,716,699,701,-1,714,699,716,-1,698,712,697,-1,712,698,713,-1,696,710,695,-1,710,696,711,-1,66,708,693,-1,708,66,68,-1,691,709,706,-1,691,694,709,-1,707,689,692,-1,704,689,707,-1,705,687,690,-1,702,687,705,-1,703,685,688,-1,700,685,703,-1,701,684,686,-1,699,684,701,-1,86,25,89,-1,85,25,86,-1,683,697,682,-1,697,683,698,-1,681,695,680,-1,695,681,696,-1,198,693,678,-1,693,198,66,-1,694,676,679,-1,691,676,694,-1,692,674,677,-1,689,674,692,-1,690,672,675,-1,687,672,690,-1,688,670,673,-1,685,670,688,-1,686,669,671,-1,684,669,686,-1,668,682,667,-1,682,668,683,-1,666,680,665,-1,680,666,681,-1,663,198,678,-1,663,199,198,-1,679,661,664,-1,676,661,679,-1,677,659,662,-1,674,659,677,-1,675,657,660,-1,672,657,675,-1,673,655,658,-1,670,655,673,-1,671,654,656,-1,669,654,671,-1,88,26,91,-1,25,26,88,-1,653,667,652,-1,667,653,668,-1,651,665,650,-1,665,651,666,-1,648,199,663,-1,648,203,199,-1,664,646,649,-1,661,646,664,-1,662,644,647,-1,659,644,662,-1,660,642,645,-1,657,642,660,-1,658,640,643,-1,655,640,658,-1,656,639,641,-1,654,639,656,-1,638,652,637,-1,652,638,653,-1,636,650,635,-1,650,636,651,-1,633,203,648,-1,633,201,203,-1,631,649,646,-1,631,634,649,-1,629,647,644,-1,629,632,647,-1,627,645,642,-1,627,630,645,-1,643,625,628,-1,640,625,643,-1,641,80,626,-1,639,80,641,-1,23,90,26,-1,23,78,90,-1,624,637,622,-1,637,624,638,-1,621,636,635,-1,621,623,636,-1,619,201,633,-1,619,207,201,-1,634,617,620,-1,631,617,634,-1,615,632,629,-1,615,618,632,-1,630,613,616,-1,627,613,630,-1,628,611,614,-1,625,611,628,-1,626,79,612,-1,80,79,626,-1,608,624,622,-1,608,610,624,-1,607,623,621,-1,607,609,623,-1,605,207,619,-1,605,205,207,-1,603,620,617,-1,603,606,620,-1,601,618,615,-1,601,604,618,-1,616,599,602,-1,613,599,616,-1,614,597,600,-1,611,597,614,-1,79,598,612,-1,79,596,598,-1,23,93,81,-1,23,24,93,-1,593,610,608,-1,593,595,610,-1,592,609,607,-1,592,594,609,-1,205,590,210,-1,605,590,205,-1,588,606,603,-1,588,591,606,-1,586,604,601,-1,586,589,604,-1,602,584,587,-1,599,584,602,-1,600,583,585,-1,597,583,600,-1,596,582,598,-1,596,581,582,-1,578,595,593,-1,578,580,595,-1,577,594,592,-1,577,579,594,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlpisform_Geo_5_73_coordIndex_5()
		{
			int[] value = {210,96,8,-1,590,96,210,-1,574,591,588,-1,574,576,591,-1,572,589,586,-1,572,575,589,-1,570,587,584,-1,570,573,587,-1,585,569,571,-1,583,569,585,-1,581,568,582,-1,581,567,568,-1,98,24,21,-1,24,98,92,-1,564,580,578,-1,564,566,580,-1,563,579,577,-1,563,565,579,-1,560,576,574,-1,560,562,576,-1,575,558,561,-1,572,558,575,-1,557,573,570,-1,557,559,573,-1,569,556,571,-1,569,555,556,-1,567,554,568,-1,567,553,554,-1,550,566,564,-1,550,552,566,-1,549,565,563,-1,549,551,565,-1,547,95,94,-1,547,160,95,-1,545,562,560,-1,545,548,562,-1,561,543,546,-1,558,543,561,-1,557,544,559,-1,557,542,544,-1,555,541,556,-1,555,540,541,-1,553,539,554,-1,553,538,539,-1,21,100,97,-1,21,22,100,-1,535,552,550,-1,535,537,552,-1,534,551,549,-1,534,536,551,-1,532,160,547,-1,532,158,160,-1,530,548,545,-1,530,533,548,-1,546,528,531,-1,543,528,546,-1,542,529,544,-1,542,527,529,-1,540,526,541,-1,540,525,526,-1,538,524,539,-1,538,523,524,-1,520,537,535,-1,520,522,537,-1,519,536,534,-1,519,521,536,-1,517,158,532,-1,517,169,158,-1,515,533,530,-1,515,518,533,-1,531,514,516,-1,528,514,531,-1,527,513,529,-1,527,512,513,-1,525,511,526,-1,525,510,511,-1,523,509,524,-1,523,508,509,-1,22,102,99,-1,22,19,102,-1,505,522,520,-1,505,507,522,-1,504,521,519,-1,504,506,521,-1,503,169,517,-1,503,168,169,-1,501,518,515,-1,501,502,518,-1,516,499,500,-1,514,499,516,-1,512,498,513,-1,512,496,498,-1,511,494,497,-1,510,494,511,-1,508,495,509,-1,508,493,495,-1,491,507,505,-1,491,492,507,-1,489,506,504,-1,489,490,506,-1,165,503,488,-1,503,165,168,-1,487,501,486,-1,501,487,502,-1,499,485,500,-1,499,484,485,-1,498,481,483,-1,496,481,498,-1,497,479,482,-1,494,479,497,-1,495,478,480,-1,493,478,495,-1,19,104,101,-1,19,20,104,-1,477,491,476,-1,491,477,492,-1,475,489,474,-1,489,475,490,-1,167,488,473,-1,488,167,165,-1,472,486,471,-1,486,472,487,-1,484,470,485,-1,484,469,470,-1,483,466,468,-1,481,466,483,-1,482,464,467,-1,479,464,482,-1,480,463,465,-1,478,463,480,-1,462,476,461,-1,476,462,477,-1,460,474,459,-1,474,460,475,-1,163,473,458,-1,473,163,167,-1,457,471,456,-1,471,457,472,-1,469,455,470,-1,469,454,455,-1,468,451,453,-1,466,451,468,-1,467,449,452,-1,464,449,467,-1,465,448,450,-1,463,448,465,-1,103,17,106,-1,20,17,103,-1,447,461,446,-1,461,447,462,-1,445,459,444,-1,459,445,460,-1,164,458,443,-1,458,164,163,-1,442,456,441,-1,456,442,457,-1,454,440,455,-1,454,439,440,-1,453,436,438,-1,451,436,453,-1,452,434,437,-1,449,434,452,-1,450,433,435,-1,448,433,450,-1,432,446,431,-1,446,432,447,-1,430,444,429,-1,444,430,445,-1,171,443,428,-1,443,171,164,-1,427,441,426,-1,441,427,442,-1,439,425,440,-1,439,424,425,-1,436,423,438,-1,436,422,423,-1,437,419,421,-1,434,419,437,-1,435,418,420,-1,433,418,435,-1,105,18,108,-1,17,18,105,-1,417,431,416,-1,431,417,432,-1,415,429,414,-1,429,415,430,-1,428,744,171,-1,428,413,744,-1,412,426,411,-1,426,412,427,-1,410,424,409,-1,424,410,425,-1,422,408,423,-1,422,407,408,-1,419,406,421,-1,419,405,406,-1,420,403,404,-1,418,403,420,-1,402,416,401,-1,416,402,417,-1,400,414,399,-1,414,400,415,-1,172,413,398,-1,413,172,744,-1,397,411,396,-1,411,397,412,-1,395,409,394,-1,409,395,410,-1,407,393,408,-1,407,392,393,-1,405,391,406,-1,405,390,391,-1,404,388,389,-1,403,388,404,-1,107,15,109,-1,18,15,107,-1,387,401,386,-1,401,387,402,-1,385,399,384,-1,399,385,400,-1,175,398,383,-1,398,175,172,-1,382,396,381,-1,396,382,397,-1,380,394,379,-1,394,380,395,-1,392,378,393,-1,392,377,378,-1,390,376,391,-1,390,375,376,-1,389,76,374,-1,388,76,389,-1,373,386,372,-1,386,373,387,-1,371,384,370,-1,384,371,385,-1,177,383,369,-1,383,177,175,-1,381,368,382,-1,381,367,368,-1,379,366,380,-1,379,365,366,-1,377,364,378,-1,377,363,364,-1,375,362,376,-1,375,361,362,-1,76,360,374,-1,76,75,360,-1,74,16,77,-1,15,16,74,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlpisform_Geo_5_73_coordIndex_6()
		{
			int[] value = {359,372,357,-1,372,359,373,-1,358,370,356,-1,370,358,371,-1,179,369,355,-1,369,179,177,-1,354,367,353,-1,367,354,368,-1,365,352,366,-1,365,351,352,-1,363,350,364,-1,363,349,350,-1,361,348,362,-1,361,347,348,-1,75,346,360,-1,75,345,346,-1,342,359,357,-1,342,344,359,-1,341,358,356,-1,341,343,358,-1,180,355,340,-1,355,180,179,-1,339,353,338,-1,353,339,354,-1,337,351,336,-1,351,337,352,-1,349,335,350,-1,349,334,335,-1,347,333,348,-1,347,332,333,-1,345,331,346,-1,345,330,331,-1,112,16,13,-1,16,112,110,-1,327,344,342,-1,327,329,344,-1,326,343,341,-1,326,328,343,-1,745,340,325,-1,340,745,180,-1,324,338,323,-1,338,324,339,-1,322,336,321,-1,336,322,337,-1,320,334,319,-1,334,320,335,-1,332,318,333,-1,332,317,318,-1,330,316,331,-1,330,315,316,-1,312,329,327,-1,312,314,329,-1,311,328,326,-1,311,313,328,-1,310,745,325,-1,310,183,745,-1,309,323,308,-1,323,309,324,-1,307,321,306,-1,321,307,322,-1,319,305,320,-1,319,304,305,-1,317,303,318,-1,317,302,303,-1,315,301,316,-1,315,300,301,-1,114,13,14,-1,13,114,111,-1,297,314,312,-1,297,299,314,-1,296,313,311,-1,296,298,313,-1,295,183,310,-1,295,184,183,-1,294,308,293,-1,308,294,309,-1,306,292,307,-1,306,291,292,-1,304,290,305,-1,304,289,290,-1,302,288,303,-1,302,287,288,-1,300,286,301,-1,300,285,286,-1,282,299,297,-1,282,284,299,-1,281,298,296,-1,281,283,298,-1,279,184,295,-1,279,187,184,-1,280,293,278,-1,293,280,294,-1,291,277,292,-1,291,276,277,-1,289,275,290,-1,289,274,275,-1,287,273,288,-1,287,272,273,-1,285,271,286,-1,285,270,271,-1,14,116,113,-1,14,10,116,-1,267,284,282,-1,267,269,284,-1,266,283,281,-1,266,268,283,-1,117,187,279,-1,117,118,187,-1,265,278,263,-1,278,265,280,-1,276,264,277,-1,276,262,264,-1,274,261,275,-1,274,260,261,-1,272,259,273,-1,272,258,259,-1,270,257,271,-1,270,256,257,-1,253,269,267,-1,253,255,269,-1,252,268,266,-1,252,254,268,-1,249,265,263,-1,249,251,265,-1,262,250,264,-1,262,248,250,-1,260,247,261,-1,260,246,247,-1,258,245,259,-1,258,244,245,-1,256,243,257,-1,256,242,243,-1,10,121,115,-1,10,12,121,-1,237,255,253,-1,237,241,255,-1,234,254,252,-1,234,238,254,-1,231,0,119,-1,231,191,0,-1,227,251,249,-1,227,232,251,-1,250,222,228,-1,248,222,250,-1,246,225,247,-1,246,218,225,-1,244,221,245,-1,244,216,221,-1,242,214,243,-1,242,213,214,-1,239,241,237,-1,239,240,241,-1,235,238,234,-1,235,236,238,-1,233,191,231,-1,233,189,191,-1,229,232,227,-1,229,230,232,-1,224,228,222,-1,224,226,228,-1,225,220,223,-1,218,220,225,-1,216,219,221,-1,216,215,219,-1,213,217,214,-1,213,212,217,-1,12,84,120,-1,12,82,84,-1,147,170,211,-1,147,144,170,-1,149,70,162,-1,149,73,70,-1,71,166,72,-1,71,152,166,-1,161,156,159,-1,161,154,156,-1,210,208,205,-1,210,209,208,-1,207,204,201,-1,207,206,204,-1,202,199,203,-1,202,197,199,-1,200,66,198,-1,200,69,66,-1,68,196,193,-1,68,67,196,-1,195,192,189,-1,195,194,192,-1,191,64,0,-1,191,190,64,-1,2,186,65,-1,2,127,186,-1,129,185,182,-1,129,132,185,-1,131,178,188,-1,131,134,178,-1,138,176,181,-1,138,137,176,-1,142,174,173,-1,142,141,174,-1,186,184,187,-1,182,184,186,-1,188,180,745,-1,178,180,188,-1,181,177,179,-1,176,177,181,-1,174,744,172,-1,211,744,174,-1,211,171,744,-1,170,171,211,-1,161,169,123,-1,161,158,169,-1,166,168,165,-1,122,168,166,-1,70,167,163,-1,72,167,70,-1,160,124,95,-1,124,160,159,-1,156,7,9,-1,156,155,7,-1,5,157,154,-1,5,4,157,-1,152,6,3,-1,152,153,6,-1,150,71,73,-1,150,151,71,-1,146,149,144,-1,146,148,149,-1,143,147,141,-1,143,145,147,-1,139,142,137,-1,139,140,142,-1,135,138,134,-1,135,136,138,-1,185,745,183,-1,188,745,185,-1,129,130,132,-1,129,128,130,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal_Geo_5_78_coordIndex_2()
		{
			int[] value = {35,79,87,-1,31,79,35,-1,156,152,151,-1,157,152,156,-1,175,89,92,-1,89,175,149,-1,93,218,219,-1,92,218,93,-1,187,126,185,-1,187,127,126,-1,220,109,213,-1,109,220,110,-1,147,111,178,-1,111,147,112,-1,221,113,146,-1,113,221,114,-1,116,120,121,-1,115,120,116,-1,25,147,206,-1,25,146,147,-1,178,202,176,-1,178,102,202,-1,101,182,199,-1,101,220,182,-1,197,222,195,-1,197,214,222,-1,106,29,28,-1,29,106,105,-1,26,146,25,-1,26,221,146,-1,140,137,223,-1,140,143,137,-1,138,128,224,-1,138,216,128,-1,191,225,134,-1,224,225,191,-1,193,134,136,-1,193,191,134,-1,95,122,215,-1,95,219,122,-1,124,133,168,-1,124,123,133,-1,122,131,123,-1,131,122,130,-1,131,226,132,-1,226,131,129,-1,129,212,226,-1,212,129,171,-1,170,227,211,-1,227,170,228,-1,49,229,50,-1,49,66,229,-1,228,230,227,-1,228,231,230,-1,138,143,45,-1,138,137,143,-1,209,217,210,-1,217,209,232,-1,233,234,235,-1,234,233,236,-1,229,234,231,-1,229,232,234,-1,207,140,27,-1,207,141,140,-1,192,30,223,-1,30,192,196,-1,180,168,133,-1,179,168,180,-1,201,132,226,-1,200,132,201,-1,204,211,227,-1,211,204,205,-1,233,24,236,-1,233,208,24,-1,236,23,230,-1,236,24,23,-1,218,125,130,-1,218,90,125,-1,141,208,233,-1,141,207,208,-1,230,204,227,-1,230,23,204,-1,226,203,201,-1,203,226,212,-1,133,200,180,-1,133,132,200,-1,136,194,193,-1,194,136,198,-1,223,27,140,-1,27,223,30,-1,231,236,230,-1,231,234,236,-1,66,232,229,-1,66,217,232,-1,232,235,234,-1,232,209,235,-1,233,142,141,-1,235,142,233,-1,45,216,138,-1,216,45,46,-1,231,50,229,-1,50,231,228,-1,228,48,50,-1,228,170,48,-1,125,171,129,-1,171,125,59,-1,122,218,130,-1,122,219,218,-1,225,135,134,-1,135,225,215,-1,225,95,215,-1,225,96,95,-1,139,223,137,-1,223,139,192,-1,96,224,128,-1,96,225,224,-1,120,26,118,-1,26,120,221,-1,182,213,181,-1,182,220,213,-1,102,199,202,-1,102,101,199,-1,206,178,177,-1,206,147,178,-1,222,107,106,-1,107,222,117,-1,107,121,105,-1,116,121,107,-1,115,221,120,-1,114,221,115,-1,111,102,178,-1,103,102,111,-1,104,220,101,-1,110,220,104,-1,214,117,222,-1,117,214,145,-1,186,97,188,-1,186,98,97,-1,169,77,57,-1,169,100,77,-1,93,95,98,-1,93,219,95,-1,98,91,93,-1,98,186,91,-1,90,92,89,-1,90,218,92,-1,159,37,153,-1,159,34,37,-1,80,85,86,-1,80,82,85,-1,76,34,159,-1,76,32,34,-1,84,173,86,-1,172,173,84,-1,57,76,58,-1,57,77,76,-1,74,189,72,-1,184,189,74,-1,71,166,68,-1,71,67,166,-1,217,67,71,-1,66,67,217,-1,210,161,44,-1,70,161,210,-1,181,214,197,-1,214,181,213,-1,158,56,58,-1,17,56,158,-1,205,212,211,-1,205,203,212,-1,235,43,142,-1,235,209,43,-1,142,45,143,-1,142,43,45,-1,126,216,163,-1,126,128,216,-1,188,127,187,-1,188,97,127,-1,63,155,60,-1,174,155,63,-1,72,81,83,-1,81,72,189,-1,37,85,151,-1,37,36,85,-1,32,35,34,-1,32,31,35,-1,29,207,27,-1,207,29,119,-1,208,26,24,-1,208,118,26,-1,23,206,204,-1,23,25,206,-1,177,203,205,-1,203,177,176,-1,202,200,201,-1,200,202,199,-1,198,195,194,-1,198,197,195,-1,106,195,222,-1,195,106,144,-1,196,193,194,-1,193,196,192,-1,224,139,138,-1,224,191,139,-1,158,153,16,-1,158,159,153,-1,150,148,9,-1,149,148,150,-1,166,62,61,-1,62,166,165,-1,185,40,187,-1,167,40,185,-1,99,188,39,-1,186,188,99,-1,169,91,100,-1,169,94,91,-1,9,165,150,-1,165,9,62,-1,62,10,63,-1,62,9,10,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal2_Geo_5_83_coordIndex_2()
		{
			int[] value = {228,243,229,-1,243,228,244,-1,245,246,176,-1,245,247,246,-1,227,175,179,-1,175,227,248,-1,249,151,81,-1,161,151,249,-1,56,197,6,-1,55,197,56,-1,53,63,172,-1,53,64,63,-1,156,181,54,-1,181,156,157,-1,157,250,181,-1,250,157,189,-1,251,252,198,-1,251,253,252,-1,196,210,107,-1,196,195,210,-1,223,230,224,-1,230,223,226,-1,17,190,16,-1,17,19,190,-1,127,254,220,-1,254,127,129,-1,45,43,50,-1,45,44,43,-1,255,128,130,-1,128,255,256,-1,48,257,132,-1,48,242,257,-1,211,100,99,-1,100,211,208,-1,258,259,260,-1,259,258,109,-1,94,261,222,-1,261,94,213,-1,256,129,128,-1,262,129,256,-1,47,149,150,-1,149,47,46,-1,263,3,236,-1,263,199,3,-1,221,201,147,-1,221,145,201,-1,263,240,264,-1,212,240,263,-1,217,103,218,-1,103,217,102,-1,96,215,214,-1,215,96,216,-1,162,159,265,-1,160,159,162,-1,266,103,104,-1,266,267,103,-1,135,204,134,-1,237,204,135,-1,80,81,78,-1,81,80,249,-1,209,184,183,-1,209,268,184,-1,219,116,258,-1,116,219,117,-1,119,222,261,-1,118,222,119,-1,118,92,222,-1,121,262,256,-1,120,262,121,-1,257,122,255,-1,122,257,123,-1,269,98,270,-1,99,98,269,-1,271,260,259,-1,271,272,260,-1,254,213,214,-1,254,129,213,-1,133,147,131,-1,147,133,221,-1,46,49,149,-1,49,46,50,-1,203,240,212,-1,202,240,203,-1,185,27,7,-1,185,30,27,-1,159,144,273,-1,159,36,144,-1,2,265,274,-1,2,275,265,-1,0,276,238,-1,277,276,0,-1,274,141,277,-1,274,273,141,-1,200,51,29,-1,200,278,51,-1,279,215,218,-1,215,279,280,-1,220,145,221,-1,220,146,145,-1,276,270,98,-1,276,143,270,-1,272,140,281,-1,272,271,140,-1,278,21,126,-1,278,200,21,-1,95,216,96,-1,95,26,216,-1,280,214,215,-1,280,254,214,-1,154,195,155,-1,195,154,282,-1,199,169,56,-1,199,241,169,-1,153,198,252,-1,198,153,82,-1,5,275,236,-1,5,152,275,-1,234,69,68,-1,234,37,69,-1,266,193,194,-1,193,266,268,-1,235,31,188,-1,232,31,235,-1,234,188,187,-1,235,188,234,-1,165,162,161,-1,165,160,162,-1,228,77,106,-1,230,77,228,-1,168,243,166,-1,168,229,243,-1,239,268,209,-1,239,193,268,-1,231,172,17,-1,53,172,231,-1,65,180,73,-1,180,65,179,-1,246,105,283,-1,244,105,246,-1,251,180,178,-1,251,85,180,-1,284,181,250,-1,284,182,181,-1,248,52,182,-1,52,248,227,-1,285,89,166,-1,88,89,285,-1,283,176,246,-1,283,177,176,-1,250,285,284,-1,250,88,285,-1,218,267,279,-1,218,103,267,-1,192,137,194,-1,138,137,192,-1,267,194,137,-1,267,266,194,-1,284,247,245,-1,284,285,247,-1,245,182,284,-1,245,248,182,-1,285,243,247,-1,285,166,243,-1,178,253,251,-1,253,178,177,-1,71,180,85,-1,71,73,180,-1,177,286,253,-1,283,286,177,-1,210,283,105,-1,210,286,283,-1,227,53,52,-1,53,227,64,-1,172,173,66,-1,173,172,63,-1,209,174,239,-1,174,209,173,-1,193,170,191,-1,170,193,239,-1,244,106,105,-1,228,106,244,-1,229,224,230,-1,229,168,224,-1,163,161,249,-1,163,165,161,-1,187,37,234,-1,187,35,37,-1,275,162,265,-1,275,152,162,-1,13,104,32,-1,184,104,13,-1,282,153,252,-1,153,282,154,-1,254,146,220,-1,146,254,280,-1,281,126,272,-1,281,278,126,-1,143,271,270,-1,143,140,271,-1,238,98,101,-1,238,276,98,-1,280,139,146,-1,279,139,280,-1,217,26,25,-1,26,217,216,-1,7,29,51,-1,7,27,29,-1,281,142,8,-1,281,140,142,-1,142,273,144,-1,142,141,273,-1,143,277,141,-1,143,276,277,-1,0,274,277,-1,0,2,274,-1,273,265,159,-1,274,265,273,-1,212,236,41,-1,212,263,236,-1,7,186,185,-1,186,7,9,-1,137,279,267,-1,139,279,137,-1,132,49,48,-1,131,49,132,-1,128,133,130,-1,133,128,127,-1,149,131,147,-1,149,49,131,-1,222,23,94,-1,222,91,23,-1,125,272,126,-1,125,260,272,-1,259,270,271,-1,269,270,259,-1,242,123,257,-1,123,242,124,-1,122,256,255,-1,121,256,122,-1,120,261,262,-1,119,261,120,-1,93,117,219,-1,117,92,118,-1,93,92,117,-1,258,110,109,-1,110,258,116,-1,110,211,108,-1,115,211,110,-1,155,78,76,-1,78,155,196,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpphal2_Geo_5_83_coordIndex_3()
		{
			int[] value = {264,199,263,-1,264,241,199,-1,1,135,39,-1,1,237,135,-1,268,104,184,-1,268,266,104,-1,202,145,136,-1,145,202,201,-1,41,275,2,-1,275,41,236,-1,109,269,259,-1,269,109,108,-1,125,258,260,-1,125,219,258,-1,108,99,269,-1,99,108,211,-1,208,233,100,-1,233,208,207,-1,132,255,130,-1,132,257,255,-1,262,213,129,-1,213,262,261,-1,23,93,90,-1,23,91,93,-1,195,286,210,-1,282,286,195,-1,226,77,230,-1,77,226,80,-1,286,252,253,-1,286,282,252,-1,189,88,250,-1,88,189,60,-1,85,198,86,-1,85,251,198,-1,15,54,231,-1,54,15,156,-1,65,70,62,-1,65,73,70,-1,226,249,80,-1,226,163,249,-1,248,176,175,-1,248,245,176,-1,247,244,246,-1,247,243,244,-1,278,8,51,-1,278,281,8,-1,124,111,113,-1,124,242,111,-1,205,44,134,-1,205,42,44,-1,264,138,192,-1,264,240,138,-1,192,241,264,-1,192,191,241,-1,171,70,72,-1,174,70,171,-1,47,39,135,-1,39,47,40,-1,37,164,69,-1,38,164,37,-1,9,36,186,-1,144,36,9,-1,97,33,24,-1,33,97,22,-1,204,100,233,-1,204,101,100,-1,0,237,1,-1,0,238,237,-1,12,19,18,-1,12,11,19,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal3_Geo_5_88_coordIndex_2()
		{
			int[] value = {243,269,147,-1,269,243,270,-1,244,270,243,-1,244,271,270,-1,272,143,146,-1,143,272,273,-1,274,275,276,-1,220,275,274,-1,277,259,278,-1,277,258,259,-1,259,237,276,-1,235,237,259,-1,62,274,76,-1,62,59,274,-1,265,106,279,-1,106,265,267,-1,219,69,280,-1,70,69,219,-1,281,206,135,-1,209,206,281,-1,69,282,280,-1,69,208,282,-1,208,283,282,-1,208,207,283,-1,277,284,285,-1,284,277,283,-1,284,272,285,-1,284,250,272,-1,284,213,250,-1,284,211,213,-1,212,246,210,-1,286,246,212,-1,287,271,288,-1,287,270,271,-1,216,249,214,-1,216,288,249,-1,289,270,287,-1,270,289,269,-1,37,43,74,-1,39,43,37,-1,201,290,124,-1,290,201,203,-1,204,291,202,-1,292,291,204,-1,199,293,233,-1,293,199,200,-1,72,294,289,-1,40,294,72,-1,232,294,230,-1,232,268,294,-1,266,291,264,-1,291,266,293,-1,264,292,263,-1,292,264,291,-1,175,93,94,-1,175,186,93,-1,176,186,175,-1,176,187,186,-1,281,176,286,-1,176,281,187,-1,226,295,229,-1,226,296,295,-1,86,132,88,-1,86,160,132,-1,95,116,87,-1,95,117,116,-1,89,130,16,-1,89,131,130,-1,227,131,89,-1,227,114,131,-1,257,37,255,-1,38,37,257,-1,160,257,132,-1,160,38,257,-1,74,255,37,-1,255,74,73,-1,132,163,133,-1,257,163,132,-1,142,297,247,-1,142,141,297,-1,290,7,298,-1,8,7,290,-1,96,298,7,-1,96,125,298,-1,123,127,129,-1,127,123,122,-1,153,82,85,-1,153,129,82,-1,295,1,151,-1,295,174,1,-1,83,171,128,-1,2,171,83,-1,171,254,128,-1,171,173,254,-1,253,223,222,-1,253,299,223,-1,299,161,223,-1,161,299,119,-1,172,295,296,-1,295,172,174,-1,167,252,21,-1,167,166,252,-1,205,150,154,-1,205,121,150,-1,121,201,124,-1,121,205,201,-1,21,91,90,-1,21,252,91,-1,252,225,91,-1,252,251,225,-1,168,119,299,-1,168,165,119,-1,254,222,81,-1,254,253,222,-1,80,254,81,-1,80,128,254,-1,125,22,126,-1,96,22,125,-1,123,153,149,-1,123,129,153,-1,125,122,298,-1,125,127,122,-1,298,124,290,-1,298,122,124,-1,149,121,123,-1,150,121,149,-1,165,120,119,-1,120,165,13,-1,297,179,164,-1,177,179,297,-1,162,141,140,-1,162,181,141,-1,164,247,297,-1,163,247,164,-1,248,163,256,-1,248,247,163,-1,286,142,246,-1,286,176,142,-1,160,36,38,-1,159,36,160,-1,130,95,16,-1,95,130,117,-1,134,88,132,-1,134,17,88,-1,188,136,152,-1,188,137,136,-1,152,185,188,-1,185,152,148,-1,221,263,292,-1,221,218,263,-1,266,233,293,-1,233,266,231,-1,289,268,269,-1,294,268,289,-1,40,230,294,-1,230,40,42,-1,293,202,291,-1,293,200,202,-1,155,292,204,-1,221,292,155,-1,92,290,203,-1,290,92,8,-1,289,75,72,-1,75,289,287,-1,288,75,287,-1,216,75,288,-1,288,273,249,-1,273,288,271,-1,256,217,248,-1,256,215,217,-1,283,211,284,-1,207,211,283,-1,273,250,249,-1,250,273,272,-1,209,286,212,-1,281,286,209,-1,283,278,282,-1,283,277,278,-1,275,282,278,-1,282,275,280,-1,71,135,206,-1,135,71,138,-1,280,220,219,-1,280,275,220,-1,300,279,65,-1,265,279,300,-1,60,267,61,-1,106,267,60,-1,76,276,237,-1,76,274,276,-1,285,258,277,-1,245,258,285,-1,276,278,259,-1,275,278,276,-1,146,285,272,-1,146,245,285,-1,273,244,143,-1,244,273,271,-1,268,147,269,-1,68,147,268,-1,65,261,63,-1,65,279,261,-1,265,231,266,-1,265,300,231,-1,61,264,263,-1,61,267,264,-1,56,195,198,-1,195,56,55,-1,108,234,194,-1,77,234,108,-1,109,105,104,-1,105,109,262,-1,193,63,261,-1,63,193,192,-1,103,157,101,-1,103,260,157,-1,191,241,156,-1,239,241,191,-1,197,190,189,-1,197,238,190,-1,251,226,225,-1,296,226,251,-1,73,256,255,-1,256,73,215,-1,170,299,253,-1,170,168,299,-1,296,169,172,-1,169,296,251,-1,228,115,224,-1,228,118,115,-1,151,229,295,-1,151,24,229,-1,248,210,246,-1,217,210,248,-1,245,100,258,-1,245,99,100,-1,242,243,240,-1,244,243,242,-1,237,77,76,-1,77,237,234,-1,105,279,106,-1,105,261,279,-1,102,241,240,-1,101,241,102,-1,239,144,242,-1,239,238,144,-1,197,99,145,-1,197,97,99,-1,100,236,235,-1,100,98,236,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpphal3_Geo_5_88_coordIndex_3()
		{
			int[] value = {6,159,3,-1,159,6,36,-1,177,141,181,-1,177,297,141,-1,300,232,231,-1,300,66,232,-1,230,199,233,-1,199,230,42,-1,36,9,39,-1,9,36,6,-1,229,224,226,-1,228,224,229,-1,227,91,225,-1,227,89,91,-1,17,87,88,-1,17,95,87,-1,2,82,0,-1,82,2,83,-1,81,183,78,-1,183,81,222,-1,184,223,161,-1,184,182,223,-1,59,220,274,-1,59,218,220,-1,74,40,72,-1,43,40,74,-1,216,73,75,-1,216,215,73,-1,213,217,214,-1,213,210,217,-1,207,212,211,-1,207,209,212,-1,71,208,69,-1,208,71,206,-1,202,205,204,-1,202,201,205,-1,203,199,92,-1,200,199,203,-1,98,196,236,-1,98,195,196,-1,198,98,97,-1,198,195,98,-1,103,64,63,-1,64,103,67,-1,65,66,300,-1,64,66,65,-1,104,62,77,-1,62,104,60,-1,196,49,194,-1,196,158,49,-1,44,108,45,-1,109,108,44,-1,58,193,262,-1,58,51,193,-1,50,260,192,-1,260,50,57,-1,52,190,191,-1,190,52,54,-1,53,198,189,-1,198,53,56,-1,260,48,157,-1,57,48,260,-1,262,44,58,-1,44,262,109,-1,39,41,43,-1,39,9,41,-1,135,187,281,-1,135,137,187,-1,188,93,186,-1,188,185,93,-1,29,32,27,-1,29,30,32,-1,33,107,10,-1,33,31,107,-1,139,182,184,-1,139,112,182,-1,183,110,78,-1,111,110,183,-1,79,26,28,-1,34,26,79,-1,21,14,167,-1,21,20,14,-1,178,14,20,-1,15,14,178,-1,94,140,175,-1,140,94,162,-1,134,178,18,-1,179,178,134,-1,15,181,180,-1,181,15,177,-1,2,174,171,-1,174,2,1,-1,170,172,169,-1,170,173,172,-1,13,167,14,-1,13,165,167,-1,13,180,120,-1,15,180,13,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal4_Geo_5_93_coordIndex_2()
		{
			int[] value = {252,177,253,-1,252,178,177,-1,194,256,192,-1,254,256,194,-1,179,257,256,-1,257,179,258,-1,99,257,258,-1,257,99,259,-1,97,100,96,-1,97,240,100,-1,260,196,259,-1,202,196,260,-1,200,260,226,-1,202,260,200,-1,77,101,98,-1,77,78,101,-1,261,262,263,-1,261,264,262,-1,75,265,266,-1,265,75,230,-1,267,264,268,-1,267,266,264,-1,261,235,269,-1,235,261,234,-1,270,269,271,-1,270,268,269,-1,267,72,74,-1,267,272,72,-1,40,271,237,-1,40,43,271,-1,271,273,270,-1,271,43,273,-1,249,59,274,-1,59,249,62,-1,153,238,154,-1,275,238,153,-1,104,273,243,-1,104,152,273,-1,69,199,67,-1,199,69,197,-1,221,195,276,-1,221,193,195,-1,63,274,59,-1,63,66,274,-1,160,275,219,-1,160,238,275,-1,104,167,105,-1,243,167,104,-1,81,150,277,-1,150,81,80,-1,248,278,85,-1,248,277,278,-1,278,129,279,-1,130,129,278,-1,183,279,129,-1,183,182,279,-1,142,181,144,-1,142,149,181,-1,149,240,97,-1,149,148,240,-1,229,86,22,-1,241,86,229,-1,37,147,187,-1,108,147,37,-1,190,111,132,-1,190,112,111,-1,26,39,29,-1,39,26,109,-1,25,145,24,-1,25,146,145,-1,280,145,120,-1,280,281,145,-1,265,227,281,-1,227,265,230,-1,280,263,262,-1,280,282,263,-1,232,282,82,-1,232,263,282,-1,119,79,117,-1,79,119,20,-1,122,127,123,-1,122,115,127,-1,127,89,128,-1,115,89,127,-1,283,127,126,-1,123,127,283,-1,87,142,134,-1,88,142,87,-1,284,2,1,-1,284,285,2,-1,189,286,125,-1,188,286,189,-1,126,287,283,-1,126,288,287,-1,140,287,136,-1,140,186,287,-1,288,136,287,-1,136,288,137,-1,137,286,169,-1,137,288,286,-1,186,283,287,-1,186,173,283,-1,288,125,286,-1,288,126,125,-1,188,169,286,-1,169,188,170,-1,139,169,34,-1,137,169,139,-1,131,113,30,-1,114,113,131,-1,285,129,2,-1,285,183,129,-1,123,173,121,-1,123,283,173,-1,125,38,189,-1,125,128,38,-1,38,89,36,-1,38,128,89,-1,289,115,122,-1,289,116,115,-1,20,289,18,-1,20,119,289,-1,117,82,282,-1,82,117,79,-1,119,116,289,-1,119,118,116,-1,282,120,117,-1,280,120,282,-1,262,281,280,-1,281,262,265,-1,24,281,227,-1,145,281,24,-1,90,118,146,-1,90,116,118,-1,76,146,25,-1,76,90,146,-1,147,190,187,-1,147,112,190,-1,39,108,37,-1,39,109,108,-1,239,229,228,-1,239,241,229,-1,95,149,97,-1,95,181,149,-1,290,182,180,-1,290,279,182,-1,85,279,290,-1,278,279,85,-1,277,130,278,-1,150,130,277,-1,277,233,81,-1,248,233,277,-1,159,42,41,-1,159,165,42,-1,274,219,275,-1,66,219,274,-1,221,61,193,-1,221,191,61,-1,197,276,195,-1,69,276,197,-1,203,223,201,-1,223,203,222,-1,42,273,43,-1,42,243,273,-1,153,274,275,-1,249,274,153,-1,250,60,62,-1,255,60,250,-1,270,152,272,-1,270,273,152,-1,151,272,152,-1,272,151,72,-1,268,272,267,-1,270,272,268,-1,237,269,235,-1,237,271,269,-1,264,269,268,-1,269,264,261,-1,74,266,267,-1,266,74,75,-1,262,266,265,-1,264,266,262,-1,263,234,261,-1,234,263,232,-1,101,226,260,-1,226,101,78,-1,98,228,77,-1,228,98,239,-1,259,101,260,-1,99,101,259,-1,240,98,100,-1,239,98,240,-1,258,100,99,-1,258,96,100,-1,259,198,257,-1,198,259,196,-1,96,179,94,-1,179,96,258,-1,192,257,198,-1,257,192,256,-1,180,252,290,-1,180,178,252,-1,255,177,254,-1,255,253,177,-1,253,250,251,-1,253,255,250,-1,290,83,85,-1,290,252,83,-1,245,251,250,-1,245,246,251,-1,244,84,246,-1,84,244,247,-1,244,231,247,-1,244,236,231,-1,156,249,153,-1,245,249,156,-1,91,65,64,-1,215,65,91,-1,220,213,161,-1,220,216,213,-1,212,164,214,-1,166,164,212,-1,162,211,210,-1,162,218,211,-1,49,207,204,-1,48,207,49,-1,70,209,68,-1,70,208,209,-1,157,242,217,-1,157,158,242,-1,246,83,251,-1,246,84,83,-1,241,88,86,-1,241,148,88,-1,237,154,40,-1,237,155,154,-1,234,236,235,-1,234,231,236,-1,82,233,232,-1,82,81,233,-1,19,79,20,-1,19,80,79,-1,228,75,77,-1,75,228,230,-1,229,24,227,-1,229,22,24,-1,78,73,226,-1,78,71,73,-1,225,222,203,-1,222,225,163,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpphal4_Geo_5_93_coordIndex_3()
		{
			int[] value = {72,224,73,-1,72,151,224,-1,102,225,103,-1,225,102,163,-1,69,242,276,-1,69,68,242,-1,223,70,67,-1,223,205,70,-1,158,276,242,-1,276,158,221,-1,92,63,191,-1,92,64,63,-1,66,220,219,-1,66,65,220,-1,159,238,160,-1,238,159,41,-1,93,168,58,-1,93,157,168,-1,57,215,91,-1,56,215,57,-1,54,216,55,-1,54,213,216,-1,52,214,53,-1,52,212,214,-1,51,210,211,-1,50,210,51,-1,207,47,208,-1,47,207,48,-1,209,44,217,-1,44,209,45,-1,224,203,200,-1,224,225,203,-1,202,199,196,-1,202,201,199,-1,195,198,197,-1,198,195,192,-1,193,60,194,-1,193,61,60,-1,201,67,199,-1,223,67,201,-1,190,170,188,-1,190,132,170,-1,37,189,38,-1,37,187,189,-1,135,30,32,-1,131,30,135,-1,22,31,23,-1,86,31,22,-1,122,18,289,-1,122,124,18,-1,176,138,172,-1,0,138,176,-1,124,21,18,-1,124,184,21,-1,19,17,15,-1,19,106,17,-1,17,13,16,-1,13,17,14,-1,107,5,133,-1,5,107,6,-1,185,7,175,-1,7,185,8,-1,10,184,174,-1,9,184,10,-1,12,106,21,-1,11,106,12,-1,141,171,33,-1,141,284,171,-1,183,143,144,-1,285,143,183,-1,95,178,180,-1,95,94,178,-1,254,179,256,-1,179,254,177,-1,143,284,141,-1,284,143,285,-1,1,171,284,-1,1,172,171,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal5_Geo_5_98_coordIndex_2()
		{
			int[] value = {154,273,274,-1,275,273,154,-1,234,276,277,-1,155,276,234,-1,140,240,19,-1,140,95,240,-1,98,10,9,-1,98,132,10,-1,17,210,216,-1,17,241,210,-1,198,278,203,-1,198,279,278,-1,280,281,282,-1,280,283,281,-1,137,215,217,-1,137,135,215,-1,177,88,178,-1,177,139,88,-1,284,201,285,-1,207,201,284,-1,147,286,287,-1,288,286,147,-1,31,289,246,-1,32,289,31,-1,165,259,257,-1,41,259,165,-1,62,72,290,-1,62,69,72,-1,141,108,291,-1,141,119,108,-1,267,106,292,-1,106,267,268,-1,289,281,81,-1,289,287,281,-1,268,109,106,-1,268,269,109,-1,293,145,294,-1,144,145,293,-1,295,277,276,-1,295,296,277,-1,190,205,297,-1,190,189,205,-1,203,285,201,-1,285,203,278,-1,271,298,200,-1,298,271,157,-1,299,71,291,-1,299,273,71,-1,300,5,7,-1,300,164,5,-1,82,19,20,-1,82,140,19,-1,239,139,177,-1,139,239,76,-1,151,90,89,-1,90,151,182,-1,91,173,92,-1,91,183,173,-1,95,233,240,-1,95,94,233,-1,199,211,197,-1,211,199,212,-1,143,221,218,-1,143,271,221,-1,241,213,210,-1,241,13,213,-1,208,137,206,-1,136,137,208,-1,134,223,222,-1,223,134,136,-1,223,131,128,-1,223,209,131,-1,301,302,96,-1,301,226,302,-1,227,296,187,-1,277,296,227,-1,186,296,294,-1,187,296,186,-1,145,218,225,-1,218,145,143,-1,228,184,224,-1,184,228,231,-1,157,303,298,-1,157,159,303,-1,286,278,282,-1,285,278,286,-1,284,304,297,-1,284,288,304,-1,124,156,188,-1,156,124,154,-1,295,274,305,-1,295,276,274,-1,305,293,295,-1,305,127,293,-1,49,115,169,-1,115,49,48,-1,270,242,306,-1,242,270,243,-1,303,283,280,-1,283,303,85,-1,57,270,306,-1,57,50,270,-1,22,170,266,-1,22,56,170,-1,113,254,265,-1,254,113,111,-1,66,53,67,-1,52,53,66,-1,51,66,161,-1,51,52,66,-1,158,109,269,-1,126,109,158,-1,299,127,305,-1,127,299,107,-1,304,172,307,-1,172,304,146,-1,146,288,147,-1,146,304,288,-1,246,81,80,-1,246,289,81,-1,63,29,162,-1,29,63,149,-1,25,153,33,-1,25,58,153,-1,125,290,123,-1,290,125,195,-1,275,290,72,-1,275,123,290,-1,292,118,47,-1,292,119,118,-1,115,112,113,-1,112,115,117,-1,272,250,308,-1,250,272,35,-1,152,165,309,-1,165,152,42,-1,247,45,244,-1,194,45,247,-1,168,99,252,-1,168,260,99,-1,257,309,165,-1,261,309,257,-1,275,124,123,-1,124,275,154,-1,260,101,99,-1,260,258,101,-1,261,251,309,-1,261,167,251,-1,1,258,2,-1,258,1,101,-1,309,34,152,-1,309,251,34,-1,250,262,308,-1,250,166,262,-1,272,300,249,-1,308,300,272,-1,308,164,300,-1,308,262,164,-1,291,107,299,-1,108,107,291,-1,46,292,47,-1,292,46,267,-1,58,43,153,-1,58,114,43,-1,31,244,28,-1,31,247,244,-1,282,287,286,-1,281,287,282,-1,50,161,270,-1,51,161,50,-1,100,252,99,-1,252,100,255,-1,53,264,67,-1,54,264,53,-1,264,55,253,-1,54,55,264,-1,253,23,256,-1,253,55,23,-1,171,57,306,-1,163,57,171,-1,78,148,79,-1,78,84,148,-1,303,87,85,-1,303,159,87,-1,0,68,37,-1,0,192,68,-1,113,169,115,-1,113,265,169,-1,127,144,293,-1,127,126,144,-1,126,142,144,-1,126,158,142,-1,190,124,188,-1,190,307,124,-1,297,307,190,-1,297,304,307,-1,280,298,303,-1,280,279,298,-1,185,231,230,-1,185,184,231,-1,213,12,232,-1,213,13,12,-1,225,294,145,-1,186,294,225,-1,226,230,302,-1,185,230,226,-1,227,301,235,-1,226,301,227,-1,96,130,301,-1,96,9,130,-1,136,209,223,-1,136,208,209,-1,18,216,215,-1,216,18,17,-1,200,221,271,-1,197,221,200,-1,204,214,202,-1,204,217,214,-1,174,92,173,-1,93,92,174,-1,183,90,182,-1,91,90,183,-1,89,238,150,-1,89,77,238,-1,178,83,176,-1,88,83,178,-1,273,305,274,-1,273,299,305,-1,249,7,73,-1,249,300,7,-1,200,279,198,-1,279,200,298,-1,207,297,205,-1,297,207,284,-1,236,188,156,-1,236,191,188,-1,295,294,296,-1,293,294,295,-1,283,84,78,-1,283,85,84,-1,108,292,106,-1,108,119,292,-1,70,291,71,-1,70,141,291,-1,122,194,247,-1,122,121,194,-1,32,287,289,-1,147,287,32,-1,285,288,284,-1,285,286,288,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpphal5_Geo_5_98_coordIndex_3()
		{
			int[] value = {217,206,137,-1,217,204,206,-1,20,83,82,-1,83,20,176,-1,192,160,68,-1,245,160,192,-1,81,283,78,-1,281,283,81,-1,282,279,280,-1,278,279,282,-1,212,202,214,-1,212,199,202,-1,77,239,238,-1,77,76,239,-1,237,96,302,-1,237,97,96,-1,244,44,162,-1,244,45,44,-1,274,155,154,-1,274,276,155,-1,273,72,71,-1,72,273,275,-1,272,36,35,-1,272,263,36,-1,130,235,301,-1,129,235,130,-1,46,242,267,-1,306,242,46,-1,87,268,86,-1,87,269,268,-1,46,171,306,-1,171,46,49,-1,254,266,265,-1,266,254,256,-1,67,100,38,-1,264,100,67,-1,248,105,263,-1,105,248,104,-1,114,44,43,-1,114,102,44,-1,259,3,2,-1,3,259,193,-1,110,262,166,-1,112,262,110,-1,258,261,257,-1,258,260,261,-1,45,40,39,-1,194,40,45,-1,111,255,254,-1,111,252,255,-1,35,251,250,-1,35,34,251,-1,59,104,248,-1,61,104,59,-1,122,80,245,-1,80,122,246,-1,79,243,160,-1,148,243,79,-1,27,149,195,-1,149,27,29,-1,290,149,62,-1,290,195,149,-1,36,25,33,-1,26,25,36,-1,256,22,266,-1,23,22,256,-1,19,241,17,-1,241,19,240,-1,238,132,98,-1,132,238,239,-1,151,97,237,-1,151,150,97,-1,235,277,227,-1,234,277,235,-1,229,224,220,-1,224,229,228,-1,232,16,229,-1,12,16,232,-1,13,196,11,-1,13,233,196,-1,302,180,237,-1,180,302,230,-1,15,231,228,-1,15,181,231,-1,130,8,128,-1,130,9,8,-1,131,236,129,-1,191,236,131,-1,220,225,218,-1,220,224,225,-1,219,197,211,-1,219,221,197,-1,216,212,214,-1,212,216,210,-1,232,211,213,-1,219,211,232,-1,208,189,209,-1,205,189,208,-1,204,207,206,-1,201,207,204,-1,199,203,202,-1,198,203,199,-1,18,135,175,-1,18,215,135,-1,222,179,134,-1,133,179,222,-1,12,14,16,-1,11,14,12,-1,8,133,222,-1,8,10,133,-1,120,245,192,-1,245,120,122,-1,125,307,172,-1,307,125,124,-1,193,120,3,-1,193,121,120,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlhamate_Geo_5_103_coordIndex_2()
		{
			int[] value = {229,105,253,-1,11,158,12,-1,158,11,156,-1,40,254,70,-1,40,255,254,-1,187,176,185,-1,6,176,187,-1,130,245,110,-1,130,256,245,-1,214,257,113,-1,214,133,257,-1,165,63,65,-1,164,63,165,-1,157,207,155,-1,157,208,207,-1,75,258,259,-1,258,75,234,-1,203,260,204,-1,203,233,260,-1,206,261,262,-1,261,206,218,-1,129,42,44,-1,42,129,215,-1,263,30,33,-1,263,264,30,-1,98,186,216,-1,96,186,98,-1,1,209,2,-1,152,209,1,-1,187,96,172,-1,96,187,186,-1,107,226,225,-1,107,108,226,-1,189,180,236,-1,181,180,189,-1,183,188,265,-1,183,182,188,-1,94,266,264,-1,94,184,266,-1,220,177,221,-1,178,177,220,-1,251,161,159,-1,201,161,251,-1,267,163,268,-1,267,164,163,-1,162,202,199,-1,202,162,198,-1,257,21,20,-1,257,133,21,-1,221,33,219,-1,33,221,263,-1,80,208,73,-1,80,206,208,-1,7,156,5,-1,157,156,7,-1,209,79,81,-1,209,153,79,-1,172,95,173,-1,172,96,95,-1,217,170,169,-1,170,217,269,-1,270,87,88,-1,270,121,87,-1,232,198,106,-1,198,232,202,-1,111,14,118,-1,111,13,14,-1,118,109,111,-1,118,127,109,-1,125,120,197,-1,125,128,120,-1,126,166,123,-1,166,126,167,-1,71,215,131,-1,215,71,42,-1,239,141,271,-1,141,239,212,-1,213,272,142,-1,213,143,272,-1,271,211,101,-1,211,271,272,-1,241,223,101,-1,241,54,223,-1,211,57,46,-1,57,211,145,-1,213,150,273,-1,140,150,213,-1,250,146,273,-1,240,146,250,-1,210,274,154,-1,160,274,210,-1,83,3,2,-1,83,85,3,-1,262,207,206,-1,262,259,207,-1,252,234,253,-1,234,252,258,-1,205,261,274,-1,205,204,261,-1,260,76,75,-1,233,76,260,-1,201,205,161,-1,201,200,205,-1,202,203,200,-1,202,232,203,-1,268,135,137,-1,268,163,135,-1,267,68,67,-1,267,104,68,-1,103,275,230,-1,104,275,103,-1,275,137,138,-1,275,268,137,-1,97,86,84,-1,97,171,86,-1,34,269,217,-1,34,37,269,-1,98,171,97,-1,98,169,171,-1,47,121,270,-1,47,49,121,-1,192,256,243,-1,192,245,256,-1,172,6,187,-1,172,4,6,-1,226,246,227,-1,226,276,246,-1,243,248,244,-1,243,256,248,-1,266,36,35,-1,266,265,36,-1,264,35,30,-1,264,266,35,-1,265,41,36,-1,265,188,41,-1,237,225,228,-1,236,225,237,-1,276,222,246,-1,276,220,222,-1,170,117,168,-1,170,254,117,-1,0,49,58,-1,121,49,0,-1,217,31,34,-1,31,217,216,-1,38,269,37,-1,38,70,269,-1,171,91,86,-1,171,168,91,-1,138,230,275,-1,138,22,230,-1,104,268,275,-1,104,267,268,-1,164,67,63,-1,164,267,67,-1,53,199,51,-1,53,162,199,-1,262,75,259,-1,260,75,262,-1,161,274,160,-1,205,274,161,-1,234,229,253,-1,74,229,234,-1,158,258,252,-1,258,158,155,-1,218,274,261,-1,218,154,274,-1,60,146,240,-1,144,146,60,-1,273,52,250,-1,273,150,52,-1,140,151,150,-1,139,151,140,-1,148,165,235,-1,148,147,165,-1,143,273,146,-1,213,273,143,-1,224,271,101,-1,271,224,239,-1,143,211,272,-1,211,143,145,-1,142,271,141,-1,142,272,271,-1,19,249,20,-1,249,19,231,-1,135,149,136,-1,135,147,149,-1,238,20,249,-1,257,20,238,-1,123,247,124,-1,123,166,247,-1,197,126,125,-1,167,126,197,-1,128,118,120,-1,128,127,118,-1,28,166,23,-1,28,247,166,-1,242,9,27,-1,10,9,242,-1,10,14,12,-1,242,14,10,-1,255,117,254,-1,255,116,117,-1,195,88,90,-1,270,88,195,-1,197,119,26,-1,119,197,120,-1,111,190,13,-1,190,111,191,-1,90,194,195,-1,45,194,90,-1,113,132,214,-1,113,115,132,-1,233,106,76,-1,106,233,232,-1,106,64,66,-1,106,198,64,-1,51,201,251,-1,51,199,201,-1,179,220,276,-1,179,178,220,-1,221,92,263,-1,92,221,177,-1,184,265,266,-1,184,183,265,-1,188,181,189,-1,182,181,188,-1,236,107,225,-1,180,107,236,-1,108,276,226,-1,108,179,276,-1,2,81,83,-1,209,81,2,-1,263,94,264,-1,263,92,94,-1,89,45,90,-1,89,43,45,-1,86,88,87,-1,86,91,88,-1,85,84,86,-1,83,84,85,-1,81,78,82,-1,79,78,81,-1,204,262,261,-1,204,260,262,-1,155,259,258,-1,155,207,259,-1,208,7,73,-1,7,208,157,-1,113,238,114,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlhamate_Geo_5_103_coordIndex_3()
		{
			int[] value = {113,257,238,-1,110,191,111,-1,110,245,191,-1,256,44,248,-1,44,256,130,-1,70,170,269,-1,70,254,170,-1,5,11,174,-1,156,11,5,-1,10,253,8,-1,252,253,10,-1,68,229,69,-1,68,105,229,-1,66,63,67,-1,64,63,66,-1,62,235,65,-1,62,53,235,-1,57,1,58,-1,1,57,61,-1,231,212,249,-1,231,17,212,-1,52,251,250,-1,251,52,51,-1,39,255,40,-1,244,255,39,-1,244,116,255,-1,244,248,116,-1,222,185,176,-1,219,185,222,-1,34,30,35,-1,31,30,34,-1,219,32,185,-1,33,32,219,-1,22,28,23,-1,22,29,28,-1,26,242,27,-1,119,242,26,-1,139,148,151,-1,148,139,149,-1,124,19,21,-1,19,124,247,-1,103,8,105,-1,102,8,103,-1,8,102,9,-1,196,270,195,-1,47,270,196,-1,11,190,174,-1,11,13,190,-1,227,175,193,-1,227,246,175,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlscphoid_Geo_5_108_coordIndex_2()
		{
			int[] value = {229,240,200,-1,229,228,240,-1,170,2,164,-1,3,2,170,-1,241,159,242,-1,159,241,185,-1,243,48,46,-1,48,243,49,-1,186,192,190,-1,186,244,192,-1,158,242,159,-1,158,245,242,-1,115,10,8,-1,115,218,10,-1,134,246,135,-1,134,247,246,-1,248,249,250,-1,251,249,248,-1,252,253,254,-1,255,253,252,-1,256,193,257,-1,256,236,193,-1,138,116,211,-1,138,15,116,-1,133,19,258,-1,133,18,19,-1,207,80,149,-1,207,259,80,-1,136,234,260,-1,136,212,234,-1,261,262,137,-1,263,262,261,-1,79,233,175,-1,79,231,233,-1,149,6,5,-1,80,6,149,-1,27,153,92,-1,26,153,27,-1,160,230,163,-1,160,264,230,-1,200,198,171,-1,200,240,198,-1,173,172,44,-1,172,173,76,-1,181,37,176,-1,194,37,181,-1,196,202,179,-1,196,237,202,-1,265,216,266,-1,216,265,215,-1,267,268,269,-1,268,267,270,-1,271,272,273,-1,271,274,272,-1,275,276,277,-1,275,278,276,-1,226,279,280,-1,279,226,225,-1,265,227,226,-1,227,265,270,-1,224,123,281,-1,224,124,123,-1,282,283,284,-1,285,283,282,-1,128,286,287,-1,130,286,128,-1,288,125,127,-1,288,223,125,-1,289,112,120,-1,222,112,289,-1,151,18,133,-1,151,26,18,-1,290,263,261,-1,263,290,291,-1,210,292,293,-1,292,210,97,-1,209,105,221,-1,220,105,209,-1,233,143,33,-1,143,233,294,-1,232,141,231,-1,141,232,139,-1,295,261,260,-1,290,261,295,-1,234,219,296,-1,234,24,219,-1,294,144,143,-1,294,297,144,-1,298,82,147,-1,298,83,82,-1,295,299,300,-1,296,299,295,-1,247,213,246,-1,301,213,247,-1,218,301,247,-1,218,302,301,-1,114,302,218,-1,114,113,302,-1,77,191,217,-1,77,78,191,-1,262,14,15,-1,262,118,14,-1,224,269,51,-1,267,269,224,-1,268,289,269,-1,268,273,289,-1,270,266,268,-1,266,270,265,-1,273,222,289,-1,273,272,222,-1,53,63,274,-1,53,55,63,-1,62,302,113,-1,62,64,302,-1,63,56,278,-1,55,56,63,-1,278,57,276,-1,278,56,57,-1,58,68,66,-1,58,59,68,-1,280,61,226,-1,60,61,280,-1,277,126,213,-1,65,126,277,-1,223,250,249,-1,223,288,250,-1,287,254,253,-1,286,254,287,-1,303,225,304,-1,279,225,303,-1,270,305,227,-1,270,267,305,-1,303,285,282,-1,303,304,285,-1,236,123,184,-1,283,123,236,-1,284,236,256,-1,236,284,283,-1,252,258,255,-1,252,235,258,-1,212,23,21,-1,212,136,23,-1,93,306,219,-1,93,221,306,-1,300,290,295,-1,300,293,290,-1,101,111,145,-1,102,111,101,-1,142,99,297,-1,99,142,98,-1,97,140,292,-1,97,96,140,-1,106,299,306,-1,107,299,106,-1,208,220,209,-1,220,208,104,-1,103,83,298,-1,89,83,103,-1,86,208,109,-1,86,87,208,-1,264,205,230,-1,45,205,264,-1,204,230,205,-1,204,228,230,-1,206,45,203,-1,206,205,45,-1,197,237,196,-1,237,197,238,-1,42,240,239,-1,42,198,240,-1,48,155,202,-1,155,48,154,-1,242,201,241,-1,162,201,242,-1,201,72,307,-1,201,73,72,-1,307,166,165,-1,166,307,72,-1,43,173,44,-1,43,178,173,-1,197,43,42,-1,43,197,39,-1,182,194,181,-1,195,194,182,-1,121,36,122,-1,36,121,195,-1,188,193,189,-1,257,193,188,-1,235,257,188,-1,235,252,257,-1,35,122,36,-1,35,184,122,-1,195,156,36,-1,182,156,195,-1,178,174,173,-1,178,177,174,-1,76,69,172,-1,76,75,69,-1,165,244,307,-1,165,192,244,-1,161,229,164,-1,163,229,161,-1,307,241,201,-1,307,244,241,-1,245,162,242,-1,160,162,245,-1,157,154,50,-1,154,157,34,-1,239,197,42,-1,197,239,238,-1,243,45,264,-1,45,243,46,-1,259,132,80,-1,132,259,152,-1,87,104,208,-1,88,104,87,-1,106,221,105,-1,221,106,306,-1,140,98,142,-1,98,140,96,-1,144,101,145,-1,101,144,100,-1,102,298,111,-1,102,103,298,-1,141,297,294,-1,297,141,142,-1,292,139,291,-1,292,140,139,-1,296,306,299,-1,219,306,296,-1,135,17,20,-1,135,251,17,-1,17,248,19,-1,248,17,251,-1,256,286,284,-1,256,254,286,-1,285,305,281,-1,285,304,305,-1,129,282,130,-1,303,282,129,-1,304,227,305,-1,225,227,304,-1,129,279,303,-1,67,279,129,-1,288,253,250,-1,288,287,253,-1,128,126,129,-1,127,126,128,-1,226,215,265,-1,61,215,226,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlscphoid_Geo_5_108_coordIndex_3()
		{
			int[] value = {68,60,280,-1,59,60,68,-1,57,66,276,-1,57,58,66,-1,301,277,213,-1,275,277,301,-1,302,275,301,-1,64,275,302,-1,113,272,62,-1,222,272,113,-1,267,281,305,-1,281,267,224,-1,137,15,138,-1,137,262,15,-1,217,117,77,-1,217,7,117,-1,7,120,112,-1,7,217,120,-1,246,223,249,-1,213,223,246,-1,107,300,299,-1,300,107,108,-1,111,147,29,-1,111,298,147,-1,297,100,144,-1,297,99,100,-1,84,109,110,-1,109,84,86,-1,296,260,234,-1,295,260,296,-1,263,139,232,-1,139,263,291,-1,294,231,141,-1,294,233,231,-1,33,95,31,-1,95,33,143,-1,108,293,300,-1,210,293,108,-1,83,88,87,-1,83,89,88,-1,207,82,85,-1,207,149,82,-1,293,291,290,-1,291,293,292,-1,255,19,248,-1,258,19,255,-1,77,12,11,-1,117,12,77,-1,269,120,51,-1,289,120,269,-1,71,0,3,-1,71,70,0,-1,287,127,128,-1,287,288,127,-1,130,284,286,-1,282,284,130,-1,283,281,123,-1,281,283,285,-1,67,280,279,-1,67,68,280,-1,276,65,277,-1,276,66,65,-1,64,278,275,-1,64,63,278,-1,274,62,272,-1,274,63,62,-1,266,273,268,-1,266,271,273,-1,216,271,266,-1,214,271,216,-1,214,274,271,-1,53,274,214,-1,44,171,198,-1,171,44,172,-1,243,160,245,-1,243,264,160,-1,50,158,157,-1,50,49,158,-1,92,152,110,-1,92,153,152,-1,168,5,4,-1,168,199,5,-1,262,232,118,-1,232,262,263,-1,260,137,136,-1,261,137,260,-1,259,110,152,-1,110,259,207,-1,199,1,0,-1,199,168,1,-1,235,133,258,-1,133,235,131,-1,254,257,252,-1,254,256,257,-1,250,255,248,-1,250,253,255,-1,135,249,251,-1,135,246,249,-1,134,218,247,-1,10,218,134,-1,241,186,185,-1,186,241,244,-1,192,81,190,-1,81,192,167,-1,245,49,243,-1,245,158,49,-1,6,167,4,-1,6,81,167,-1,200,164,229,-1,170,164,200,-1,228,239,240,-1,228,204,239,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getltrpzium_Geo_5_113_coordIndex_1()
		{
			int[] value = {0,1,2,-1,2,3,4,-1,2,1,3,-1,5,6,7,-1,5,8,9,-1,5,10,8,-1,10,5,7,-1,11,12,13,-1,14,15,16,-1,16,17,14,-1,18,19,20,-1,21,22,23,-1,22,24,23,-1,25,26,27,-1,28,29,30,-1,30,31,28,-1,32,33,34,-1,33,35,34,-1,36,37,38,-1,36,39,37,-1,40,41,42,-1,43,44,45,-1,46,47,48,-1,48,49,46,-1,47,46,50,-1,50,51,47,-1,52,53,54,-1,55,56,57,-1,58,59,60,-1,20,35,61,-1,62,63,24,-1,31,64,65,-1,42,41,66,-1,41,67,66,-1,68,69,70,-1,71,72,73,-1,74,75,76,-1,47,51,77,-1,78,79,80,-1,81,82,83,-1,83,84,81,-1,21,15,85,-1,86,25,27,-1,87,88,89,-1,90,91,92,-1,91,93,92,-1,94,95,84,-1,94,96,95,-1,97,98,99,-1,100,101,102,-1,102,103,100,-1,104,105,106,-1,107,108,109,-1,110,111,112,-1,110,113,111,-1,45,114,115,-1,116,117,118,-1,119,120,121,-1,119,108,120,-1,122,123,124,-1,125,126,127,-1,125,68,126,-1,128,129,130,-1,131,109,119,-1,109,108,119,-1,132,101,133,-1,132,134,101,-1,135,136,137,-1,135,138,136,-1,139,140,141,-1,139,142,140,-1,128,143,144,-1,128,130,143,-1,88,145,89,-1,88,146,145,-1,147,148,122,-1,39,149,37,-1,150,151,152,-1,153,8,10,-1,9,154,5,-1,9,155,154,-1,156,157,158,-1,159,157,160,-1,161,162,163,-1,163,164,161,-1,29,0,165,-1,166,167,168,-1,169,67,170,-1,35,33,26,-1,18,17,16,-1,28,62,29,-1,165,171,172,-1,173,53,174,-1,141,175,176,-1,175,177,176,-1,178,127,126,-1,56,74,179,-1,165,0,2,-1,180,181,182,-1,182,183,180,-1,87,86,88,-1,87,184,86,-1,185,186,187,-1,185,188,186,-1,189,190,191,-1,192,193,194,-1,34,195,196,-1,196,32,34,-1,162,161,99,-1,31,30,197,-1,144,198,199,-1,144,143,198,-1,200,142,198,-1,198,143,200,-1,165,97,29,-1,126,201,178,-1,114,168,202,-1,168,167,202,-1,195,34,19,-1,36,38,203,-1,135,204,205,-1,135,137,204,-1,7,69,206,-1,140,175,141,-1,140,207,175,-1,208,52,209,-1,161,164,210,-1,64,211,58,-1,63,212,213,-1,214,215,17,-1,216,40,97,-1,97,40,29,-1,22,21,217,-1,217,218,22,-1,219,72,220,-1,201,118,221,-1,222,223,224,-1,225,226,227,-1,228,104,152,-1,141,176,229,-1,229,139,141,-1,120,100,230,-1,230,121,120,-1,107,132,133,-1,200,143,231,-1,143,130,231,-1,232,148,147,-1,39,233,149,-1,39,234,233,-1,235,236,237,-1,238,208,209,-1,104,150,152,-1,167,166,161,-1,161,210,167,-1,112,103,102,-1,112,111,103,-1,133,108,107,-1,133,120,108,-1,239,240,115,-1,239,241,240,-1,242,230,103,-1,230,100,103,-1,102,101,243,-1,101,134,243,-1,244,162,245,-1,244,163,162,-1,245,98,172,-1,46,175,207,-1,207,50,46,-1,246,247,248,-1,249,250,251,-1,249,252,250,-1,253,195,19,-1,254,255,256,-1,48,205,257,-1,257,205,204,-1,79,194,193,-1,228,105,104,-1,258,105,228,-1,47,77,48,-1,259,260,224,-1,261,223,262,-1,263,264,265,-1,263,266,264,-1,18,214,17,-1,66,58,211,-1,42,197,30,-1,174,53,52,-1,52,208,174,-1,78,194,79,-1,54,267,268,-1,268,52,54,-1,36,269,39,-1,259,126,68,-1,201,261,270,-1,270,118,201,-1,213,60,19,-1,19,18,213,-1,30,40,42,-1,30,29,40,-1,271,272,273,-1,271,6,272,-1,70,259,68,-1,70,260,259,-1,274,275,276,-1,274,277,275,-1,39,278,234,-1,62,279,0,-1,17,185,14,-1,185,280,14,-1,62,0,29,-1,215,281,188,-1,281,282,188,-1,3,1,283,-1,284,186,285,-1,151,227,210,-1,210,227,167,-1,286,113,287,-1,288,289,290,-1,288,291,289,-1,113,292,287,-1,110,292,113,-1,80,293,294,-1,80,295,293,-1,296,297,298,-1,296,299,297,-1,300,258,228,-1,301,258,300,-1,150,302,225,-1,150,104,302,-1,303,304,305,-1,303,306,304,-1,153,7,206,-1,153,10,7,-1,228,307,300,-1,228,152,307,-1,307,151,210,-1,152,151,307,-1,306,192,127,-1,306,303,192,-1,1,279,283,-1,0,279,1,-1,308,187,309,-1,308,310,187,-1,186,282,285,-1,188,282,186,-1,215,61,281,-1,214,61,215,-1,24,279,62,-1,279,24,22,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getltrpzium_Geo_5_113_coordIndex_2()
		{
			int[] value = {311,33,32,-1,312,33,311,-1,196,313,314,-1,196,315,313,-1,316,317,318,-1,316,169,317,-1,319,170,320,-1,321,170,319,-1,274,278,277,-1,234,278,274,-1,322,275,323,-1,276,275,322,-1,324,325,43,-1,326,325,324,-1,325,327,328,-1,325,323,327,-1,275,329,330,-1,275,277,329,-1,269,278,39,-1,331,278,269,-1,320,332,319,-1,332,320,216,-1,333,334,335,-1,333,146,334,-1,145,269,36,-1,145,336,269,-1,337,43,45,-1,337,324,43,-1,338,118,270,-1,118,338,116,-1,70,271,260,-1,6,271,70,-1,272,339,273,-1,272,189,339,-1,147,128,232,-1,147,129,128,-1,31,212,28,-1,31,65,212,-1,20,34,35,-1,20,19,34,-1,259,201,126,-1,201,259,261,-1,191,339,189,-1,191,124,339,-1,340,232,128,-1,340,341,232,-1,342,157,343,-1,157,342,158,-1,254,246,255,-1,246,254,344,-1,155,345,154,-1,345,155,73,-1,209,268,346,-1,52,268,209,-1,235,230,347,-1,230,235,121,-1,348,74,286,-1,348,75,74,-1,349,350,351,-1,349,136,350,-1,352,136,349,-1,136,352,137,-1,73,353,71,-1,73,155,353,-1,119,238,131,-1,119,237,238,-1,354,55,242,-1,56,55,354,-1,48,355,49,-1,48,257,355,-1,80,193,295,-1,80,79,193,-1,208,356,174,-1,236,356,208,-1,235,357,358,-1,347,357,235,-1,42,211,197,-1,66,211,42,-1,265,321,319,-1,265,264,321,-1,359,266,263,-1,359,360,266,-1,338,326,324,-1,338,361,326,-1,270,262,362,-1,261,262,270,-1,259,223,261,-1,259,224,223,-1,78,153,194,-1,78,8,153,-1,173,363,220,-1,364,363,173,-1,365,366,367,-1,368,366,365,-1,369,370,371,-1,179,370,369,-1,287,372,373,-1,292,372,287,-1,291,374,375,-1,288,374,291,-1,376,96,94,-1,3,96,376,-1,22,283,279,-1,22,218,283,-1,105,297,377,-1,297,105,258,-1,295,378,299,-1,295,193,378,-1,379,342,343,-1,379,380,342,-1,381,273,339,-1,381,382,273,-1,383,384,385,-1,384,383,386,-1,387,274,276,-1,387,388,274,-1,251,389,249,-1,251,390,389,-1,313,391,392,-1,318,391,313,-1,156,345,219,-1,156,158,345,-1,393,394,395,-1,396,394,393,-1,397,398,399,-1,400,398,397,-1,401,138,402,-1,403,138,401,-1,351,404,349,-1,405,404,351,-1,406,407,408,-1,406,409,407,-1,410,95,217,-1,410,411,95,-1,412,184,91,-1,412,413,184,-1,90,182,181,-1,414,182,90,-1,229,415,416,-1,176,415,229,-1,417,49,355,-1,49,417,177,-1,418,48,77,-1,418,205,48,-1,51,256,419,-1,254,256,51,-1,195,315,196,-1,315,195,253,-1,420,251,250,-1,251,420,392,-1,329,252,249,-1,329,331,252,-1,421,352,422,-1,352,421,423,-1,246,424,425,-1,246,248,424,-1,246,426,247,-1,344,426,246,-1,177,46,49,-1,177,175,46,-1,144,340,128,-1,144,427,340,-1,13,284,180,-1,13,309,284,-1,245,171,428,-1,245,172,171,-1,162,98,245,-1,162,99,98,-1,419,429,430,-1,419,256,429,-1,244,134,163,-1,243,134,244,-1,357,369,368,-1,357,57,369,-1,240,45,115,-1,240,337,45,-1,239,431,241,-1,432,431,239,-1,101,120,133,-1,101,100,120,-1,114,239,115,-1,239,114,202,-1,118,433,221,-1,118,117,433,-1,227,202,167,-1,226,202,227,-1,432,225,302,-1,432,226,225,-1,233,434,149,-1,233,435,434,-1,436,387,437,-1,436,385,387,-1,438,306,439,-1,304,306,438,-1,296,131,346,-1,131,296,298,-1,356,365,364,-1,356,358,365,-1,395,440,160,-1,395,394,440,-1,424,441,190,-1,424,248,441,-1,435,148,434,-1,435,442,148,-1,406,11,443,-1,406,82,11,-1,198,139,444,-1,139,198,142,-1,182,445,183,-1,182,416,445,-1,375,83,408,-1,375,374,83,-1,243,446,447,-1,243,244,446,-1,164,307,210,-1,307,164,132,-1,447,102,243,-1,102,447,112,-1,393,220,363,-1,393,219,220,-1,440,256,255,-1,256,440,429,-1,430,418,419,-1,448,418,430,-1,57,179,369,-1,57,56,179,-1,372,408,407,-1,372,375,408,-1,414,92,444,-1,414,90,92,-1,199,444,92,-1,199,198,444,-1,449,385,436,-1,449,383,385,-1,232,434,148,-1,232,341,434,-1,437,276,322,-1,437,387,276,-1,390,450,389,-1,390,451,450,-1,300,132,107,-1,132,300,307,-1,298,109,131,-1,298,301,109,-1,127,439,306,-1,178,439,127,-1,293,346,268,-1,293,296,346,-1,117,337,240,-1,116,337,117,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getltrpzium_Geo_5_113_coordIndex_3()
		{
			int[] value = {442,381,123,-1,381,442,386,-1,380,154,342,-1,380,5,154,-1,86,146,88,-1,146,86,334,-1,282,26,25,-1,282,281,26,-1,85,14,280,-1,85,15,14,-1,11,180,183,-1,11,13,180,-1,310,411,410,-1,310,308,411,-1,84,374,94,-1,84,83,374,-1,311,420,335,-1,311,314,420,-1,391,451,390,-1,451,391,452,-1,318,452,391,-1,317,452,318,-1,281,35,26,-1,61,35,281,-1,60,64,58,-1,60,65,64,-1,367,397,396,-1,397,367,366,-1,416,453,445,-1,416,415,453,-1,174,364,173,-1,174,356,364,-1,348,405,351,-1,348,373,405,-1,453,422,454,-1,453,421,422,-1,247,455,456,-1,247,426,455,-1,379,190,189,-1,379,424,190,-1,382,271,273,-1,271,382,222,-1,289,112,447,-1,289,110,112,-1,54,173,71,-1,173,54,53,-1,2,171,165,-1,2,4,171,-1,166,99,161,-1,166,332,99,-1,331,336,252,-1,331,269,336,-1,328,450,360,-1,328,327,450,-1,58,67,169,-1,58,66,67,-1,433,431,438,-1,433,241,431,-1,106,377,305,-1,106,105,377,-1,203,457,89,-1,203,427,457,-1,455,142,200,-1,455,140,142,-1,50,426,344,-1,426,50,207,-1,426,140,455,-1,426,207,140,-1,427,199,457,-1,427,144,199,-1,36,89,145,-1,36,203,89,-1,178,221,439,-1,178,201,221,-1,23,63,213,-1,23,24,63,-1,6,69,7,-1,6,70,69,-1,129,231,130,-1,458,231,129,-1,389,327,330,-1,327,389,450,-1,217,96,218,-1,217,95,96,-1,280,410,85,-1,280,310,410,-1,285,25,413,-1,282,25,285,-1,73,219,345,-1,219,73,72,-1,284,413,412,-1,285,413,284,-1,446,459,290,-1,459,446,428,-1,354,113,286,-1,113,354,111,-1,370,403,401,-1,76,403,370,-1,222,260,271,-1,260,222,224,-1,248,456,441,-1,248,247,456,-1,415,421,453,-1,415,417,421,-1,454,404,409,-1,454,422,404,-1,242,111,354,-1,242,103,111,-1,445,454,443,-1,445,453,454,-1,371,401,400,-1,371,370,401,-1,309,186,284,-1,186,309,187,-1,59,19,60,-1,19,59,253,-1,169,59,58,-1,59,169,316,-1,317,264,452,-1,321,264,317,-1,452,266,451,-1,452,264,266,-1,335,250,333,-1,250,335,420,-1,165,98,97,-1,165,172,98,-1,244,428,446,-1,428,244,245,-1,82,12,11,-1,82,81,12,-1,185,215,188,-1,185,17,215,-1,87,91,184,-1,91,87,93,-1,27,334,86,-1,312,334,27,-1,124,381,339,-1,123,381,124,-1,156,160,157,-1,156,395,160,-1,5,272,6,-1,380,272,5,-1,383,222,382,-1,383,449,222,-1,353,294,267,-1,353,460,294,-1,193,303,378,-1,192,303,193,-1,431,304,438,-1,431,461,304,-1,360,451,266,-1,451,360,450,-1,252,333,250,-1,333,252,336,-1,388,234,274,-1,234,388,233,-1,437,326,361,-1,326,437,322,-1,384,442,435,-1,442,384,386,-1,362,449,436,-1,362,262,449,-1,458,456,231,-1,458,441,456,-1,38,427,203,-1,38,340,427,-1,456,200,231,-1,456,455,200,-1,93,89,457,-1,93,87,89,-1,443,409,406,-1,454,409,443,-1,76,350,403,-1,75,350,76,-1,448,398,402,-1,448,430,398,-1,394,429,440,-1,394,399,429,-1,358,368,365,-1,358,357,368,-1,448,205,418,-1,135,205,448,-1,402,135,448,-1,402,138,135,-1,238,236,208,-1,236,238,237,-1,163,132,164,-1,163,134,132,-1,447,290,289,-1,447,446,290,-1,443,183,445,-1,443,11,183,-1,444,229,414,-1,229,444,139,-1,449,223,222,-1,262,223,449,-1,123,148,442,-1,148,123,122,-1,191,441,458,-1,191,190,441,-1,255,160,440,-1,255,159,160,-1,363,396,393,-1,363,367,396,-1,378,305,377,-1,378,303,305,-1,439,433,438,-1,439,221,433,-1,361,436,437,-1,361,362,436,-1,388,435,233,-1,388,384,435,-1,434,37,149,-1,434,341,37,-1,226,239,202,-1,239,226,432,-1,433,240,241,-1,117,240,433,-1,373,407,405,-1,373,372,407,-1,301,107,109,-1,107,301,300,-1,432,461,431,-1,302,461,432,-1,366,400,397,-1,366,371,400,-1,332,97,99,-1,97,332,216,-1,399,430,429,-1,399,398,430,-1,4,428,171,-1,428,4,459,-1,308,81,411,-1,81,308,12,-1,180,412,181,-1,284,412,180,-1,92,457,199,-1,92,93,457,-1,422,349,404,-1,349,422,352,-1,425,379,343,-1,425,424,379,-1,421,355,423,-1,421,417,355,-1,314,392,420,-1,313,392,314,-1,77,419,418,-1,51,419,77,-1,176,417,415,-1,177,417,176,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getltrpzium_Geo_5_113_coordIndex_4()
		{
			int[] value = {416,414,229,-1,416,182,414,-1,181,91,90,-1,181,412,91,-1,184,25,86,-1,184,413,25,-1,217,85,410,-1,21,85,217,-1,411,84,95,-1,411,81,84,-1,82,408,83,-1,82,406,408,-1,409,405,407,-1,409,404,405,-1,403,136,138,-1,350,136,403,-1,402,400,401,-1,402,398,400,-1,396,399,394,-1,397,399,396,-1,219,395,156,-1,393,395,219,-1,316,253,59,-1,253,316,315,-1,392,390,251,-1,392,391,390,-1,249,330,329,-1,249,389,330,-1,385,388,387,-1,388,385,384,-1,386,382,381,-1,386,383,382,-1,189,380,379,-1,189,272,380,-1,299,377,297,-1,299,378,377,-1,218,3,283,-1,218,96,3,-1,94,288,376,-1,94,374,288,-1,292,375,372,-1,291,375,292,-1,286,373,348,-1,287,373,286,-1,179,76,370,-1,74,76,179,-1,368,371,366,-1,369,371,368,-1,364,367,363,-1,365,367,364,-1,220,71,173,-1,220,72,71,-1,155,460,353,-1,155,9,460,-1,125,69,68,-1,125,206,69,-1,338,362,361,-1,270,362,338,-1,44,360,359,-1,44,328,360,-1,320,67,41,-1,320,170,67,-1,64,197,211,-1,197,64,31,-1,28,63,62,-1,28,212,63,-1,213,16,23,-1,213,18,16,-1,347,57,357,-1,55,57,347,-1,236,358,356,-1,235,358,236,-1,267,293,268,-1,267,294,293,-1,286,56,354,-1,74,56,286,-1,121,237,119,-1,235,237,121,-1,255,425,159,-1,246,425,255,-1,159,343,157,-1,159,425,343,-1,257,423,355,-1,257,204,423,-1,423,137,352,-1,137,423,204,-1,75,351,350,-1,351,75,348,-1,347,242,55,-1,242,347,230,-1,238,346,131,-1,209,346,238,-1,71,267,54,-1,71,353,267,-1,154,158,342,-1,154,345,158,-1,51,344,254,-1,344,51,50,-1,124,458,122,-1,124,191,458,-1,114,44,359,-1,114,45,44,-1,265,168,263,-1,166,168,265,-1,37,340,38,-1,37,341,340,-1,122,129,147,-1,129,122,458,-1,116,324,337,-1,116,338,324,-1,359,168,114,-1,359,263,168,-1,336,146,333,-1,336,145,146,-1,335,312,311,-1,335,334,312,-1,213,65,60,-1,213,212,65,-1,41,216,320,-1,216,41,40,-1,265,332,166,-1,265,319,332,-1,331,277,278,-1,331,329,277,-1,323,330,327,-1,323,275,330,-1,328,43,325,-1,328,44,43,-1,326,323,325,-1,322,323,326,-1,169,321,317,-1,169,170,321,-1,315,318,313,-1,315,316,318,-1,32,314,311,-1,32,196,314,-1,26,312,27,-1,26,33,312,-1,16,21,23,-1,21,16,15,-1,20,214,18,-1,61,214,20,-1,187,280,185,-1,280,187,310,-1,12,309,13,-1,308,309,12,-1,153,125,194,-1,153,206,125,-1,106,302,104,-1,106,461,302,-1,78,294,460,-1,78,80,294,-1,194,127,192,-1,194,125,127,-1,106,304,461,-1,305,304,106,-1,151,225,227,-1,150,225,151,-1,298,258,301,-1,298,297,258,-1,295,296,293,-1,295,299,296,-1,8,460,9,-1,8,78,460,-1,3,459,4,-1,3,376,459,-1,291,110,289,-1,291,292,110,-1,376,290,459,-1,376,288,290,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getltrpzoid_Geo_5_118_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,19,21,20,-1,17,16,22,-1,23,24,25,-1,23,26,24,-1,9,27,28,-1,28,10,9,-1,29,30,31,-1,29,32,30,-1,33,34,35,-1,35,36,33,-1,1,37,2,-1,1,38,37,-1,39,40,17,-1,9,41,42,-1,9,11,41,-1,6,26,7,-1,26,23,7,-1,43,44,45,-1,46,43,47,-1,47,48,46,-1,38,1,49,-1,50,51,52,-1,53,25,2,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,60,63,61,-1,64,65,66,-1,64,67,65,-1,68,69,70,-1,71,72,73,-1,74,75,76,-1,76,77,74,-1,78,79,80,-1,81,36,82,-1,83,84,85,-1,85,86,83,-1,87,88,75,-1,75,89,87,-1,76,90,77,-1,90,91,77,-1,92,93,94,-1,92,21,93,-1,31,95,96,-1,31,97,95,-1,5,98,99,-1,5,100,3,-1,5,24,101,-1,2,37,53,-1,102,103,104,-1,102,105,103,-1,106,107,18,-1,67,108,109,-1,7,95,97,-1,110,111,109,-1,111,65,109,-1,111,112,65,-1,67,64,3,-1,64,113,3,-1,114,115,35,-1,35,34,114,-1,116,117,118,-1,117,19,118,-1,119,18,120,-1,68,71,121,-1,72,71,122,-1,123,71,124,-1,125,71,126,-1,127,71,128,-1,59,129,130,-1,86,131,132,-1,132,133,86,-1,134,135,136,-1,134,57,135,-1,137,138,48,-1,32,46,138,-1,46,48,138,-1,139,29,140,-1,29,96,141,-1,29,31,96,-1,142,143,144,-1,145,144,146,-1,147,144,148,-1,149,144,150,-1,151,152,144,-1,34,16,114,-1,34,153,16,-1,52,22,154,-1,52,51,155,-1,52,156,17,-1,157,158,159,-1,157,94,158,-1,160,78,161,-1,162,60,163,-1,60,62,163,-1,50,79,164,-1,50,154,79,-1,10,28,165,-1,52,155,156,-1,155,51,166,-1,52,17,22,-1,154,50,52,-1,150,144,152,-1,148,144,149,-1,146,144,147,-1,167,144,145,-1,29,141,140,-1,43,45,47,-1,168,111,169,-1,170,171,172,-1,170,173,171,-1,14,174,175,-1,12,47,45,-1,12,137,47,-1,77,173,176,-1,77,91,173,-1,86,177,131,-1,86,85,177,-1,135,57,59,-1,126,71,127,-1,124,71,125,-1,122,71,123,-1,121,71,73,-1,71,68,128,-1,81,94,157,-1,81,92,94,-1,66,178,64,-1,66,179,178,-1,101,6,100,-1,110,109,8,-1,108,8,109,-1,178,4,113,-1,178,98,4,-1,101,24,26,-1,5,101,100,-1,5,4,98,-1,5,99,0,-1,180,181,182,-1,180,183,181,-1,184,185,161,-1,93,186,158,-1,158,94,93,-1,91,187,188,-1,91,90,187,-1,89,75,74,-1,85,88,87,-1,85,84,88,-1,133,11,83,-1,83,86,133,-1,58,41,129,-1,134,174,57,-1,157,36,81,-1,157,33,36,-1,80,79,159,-1,176,69,77,-1,69,74,77,-1,172,189,190,-1,190,170,172,-1,4,3,113,-1,116,191,63,-1,63,60,116,-1,59,58,129,-1,26,6,101,-1,182,95,180,-1,182,96,95,-1,144,167,142,-1,144,143,151,-1,164,51,50,-1,169,138,168,-1,48,47,137,-1,140,192,139,-1,110,7,97,-1,110,8,7,-1,29,139,32,-1,139,46,32,-1,42,41,193,-1,28,27,194,-1,194,155,28,-1,195,37,38,-1,153,79,154,-1,155,194,196,-1,196,156,155,-1,79,34,33,-1,79,153,34,-1,186,162,163,-1,163,185,186,-1,36,35,103,-1,102,197,105,-1,102,198,197,-1,1,199,49,-1,188,200,91,-1,45,193,201,-1,45,44,193,-1,164,160,75,-1,160,76,75,-1,163,188,187,-1,42,193,44,-1,187,185,163,-1,2,202,0,-1,18,107,120,-1,67,109,65,-1,178,113,64,-1,8,100,6,-1,8,108,100,-1,99,203,199,-1,99,98,203,-1,0,199,1,-1,199,0,99,-1,107,178,120,-1,178,107,204,-1,62,171,200,-1,61,171,62,-1,76,161,90,-1,161,76,160,-1,166,83,165,-1,166,84,83,-1,13,45,201,-1,45,13,12,-1,172,61,205,-1,172,171,61,-1,175,206,207,-1,175,189,206,-1,90,185,187,-1,161,185,90,-1,51,75,88,-1,51,164,75,-1,199,102,49,-1,199,198,102,-1,105,36,103,-1,36,105,82,-1,20,197,18,-1,208,197,20,-1,186,117,162,-1,93,117,186,-1,115,103,35,-1,115,104,103,-1,209,210,211,-1,15,210,209,-1,156,39,17,-1,156,196,39,-1,153,22,16,-1,153,154,22,-1,44,192,42,-1};
			return value;
		}

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

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getltrqtral_Geo_5_123_coordIndex_2()
		{
			int[] value = {299,302,300,-1,272,303,270,-1,272,304,303,-1,305,306,307,-1,305,308,306,-1,309,180,310,-1,180,309,311,-1,312,313,212,-1,312,314,313,-1,178,129,315,-1,178,127,129,-1,25,316,26,-1,317,316,25,-1,318,319,216,-1,318,320,319,-1,321,322,323,-1,322,321,324,-1,325,326,327,-1,325,328,326,-1,282,329,330,-1,331,329,282,-1,332,333,334,-1,281,333,332,-1,335,268,336,-1,267,268,335,-1,110,337,242,-1,110,338,337,-1,266,115,114,-1,266,339,115,-1,132,265,264,-1,132,340,265,-1,341,342,343,-1,344,342,341,-1,345,346,347,-1,346,345,348,-1,205,164,349,-1,205,165,164,-1,100,232,101,-1,232,100,170,-1,122,350,252,-1,308,350,122,-1,351,352,353,-1,352,351,354,-1,95,273,101,-1,95,102,273,-1,219,97,263,-1,219,103,97,-1,292,53,154,-1,292,291,53,-1,355,356,146,-1,355,231,356,-1,235,247,236,-1,247,235,357,-1,313,31,30,-1,313,358,31,-1,359,261,360,-1,359,262,261,-1,257,361,362,-1,256,361,257,-1,363,364,365,-1,363,366,364,-1,367,368,4,-1,367,369,368,-1,359,4,368,-1,359,183,4,-1,227,261,66,-1,261,227,42,-1,81,366,363,-1,75,366,81,-1,243,370,258,-1,370,243,260,-1,161,126,244,-1,126,161,160,-1,77,362,361,-1,362,77,179,-1,371,301,300,-1,371,288,301,-1,288,303,301,-1,288,285,303,-1,293,54,56,-1,293,197,54,-1,200,109,55,-1,200,70,109,-1,139,372,354,-1,139,233,372,-1,117,250,119,-1,250,117,251,-1,2,373,248,-1,373,2,255,-1,348,374,375,-1,348,344,374,-1,320,376,319,-1,320,377,376,-1,190,378,188,-1,190,379,378,-1,338,241,337,-1,338,380,241,-1,233,208,372,-1,208,233,10,-1,381,382,328,-1,382,381,383,-1,253,192,254,-1,253,357,192,-1,350,373,255,-1,350,384,373,-1,65,237,236,-1,237,65,130,-1,340,385,265,-1,385,340,386,-1,272,294,276,-1,294,272,271,-1,42,360,261,-1,42,151,360,-1,346,375,387,-1,375,346,348,-1,26,388,310,-1,26,316,388,-1,380,389,390,-1,380,338,389,-1,391,323,386,-1,391,321,323,-1,244,259,161,-1,244,243,259,-1,378,80,82,-1,260,80,378,-1,376,347,388,-1,347,376,345,-1,392,386,340,-1,386,392,391,-1,237,114,116,-1,237,264,114,-1,393,242,337,-1,242,393,204,-1,222,45,238,-1,189,45,222,-1,203,349,111,-1,349,203,205,-1,308,121,306,-1,122,121,308,-1,21,346,387,-1,21,23,346,-1,373,387,375,-1,373,384,387,-1,118,2,1,-1,118,119,2,-1,123,357,253,-1,123,247,357,-1,169,372,208,-1,169,171,372,-1,394,273,209,-1,394,395,273,-1,349,231,111,-1,349,356,231,-1,355,277,61,-1,278,277,355,-1,59,15,57,-1,59,13,15,-1,198,13,59,-1,13,198,199,-1,314,358,313,-1,314,396,358,-1,364,69,67,-1,364,256,69,-1,262,368,365,-1,262,359,368,-1,291,56,53,-1,293,56,291,-1,285,270,303,-1,270,285,397,-1,371,284,283,-1,371,398,284,-1,279,290,289,-1,279,399,290,-1,181,149,157,-1,150,149,181,-1,92,224,400,-1,224,92,157,-1,401,321,391,-1,321,401,402,-1,392,341,343,-1,392,131,341,-1,259,336,268,-1,259,258,336,-1,370,334,333,-1,370,379,334,-1,222,38,189,-1,222,39,38,-1,36,239,241,-1,239,36,35,-1,60,144,403,-1,144,60,57,-1,404,48,134,-1,404,46,48,-1,220,238,245,-1,220,222,238,-1,99,353,352,-1,99,395,353,-1,298,405,406,-1,298,297,405,-1,302,407,300,-1,408,407,302,-1,226,159,399,-1,159,226,84,-1,94,89,88,-1,89,94,93,-1,86,29,85,-1,27,29,86,-1,257,212,213,-1,312,212,257,-1,178,362,179,-1,178,315,362,-1,72,127,73,-1,72,128,127,-1,396,25,358,-1,317,25,396,-1,269,31,24,-1,32,31,269,-1,181,229,182,-1,181,157,229,-1,91,229,157,-1,228,229,91,-1,318,126,409,-1,318,74,126,-1,324,162,322,-1,324,160,162,-1,267,325,327,-1,325,267,335,-1,331,281,332,-1,331,282,281,-1,153,225,410,-1,153,7,225,-1,3,367,4,-1,367,3,155,-1,411,37,215,-1,38,37,411,-1,8,289,412,-1,8,279,289,-1,218,172,210,-1,218,174,172,-1,209,298,394,-1,176,298,209,-1,413,295,414,-1,406,295,413,-1,211,51,274,-1,51,211,49,-1,271,121,294,-1,271,306,121,-1,397,307,270,-1,22,307,397,-1,311,148,150,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getltrqtral_Geo_5_123_coordIndex_3()
		{
			int[] value = {311,20,148,-1,249,49,120,-1,249,50,49,-1,234,251,117,-1,234,137,251,-1,10,142,208,-1,10,9,142,-1,163,169,141,-1,169,163,167,-1,277,11,254,-1,277,9,11,-1,113,112,133,-1,113,115,112,-1,390,339,383,-1,339,390,389,-1,280,330,381,-1,280,282,330,-1,3,206,156,-1,5,206,3,-1,165,136,135,-1,165,205,136,-1,240,415,393,-1,240,246,415,-1,35,223,239,-1,35,221,223,-1,37,35,34,-1,35,37,221,-1,239,246,240,-1,223,246,239,-1,393,136,204,-1,415,136,393,-1,124,201,185,-1,124,107,201,-1,143,54,198,-1,143,55,54,-1,196,199,197,-1,196,194,199,-1,390,381,330,-1,383,381,390,-1,115,389,112,-1,389,115,339,-1,133,193,113,-1,133,62,193,-1,61,254,192,-1,254,61,277,-1,12,167,163,-1,12,207,167,-1,10,117,11,-1,117,10,234,-1,249,137,50,-1,249,251,137,-1,311,181,180,-1,311,150,181,-1,20,397,148,-1,20,22,397,-1,306,270,307,-1,271,270,306,-1,211,121,120,-1,211,294,121,-1,414,274,51,-1,295,274,414,-1,394,406,413,-1,298,406,394,-1,412,174,218,-1,289,174,412,-1,38,190,189,-1,411,190,38,-1,187,45,188,-1,43,45,187,-1,367,124,186,-1,367,155,124,-1,183,5,4,-1,71,5,183,-1,52,410,225,-1,52,184,410,-1,332,34,331,-1,34,332,215,-1,280,335,281,-1,280,325,335,-1,267,322,162,-1,327,322,267,-1,160,409,126,-1,324,409,160,-1,216,74,318,-1,216,72,74,-1,228,94,214,-1,228,91,94,-1,32,180,182,-1,269,180,32,-1,358,24,31,-1,25,24,358,-1,317,128,216,-1,317,396,128,-1,73,178,177,-1,127,178,73,-1,362,312,257,-1,315,312,362,-1,84,93,159,-1,89,93,84,-1,399,152,226,-1,152,399,279,-1,300,398,371,-1,407,398,300,-1,297,302,405,-1,297,408,302,-1,413,395,394,-1,395,413,353,-1,100,352,171,-1,100,99,352,-1,168,171,169,-1,168,170,171,-1,245,46,404,-1,245,238,46,-1,202,134,48,-1,135,134,202,-1,60,164,166,-1,403,164,60,-1,380,330,329,-1,380,390,330,-1,411,379,190,-1,379,411,334,-1,258,333,336,-1,258,370,333,-1,268,161,259,-1,161,268,162,-1,341,130,64,-1,131,130,341,-1,391,343,401,-1,391,392,343,-1,402,324,321,-1,324,402,409,-1,400,93,92,-1,400,158,93,-1,276,304,272,-1,304,276,275,-1,17,408,297,-1,17,16,408,-1,398,290,284,-1,175,290,398,-1,287,149,148,-1,149,287,224,-1,407,175,398,-1,173,175,407,-1,154,412,292,-1,8,412,154,-1,41,84,226,-1,40,84,41,-1,41,410,151,-1,41,153,410,-1,403,349,164,-1,403,356,349,-1,198,58,143,-1,59,58,198,-1,195,232,207,-1,195,98,232,-1,146,278,355,-1,146,145,278,-1,414,353,413,-1,414,351,353,-1,1,253,118,-1,1,123,253,-1,374,0,248,-1,64,0,374,-1,252,255,250,-1,252,350,255,-1,305,387,384,-1,305,21,387,-1,347,310,388,-1,347,309,310,-1,404,246,245,-1,404,415,246,-1,242,203,111,-1,242,204,203,-1,344,64,374,-1,344,341,64,-1,382,265,385,-1,382,266,265,-1,343,377,401,-1,343,342,377,-1,388,319,376,-1,388,316,319,-1,361,75,77,-1,361,366,75,-1,260,379,370,-1,260,378,379,-1,402,377,320,-1,377,402,401,-1,385,328,382,-1,385,326,328,-1,79,363,369,-1,81,363,79,-1,151,184,360,-1,151,410,184,-1,386,326,385,-1,323,326,386,-1,130,264,237,-1,132,264,130,-1,384,308,305,-1,350,308,384,-1,235,113,193,-1,235,116,113,-1,383,266,382,-1,339,266,383,-1,140,9,277,-1,140,142,9,-1,51,351,414,-1,138,351,51,-1,241,329,36,-1,241,380,329,-1,188,82,187,-1,378,82,188,-1,103,191,104,-1,103,219,191,-1,342,376,377,-1,342,345,376,-1,375,248,373,-1,375,374,248,-1,354,171,352,-1,354,372,171,-1,98,101,232,-1,101,98,95,-1,97,230,263,-1,97,96,230,-1,296,304,275,-1,296,299,304,-1,287,400,224,-1,400,287,286,-1,158,286,283,-1,158,400,286,-1,405,299,296,-1,302,299,405,-1,88,87,85,-1,88,90,87,-1,244,125,76,-1,125,244,126,-1,67,365,364,-1,67,262,365,-1,79,187,82,-1,186,187,79,-1,75,80,78,-1,81,80,75,-1,177,76,125,-1,177,77,76,-1,77,177,179,-1,186,369,367,-1,79,369,186,-1,70,5,71,-1,5,70,206,-1,369,365,368,-1,369,363,365,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getltrqtral_Geo_5_123_coordIndex_4()
		{
			int[] value = {256,366,361,-1,364,366,256,-1,396,129,128,-1,314,129,396,-1,183,360,184,-1,183,359,360,-1,236,0,65,-1,0,236,247,-1,193,357,235,-1,357,193,192,-1,231,61,63,-1,61,231,355,-1,403,146,356,-1,146,403,144,-1,97,102,95,-1,97,103,102,-1,395,101,273,-1,101,395,99,-1,138,354,351,-1,354,138,139,-1,120,252,249,-1,122,252,120,-1,168,207,232,-1,207,168,167,-1,134,415,404,-1,136,415,134,-1,346,309,347,-1,23,309,346,-1,348,342,344,-1,348,345,342,-1,340,131,392,-1,131,340,132,-1,389,110,112,-1,389,338,110,-1,240,337,241,-1,240,393,337,-1,281,336,333,-1,335,336,281,-1,334,215,332,-1,334,411,215,-1,36,331,34,-1,36,329,331,-1,280,328,325,-1,280,381,328,-1,323,327,326,-1,327,323,322,-1,409,320,318,-1,409,402,320,-1,316,216,319,-1,216,316,317,-1,74,177,125,-1,74,73,177,-1,314,315,129,-1,315,314,312,-1,212,30,27,-1,212,313,30,-1,310,269,26,-1,269,310,180,-1,23,311,309,-1,311,23,20,-1,307,21,305,-1,22,21,307,-1,304,301,303,-1,304,299,301,-1,408,173,407,-1,408,16,173,-1,406,296,295,-1,406,405,296,-1,263,293,291,-1,230,293,263,-1,218,292,412,-1,217,292,218,-1,288,283,286,-1,371,283,288,-1,397,287,148,-1,285,287,397,-1,284,399,159,-1,284,290,399,-1};
			return value;
		}

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

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

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

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

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

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

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

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

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getldphal5_Geo_5_148_coordIndex_2()
		{
			int[] value = {156,101,7,-1,101,156,83,-1,119,1,8,-1,118,1,119,-1,151,146,234,-1,151,2,146,-1,133,39,168,-1,39,133,45,-1,215,192,189,-1,214,192,215,-1,232,222,224,-1,222,232,235,-1,159,213,25,-1,213,159,35,-1,236,42,234,-1,236,40,42,-1,235,150,222,-1,235,130,150,-1,145,149,129,-1,145,225,149,-1,135,165,219,-1,48,165,135,-1,166,106,49,-1,166,122,106,-1,13,131,128,-1,13,229,131,-1,158,147,117,-1,233,147,158,-1,107,96,110,-1,96,107,94,-1,69,124,140,-1,69,67,124,-1,126,161,237,-1,109,161,126,-1,85,15,92,-1,85,143,15,-1,178,90,78,-1,90,178,9,-1,123,76,75,-1,230,76,123,-1,124,108,110,-1,108,124,125,-1,195,31,218,-1,195,22,31,-1,65,2,151,-1,65,12,2,-1,140,148,69,-1,141,148,140,-1,168,41,216,-1,41,168,39,-1,185,217,183,-1,217,185,169,-1,234,147,236,-1,146,147,234,-1,92,3,5,-1,60,3,92,-1,59,130,235,-1,128,130,59,-1,195,167,196,-1,195,218,167,-1,49,64,47,-1,49,106,64,-1,228,13,16,-1,228,229,13,-1,166,123,122,-1,123,166,230,-1,154,137,136,-1,154,153,137,-1,162,214,163,-1,162,192,214,-1,172,188,175,-1,172,173,188,-1,84,93,73,-1,93,84,86,-1,93,77,89,-1,93,180,77,-1,173,189,188,-1,189,173,215,-1,152,174,155,-1,152,220,174,-1,129,66,145,-1,129,131,66,-1,170,17,19,-1,171,17,170,-1,211,28,198,-1,211,26,28,-1,212,139,138,-1,139,212,223,-1,119,82,99,-1,119,101,82,-1,183,33,160,-1,183,217,33,-1,216,226,36,-1,226,216,41,-1,147,231,236,-1,147,233,231,-1,117,100,158,-1,117,99,100,-1,237,228,16,-1,237,161,228,-1,123,144,121,-1,123,75,144,-1,90,11,91,-1,62,11,90,-1,89,79,88,-1,77,79,89,-1,176,73,71,-1,84,73,176,-1,180,78,77,-1,180,178,78,-1,14,59,60,-1,59,14,128,-1,131,67,66,-1,131,229,67,-1,47,63,164,-1,47,64,63,-1,145,219,225,-1,135,219,145,-1,227,236,231,-1,227,40,236,-1,34,223,212,-1,223,34,221,-1,61,235,232,-1,235,61,59,-1,234,44,151,-1,42,44,234,-1,2,118,146,-1,2,1,118,-1,119,7,101,-1,119,8,7,-1,102,58,55,-1,102,179,58,-1,98,56,177,-1,57,56,98,-1,233,232,231,-1,233,61,232,-1,221,36,226,-1,221,34,36,-1,230,95,76,-1,230,141,95,-1,165,114,220,-1,165,164,114,-1,113,46,43,-1,113,63,46,-1,41,227,226,-1,41,40,227,-1,139,149,136,-1,139,150,149,-1,152,225,219,-1,154,225,152,-1,223,150,139,-1,223,222,150,-1,84,142,85,-1,84,176,142,-1,172,17,171,-1,172,175,17,-1,218,30,132,-1,31,30,218,-1,217,36,33,-1,217,216,36,-1,153,214,215,-1,153,155,214,-1,35,212,213,-1,35,34,212,-1,209,190,187,-1,210,190,209,-1,193,208,191,-1,208,193,207,-1,23,206,21,-1,206,23,204,-1,203,197,194,-1,205,197,203,-1,186,202,184,-1,202,186,201,-1,182,200,181,-1,200,182,199,-1,20,198,18,-1,198,20,211,-1,115,210,209,-1,116,210,115,-1,207,120,208,-1,120,207,52,-1,204,51,206,-1,51,204,38,-1,54,205,203,-1,37,205,54,-1,201,53,202,-1,53,201,105,-1,199,104,200,-1,104,199,103,-1,116,211,210,-1,116,26,211,-1,185,194,196,-1,194,185,184,-1,197,22,195,-1,197,23,22,-1,24,193,162,-1,193,24,21,-1,191,189,192,-1,187,189,191,-1,175,190,20,-1,175,188,190,-1,160,186,183,-1,186,160,181,-1,25,182,159,-1,25,18,182,-1,143,16,15,-1,16,143,237,-1,237,142,126,-1,142,237,143,-1,70,111,134,-1,88,111,70,-1,11,121,91,-1,121,11,10,-1,86,179,93,-1,86,58,179,-1,177,87,5,-1,177,56,87,-1,178,157,156,-1,180,157,178,-1,8,0,9,-1,1,0,8,-1};
			return value;
		}
		/** Large attribute array: IndexedFaceSet DEF='lcaptate_Geo' coordIndex field, scene-graph level=5, element #18, 2888 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 getlcaptate_Geo_5_18_coordIndex()
		{
			MFInt32 lcaptate_Geo_5_18_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlcaptate_Geo_5_18_coordIndex_1()))
				.append(new MFInt32(getlcaptate_Geo_5_18_coordIndex_2()))
				.append(new MFInt32(getlcaptate_Geo_5_18_coordIndex_3()));
			return lcaptate_Geo_5_18_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lcaptate_Coord' point field, scene-graph level=6, element #18, 1089 total numbers made up of 363 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 getlcaptate_Coord_6_18_point()
		{
			MFVec3f lcaptate_Coord_6_18_point = new MFVec3f(new double[] {7.5882,28.7646,2.6355,7.5846,28.7744,2.641,7.5916,28.7639,2.643,7.4235,28.7606,2.8305,7.4738,28.6657,2.965,7.4772,28.6692,2.9589,7.4315,28.7559,2.8218,7.4249,28.7667,2.8174,7.1869,28.5468,2.8604,7.1217,28.6738,2.8474,7.074,28.6558,2.8171,7.069,28.5284,2.8487,7.0214,28.2955,2.6595,7.0041,28.3115,2.6648,7.0005,28.3071,2.654,6.9272,28.5311,2.553,6.9311,28.5457,2.5477,6.9326,28.5418,2.5364,6.9941,28.3168,2.661,6.9906,28.5306,2.7331,6.995,28.5447,2.7342,7.0613,28.516,2.8379,7.2359,28.4168,2.4606,7.174,28.3732,2.5042,7.1653,28.3814,2.4971,7.2288,28.4249,2.4562,7.0409,28.2929,2.6545,7.2161,28.3439,2.7132,7.2273,28.3429,2.7076,7.3864,28.4752,2.9097,7.4919,28.506,2.8785,7.4916,28.5146,2.8899,7.3816,28.4819,2.9187,7.3179,28.4179,2.5067,7.3871,28.41,2.5135,7.3176,28.4051,2.5084,7.3881,28.3979,2.5187,7.6016,28.4736,2.5432,7.6072,28.4753,2.5432,7.5951,28.4617,2.5968,7.1522,28.981,2.3597,7.1637,28.9719,2.3661,7.1507,28.9704,2.366,7.6144,28.6605,2.5935,7.624,28.6492,2.5971,7.6823,28.4997,2.5215,7.6842,28.5008,2.5302,7.486,28.9806,2.5758,7.4888,28.9914,2.5746,7.4877,28.9887,2.5821,7.4873,28.9896,2.5733,7.5969,28.7518,2.6394,7.4833,28.6205,2.543,7.4886,28.6199,2.5463,7.4851,28.6069,2.5428,7.4221,28.9967,2.686,7.4242,28.9837,2.6859,7.3635,29.0531,2.4207,7.4091,29.0653,2.4542,7.4101,29.0559,2.4544,7.3621,29.0649,2.4177,6.9398,28.881,2.5371,6.9446,28.8753,2.5298,6.9605,28.7872,2.5597,6.9593,28.7946,2.5734,7.0943,28.9693,2.3802,7.0946,28.9633,2.3819,6.9694,28.9331,2.4862,6.9768,28.9233,2.4831,7.1193,28.8485,2.8159,7.131,28.8456,2.8216,7.2383,28.9484,2.8195,7.2333,28.9604,2.8188,7.0624,28.8166,2.7644,7.0665,28.7536,2.7691,7.1583,29.2017,2.4631,7.1341,29.1941,2.4538,7.1375,29.2066,2.4883,7.5458,28.6416,2.7613,7.561,28.6289,2.8229,7.5792,28.6431,2.7561,7.5334,28.6398,2.796,7.4865,28.7272,2.7376,7.4825,28.7632,2.7295,7.4651,28.7099,2.7937,7.5102,28.668,2.7702,7.5495,28.6686,2.7213,7.5437,28.7134,2.6974,6.9984,28.694,2.6187,7.0132,28.7894,2.6936,6.9686,28.7875,2.6358,7.021,28.7097,2.6807,6.9965,28.8621,2.701,7.0497,28.8865,2.7567,7.1444,28.4098,2.7526,7.2594,28.4004,2.7733,7.3968,28.4575,2.8546,7.3138,28.3851,2.5205,7.3056,28.3677,2.5521,7.336,28.4824,2.5285,7.3115,28.4753,2.5232,7.3091,28.51,2.5288,7.4837,28.4356,2.5302,7.4024,28.4897,2.5196,7.4527,28.5131,2.5387,7.3843,28.6975,2.5282,7.3669,28.7668,2.5122,7.3816,28.7864,2.5264,7.4095,28.7189,2.537,7.6123,28.4853,2.5349,7.5571,28.5915,2.553,7.3119,28.5449,2.5225,7.2674,28.514,2.5055,7.3517,28.5068,2.5348,7.3519,28.5418,2.5349,7.2455,28.4499,2.4803,7.3139,28.4545,2.5169,7.5491,28.5813,2.5521,7.4923,28.5313,2.5533,7.1589,29.021,2.3394,7.2283,29.0321,2.3584,7.1845,29.0093,2.3529,7.2839,28.937,2.4495,7.3162,28.9558,2.4669,7.3412,28.8645,2.5061,7.46,28.8277,2.6974,7.3957,28.8189,2.7489,7.4797,28.7757,2.7248,7.4423,28.6069,2.5332,7.4269,28.6597,2.5352,7.459,28.6764,2.5494,6.9931,29.1279,2.4906,7.0154,29.1284,2.4456,6.9611,29.0297,2.4785,6.9944,29.028,2.4319,6.9522,28.956,2.4827,6.9869,28.9607,2.4398,6.9904,28.9447,2.4448,6.9841,28.8842,2.4912,6.9896,28.8154,2.4803,6.9842,28.8042,2.5193,7.0039,28.9007,2.4646,6.942,28.6736,2.519,6.9836,29.119,2.5434,7.0485,29.1698,2.5135,7.133,29.1834,2.4299,7.1488,29.1141,2.3487,7.0967,29.1199,2.3731,7.1566,28.8876,2.3733,7.181,28.7832,2.4157,7.1011,28.8062,2.4238,7.0966,28.8962,2.3982,7.1049,28.4573,2.4751,7.1484,28.4053,2.49,7.1038,28.3388,2.5422,7.1419,29.2134,2.5157,7.1585,29.2156,2.4955,7.1111,29.2024,2.5148,7.1241,29.2022,2.4936,7.1282,29.2102,2.5348,7.1139,29.2031,2.5261,7.156,29.2178,2.5352,7.1413,29.2142,2.5374,7.1674,29.2205,2.5143,7.165,29.2213,2.5284,7.4056,28.9419,2.5164,7.3619,28.9487,2.4902,7.6814,28.4876,2.6206,7.161,28.6663,2.4229,7.229,28.6303,2.4512,7.5197,28.6824,2.5908,7.3229,28.6178,2.5029,7.3132,28.655,2.4965,7.3578,28.6142,2.5111,7.1876,29.2185,2.581,7.2944,29.2073,2.5995,7.2181,29.2294,2.5585,7.2647,29.2011,2.6345,7.0581,29.1734,2.5528,6.9891,29.1303,2.5827,7.3113,29.1584,2.4469,7.4215,29.124,2.5249,7.3207,29.1829,2.5145,7.4676,29.0687,2.5522,7.4834,28.9963,2.5721,7.4497,29.0489,2.5029,7.3675,29.1591,2.6518,7.403,29.0792,2.6905,6.9424,29.0368,2.6103,6.9417,29.0291,2.5349,6.9313,28.9567,2.5383,6.9406,28.9521,2.6274,7.0347,28.9711,2.4124,7.2648,28.9092,2.4451,7.2443,28.8663,2.4443,7.1695,28.8882,2.3746,7.4977,28.9246,2.5817,7.4193,28.8676,2.5615,7.4469,29.0393,2.4991,7.4788,28.991,2.5682,7.3298,28.4307,2.8184,7.2694,28.3964,2.766,7.3168,28.4115,2.7632,7.3113,28.3943,2.6605,7.3481,28.4274,2.758,7.3623,28.4086,2.6603,7.4925,28.4766,2.7981,7.5944,28.5089,2.8613,7.5848,28.4545,2.6601,7.6907,28.4678,2.719,7.588,28.4699,2.7503,7.6562,28.4962,2.7887,7.3807,28.3884,2.5316,7.1854,28.2974,2.634,7.1103,28.3304,2.5501,7.2209,28.4859,2.8284,7.2954,28.5237,2.9177,7.3254,28.4373,2.8295,7.5946,28.5184,2.8711,7.5629,28.6216,2.8348,7.4892,28.5898,2.9418,7.3718,28.5715,2.985,7.6602,28.5045,2.7882,7.6947,28.4751,2.7199,7.6021,28.678,2.6805,7.5882,28.6359,2.7572,7.489,28.6619,2.8662,7.3999,28.7167,2.9551,7.3551,28.7556,2.8919,7.5066,28.8938,2.5898,7.4442,28.8822,2.6775,7.538,28.8322,2.6257,7.3251,28.8103,2.8032,7.292,28.6606,2.9436,7.234,28.7404,2.831,7.0753,28.5229,2.8515,7.0265,28.4202,2.7747,7.0241,28.6146,2.7107,7.0735,28.7479,2.7787,7.1362,28.7796,2.8369,7.5378,28.8271,2.6186,7.4627,28.8022,2.5807,7.5064,28.887,2.5844,7.4951,28.7467,2.5907,7.3955,28.8063,2.5422,7.2681,28.4772,2.5049,7.3162,28.7677,2.4937,7.2856,28.7944,2.4736,7.2596,28.7001,2.4628,7.1859,28.7978,2.4165,7.2515,28.6884,2.4587,7.0365,28.463,2.5101,7.2059,28.5402,2.4578,7.1632,28.5461,2.4416,7.1777,28.4558,2.4527,6.9269,28.4272,2.6028,7.0163,28.4256,2.7715,7.0362,28.9087,2.4376,7.0323,28.8215,2.4563,6.9367,28.5148,2.6138,6.9315,28.4184,2.5953,7.0361,28.5403,2.4858,7.0999,28.5428,2.4613,7.3643,28.4486,2.5166,7.433,28.7395,2.5514,7.6183,28.665,2.6042,6.9962,28.6793,2.6094,6.9766,28.5775,2.6147,6.9417,28.5275,2.6148,7.3913,28.8735,2.7376,7.2685,28.367,2.6863,7.3107,29.0434,2.3904,7.2348,29.0245,2.3638,7.0417,29.0242,2.3951,7.0893,29.1694,2.4472,7.0506,29.1206,2.4083,7.1028,29.195,2.5799,7.0452,29.1432,2.657,7.0875,29.1461,2.69,7.2263,29.2267,2.5118,7.1634,29.217,2.5054,7.2844,29.1333,2.3848,7.3085,29.0546,2.386,7.1925,29.2176,2.4924,7.1824,29.2093,2.4724,7.0919,28.6698,2.4436,6.9964,28.9359,2.445,7.0415,28.9593,2.4129,7.3934,28.6421,2.5259,7.4041,28.5944,2.5245,7.3646,28.6261,2.5132,7.1914,29.0005,2.3604,7.379,28.5002,2.5293,7.3512,28.4688,2.5228,7.4979,28.4453,2.7106,7.4652,28.4052,2.5921,7.5198,28.4348,2.6245,7.4364,28.4277,2.6823,7.3703,28.3858,2.5507,7.4129,28.4492,2.7713,7.2349,29.195,2.6696,7.2343,28.8942,2.8215,7.5005,28.9253,2.5885,7.4329,28.9348,2.677,7.0091,29.1329,2.6186,7.594,28.6832,2.6852,7.5039,28.8926,2.5831,7.1106,28.9118,2.8024,7.4027,28.5794,2.5231,7.3948,28.5849,2.5229,7.6804,28.4931,2.5289,7.3803,28.564,2.5307,7.5345,28.451,2.5484,7.5335,28.4602,2.5424,7.4859,28.4262,2.5363,7.6777,28.4799,2.6197,7.3198,28.6669,2.4987,7.599,28.4815,2.5368,7.3311,28.9822,2.7894,7.3761,28.996,2.737,7.3283,28.9956,2.7898,7.3777,28.983,2.7371,7.0235,28.6976,2.6841,7.1663,29.1953,2.4416,7.2184,29.1244,2.3595,6.987,28.9475,2.7034,6.9477,28.8658,2.6223,6.9801,29.0352,2.6755,7.04,28.9745,2.7449,7.0275,29.0485,2.7168,7.3816,28.93,2.734,7.324,28.9237,2.7867,7.2931,29.137,2.7336,7.3303,29.148,2.6927,7.3617,29.0777,2.7297,7.3204,29.0764,2.7689,7.3204,28.8601,2.7924,7.2485,28.3326,2.5937,7.5287,28.4384,2.5831,7.477,28.4114,2.5608,7.2368,28.5242,2.4818,7.3192,28.5674,2.515,7.3274,28.5922,2.5066,7.0919,29.022,2.3631,7.1032,29.1841,2.4661,7.0804,29.1867,2.5412,7.0737,29.1845,2.514,7.1419,29.2113,2.5665,7.1127,29.2024,2.5608,7.1745,29.2195,2.5617,7.1959,29.2273,2.5458,7.2016,29.2255,2.5129,7.1998,29.2028,2.4562,7.1428,29.2072,2.5877,7.2135,29.2158,2.4832,7.1735,29.1745,2.703,7.1963,29.1071,2.7722,7.0817,29.0581,2.7499,7.2136,29.0436,2.8016,7.0994,29.0007,2.7772,7.2357,28.8354,2.8212,7.0278,28.6741,2.4768,7.4447,28.5935,2.5334});
			return lcaptate_Coord_6_18_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='llunate_Geo' coordIndex field, scene-graph level=5, element #23, 2176 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 getllunate_Geo_5_23_coordIndex()
		{
			MFInt32 llunate_Geo_5_23_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getllunate_Geo_5_23_coordIndex_1()))
				.append(new MFInt32(getllunate_Geo_5_23_coordIndex_2()))
				.append(new MFInt32(getllunate_Geo_5_23_coordIndex_3()));
			return llunate_Geo_5_23_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='llunate_Coord' point field, scene-graph level=6, element #23, 822 total numbers made up of 274 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 getllunate_Coord_6_23_point()
		{
			MFVec3f llunate_Coord_6_23_point = new MFVec3f(new double[] {7.7147,29.2537,2.3731,7.6815,29.2031,2.3408,7.6854,29.2039,2.3357,7.5899,29.1102,2.3363,7.5655,29.0985,2.3507,7.5643,29.0972,2.3443,7.6526,29.1733,2.3819,7.6408,29.1458,2.3223,7.6941,29.2048,2.3263,7.6613,29.1417,2.2979,7.7196,29.262,2.3087,7.6736,29.256,2.4277,7.6641,29.2015,2.4452,7.404,29.3086,2.0942,7.5275,29.3711,2.1876,7.5455,29.367,2.1847,7.3896,29.3272,2.5987,7.3802,29.3119,2.6001,7.3921,29.3161,2.6151,7.2162,29.3607,2.1728,7.2383,29.3654,2.2341,7.2968,29.3946,2.2197,7.0617,29.0779,2.2198,7.0652,29.1111,2.1905,7.1044,29.0751,2.1431,7.3349,29.0129,2.114,7.3362,29.0143,2.109,7.4184,29.0351,2.1354,7.414,29.0346,2.1404,7.4691,29.068,2.2839,7.4547,29.0455,2.2137,7.4782,29.0675,2.2862,7.462,29.0455,2.2113,7.2481,29.0086,2.104,7.2594,29.0095,2.1007,7.2598,29.0077,2.1055,7.135,29.1466,2.2782,7.1252,29.1289,2.2717,7.139,29.1408,2.2787,7.3223,29.2472,2.5204,7.3244,29.2397,2.5188,7.3393,29.2173,2.5731,7.3499,29.2065,2.5755,7.7246,29.2706,2.2445,7.3862,29.168,2.379,7.3306,29.1955,2.397,7.3146,29.1863,2.3671,7.2736,29.3012,2.3318,7.2956,29.3101,2.3586,7.2813,29.3238,2.3274,7.306,29.395,2.2087,7.2922,29.3764,2.17,7.228,29.3628,2.1631,7.5087,29.0836,2.1939,7.5376,29.0877,2.2705,7.6571,29.1359,2.2951,7.6455,29.1524,2.2425,7.6899,29.2013,2.3302,7.3479,29.202,2.0414,7.3759,29.2581,2.062,7.3958,29.2405,2.0542,7.173,29.2966,2.2082,7.1735,29.3202,2.19,7.6883,29.3056,2.3857,7.6831,29.3107,2.4104,7.4011,29.1669,2.4334,7.4452,29.1448,2.4298,7.4846,29.0918,2.3597,7.4172,29.1067,2.2749,7.3669,29.1026,2.2143,7.3418,29.1384,2.2528,7.3438,29.1036,2.2146,7.2101,29.2659,2.2503,7.1708,29.239,2.2381,7.3435,29.2089,2.6288,7.3421,29.2516,2.5697,7.3388,29.2348,2.5699,7.2926,29.1475,2.0562,7.2697,29.17,2.0566,7.4047,29.0493,2.1568,7.463,29.3299,2.6195,7.5164,29.3583,2.5682,7.5049,29.3829,2.5377,7.442,29.3524,2.5852,7.3915,29.1476,2.0631,7.4093,29.1675,2.0535,7.4238,29.1939,2.0455,7.4157,29.2228,2.0463,7.3273,29.2677,2.0693,7.3516,29.2629,2.0657,7.2999,29.2641,2.0639,7.2573,29.2327,2.0582,7.2501,29.2008,2.0584,7.3136,29.1362,2.0553,7.3429,29.1338,2.0598,7.4757,29.0834,2.1188,7.5504,29.1462,2.1221,7.5893,29.1386,2.1785,7.1315,29.2123,2.2259,7.1248,29.246,2.1893,7.0691,29.1482,2.158,7.0969,29.197,2.1736,7.089,29.2117,2.152,7.3921,29.067,2.1759,7.3461,29.2088,2.6327,7.4283,29.2208,2.6485,7.4265,29.2576,2.6527,7.4689,29.2852,2.6282,7.471,29.2395,2.6331,7.6207,29.3382,2.4718,7.6015,29.3739,2.4751,7.5903,29.3829,2.4376,7.4201,29.2891,2.6438,7.6088,29.3705,2.359,7.6002,29.377,2.3991,7.6709,29.303,2.3584,7.4108,29.1662,2.4681,7.5131,29.1393,2.5983,7.5092,29.1228,2.4806,7.5717,29.1349,2.4767,7.1701,29.2004,2.0855,7.1379,29.1101,2.1186,7.0974,29.1808,2.1339,7.2054,29.1454,2.082,7.3365,29.0699,2.0901,7.3991,29.0771,2.0953,7.4689,29.1363,2.078,7.4335,29.098,2.0968,7.4818,29.2423,2.064,7.6357,29.3333,2.1661,7.6661,29.2904,2.1523,7.4429,29.2754,2.0791,7.4608,29.3915,2.221,7.5793,29.3703,2.2521,7.5573,29.3769,2.2216,7.4768,29.3914,2.247,7.4436,29.3802,2.1985,7.6814,29.3244,2.2351,7.7101,29.2776,2.2105,7.2826,29.3771,2.2826,7.3086,29.4029,2.2615,7.109,29.2755,2.1462,7.1656,29.1905,2.2701,7.1595,29.1632,2.2921,7.1344,29.1718,2.2596,7.1782,29.0363,2.1179,7.17,29.0189,2.1589,7.4377,29.0746,2.2438,7.6566,29.1374,2.3009,7.6431,29.1442,2.3165,7.4017,29.1373,2.3269,7.4376,29.1288,2.3707,7.364,29.153,2.3158,7.1069,29.0937,2.2502,7.1012,29.1043,2.2519,7.0875,29.0432,2.2166,7.6017,29.3677,2.3033,7.6761,29.3136,2.2967,7.5941,29.365,2.2459,7.2451,29.1017,2.0753,7.1956,29.0558,2.1043,7.2798,29.074,2.0817,7.169,29.2612,2.0876,7.4934,29.1889,2.071,7.3746,29.1375,2.0623,7.5879,29.1708,2.5246,7.4394,29.1639,2.5518,7.4698,29.1522,2.626,7.4378,29.1606,2.6418,7.3646,29.2056,2.4963,7.3457,29.2011,2.4494,7.5353,29.3882,2.4783,7.5774,29.3882,2.4301,7.5082,29.3974,2.4735,7.3602,29.3727,2.4835,7.3342,29.3013,2.5182,7.5475,29.3828,2.4876,7.5589,29.366,2.5216,7.4353,29.1898,2.6494,7.2788,29.0379,2.1396,7.2998,29.0712,2.1772,7.2173,29.1066,2.229,7.1949,29.0643,2.1951,7.3836,29.2015,2.5313,7.3957,29.1823,2.5712,7.4998,29.1241,2.4813,7.5048,29.141,2.6048,7.2669,29.3376,2.2962,7.431,29.3569,2.5737,7.4933,29.3884,2.5267,7.4364,29.3884,2.4791,7.1735,29.0195,2.165,7.0975,29.1375,2.2305,7.0972,29.1672,2.202,7.3271,29.2681,2.5192,7.3125,29.3065,2.4417,7.3013,29.2656,2.4611,7.3207,29.1047,2.215,7.6362,29.3014,2.4645,7.4928,29.1086,2.4222,7.494,29.0902,2.3615,7.625,29.1348,2.2373,7.662,29.3334,2.1989,7.6856,29.2837,2.1829,7.3157,29.386,2.3189,7.341,29.39,2.3493,7.3258,29.3964,2.3098,7.0931,29.0428,2.2207,7.0859,29.0489,2.2239,7.5119,29.141,2.6043,7.5092,29.1446,2.6075,7.3472,29.2041,2.6274,7.3523,29.3801,2.4197,7.3569,29.3954,2.3534,7.365,29.3878,2.4197,7.3729,29.3806,2.4842,7.6521,29.2516,2.4568,7.5691,29.3221,2.5294,7.5175,29.3064,2.5872,7.5828,29.2237,2.5318,7.5153,29.2534,2.6017,7.5141,29.1964,2.6064,7.5756,29.2771,2.5331,7.5696,29.3718,2.2117,7.595,29.3779,2.3588,7.587,29.374,2.3037,7.3238,29.4072,2.2586,7.3401,29.4012,2.3053,7.3965,29.1853,2.6359,7.3936,29.1814,2.6297,7.4412,29.1646,2.6473,7.4729,29.1562,2.6303,7.0981,29.1123,2.2491,7.0675,29.0731,2.2253,7.1151,29.09,2.2484,7.1631,29.1576,2.2929,7.2551,29.2164,2.3842,7.2371,29.1995,2.3564,7.2585,29.2105,2.3856,7.2343,29.2054,2.356,7.2759,29.2274,2.4125,7.2982,29.2328,2.4733,7.2949,29.2395,2.4722,7.2792,29.2212,2.4138,7.5015,29.1064,2.4209,7.2632,29.2489,2.3616,7.2836,29.2594,2.3915,7.4041,29.3981,2.3049,7.412,29.3968,2.356,7.4754,29.3988,2.3568,7.476,29.395,2.3019,7.3824,29.3945,2.2171,7.3679,29.3781,2.1841,7.629,29.1725,2.1893,7.5685,29.1161,2.412,7.4737,29.1951,2.6331,7.4242,29.3925,2.4175,7.5857,29.3826,2.3945,7.4918,29.398,2.4151,7.263,29.1576,2.2815,7.2402,29.132,2.2552,7.1858,29.1807,2.3071,7.1968,29.2092,2.2806,7.2515,29.2924,2.3052,7.2428,29.2384,2.3317,7.188,29.1751,2.3076,7.2986,29.1771,2.3372,7.341,29.0393,2.1435,7.3962,29.3995,2.2539,7.3551,29.318,2.1014,7.3459,29.069,2.1765,7.3061,29.3275,2.1087,7.252,29.3208,2.0983,7.6085,29.1954,2.1386});
			return llunate_Coord_6_23_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lmc_Geo' coordIndex field, scene-graph level=5, element #28, 2392 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 getlmc_Geo_5_28_coordIndex()
		{
			MFInt32 lmc_Geo_5_28_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlmc_Geo_5_28_coordIndex_1()))
				.append(new MFInt32(getlmc_Geo_5_28_coordIndex_2()))
				.append(new MFInt32(getlmc_Geo_5_28_coordIndex_3()));
			return lmc_Geo_5_28_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lmc_Coord' point field, scene-graph level=6, element #28, 903 total numbers made up of 301 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 getlmc_Coord_6_28_point()
		{
			MFVec3f lmc_Coord_6_28_point = new MFVec3f(new double[] {6.6191,28.4132,2.7941,6.5992,28.4257,2.7807,6.5469,28.4711,2.8497,6.5908,28.3279,3.2116,6.6208,28.4653,3.261,6.5063,28.2788,3.3051,6.639,28.5079,3.1645,6.6219,28.4678,3.2554,6.6599,28.4504,3.1574,6.2793,28.6701,3.2096,6.1892,28.5851,3.2175,6.2797,28.6687,3.2171,6.0987,27.2244,3.5885,6.1307,27.2761,3.5628,6.1156,27.2456,3.6281,6.0622,27.2036,3.6301,6.0751,27.2124,3.6314,6.0856,27.2677,3.7196,5.6098,27.4203,3.6032,5.6052,27.4151,3.6032,5.6308,27.4325,3.6806,5.6351,27.4402,3.6767,5.8159,27.4191,3.383,5.8096,27.417,3.3813,5.741,27.5113,3.4078,5.7467,27.5157,3.4075,5.9201,27.3743,3.391,5.8316,27.3134,3.3726,5.9165,27.3836,3.3887,5.8285,27.323,3.374,6.0812,27.2746,3.4891,6.1017,27.35,3.4526,6.1017,27.2774,3.5011,6.1137,27.3619,3.4599,5.6342,27.5787,3.5986,5.6629,27.6401,3.5797,5.6768,27.5736,3.4776,5.7235,27.4645,3.7392,5.786,27.6177,3.7029,5.6569,27.5976,3.6478,6.2403,28.5318,2.9346,6.2223,28.513,2.9648,6.2023,28.5393,3.1253,6.214,28.4914,2.988,6.5496,28.2645,3.1699,6.6297,28.3485,3.1424,5.6827,27.3989,3.7832,5.8463,27.1616,3.375,5.8501,27.2407,3.3206,5.961,27.2896,3.3157,5.5817,27.4577,3.4409,5.5488,27.3906,3.4833,5.6194,27.5252,3.5238,5.6134,27.4957,3.5475,5.7733,27.2312,3.3457,5.8112,27.2219,3.331,5.6058,27.291,3.3346,5.6657,27.2369,3.3365,5.6079,27.2554,3.3702,5.6846,27.3094,3.3054,5.6642,27.3829,3.3069,5.7005,27.3204,3.3068,5.6504,27.3658,3.3099,5.6103,27.4279,3.3597,5.6267,27.2412,3.4731,5.545,27.3195,3.5773,5.53,27.3056,3.4908,6.0603,27.1463,3.5559,6.0404,27.1374,3.6319,6.0142,27.1075,3.5485,5.8045,27.2354,3.3346,5.7776,27.2403,3.3477,6.0921,27.301,3.3506,6.0424,27.3173,3.3218,6.0957,27.3239,3.352,6.0447,27.2988,3.327,5.6765,27.3791,3.7883,5.796,27.3476,3.8125,5.8024,27.3633,3.8119,5.603,27.387,3.7101,5.6036,27.3625,3.7144,6.642,28.3701,2.8877,6.6644,28.3438,3.0284,6.5883,28.3768,2.9208,6.2678,28.677,3.1772,6.2724,28.6758,3.1613,6.2363,28.6299,3.1392,6.2274,28.6214,3.16,6.287,28.5372,2.887,6.2453,28.5525,2.9468,6.2722,28.5182,2.8942,6.6719,28.3624,3.0249,6.6589,28.3813,2.8785,6.0535,27.19,3.7438,6.027,27.2198,3.7735,5.9456,27.182,3.7186,6.6081,28.2959,3.0529,6.4828,28.2094,3.1325,6.488,28.2156,3.182,6.1541,27.3471,3.5597,6.1599,27.3678,3.6029,6.149,27.4478,3.4807,6.0954,27.2238,3.634,5.9331,27.1163,3.4486,5.897,27.1198,3.4599,5.8518,27.1342,3.5126,5.8601,27.1401,3.5628,5.7644,27.1979,3.5913,5.9508,27.1343,3.6313,5.9909,27.1312,3.6304,6.0945,27.2326,3.4173,6.0532,27.2242,3.3744,6.109,27.272,3.3788,6.1371,27.6097,3.4249,6.0735,27.6223,3.3836,6.192,27.8789,3.281,6.2479,27.8685,3.3319,5.7397,27.2738,3.3231,5.823,27.3158,3.3702,6.0974,27.9215,3.2824,6.0118,27.6347,3.358,5.9404,27.6631,3.3641,6.1464,27.8949,3.2669,5.8328,27.4382,3.7817,5.8905,27.5834,3.7174,6.2073,27.6287,3.5203,6.171,27.4542,3.5837,6.1773,27.6125,3.46,6.1011,27.4058,3.4317,5.6858,27.6498,3.6343,5.6156,27.4997,3.5533,5.7736,27.8251,3.5245,5.7982,27.7826,3.4558,5.6735,27.5644,3.4733,6.0283,27.4154,3.4007,6.0296,27.4048,3.4018,5.5387,27.2861,3.4245,5.5686,27.3478,3.3833,5.9588,27.3017,3.3166,6.0086,27.161,3.4175,5.977,27.2075,3.3546,5.9091,27.1151,3.4793,5.6887,27.3037,3.7379,5.6457,27.2899,3.6692,5.7568,27.1847,3.3909,5.7569,27.2224,3.6645,5.7133,27.2416,3.6435,5.6885,27.2242,3.5837,5.6821,27.2168,3.5151,5.725,27.2088,3.4813,5.7545,27.1888,3.4545,5.8135,27.1581,3.4587,5.871,27.1531,3.6103,5.8465,27.1786,3.6418,5.8135,27.2048,3.6615,6.2274,28.2386,3.4847,6.1211,28.017,3.5662,6.3297,28.1903,3.488,6.2204,27.9708,3.5513,6.0136,28.2917,3.3507,6.1275,28.4737,3.3676,6.1163,28.4433,3.2891,6.0336,28.3101,3.4212,6.2415,28.6284,3.3226,6.3086,28.61,3.3372,6.3537,28.6941,3.2749,6.5084,28.5364,3.3593,6.5887,28.485,3.3237,6.559,28.5897,3.2888,6.1939,28.4178,3.1167,6.2038,28.4563,3.0306,6.0434,28.2337,3.2868,6.1238,28.3886,3.2123,6.2186,28.2938,3.1248,6.2382,28.3988,3.0139,6.2614,28.4622,2.9513,6.3363,28.2813,3.0359,6.1988,28.0852,3.1927,6.4808,28.4171,2.8477,6.4047,28.4929,2.8161,6.5145,28.4551,2.7731,6.4133,28.4384,2.8631,6.5185,28.4034,2.8665,6.5478,28.3154,2.9566,6.4635,28.3547,2.8997,6.5013,28.233,3.224,6.4057,28.082,3.3417,6.4217,28.1419,3.4656,6.5188,28.3163,3.3985,6.624,28.4219,3.0138,6.6344,28.4797,3.0639,6.6654,28.3945,3.0874,6.2171,28.5659,3.084,6.2812,28.5964,3.0281,6.5163,28.676,3.0825,6.4288,28.6232,3.0244,6.3638,28.6914,3.0755,6.4782,28.6198,3.0373,6.5691,28.4854,3.0018,6.5555,28.483,2.9522,6.485,28.5496,2.9739,6.5071,28.5061,2.9099,6.4592,28.5351,2.9132,6.3859,28.5587,2.9331,6.362,28.5938,2.9903,6.3801,28.6183,3.0159,6.5401,28.5743,3.0339,6.5615,28.5196,3.02,6.6006,28.4448,2.923,6.5108,28.4867,2.8349,6.4365,28.5153,2.8428,6.3344,28.5529,2.9132,6.3123,28.6503,3.0723,6.6605,28.4518,3.1435,6.4668,28.2162,3.0479,6.6604,28.3837,3.0994,6.1325,28.141,3.2185,6.4168,28.3712,3.4205,6.462,28.681,3.2764,6.4054,28.5819,3.3539,6.3621,28.0441,3.2356,6.3809,28.0575,3.2897,6.2946,27.8707,3.3708,5.7038,27.212,3.4126,5.6223,27.2571,3.5908,5.7822,27.2753,3.7606,5.6241,27.4451,3.3556,6.0939,27.3958,3.4294,5.5782,27.4355,3.4287,5.5498,27.387,3.4668,5.5491,27.3405,3.5773,5.5359,27.325,3.498,5.6212,27.5296,3.5295,6.1148,27.2833,3.3884,6.2047,27.6667,3.6007,6.1502,27.4811,3.6623,5.9115,28.0787,3.4971,5.7883,27.8303,3.573,6.0165,28.0539,3.5403,5.8748,27.8056,3.6379,5.7179,27.2683,3.3161,5.9572,27.1095,3.4715,6.0219,27.132,3.4881,6.0649,27.2102,3.5303,6.0692,27.1978,3.5684,6.0675,27.1579,3.5615,6.0753,27.1787,3.5151,6.1043,27.2529,3.6826,6.0831,27.2219,3.536,6.0809,27.2058,3.5735,6.0626,27.2029,3.7406,6.0415,27.2317,3.7742,6.0667,27.3059,3.7387,6.1552,27.3656,3.6413,6.1528,27.423,3.6517,6.5995,28.3945,2.8003,6.3485,28.7138,3.1506,6.3486,28.7144,3.1654,6.6109,28.6007,3.1617,6.635,28.5235,3.152,6.5994,28.5926,3.0815,5.9101,27.2982,3.8074,5.9177,27.3164,3.8096,5.8476,27.2517,3.3215,6.5842,28.4059,2.7873,6.2768,28.496,2.9159,6.3832,28.39,2.9043,6.3503,28.7016,3.2129,6.4851,28.685,3.2062,6.4875,28.6857,3.1992,6.3507,28.7002,3.2202,6.3118,27.8815,3.4191,6.5458,28.4724,2.8518,6.5228,28.4688,2.7686,6.1008,27.2407,3.4267,6.0683,27.168,3.5089,6.0492,27.1504,3.6297,6.4105,28.5082,2.8131,6.5013,28.6925,3.1595,6.505,28.6918,3.1454,6.6093,28.6,3.1759,6.587,28.5885,3.2318,6.5904,28.5884,3.225,5.9294,27.1221,3.556,6.3078,27.9243,3.523,6.0328,27.9658,3.3127,5.8709,27.7119,3.3973,5.9348,28.0257,3.3749,5.8956,28.0639,3.4457,5.9886,27.7616,3.6566,5.9386,27.389,3.7722,6.0089,27.538,3.6997,6.0885,27.7218,3.6386,5.8662,27.4013,3.3858,5.8713,27.2304,3.7496,6.2693,28.062,3.172,6.1363,28.2771,3.4541,6.3118,28.0479,3.1829,6.2152,28.4399,3.3967,6.3089,28.413,3.4245,6.4053,28.2478,3.0174});
			return lmc_Coord_6_28_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lmc2_Geo' coordIndex field, scene-graph level=5, element #33, 4024 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 getlmc2_Geo_5_33_coordIndex()
		{
			MFInt32 lmc2_Geo_5_33_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlmc2_Geo_5_33_coordIndex_1()))
				.append(new MFInt32(getlmc2_Geo_5_33_coordIndex_2()))
				.append(new MFInt32(getlmc2_Geo_5_33_coordIndex_3()))
				.append(new MFInt32(getlmc2_Geo_5_33_coordIndex_4()))
				.append(new MFInt32(getlmc2_Geo_5_33_coordIndex_5()));
			return lmc2_Geo_5_33_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lmc2_Coord' point field, scene-graph level=6, element #33, 1515 total numbers made up of 505 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 getlmc2_Coord_6_33_point()
		{
			MFVec3f lmc2_Coord_6_33_point = new MFVec3f(new double[] {7.2868,28.3157,3.2133,7.2943,28.3287,3.2135,7.2979,28.3422,3.2407,6.8507,26.6896,4.1004,6.8464,26.6709,4.1055,6.9512,26.6832,4.0973,6.9354,26.6557,4.0988,7.274,28.2889,3.1652,7.2965,28.319,3.2011,7.2727,28.2751,3.1751,7.2748,28.2529,3.2181,7.1291,28.4466,3.217,7.162,28.4608,3.2521,7.1928,28.4569,3.1393,7.2174,28.4594,3.1931,7.3093,28.477,3.1269,7.3107,28.477,3.1169,7.3053,28.4833,3.1034,7.2999,28.4819,3.1182,7.2782,28.465,3.2086,7.2271,28.4611,3.2383,7.2321,28.4279,3.2664,6.9741,26.8879,4.1373,6.9846,26.8187,4.1101,7.0243,26.8349,4.0998,6.9464,26.7032,3.7365,6.9037,26.6982,3.722,6.9384,26.7606,3.7286,6.9533,26.7978,3.7214,6.9157,26.7678,3.728,6.922,26.8077,3.7295,6.8713,26.718,3.7376,7.1742,26.7349,3.7919,7.1897,26.7867,3.78,7.2325,26.7517,3.8182,6.9828,26.9994,4.1083,6.9647,27.0191,4.1027,6.9536,26.9405,4.1445,7.1617,26.6164,3.9709,7.159,26.6368,3.9982,7.1288,26.6133,4.0035,7.1407,26.644,4.027,7.1212,26.6473,4.0439,7.0952,26.6115,4.0513,7.0386,26.5632,4.0481,6.9711,26.5136,4.0402,7.0417,26.5477,4.0211,7.0988,26.5738,3.9495,7.1528,26.6422,3.9093,7.1457,26.6039,3.9486,6.7813,26.7088,4.0904,6.7535,26.7411,4.0781,6.7461,26.7244,4.085,6.8054,26.7186,4.0798,6.6708,26.8751,3.9893,6.6748,26.8204,4.0375,6.6887,26.8192,4.0513,6.6658,26.861,3.9917,7.0609,26.5267,3.9653,7.0334,26.515,3.9836,7.0103,26.4922,3.9417,6.9563,26.5083,3.8543,6.9733,26.4965,3.8921,6.937,26.4796,3.8925,6.9708,26.5258,3.8452,6.9896,26.5592,3.9236,6.9917,26.5091,3.8873,6.9628,26.7074,3.7438,6.953,26.652,3.7502,6.9682,26.6572,3.7664,6.6889,26.7041,3.8642,6.7172,26.6428,3.8303,6.6842,26.6721,3.8898,6.7195,26.6628,3.8239,6.7228,26.6793,3.818,6.7874,26.708,3.8396,6.7711,26.6797,3.7846,6.8675,26.61,3.7538,6.8513,26.5488,3.8072,6.7778,26.6327,3.7848,6.7808,26.5724,3.8387,6.6658,26.7499,3.8928,6.6698,26.6939,3.9414,6.6728,26.7622,3.8849,6.6964,26.7157,3.8561,6.7546,26.7655,3.8657,6.9386,27.9604,3.2791,6.9031,28.037,3.2042,6.9544,27.9519,3.2605,6.9345,28.0245,3.1799,6.852,28.2774,3.1717,6.8738,28.2553,3.1152,6.8554,28.2046,3.1279,6.9127,28.261,3.0217,6.933,28.2461,3.0056,6.8944,28.2238,3.0315,6.9052,28.2977,3.0205,6.9293,28.2779,2.9737,6.9332,28.261,2.9927,7.1064,27.1313,3.6858,7.0579,26.931,3.7189,6.9868,27.1311,3.6422,6.9784,28.5314,3.2896,6.9488,28.4776,3.3319,7.0093,28.4813,3.3494,7.0056,28.1932,2.948,7.0578,28.185,2.8799,7.0223,28.2196,2.8876,7.0467,28.2303,2.8122,6.9891,28.252,2.8795,7.0276,28.2495,2.8098,6.8834,28.4914,3.2363,6.858,28.3867,3.1649,6.869,28.4502,3.2779,6.8679,28.3974,3.1456,7.035,28.3525,3.4334,7.0346,28.4243,3.4236,6.9491,28.3371,3.4262,7.0223,28.4622,3.3714,6.9329,28.4486,3.3546,6.878,28.3272,3.1889,6.8965,28.3215,3.1732,6.8839,28.3114,3.1783,6.9015,28.3119,3.1495,6.896,28.3025,3.1548,6.837,28.3361,3.2157,6.8606,28.3006,3.1593,6.8868,28.2904,3.1045,6.8756,28.2879,3.1268,6.889,28.3242,3.0958,6.9019,28.343,3.1657,6.883,28.3679,3.129,6.9014,28.3249,3.1512,6.882,28.3419,3.1848,7.2706,28.2455,3.2213,7.2569,28.2208,3.1932,7.2338,28.4525,3.3312,7.2673,28.4547,3.2845,7.2597,28.4585,3.2825,7.2456,28.4476,3.3238,7.2368,28.4484,3.3356,7.2076,28.464,3.343,7.2244,28.4532,3.3426,7.1951,28.1198,3.2398,7.208,28.1797,3.1769,7.1337,28.5025,3.3329,7.1586,28.4727,3.3666,7.188,28.4763,3.3408,6.8553,28.2609,3.3224,6.8757,28.34,3.3834,6.8462,28.289,3.2988,6.8843,28.3141,3.3922,6.8668,28.1212,3.1026,6.8793,28.1796,3.0513,6.9029,28.1478,3.0374,6.8569,28.1611,3.1747,6.835,28.3608,3.2122,6.8612,28.4205,3.3108,7.1103,28.3544,3.4105,7.1493,28.342,3.3886,7.1621,28.4283,3.3847,7.2648,28.4971,3.0365,7.259,28.4741,3.1252,7.2412,28.4631,3.167,7.2234,28.4436,3.3213,7.2364,28.4355,3.2991,7.217,28.4409,3.3057,7.2051,28.4437,3.294,7.1916,28.4438,3.3167,7.0219,28.264,2.8153,7.0383,28.2566,2.8075,7.2863,28.4715,3.0131,7.2941,28.4648,3.0225,7.2412,28.3528,2.9149,7.2311,28.3628,2.9076,7.1336,28.4982,3.3169,7.1762,28.4588,3.2684,6.9822,28.5332,3.2642,7.0801,28.4917,3.2687,6.9074,28.4979,3.1957,6.8916,28.4976,3.2178,7.0621,28.23,2.813,7.058,28.2405,2.8109,6.8839,28.3972,3.11,6.8748,28.3926,3.1223,7.2777,28.4946,3.0289,7.2875,28.4765,3.0227,7.2113,28.4533,2.9432,7.2364,26.7639,3.8149,7.2107,26.8062,3.7869,7.2333,26.8154,3.8031,7.1654,26.6968,3.8247,7.2403,26.8152,3.8202,7.2317,26.8114,3.8533,7.2398,26.7631,3.8262,7.1893,27.1102,3.7521,7.2274,26.9077,3.7895,7.1525,26.9233,3.7562,7.0003,26.9621,4.1174,6.9526,26.9295,4.1447,7.0051,26.9098,4.1237,6.7312,26.6649,4.0792,6.7132,26.6491,4.0603,6.673,26.7324,4.0362,6.697,26.6324,4.015,6.6688,26.7122,3.9825,7.1437,26.6988,3.9896,7.1403,26.6546,4.0107,7.1514,26.646,3.986,7.1711,26.688,3.9643,7.1408,26.5965,3.97,7.1563,26.6237,3.9554,7.1856,26.6719,3.9342,6.8622,26.729,3.7419,6.8128,26.6872,3.7607,6.8531,26.7369,3.7901,6.8044,26.7624,3.8202,6.7749,26.6625,3.7769,7.0304,26.678,4.0949,6.9563,26.6971,4.0879,7.0369,26.6947,4.0899,6.6621,26.8787,3.9413,6.6575,26.8687,3.9519,7.0256,26.8163,3.7255,7.1353,26.8184,3.7624,7.0231,27.199,3.9812,7.0733,27.1685,3.9494,7.0652,27.4331,3.8447,7.0004,27.0691,4.0555,6.9802,27.0778,4.053,7.0011,27.2016,3.9774,7.1679,28.161,3.0726,7.2078,28.1895,3.1683,7.1661,28.1437,3.0523,7.2708,28.3074,3.0759,7.2633,28.2993,3.0798,7.243,28.2593,3.0197,7.2461,28.2632,3.0094,7.1764,28.1774,3.0085,7.1811,28.1861,3.004,7.1812,28.1861,3.0151,7.2713,28.2455,3.2285,7.1996,28.2349,3.1021,7.2261,28.2338,3.148,7.2057,28.2109,3.1342,7.2279,28.2797,3.0869,7.2318,28.264,3.1344,7.1722,28.2191,3.0575,7.198,28.272,3.0562,7.2787,28.2616,3.2276,7.2845,28.3541,3.2872,7.2669,28.2815,3.1563,7.2964,28.3675,3.0438,7.3166,28.415,3.1552,7.2798,28.3627,3.2951,7.2566,28.2713,3.2968,7.2486,28.2763,3.3047,7.2752,28.2547,3.2302,7.2115,28.1488,3.3016,7.1842,27.9892,3.3547,7.1899,28.0087,3.3723,7.178,27.8935,3.4298,7.1628,27.8827,3.4071,7.1869,27.3637,3.6534,7.1751,27.6476,3.5273,7.1955,27.3677,3.6651,7.1848,27.6618,3.5452,7.2342,26.7486,3.8227,7.0504,28.0194,3.1294,7.0714,28.0833,3.0166,7.0827,28.0313,3.1346,7.1083,28.0897,3.0223,7.0364,27.9335,3.2227,6.9842,27.8277,3.3321,7.0101,27.9357,3.2333,6.9856,27.9376,3.2454,7.0279,27.8248,3.3029,7.1578,27.6817,3.6025,7.1879,27.3795,3.6862,7.1721,27.6712,3.5722,7.1187,27.6142,3.4886,7.1125,27.3574,3.6126,6.9485,27.3568,3.5927,6.958,27.1349,3.6481,6.9144,27.1495,3.6801,6.9932,27.3577,3.5694,7.2303,26.9112,3.8126,7.2039,27.1254,3.7752,7.0594,26.5268,3.945,7.0308,26.505,3.9324,6.9657,26.6145,3.7831,6.9985,26.6043,3.8476,6.9629,26.5463,3.8185,6.9999,26.6594,3.7986,7.1276,26.6519,3.877,7.1015,26.6625,3.8441,7.1059,26.694,3.8154,7.2277,26.8688,3.7962,7.1777,26.8568,3.7767,7.1886,26.7427,3.942,7.1656,26.8241,3.9451,7.155,26.7487,3.9757,7.1972,26.806,3.9056,7.0463,26.7376,4.076,7.1251,26.7573,4.0079,7.0634,26.792,4.0678,7.117,26.7074,4.019,6.7582,26.9125,3.9941,6.8196,26.8012,4.0482,6.8893,26.7352,4.0661,6.9284,26.8348,4.1136,6.8905,26.8873,4.09,6.8718,26.9574,4.0726,6.8354,26.9731,4.014,6.8269,27.0222,3.9254,6.7651,26.8713,3.8454,6.7149,26.8909,3.8877,6.8295,26.9878,3.789,6.8149,27.0084,3.8819,6.7251,26.9186,3.9474,6.721,26.911,3.9087,6.6562,26.8628,3.9205,6.7304,26.8352,3.8803,6.665,26.8116,3.9044,6.948,26.5372,3.8112,6.9495,26.6106,3.7669,6.6945,26.7536,4.0775,6.7572,26.5903,4.0723,6.7345,26.5861,3.873,6.7565,26.532,3.926,6.6924,26.6234,3.9884,6.7253,26.5666,4.0211,6.81,26.5264,4.0573,6.7841,26.5124,4.0218,6.8845,26.4865,4.0303,6.7951,26.4896,3.9763,6.854,26.4663,3.9475,6.9548,26.4713,3.9782,6.9777,26.4942,4.0064,6.9311,26.5341,4.0685,6.8564,26.5451,4.081,6.9663,27.8405,3.3543,6.9674,27.592,3.4993,6.9608,27.858,3.3843,7.0632,27.966,3.5926,7.0937,28.1148,3.4982,7.0605,28.1232,3.5168,7.0988,27.9601,3.5596,6.9704,28.0952,3.4823,6.9493,28.064,3.4519,6.9919,27.9343,3.5427,6.983,28.0201,3.1563,7.3153,28.422,3.1653,7.2908,28.4425,3.1772,6.9356,28.4074,3.4109,6.9705,28.4166,3.4217,6.9345,28.424,3.3883,6.995,28.2297,3.4556,7.0499,28.2455,3.4705,7.2042,28.3063,3.3438,7.1797,28.189,3.3688,7.2145,28.1549,3.3216,7.3006,28.4701,3.163,7.2939,28.4636,3.1973,7.1318,28.0674,3.1501,7.2458,28.2255,3.1769,7.1787,28.2486,2.9038,7.2416,28.3103,2.9656,7.1685,28.2883,2.8617,7.1578,28.397,2.889,7.1045,28.1109,2.9847,7.0758,28.1841,2.8779,7.0839,28.1124,2.9756,6.849,28.2421,3.2051,6.8351,28.3229,3.2676,6.8301,28.3414,3.2389,6.929,28.4039,3.1138,6.9652,28.4491,3.1698,7.1758,28.4506,3.0625,7.0118,28.4811,3.2123,7.0688,28.4638,3.2269,7.0506,28.4329,3.1716,7.016,28.4364,3.1685,7.1481,28.4271,3.0004,7.0976,28.3869,2.9695,7.0633,28.3972,3.0548,7.0421,28.336,2.9324,6.9853,28.3422,3.0098,7.0306,28.3794,3.0517,6.9778,28.4042,3.1233,6.9976,28.4301,3.151,7.0312,28.4041,3.1175,7.0837,28.4259,3.1659,7.1048,28.4226,3.1201,7.0975,28.4189,3.0886,6.9939,28.3798,3.0879,6.9531,28.3459,3.0536,7.2823,28.4703,3.191,7.2915,28.4757,3.1597,6.8941,28.1097,3.3117,6.8554,28.2031,3.2427,6.9106,28.1602,3.3808,6.8606,28.3746,3.3628,6.9351,28.3727,3.4299,6.9784,28.1739,2.9669,7.1728,28.1983,3.085,7.2881,28.46,3.2123,7.1359,28.2378,3.4216,7.0951,28.2534,3.4497,7.1278,28.0935,3.4642,6.9367,28.202,3.44,7.035,27.9571,3.5873,7.0183,28.1108,3.4996,7.1162,27.8551,3.3532,6.8895,26.5418,4.0777,6.9036,26.464,3.9535,6.7091,26.6074,3.9274,6.9798,26.593,4.0898,7.0166,26.6419,4.0927,6.8613,26.7,4.0855,6.6471,26.8523,3.9293,6.6541,26.8037,3.9143,6.655,26.7888,3.9504,6.6611,26.8098,4.0049,6.8227,26.9958,3.821,6.9271,27.0692,4.0516,6.7133,26.7625,4.0731,7.0377,26.9776,4.07,7.0752,26.993,4.0133,7.2369,26.8672,3.8157,7.2119,26.8514,3.8644,6.9964,26.716,3.7553,6.9669,26.9321,3.6988,6.9088,27.187,3.8005,6.9655,27.2021,3.9526,7.1822,26.9412,3.8802,7.0137,27.6747,3.6911,6.9406,27.3886,3.6948,7.01,27.4305,3.8161,6.9696,27.6201,3.5724,6.9775,27.5884,3.4789,7.0138,27.5845,3.4515,7.0523,27.8289,3.3072,7.0373,27.5833,3.4472,6.9034,27.1555,3.706,7.1778,27.3898,3.709,6.8562,26.965,3.7448,7.1187,26.6609,4.0316,6.8224,26.6675,3.7595,6.9397,26.9426,4.1436,6.9341,27.0112,4.1075,6.9024,26.9484,4.116,7.2241,26.7864,3.8747,7.2171,26.7103,3.8813,7.2386,26.7533,3.8293,7.2203,26.7442,3.8868,7.1093,27.7074,3.6708,7.1415,27.689,3.6323,7.088,28.3316,2.8514,7.1026,28.3261,2.8412,6.9107,28.3052,3.0217,6.9894,28.2647,2.8851,7.193,28.4715,3.3305,6.9124,28.1065,3.0722,6.938,28.288,2.9729,6.9743,28.1048,3.0418,6.8305,26.8459,3.7904,7.1975,26.6919,3.8629,6.9407,26.9309,4.1459,6.9112,26.9089,4.1243,6.9363,26.8836,4.1369,6.8829,26.6491,3.7373,6.9658,26.7364,4.071,7.0393,26.8891,4.0861,7.2247,28.4636,3.2243,6.911,26.6009,4.0964,6.8445,26.6086,4.1027,7.1585,27.9111,3.4656,7.1599,28.0496,3.4168,7.135,26.8399,3.978,7.1458,26.964,3.9314,7.1046,26.5928,4.0095,7.1076,26.5707,3.9722,7.1106,26.7288,3.7845,6.9593,27.8885,3.4373,6.8968,28.066,3.2479,6.9349,28.0088,3.37,6.9332,27.9787,3.3161,7.1212,27.9539,3.2692,7.0616,27.9361,3.229,6.8576,28.3958,3.3393,7.1587,28.3007,2.8548,7.1449,28.4004,2.896,7.2009,28.4563,2.9511,7.1203,27.4156,3.7871,6.9328,26.9373,3.7045,7.0722,27.7092,3.7168,7.0486,27.6995,3.715,6.9392,27.3599,3.612,7.0226,27.3574,3.5633,7.0404,27.434,3.8397,7.1347,27.1465,3.8785,7.0781,26.8727,4.0413,6.8432,26.4948,3.8842,7.1325,27.935,3.5136});
			return lmc2_Coord_6_33_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lmc3_Geo' coordIndex field, scene-graph level=5, element #38, 4336 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 getlmc3_Geo_5_38_coordIndex()
		{
			MFInt32 lmc3_Geo_5_38_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlmc3_Geo_5_38_coordIndex_1()))
				.append(new MFInt32(getlmc3_Geo_5_38_coordIndex_2()))
				.append(new MFInt32(getlmc3_Geo_5_38_coordIndex_3()))
				.append(new MFInt32(getlmc3_Geo_5_38_coordIndex_4()))
				.append(new MFInt32(getlmc3_Geo_5_38_coordIndex_5()));
			return lmc3_Geo_5_38_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lmc3_Coord' point field, scene-graph level=6, element #38, 1632 total numbers made up of 544 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 getlmc3_Coord_6_38_point()
		{
			MFVec3f lmc3_Coord_6_38_point = new MFVec3f(new double[] {7.2988,28.195,3.0163,7.3547,28.0654,3.116,7.3443,28.2123,3.1126,7.1265,26.5516,3.2116,7.1231,26.5452,3.2103,7.0713,26.5778,3.2825,7.0782,26.583,3.2754,7.1417,26.6307,3.2102,7.1079,28.3145,2.6677,7.1471,28.3692,2.6599,7.087,28.3185,2.5974,7.0867,26.7352,3.312,7.0887,26.6666,3.2918,7.068,26.6718,3.3053,7.2391,26.5577,3.0508,7.2805,26.5671,3.0338,7.2576,26.4457,3.0807,7.2135,26.4604,3.0835,7.2477,26.8565,3.1303,7.2699,27.1029,3.1669,7.2936,27.09,3.1024,7.2103,26.8729,3.1947,7.1573,26.5168,3.1087,7.0909,26.5063,3.1929,7.0967,26.5173,3.1949,7.1522,26.4887,3.1131,7.5106,26.3863,3.3907,7.5446,26.4369,3.4271,7.5063,26.3794,3.4072,7.5379,26.4339,3.4078,7.4956,26.4242,3.3175,7.543,26.4573,3.3625,7.5092,26.3997,3.3512,7.5303,26.4846,3.3002,7.1823,26.2941,3.4456,7.1455,26.3173,3.4428,7.1521,26.2801,3.3837,7.1367,26.2915,3.3763,7.408,26.3133,3.2696,7.4339,26.3185,3.301,7.3769,26.2726,3.28,7.4062,26.2837,3.3322,7.4139,26.3879,3.258,7.4595,26.4586,3.2493,7.4384,26.3798,3.2853,7.1606,26.4328,3.5401,7.2085,26.4452,3.554,7.1797,26.4616,3.5419,7.1962,26.421,3.5611,7.4757,28.63,2.8546,7.4834,28.6289,2.8604,7.5208,28.5638,2.8132,7.4869,28.5697,2.8164,7.5229,28.5669,2.8602,7.5308,28.5628,2.8397,7.4883,28.6315,2.8797,7.5338,28.4963,2.8891,7.55,28.5164,2.8451,7.5332,28.5215,2.8899,7.5626,28.4843,2.8364,7.6245,28.3912,2.8041,7.6221,28.4446,2.7731,7.6119,28.3942,2.8138,7.6323,28.4424,2.7606,7.5625,28.5116,2.81,7.1972,26.7788,3.4903,7.2361,26.677,3.5561,7.2555,26.7832,3.541,7.1844,26.6954,3.5165,7.5732,28.4404,2.839,7.6336,28.4673,2.724,7.6501,28.438,2.7416,7.2299,28.1387,2.9585,7.2121,28.2263,2.9152,7.1572,28.1949,2.8578,7.1821,28.1007,2.8882,7.2907,28.3173,3.0207,7.2912,28.3329,3.0213,7.2857,28.3238,3.0097,7.1616,28.2036,2.8508,7.2131,28.2349,2.9084,7.2395,28.2913,2.8664,7.1992,28.245,2.832,7.2445,28.2644,2.9568,7.4758,28.6365,2.8669,7.4836,28.6373,2.882,7.4865,28.6297,2.8931,7.4399,28.6481,2.9126,7.4417,28.6435,2.9257,7.544,28.0359,2.7507,7.5022,28.118,2.6728,7.5315,28.1368,2.6658,7.5334,28.0277,2.7499,7.5073,26.6265,3.1796,7.6352,26.6684,3.258,7.598,26.5811,3.2938,7.484,28.244,2.6282,7.488,28.1915,2.6506,7.4762,28.2434,2.6281,7.4753,28.2148,2.6431,7.4527,28.2564,2.6296,7.4561,28.2157,2.6357,7.4656,28.2796,2.6087,7.4435,28.2537,2.6004,7.4509,28.2784,2.5989,7.4381,28.2243,2.6122,7.4521,28.3061,2.5505,7.4275,28.2492,2.5498,7.4459,28.3175,2.5328,7.4059,28.2462,2.5286,7.4892,28.3192,2.5538,7.4792,28.3092,2.5718,7.3046,28.0101,2.6215,7.3381,28.0122,2.6122,7.3511,27.9684,2.6744,7.3303,27.9645,2.6749,7.2581,28.3028,2.4509,7.2764,28.3326,2.4571,7.277,28.3035,2.4477,7.2503,28.422,2.7244,7.2818,28.4379,2.7596,7.3454,28.4241,2.6898,7.389,28.6432,2.9306,7.4021,28.6473,2.9431,7.4029,28.6513,2.9251,7.304,28.4515,2.8043,7.3342,28.5329,2.8675,7.3127,28.4562,2.7954,7.3207,28.5146,2.8767,7.4956,28.3452,2.5694,7.5986,28.3893,2.6184,7.612,28.37,2.6163,7.2387,28.4138,2.7387,7.1493,28.3782,2.6352,7.6029,28.4642,2.7191,7.6924,28.4462,2.6651,7.6654,28.4488,2.6472,7.4306,28.3414,2.5278,7.5228,28.5205,2.914,7.5146,28.567,2.8857,7.5106,28.5686,2.9066,7.3758,28.5996,2.8836,7.3999,28.6442,2.9109,7.438,28.6381,2.8751,7.4268,28.5904,2.8466,7.4757,26.3916,3.4596,7.4706,26.4284,3.4966,7.4479,26.3926,3.4911,7.2358,26.939,3.4305,7.3595,27.1733,3.4174,7.2945,27.1578,3.343,7.2971,26.9399,3.4841,7.2078,26.8375,3.4729,7.2644,26.5256,3.5391,7.2435,26.5325,3.5302,7.2574,26.507,3.5363,7.2365,26.502,3.5281,7.2295,26.5077,3.526,7.2162,26.5324,3.5225,7.2221,26.5601,3.5264,7.0853,26.3672,3.4033,7.0973,26.4306,3.4788,7.0606,26.477,3.4335,7.0456,26.5585,3.297,7.1042,26.733,3.4795,7.0465,26.6805,3.4228,7.1164,26.6877,3.5185,7.1512,26.7703,3.4637,7.1855,26.8472,3.4319,7.3729,28.3941,3.0984,7.3373,28.3945,3.0842,7.3346,28.3181,3.0989,7.3753,28.3192,3.1231,7.1475,26.3027,3.2464,7.159,26.2953,3.2467,7.143,26.2934,3.2845,7.3635,26.6552,3.5471,7.328,26.5714,3.5748,7.351,26.5668,3.5612,7.322,26.6531,3.5849,7.6171,26.8294,3.3211,7.614,27.1174,3.2826,7.5782,26.8498,3.3575,7.0488,26.685,3.3293,7.2726,26.4757,3.5522,7.2776,26.4618,3.5744,7.3358,26.4707,3.5823,7.3302,26.4987,3.5633,7.373,26.4936,3.123,7.4135,26.4712,3.1793,7.3517,26.4459,3.1172,7.1773,26.2771,3.2644,7.1706,26.2853,3.252,7.1845,26.2661,3.2973,7.1754,26.2681,3.3164,7.1844,26.2706,3.2774,7.1257,26.3127,3.2704,7.1356,26.3087,3.2543,7.119,26.3097,3.2984,7.122,26.3122,3.2822,7.1286,26.2941,3.3265,7.1222,26.3034,3.3127,7.1592,26.2748,3.3315,7.1427,26.2852,3.3347,7.3123,26.2489,3.2723,7.2908,26.2437,3.343,7.23,26.2456,3.3099,7.2291,26.2547,3.272,7.1475,26.4588,3.1257,7.2308,26.3373,3.1418,7.3011,26.4118,3.0974,7.1939,26.9059,3.3165,7.1351,26.7715,3.2865,7.151,26.8363,3.3551,7.1884,26.8907,3.2577,7.0699,26.7491,3.4088,7.0414,26.5268,3.2931,7.0361,26.5887,3.3461,7.0383,26.5259,3.3612,7.2235,26.9301,3.4016,7.2839,26.7794,3.5695,7.2759,26.6618,3.5774,7.1979,26.5921,3.5218,7.1776,26.5318,3.5247,7.2012,26.4776,3.5336,7.2224,26.4664,3.5418,7.2501,26.5795,3.5456,7.1187,26.4754,3.5244,7.2841,26.442,3.5838,7.3157,26.4266,3.5844,7.3317,26.4518,3.588,7.3324,26.5128,3.5575,7.4033,26.5093,3.523,7.4176,26.5547,3.514,7.4964,26.4681,3.4995,7.3997,26.4584,3.5586,7.4582,26.395,3.3038,7.3916,26.3327,3.2279,7.3992,26.4159,3.2201,7.4785,26.5382,3.2081,7.4347,26.5131,3.1791,7.5335,26.5252,3.263,7.4678,26.3463,3.3366,7.4149,26.5502,3.151,7.3921,26.7095,3.1053,7.427,26.3177,3.4282,7.4548,26.3201,3.3816,7.1819,26.5444,3.121,7.2451,26.6043,3.0692,7.2665,26.736,3.1012,7.1999,26.6233,3.1294,7.2234,26.731,3.1273,7.2558,26.6702,3.0852,7.4004,27.1663,3.4301,7.4158,27.3657,3.3737,7.377,27.3701,3.3505,7.3224,27.2796,3.0591,7.3247,27.0823,3.0833,7.6523,28.1147,2.8934,7.6625,28.2227,2.8449,7.5928,28.2361,2.934,7.652,28.1109,2.8951,7.608,28.1389,2.9647,7.6084,28.438,2.6588,7.5036,28.1474,2.6596,7.5226,28.2262,2.619,7.5013,28.2362,2.6225,7.3635,27.9007,2.7471,7.3046,28.0097,3.0116,7.25,28.0938,2.9779,7.2344,28.0596,2.9414,7.1033,28.1913,2.7689,7.0743,28.2477,2.6509,7.0967,28.1657,2.7195,7.2342,28.3062,2.8577,7.2522,28.3626,2.9021,7.2057,28.3348,2.8472,7.2616,28.3232,2.9146,7.3858,28.5308,3.0189,7.3661,28.5254,3.0032,7.2538,28.3731,2.8967,7.305,28.4801,2.8837,7.2769,28.4211,2.8525,7.2013,28.3694,2.7642,7.4124,28.4263,2.6903,7.4098,28.412,2.6507,7.3244,28.4016,2.5975,7.3864,28.4032,2.6158,7.2802,28.4014,2.6244,7.3739,28.4602,2.7473,7.3328,28.4626,2.7792,7.4024,28.4444,2.7172,7.5001,28.4772,2.7609,7.4111,28.5318,2.8074,7.441,28.6449,2.8866,7.5179,28.4182,2.6889,7.4958,28.3738,2.6016,7.4702,28.1526,2.6384,7.4659,28.1901,2.6308,7.1104,28.198,2.7778,7.1137,28.189,2.7855,7.1972,28.2574,2.8262,7.1613,28.3033,2.8144,7.3299,27.4469,3.0107,7.3117,27.7435,2.8961,7.3934,27.4374,2.9889,7.3742,27.7246,2.8653,7.4284,27.5699,3.3123,7.4176,27.8699,3.2124,7.3871,27.5651,3.2897,7.38,27.8675,3.1789,7.5757,28.338,2.8899,7.5589,28.4975,2.7696,7.3579,28.5373,2.8443,7.3576,28.5904,2.9045,7.2055,28.3453,2.8396,7.2367,28.3827,2.8057,7.1325,28.1823,2.8043,7.118,28.1799,2.7931,7.1255,28.1676,2.8039,7.4636,28.0044,2.7153,7.4547,27.9197,2.7783,7.4264,27.9892,2.6969,7.4692,28.1265,2.646,7.409,28.1048,2.6062,7.4063,28.1562,2.5742,7.6329,27.9896,2.8866,7.5382,27.9496,2.8303,7.5851,28.0066,2.8178,7.616,28.035,3.0085,7.6495,28.0096,2.9263,7.5812,28.3204,2.9051,7.6618,28.3486,2.7765,7.2443,27.9538,2.9082,7.2413,27.9443,2.8824,7.2849,27.7692,2.9488,7.279,27.7841,2.9808,7.2522,27.1239,3.2243,7.3209,26.9458,3.5179,7.5676,26.5086,3.3327,7.3726,26.3653,3.1788,7.4984,26.5155,3.4662,7.5149,26.5583,3.4476,7.2926,26.525,3.5565,7.2463,26.5536,3.5352,7.1137,26.7924,3.3829,7.0451,26.6087,3.4296,7.366,26.2724,3.3834,7.3217,26.5331,3.0518,7.2226,26.2679,3.4335,7.2798,26.3027,3.4957,7.2257,26.3328,3.5192,7.1212,26.303,3.3688,7.1208,26.3337,3.4344,7.1069,26.3189,3.3421,7.5517,26.4581,3.4165,7.2814,26.5773,3.5678,7.3341,26.5826,3.0616,7.2908,26.6128,3.054,7.5556,27.7634,2.9374,7.4628,27.7364,2.8976,7.1602,26.6934,3.516,7.2213,26.517,3.5237,7.4009,26.4718,3.5528,7.5408,26.4734,3.4629,7.6844,28.4267,2.6429,7.3469,28.5551,2.932,7.3931,28.5884,2.9821,7.4434,28.5895,2.9693,7.4116,28.0534,2.6381,7.2871,28.3976,3.0105,7.3321,28.5089,2.952,7.4174,28.1786,2.5876,7.4725,28.2897,2.5974,7.4316,28.21,2.6045,7.3573,26.9431,3.5243,7.396,26.925,3.4941,7.433,27.1574,3.4271,7.2914,27.2947,3.1103,7.3177,27.3482,3.2728,7.3388,27.5301,3.2064,7.4692,28.0845,2.6684,7.2376,28.2978,2.8624,7.2624,28.3153,2.918,7.2589,28.3077,2.9223,7.2429,28.2734,2.9488,7.2803,28.3154,2.9975,7.1084,28.1814,2.7773,7.2826,28.38,3.0157,7.2853,28.3344,3.012,7.4862,28.5795,2.9376,7.4584,26.3243,3.3685,7.5645,26.5656,3.4033,7.5562,26.5242,3.4213,7.5865,26.5471,3.3625,7.5664,26.5,3.3898,7.4964,26.5061,3.4716,7.4008,26.5014,3.5257,7.5527,26.5153,3.4288,7.3708,27.0739,3.0741,7.3856,27.2645,3.0336,7.1033,26.6657,3.2811,7.1872,26.5568,3.1237,7.3631,26.6461,3.0835,7.6068,28.0557,2.7896,7.1194,28.1285,2.7521,7.1202,28.1603,2.7935,7.1133,28.1725,2.7843,7.2039,28.0233,2.8748,7.1677,28.079,2.8483,7.3227,28.0632,2.5726,7.2898,28.0597,2.5829,7.1923,28.0808,2.6683,7.1621,28.0618,2.8097,7.2161,28.0297,2.7081,7.6219,28.1618,2.7224,7.656,28.0798,2.8306,7.3063,26.6747,3.0719,7.3218,26.7365,3.0898,7.216,28.3746,2.5723,7.1511,28.3279,2.5244,7.2987,28.3727,2.5219,7.2758,26.376,3.5679,7.1738,26.3676,3.5147,7.1822,26.4929,3.5263,7.1502,26.4832,3.5294,7.1127,26.5237,3.5229,7.1556,26.6042,3.5254,7.113,26.6163,3.5269,7.1451,26.5279,3.5253,7.1989,28.2508,2.8296,7.1592,28.3112,2.8072,7.3765,28.5809,2.9727,7.6256,28.2624,2.6707,7.5372,27.3356,3.316,7.4527,27.3537,3.3735,7.5243,27.1438,3.368,7.2954,27.4828,3.1014,7.2768,27.3117,3.1593,7.3031,27.4661,3.0583,7.4651,27.2672,3.0552,7.4747,27.4471,3.0119,7.6177,27.3159,3.2379,7.6222,27.2797,3.1444,7.6468,27.0938,3.228,7.6155,27.0786,3.1859,7.6474,27.2927,3.1849,7.6499,27.8017,3.023,7.6228,27.7847,2.9834,7.6519,26.8112,3.2709,7.6271,26.8015,3.2269,7.2841,28.2302,2.4646,7.2492,28.2293,2.4743,7.458,28.0759,3.1516,7.4673,27.8635,3.2134,7.4021,28.0785,3.1494,7.439,28.2524,2.5862,7.4528,28.2899,2.584,7.2792,27.9184,2.8077,7.2481,27.9758,2.7583,7.3073,28.1144,2.533,7.2751,28.1093,2.5442,7.2724,28.4316,2.7718,7.7049,28.3442,2.7203,7.6996,28.3285,2.6942,7.1025,28.3387,2.5873,7.141,28.3024,2.5266,7.3968,26.3273,3.4762,7.3314,26.2806,3.4433,7.6535,26.6914,3.2994,7.499,26.4818,3.4931,7.5456,26.4895,3.4519,7.5564,26.726,3.391,7.6057,26.7179,3.3528,7.3758,26.7548,3.5291,7.4758,26.8918,3.4396,7.4529,26.7429,3.473,7.4367,26.6481,3.4923,7.5337,26.6334,3.4209,7.3254,26.7742,3.5756,7.0892,26.4862,3.1954,7.0781,26.4017,3.2826,7.0441,26.5011,3.2902,7.1019,26.4005,3.2254,7.0489,26.531,3.4347,7.0419,26.4935,3.3625,7.1685,28.132,2.6284,7.1563,26.3179,3.211,7.1333,26.3294,3.2265,7.1006,26.3313,3.3139,7.114,26.337,3.2584,7.1066,26.3359,3.2819,7.2202,26.2679,3.2447,7.2114,26.2498,3.3491,7.183,26.2613,3.3757,7.5578,27.4632,3.0499,7.3266,26.3293,3.1571,7.2995,26.2717,3.2212,7.2706,26.2972,3.1734,7.3517,26.2947,3.2162,7.179,26.3033,3.2117,7.5631,26.4944,3.3861,7.202,26.2836,3.2221,7.2651,26.2476,3.3904,7.0668,26.3905,3.347,7.1367,26.3879,3.1687,7.1855,26.3672,3.1384,7.1402,26.3878,3.5046,7.5828,26.6287,3.3798,7.6161,26.6047,3.3329,7.5206,26.8206,3.1606,7.4331,26.8488,3.1209,7.3312,26.3491,3.5361,7.3448,26.8494,3.099,7.171,26.7424,3.2011,7.6209,27.5211,3.1878,7.5492,27.5428,3.2545,7.4528,27.0749,3.0902,7.531,27.0729,3.1332,7.4407,28.5297,3.0088,7.4904,28.5273,2.9696,7.4391,28.3859,3.0914,7.3288,27.8348,3.0819,7.444,28.312,3.1179,7.3881,28.2213,3.1383,7.4513,28.206,3.1345,7.5336,28.1707,3.0589,7.5456,28.0582,3.0876,7.5098,28.3908,3.0264,7.6211,27.8257,3.0882,7.6913,28.1964,2.7628,7.4124,28.37,2.5518,7.145,28.2342,2.554,7.2006,28.0128,2.8432,7.6475,27.4989,3.136,7.5516,27.8553,3.1612,7.4716,27.5649,3.3106,7.6202,27.4815,3.0935,7.701,28.2143,2.7932,7.5207,28.2778,3.0511,7.2936,26.8535,3.1062,7.5503,27.271,3.0955,7.3704,26.4092,3.5563,7.6686,28.0968,2.8697});
			return lmc3_Coord_6_38_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lmc4_Geo' coordIndex field, scene-graph level=5, element #43, 4120 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 getlmc4_Geo_5_43_coordIndex()
		{
			MFInt32 lmc4_Geo_5_43_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlmc4_Geo_5_43_coordIndex_1()))
				.append(new MFInt32(getlmc4_Geo_5_43_coordIndex_2()))
				.append(new MFInt32(getlmc4_Geo_5_43_coordIndex_3()))
				.append(new MFInt32(getlmc4_Geo_5_43_coordIndex_4()))
				.append(new MFInt32(getlmc4_Geo_5_43_coordIndex_5()));
			return lmc4_Geo_5_43_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lmc4_Coord' point field, scene-graph level=6, element #43, 1551 total numbers made up of 517 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 getlmc4_Coord_6_43_point()
		{
			MFVec3f lmc4_Coord_6_43_point = new MFVec3f(new double[] {7.326,28.3186,2.2564,7.3795,28.1731,2.2004,7.3512,28.1978,2.2271,7.6327,26.4079,2.494,7.6272,26.4443,2.4787,7.6476,26.4187,2.5012,7.6004,26.4161,2.4677,7.6146,26.4076,2.4809,7.5993,26.4583,2.4527,7.5948,26.4358,2.4569,7.6251,26.4759,2.4656,7.612,26.4684,2.4585,7.6587,26.4655,2.4936,7.6465,26.4791,2.4801,7.4442,26.5136,2.8557,7.4148,26.4871,2.8475,7.4471,26.4877,2.8583,7.4051,26.5304,2.8433,7.4313,26.5288,2.8509,7.3715,26.4904,2.8364,7.3861,26.5145,2.8389,7.4032,26.4446,2.8487,7.3778,26.462,2.8402,7.4467,26.4687,2.8595,7.4291,26.4478,2.8559,7.5304,28.4339,2.448,7.5319,28.4176,2.3579,7.5248,28.4072,2.4312,7.5223,28.398,2.3758,7.4925,26.7199,2.3982,7.5293,26.6032,2.3795,7.4428,26.6404,2.3611,7.5565,26.7254,2.3964,7.3209,26.6795,2.7703,7.295,26.6732,2.6965,7.2349,26.6285,2.7298,7.3801,26.3869,2.8528,7.3202,26.4213,2.8298,7.34,26.3696,2.8428,7.601,26.6026,2.4051,7.5599,26.5684,2.3832,7.6685,26.6573,2.4125,7.6736,26.6196,2.4266,7.655,26.7259,2.4116,7.3287,28.3135,2.1173,7.3079,28.3172,2.1243,7.3444,28.3444,2.1312,7.3629,28.3549,2.4702,7.3389,28.3084,2.4836,7.3516,28.3083,2.4929,7.3927,26.5886,2.8352,7.4498,26.5919,2.863,7.765,28.0199,2.507,7.7718,28.1347,2.4919,7.785,28.1381,2.5267,7.763,28.152,2.5977,7.7486,28.0259,2.6134,7.3247,28.2656,2.1387,7.2967,28.3268,2.1423,7.3197,28.2698,2.1563,7.71,28.2677,2.6566,7.72,28.314,2.6531,7.6953,28.3131,2.6503,7.3878,26.2849,2.8366,7.4984,26.3165,2.8659,7.4775,26.3301,2.8782,7.5885,26.717,2.933,7.5551,26.6,2.9432,7.5747,26.5931,2.939,7.5603,26.7147,2.9349,7.5163,26.6763,2.9313,7.6892,27.3158,2.7667,7.6475,27.0369,2.8583,7.6657,27.0229,2.8312,7.6992,27.8434,2.6562,7.6765,27.5805,2.7116,7.699,27.5802,2.7085,7.6762,27.8455,2.6541,7.7189,28.0287,2.6542,7.6777,27.9126,2.6525,7.701,27.9133,2.6534,7.6864,28.0298,2.66,7.8638,28.3823,2.162,7.83,28.4177,2.1558,7.8395,28.4333,2.1984,7.7892,28.3126,2.1779,7.817,28.4031,2.155,7.8497,28.3706,2.1602,7.7249,28.4645,2.4911,7.7476,28.4606,2.3872,7.7291,28.4591,2.3829,7.7454,28.4603,2.5005,7.7264,28.4568,2.577,7.7003,28.4049,2.1671,7.8152,28.4194,2.1563,7.701,28.3941,2.1604,7.7514,28.4523,2.506,7.7333,28.4503,2.5852,7.772,28.3968,2.5217,7.77,28.3982,2.5317,7.7746,28.3881,2.5273,7.8302,28.4035,2.3115,7.8384,28.4026,2.3023,7.8288,28.4125,2.3047,7.8036,28.4503,2.2749,7.7961,28.4524,2.2719,7.7595,28.4532,2.3749,7.5502,28.2832,2.5983,7.6,28.2893,2.6265,7.5565,28.2943,2.6038,7.5995,28.2759,2.6275,7.3156,28.3276,2.4538,7.325,28.2733,2.4813,7.3273,28.2859,2.4848,7.3108,28.3144,2.4514,7.397,28.4155,2.4467,7.4022,28.3774,2.4769,7.4115,28.3766,2.4743,7.4058,28.4152,2.4409,7.5254,28.4334,2.5253,7.522,28.3682,2.5564,7.531,28.375,2.5612,7.5376,28.4388,2.529,7.4508,28.4144,2.3279,7.4528,28.4049,2.3315,7.5039,28.4088,2.319,7.5001,28.405,2.3266,7.3061,28.3895,2.2256,7.2969,28.3794,2.2262,7.3388,28.3984,2.3168,7.3457,28.4038,2.3168,7.5296,28.3359,2.5747,7.5293,28.4126,2.3471,7.5374,28.4182,2.3397,7.5435,28.4232,2.3518,7.389,28.1409,2.2162,7.3911,28.1103,2.2019,7.3215,28.2272,2.2569,7.3726,28.1798,2.1706,7.3777,28.1889,2.163,7.4428,28.1676,2.2033,7.4441,28.1571,2.209,7.3362,28.2622,2.1315,7.6498,28.1447,2.1895,7.6458,28.1348,2.1934,7.5614,28.1524,2.1998,7.5627,28.1603,2.1981,7.8823,28.3165,2.1912,7.8884,28.3427,2.2326,7.8547,28.2281,2.27,7.8262,28.1961,2.2222,7.2739,26.6256,2.7871,7.3344,26.5612,2.826,7.6525,27.5185,2.4172,7.5834,27.7696,2.3373,7.6517,27.7754,2.3705,7.5645,27.5182,2.399,7.4458,28.0183,2.218,7.5136,27.946,2.2564,7.4385,27.9552,2.286,7.5292,28.01,2.2141,7.7528,28.4537,2.3902,7.7524,28.4548,2.4957,7.7443,28.4225,2.4497,7.7509,28.4261,2.3959,7.7911,28.3724,2.3754,7.8475,28.3655,2.3335,7.7703,28.3969,2.3604,7.7639,28.3688,2.4229,7.7529,28.3951,2.4049,7.7585,28.3881,2.4709,7.4403,28.2363,2.5367,7.4997,28.3212,2.5131,7.4657,28.2963,2.4965,7.4763,28.2483,2.5549,7.4542,28.3834,2.3529,7.4369,28.394,2.4006,7.462,28.3637,2.4004,7.5475,28.2775,2.1746,7.4784,28.3391,2.1412,7.5374,28.3456,2.1597,7.4699,28.2677,2.1648,7.392,28.4091,2.3479,7.3891,28.4057,2.3682,7.3882,28.1123,2.5566,7.4323,28.1218,2.5949,7.3939,28.2163,2.5229,7.5359,28.2582,2.5962,7.5156,28.1426,2.6169,7.519,28.0037,2.6181,7.477,27.8418,2.5746,7.5316,27.8506,2.6064,7.4549,27.9963,2.595,7.7557,27.8318,2.532,7.7588,27.5794,2.578,7.7486,27.555,2.4949,7.5062,26.2622,2.4323,7.4632,26.292,2.3984,7.5378,26.3359,2.4333,7.5701,26.2478,2.486,7.5746,26.2906,2.4832,7.6369,26.2822,2.5345,7.711,27.5322,2.4451,7.7256,27.2486,2.4507,7.6421,27.2406,2.4371,7.8696,28.3948,2.2111,7.7841,28.4375,2.2021,7.8295,28.4359,2.1993,7.8575,28.3667,2.3227,7.7989,28.2594,2.4694,7.856,28.3563,2.3358,7.7978,28.3505,2.4415,7.8402,28.2454,2.3556,7.3386,28.369,2.4451,7.359,28.3898,2.4452,7.3316,28.3357,2.4621,7.3876,28.3522,2.4888,7.3692,28.3181,2.5008,7.3812,28.3967,2.4529,7.6007,28.2585,2.6239,7.6134,28.4007,2.5932,7.5698,28.3931,2.5737,7.5807,28.3514,2.5969,7.6048,28.3356,2.6158,7.664,28.3548,2.6298,7.6808,28.4005,2.611,7.6565,28.432,2.5899,7.6223,28.4404,2.5715,7.5833,28.4286,2.5612,7.5184,28.3847,2.4688,7.5122,28.3761,2.4105,7.4531,28.3018,2.4864,7.4374,28.3239,2.4718,7.3945,28.2613,2.5016,7.3019,28.2574,2.4157,7.3046,28.18,2.4552,7.316,28.2216,2.4648,7.2882,28.1863,2.368,7.3437,28.4019,2.3254,7.3268,28.361,2.3775,7.3495,28.3948,2.3657,7.3019,28.2903,2.3948,7.2993,28.3426,2.3208,7.288,28.2634,2.3432,7.3168,28.2859,2.1955,7.3939,28.2571,2.1423,7.5492,28.1303,2.2181,7.446,28.1322,2.222,7.637,28.1153,2.2032,7.5359,28.0987,2.2005,7.8468,28.3118,2.1713,7.7246,28.1648,2.194,7.8601,28.3108,2.1764,7.7324,28.1493,2.199,7.6265,28.0185,2.2157,7.7342,28.0418,2.2293,7.3562,28.2008,2.5012,7.3532,28.104,2.5265,7.7581,27.9895,2.4053,7.7321,27.7977,2.4502,7.7396,27.9734,2.347,7.6883,27.7827,2.4007,7.4744,27.7965,2.3438,7.6036,27.939,2.2605,7.3086,28.0901,2.4653,7.3634,27.9766,2.4842,7.3857,27.9829,2.5274,7.522,27.5594,2.6531,7.6136,27.8565,2.6336,7.6081,27.5764,2.6969,7.4915,26.704,2.9029,7.4129,26.6854,2.8386,7.4465,26.3939,2.8706,7.5418,26.4163,2.9085,7.4915,26.4459,2.8859,7.4563,26.3466,2.8854,7.4933,26.5533,2.8802,7.5002,26.4877,2.8807,7.5642,26.4848,2.9179,7.6319,26.7018,2.8686,7.6307,26.5795,2.8838,7.7662,27.2895,2.6226,7.7744,27.2596,2.5371,7.7877,26.9513,2.5138,7.788,26.9493,2.4746,7.7659,27.2547,2.4793,7.2522,26.4855,2.5133,7.2516,26.4555,2.52,7.2198,26.5252,2.6311,7.3123,26.7295,2.6845,7.3471,26.7263,2.7636,7.4232,26.8427,2.4596,7.4395,26.9783,2.4516,7.4653,26.8368,2.4299,7.4781,26.9701,2.4345,7.437,26.7095,2.4168,7.5461,26.8349,2.4153,7.4038,26.643,2.3828,7.3947,26.6979,2.4466,7.3513,26.6093,2.4318,7.3066,26.4942,2.4002,7.5177,26.4899,2.3821,7.7338,26.6304,2.4299,7.7515,26.5291,2.5122,7.774,26.6288,2.4619,7.7403,26.4571,2.6476,7.7815,26.5487,2.5622,7.755,26.5503,2.6338,7.761,26.443,2.5888,7.7623,26.5344,2.5264,7.632,26.2628,2.5549,7.7174,26.3454,2.5945,7.621,26.2511,2.6162,7.7068,26.3504,2.6525,7.7008,26.4899,2.502,7.6797,26.534,2.478,7.6591,26.4429,2.5015,7.7829,26.6177,2.4869,7.7773,26.6633,2.4543,7.7345,26.7047,2.4285,7.4248,26.5902,2.3328,7.4853,27.2435,2.4311,7.3305,26.7333,2.6064,7.2759,26.6365,2.6082,7.2231,26.5034,2.7479,7.3735,26.3375,2.8559,7.3808,26.3049,2.8507,7.7866,26.8019,2.5242,7.781,26.9549,2.5746,7.7695,26.8075,2.5927,7.7511,26.9727,2.6668,7.6614,27.3171,2.767,7.5733,27.0362,2.8178,7.6291,27.0396,2.8558,7.6045,27.3119,2.7478,7.5323,26.8757,2.8646,7.5932,26.8684,2.8945,7.34,26.3062,2.8318,7.4302,27.8198,2.5136,7.437,27.5584,2.5484,7.4704,27.5563,2.611,7.6102,28.0151,2.6294,7.5884,28.012,2.6254,7.376,27.9586,2.3383,7.3296,28.0614,2.2965,7.4033,28.0317,2.2266,7.7909,28.1113,2.3804,7.7881,28.0785,2.3107,7.6924,27.9442,2.299,7.5869,28.1431,2.6225,7.6029,28.1438,2.6271,7.4441,28.0974,2.1969,7.5962,28.2863,2.1812,7.3245,28.1556,2.2669,7.3856,28.2901,2.5143,7.3493,28.2697,2.5031,7.3595,28.2505,2.4826,7.4887,28.3335,2.4283,7.4623,28.3399,2.4364,7.5052,28.3537,2.4438,7.7513,28.3087,2.6405,7.7437,28.2691,2.6495,7.7856,28.2769,2.5714,7.7254,28.3875,2.6314,7.7191,28.4549,2.5902,7.3886,28.3733,2.4746,7.4188,27.9893,2.5597,7.3952,28.2452,2.5138,7.394,28.4188,2.3382,7.4004,28.3941,2.2421,7.4939,28.351,2.3966,7.5055,28.3836,2.3484,7.3814,28.4201,2.437,7.4455,28.3476,2.4403,7.439,27.554,2.4961,7.4197,27.806,2.4532,7.48,28.3507,2.1472,7.4039,28.3309,2.1289,7.407,28.3497,2.1354,7.5389,28.4426,2.5186,7.3088,28.3238,2.4433,7.6234,28.4637,2.5535,7.6261,28.466,2.5377,7.4022,28.3499,2.4953,7.4109,28.3466,2.4927,7.7381,28.3832,2.625,7.3122,28.2719,2.423,7.563,26.4022,2.9009,7.584,26.3907,2.8776,7.7471,28.386,2.6137,7.423,26.7143,2.8347,7.3565,28.2333,2.49,7.3241,28.2404,2.4631,7.3109,28.3471,2.1403,7.5519,26.2271,2.5066,7.7753,26.8119,2.4499,7.7837,26.6505,2.4791,7.7862,26.8078,2.4731,7.7768,26.948,2.4553,7.6676,26.3939,2.5284,7.6886,26.4383,2.5218,7.6176,26.5295,2.4375,7.2455,26.4984,2.7922,7.2405,26.3993,2.7682,7.2592,26.4073,2.7949,7.3704,26.5626,2.3453,7.3712,26.5063,2.3493,7.4264,26.5113,2.337,7.2301,26.3782,2.6546,7.2531,26.3571,2.5365,7.2943,26.3451,2.8118,7.2776,26.3306,2.7837,7.3312,26.287,2.8127,7.5903,26.5019,2.4284,7.5663,26.4776,2.4204,7.5557,26.4226,2.4298,7.7457,26.4376,2.5634,7.4763,26.239,2.4584,7.4352,26.3879,2.3575,7.4244,26.2775,2.4088,7.3863,26.3795,2.3713,7.7089,26.3548,2.5657,7.3482,28.2853,2.5034,7.3071,26.4961,2.8245,7.7855,26.6501,2.5403,7.6195,26.8628,2.8965,7.7299,28.1517,2.6547,7.6925,28.1527,2.6637,7.6765,28.431,2.2636,7.7656,28.4487,2.2669,7.6568,28.4498,2.3674,7.7953,28.3585,2.4379,7.6905,28.3275,2.6469,7.3233,28.3721,2.4217,7.3279,28.373,2.4335,7.3483,28.4086,2.4149,7.3836,28.4222,2.4243,7.3499,28.4073,2.4274,7.377,28.3007,2.5134,7.2863,28.3463,2.1695,7.2975,28.3602,2.1671,7.5375,28.3571,2.1656,7.5887,28.3712,2.1675,7.5916,28.361,2.1618,7.354,26.8783,2.6622,7.3965,26.8858,2.7293,7.4218,27.2854,2.5939,7.4268,27.2733,2.5327,7.3868,27.0038,2.5725,7.4413,27.2628,2.4878,7.4056,26.9855,2.509,7.36,27.9662,2.4146,7.301,28.0823,2.3883,7.4043,28.3711,2.189,7.4732,28.3926,2.252,7.4793,28.3757,2.2028,7.5272,28.3754,2.2083,7.5616,28.3993,2.2592,7.5752,28.3869,2.2098,7.522,28.3928,2.2568,7.6872,28.4182,2.2075,7.5533,27.2373,2.4251,7.2812,26.2922,2.6948,7.3381,26.2539,2.7294,7.3574,26.2656,2.4826,7.3707,26.2241,2.6303,7.3042,26.271,2.5852,7.4204,26.2191,2.5297,7.408,26.2442,2.7587,7.5395,26.294,2.8053,7.6238,26.3841,2.8208,7.6079,26.4756,2.8817,7.649,26.4619,2.8181,7.58,26.4792,2.9124,7.6411,28.4635,2.4625,7.5456,28.4441,2.4517,7.6876,28.2966,2.183,7.4303,27.8036,2.3912,7.739,27.8321,2.6193,7.4927,27.5258,2.4043,7.4482,27.5472,2.4489,7.652,26.8459,2.8525,7.5134,27.2997,2.701,7.482,27.0316,2.7599,7.4558,26.8845,2.7961,7.4548,27.2936,2.6527,7.4298,27.0259,2.7056,7.741,27.5881,2.6555,7.7385,27.3036,2.6994,7.7135,26.996,2.7497,7.6936,26.8339,2.7709,7.7341,26.8189,2.6879,7.7318,26.9581,2.4328,7.7346,26.8224,2.4273,7.721,26.6737,2.7031,7.7599,26.659,2.6143,7.6773,26.6866,2.7856,7.6729,26.5741,2.8039,7.7178,26.561,2.725,7.6916,26.4579,2.7345,7.6728,26.361,2.7438,7.5805,26.2642,2.7122,7.4458,26.2136,2.6668,7.3857,27.0179,2.6382,7.3124,26.6178,2.5135,7.3845,26.8552,2.5147,7.3563,26.7115,2.5218,7.3627,26.8691,2.5896,7.6458,26.832,2.4234,7.6378,26.9691,2.4305,7.5477,26.9683,2.427,7.4962,26.2062,2.5706,7.3117,26.3586,2.4387,7.5216,26.4115,2.3989,7.5958,26.3513,2.4758,7.5702,26.3813,2.4486,7.6381,26.3563,2.5152});
			return lmc4_Coord_6_43_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lmc5_Geo' coordIndex field, scene-graph level=5, element #48, 2904 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 getlmc5_Geo_5_48_coordIndex()
		{
			MFInt32 lmc5_Geo_5_48_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlmc5_Geo_5_48_coordIndex_1()))
				.append(new MFInt32(getlmc5_Geo_5_48_coordIndex_2()))
				.append(new MFInt32(getlmc5_Geo_5_48_coordIndex_3()));
			return lmc5_Geo_5_48_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lmc5_Coord' point field, scene-graph level=6, element #48, 1095 total numbers made up of 365 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 getlmc5_Coord_6_48_point()
		{
			MFVec3f lmc5_Coord_6_48_point = new MFVec3f(new double[] {7.6705,27.206,2.1632,7.7133,27.2114,2.1249,7.7657,27.5278,2.091,7.8096,28.4219,1.9178,7.8041,28.5002,1.845,7.8342,28.4636,1.952,7.5621,28.5602,1.9966,7.578,28.5563,2.0543,7.6011,28.556,1.9895,7.6507,28.5302,2.0953,7.6517,28.4877,2.1213,7.6903,28.5136,2.1103,7.4259,28.5569,2.0344,7.42,28.4893,2.0814,7.5185,28.5541,2.0652,7.2241,26.6787,1.9574,7.2652,26.7858,1.9585,7.2793,26.79,1.9058,7.2878,26.7293,2.0289,7.2758,26.7603,2.0037,7.2966,26.7731,1.8547,7.3488,26.8584,1.8825,7.3892,26.8749,2.0421,7.3565,26.9001,1.9647,7.3138,26.7915,2.0181,7.352,26.7544,2.0643,7.7177,26.4599,1.9052,7.7442,26.5368,1.8658,7.7471,26.5501,1.913,7.6366,26.6137,1.7115,7.7556,26.6301,1.7789,7.6626,26.482,1.7926,7.4694,28.0007,2.0366,7.4207,28.1342,2.1351,7.3933,28.1966,2.0381,7.852,27.8635,1.9227,7.8286,27.8485,1.9969,7.8151,27.7228,2.0105,7.862,28.0479,1.8483,7.8508,28.0497,1.9041,7.8559,27.8859,1.9092,7.7572,27.5375,2.0963,7.8139,27.6747,2.0178,7.8572,27.8588,1.9093,7.317,26.4748,1.6721,7.2807,26.4126,1.7083,7.3035,26.4898,1.6865,7.3926,26.6605,2.1152,7.4142,26.5856,2.1356,7.4326,26.6695,2.1484,7.6138,28.4856,1.7151,7.7328,28.5254,1.7785,7.7031,28.495,1.7328,7.7845,28.506,1.8314,7.7619,28.4902,1.7422,7.474,26.8674,2.1515,7.5913,26.4449,1.7014,7.6383,26.3998,1.7583,7.5754,26.3396,1.7757,7.6438,26.4137,1.7604,7.5763,26.7205,1.6835,7.5828,26.8015,1.7163,7.681,26.7018,1.7432,7.3225,26.8396,1.9588,7.3654,26.9397,1.8832,7.2548,26.3941,2.0192,7.2691,26.4019,2.0284,7.2255,26.5427,1.9956,7.3399,26.3212,2.0342,7.3568,26.3161,2.0374,7.353,26.3335,2.0423,7.2989,26.5926,2.0455,7.4518,27.2172,1.8373,7.527,27.2167,1.8019,7.4782,26.9052,1.7304,7.5947,26.8727,1.741,7.7051,26.8673,1.7715,7.7005,26.8117,1.7655,7.7931,27.5163,2.0311,7.7776,28.4259,1.6989,7.7888,28.3387,1.6669,7.683,28.434,1.6771,7.6868,28.335,1.6601,7.8001,28.5059,1.8535,7.5901,28.5511,1.7766,7.7198,28.5301,1.8024,7.6007,28.5325,1.7569,7.8556,28.0401,1.7703,7.8719,27.8358,1.8174,7.8248,28.04,1.7519,7.8463,27.8289,1.7942,7.8209,28.3368,1.6963,7.8295,28.1961,1.7263,7.7976,28.1942,1.7073,7.8213,27.4892,1.827,7.8112,27.2036,1.851,7.7995,27.2017,1.8175,7.8398,27.4938,1.8529,7.8239,28.3833,1.96,7.8206,28.399,1.9594,7.8293,28.3778,2.0316,7.8535,28.441,2.0347,7.8505,28.4563,2.0373,7.8302,28.4446,2.1125,7.8395,28.4258,2.1136,7.7912,28.3802,2.1839,7.8181,28.346,2.1347,7.8255,28.4038,2.1708,7.3339,28.5415,1.9894,7.3533,28.5597,1.9873,7.3733,28.5783,1.9321,7.3626,28.558,1.9258,7.6049,28.2927,2.1944,7.7263,28.3337,2.2011,7.5855,28.3054,2.2001,7.718,28.3543,2.2019,7.4338,28.5726,2.0089,7.5256,28.5624,2.0384,7.3896,28.389,2.121,7.4586,28.3052,2.1537,7.4634,28.321,2.1653,7.3826,28.3711,2.1109,7.3258,26.4214,1.6659,7.3187,26.3882,1.6817,7.2586,26.4954,1.7376,7.2798,26.4962,1.7095,7.2348,26.4437,1.7771,7.2383,26.4776,1.7623,7.2573,26.3833,1.7613,7.2471,26.4068,1.774,7.2926,26.3613,1.7232,7.2729,26.3655,1.7411,7.3093,26.3691,1.6978,7.6023,26.3472,2.0873,7.6521,26.3868,2.104,7.6093,26.3944,2.1325,7.4139,28.182,2.131,7.8603,28.0339,2.0175,7.8482,28.0386,1.9675,7.8313,28.3863,1.9079,7.8323,28.4253,1.8054,7.3934,28.3331,2.0936,7.4624,28.1207,2.1718,7.5474,28.1275,2.1745,7.455,28.166,2.1693,7.8454,28.195,1.8452,7.8489,28.1996,1.905,7.3346,26.4231,2.0229,7.4536,28.577,1.9624,7.5334,28.5646,1.9094,7.4898,28.5726,1.918,7.7747,28.4877,2.1069,7.7845,28.5001,2.0463,7.7029,28.5235,2.0927,7.448,28.3484,1.7677,7.4667,28.4988,1.7908,7.4733,28.5569,1.8029,7.4059,28.211,1.85,7.4563,28.2015,1.8014,7.4691,28.0507,1.8241,7.4447,28.0459,1.8737,7.4291,28.0235,1.9516,7.4791,27.8205,1.8846,7.4845,27.8181,1.9483,7.3398,28.4734,2.0059,7.3652,28.4962,1.9297,7.3489,28.3501,1.9173,7.3782,28.3323,2.0274,7.4511,28.2812,2.1457,7.3446,28.4612,2.0585,7.4964,27.8161,2.0199,7.8648,28.0435,1.8054,7.6801,27.9629,2.1355,7.6647,28.1266,2.1553,7.5536,27.9618,2.1356,7.7931,28.1562,2.1434,7.7833,27.9863,2.1018,7.5247,28.195,1.7596,7.6247,28.0385,1.7706,7.5459,28.0448,1.7966,7.6035,28.1904,1.7178,7.4655,27.4996,1.8884,7.4565,27.5025,1.9495,7.7162,26.4003,1.8746,7.7224,26.3998,1.9,7.768,26.623,1.8244,7.7788,26.6545,1.8241,7.7618,26.6568,1.9165,7.677,26.4086,1.8026,7.7254,26.3726,1.8991,7.7251,26.3721,1.9431,7.6988,26.3479,1.923,7.5577,26.3766,2.1272,7.4337,26.504,2.1032,7.4902,26.519,2.1284,7.2213,26.3855,1.9527,7.236,26.3505,1.8306,7.2635,26.3211,1.9473,7.2146,26.3989,1.8578,7.3546,26.3228,1.7144,7.3204,26.3059,1.756,7.2706,26.6759,1.822,7.2121,26.6166,1.8884,7.3518,26.593,2.0883,7.3773,26.5118,2.0847,7.4789,26.4212,1.6438,7.5878,26.5132,1.663,7.5064,26.6846,1.6552,7.5648,26.5893,1.6507,7.7855,26.8665,1.8127,7.722,27.2069,1.7961,7.7455,27.4896,1.8205,7.4346,26.7566,1.6996,7.461,26.8468,1.7244,7.4166,27.2215,1.9502,7.4305,27.2149,1.8668,7.6633,27.2159,2.1663,7.5584,27.2255,2.1476,7.5197,26.9288,2.1647,7.6194,27.2129,1.7927,7.2011,26.5077,1.9375,7.3826,26.6674,1.6888,7.4259,26.6229,1.6339,7.3287,26.448,1.6625,7.4655,26.541,1.6157,7.4018,26.4968,1.6199,7.3733,26.5552,1.6433,7.2024,26.4758,1.852,7.2198,26.5502,1.8267,7.3654,26.7837,1.7761,7.395,26.8708,1.7958,7.7269,26.4057,1.941,7.6796,26.3875,1.8039,7.7156,26.3716,1.8709,7.6629,26.3421,1.8389,7.766,26.6603,1.7954,7.7579,27.8203,1.8024,7.844,28.3619,1.7884,7.8298,28.479,1.9577,7.7897,28.5119,1.8665,7.5867,28.5597,1.7981,7.7056,28.535,1.8248,7.8432,28.0207,2.0722,7.8492,28.1719,2.1134,7.8477,28.1967,2.0271,7.7671,27.8378,2.083,7.5707,28.2576,2.1616,7.5807,28.2884,2.1903,7.3685,28.2076,1.933,7.5449,27.8151,2.0743,7.5081,27.9765,2.1033,7.4002,28.5002,1.8543,7.3966,28.5599,1.856,7.495,27.8199,1.8636,7.7822,28.4721,1.7453,7.7352,28.4447,2.1613,7.7703,28.4701,2.1494,7.7699,28.5109,1.9867,7.7246,28.528,1.9364,7.6317,28.2603,2.1633,7.5961,28.3338,1.6714,7.5194,28.3458,1.7098,7.6047,28.4287,1.6869,7.6802,27.5135,2.1263,7.6539,28.538,2.0798,7.6936,28.5335,2.0315,7.5278,28.5051,2.0972,7.5722,28.5461,2.0764,7.6083,28.5415,2.0818,7.5626,28.4819,2.1147,7.6004,28.4747,2.1246,7.3477,28.5457,2.0096,7.4143,28.5743,1.8661,7.4808,28.568,1.8165,7.8015,26.8631,1.8371,7.6993,28.481,1.7209,7.8313,27.5116,1.9341,7.843,28.1998,1.9668,7.656,26.4198,2.1051,7.7039,26.3728,2.0065,7.7021,26.4117,2.0,7.602,26.4232,2.1378,7.5467,26.3992,2.1266,7.7622,28.4754,1.7311,7.4849,27.5025,2.0234,7.3432,26.5789,1.6832,7.5093,26.8614,2.1705,7.6564,27.1587,2.1712,7.5863,27.8159,2.1012,7.5357,27.4997,2.0984,7.5822,27.5028,2.1182,7.5775,26.6385,2.2056,7.4849,26.6673,2.1793,7.4843,26.6128,2.1781,7.5379,26.4715,2.1177,7.5133,26.5257,2.1402,7.6195,26.8603,2.2128,7.4053,26.9377,1.8088,7.675,28.5384,2.0115,7.4504,26.746,2.1565,7.4924,26.7448,2.1741,7.5966,26.7506,2.2136,7.4467,26.4442,2.0766,7.5935,26.4809,2.1258,7.5818,26.5477,2.1564,7.6516,26.5538,2.1089,7.6866,26.4626,1.998,7.7023,26.552,2.0154,7.646,26.4726,2.0927,7.4788,27.4985,1.8703,7.7608,27.2137,2.0517,7.5164,27.2229,2.1268,7.4459,27.2222,2.0322,7.733,26.8549,2.0545,7.7739,26.7568,1.9204,7.786,26.8568,1.9242,7.724,26.756,2.0431,7.6727,26.753,2.1466,7.6779,26.8554,2.1597,7.4809,26.3484,2.1035,7.4652,26.3718,2.1024,7.6588,26.3267,1.9835,7.6404,27.4905,1.8268,7.732,28.0316,1.7676,7.6582,27.8126,1.8119,7.8044,27.2079,1.9325,7.7778,26.7661,1.8034,7.7905,26.7578,1.8292,7.8056,28.4166,1.7165,7.7828,28.3979,2.1828,7.6897,28.4202,2.1708,7.7403,28.3092,2.1624,7.6154,28.5497,2.0665,7.6677,28.5411,1.9127,7.6005,28.559,1.8991,7.3561,28.4713,2.071,7.8121,28.4274,2.1678,7.6414,28.5463,1.9944,7.633,26.3079,1.8859,7.6807,27.8236,2.1086,7.7074,28.1938,1.7104,7.5691,27.815,1.8334,7.5073,28.4033,2.1492,7.4455,28.4375,2.1173,7.588,28.3973,2.1699,7.3852,28.3547,1.8336,7.8436,28.1975,1.7775,7.5525,27.4951,1.8452,7.7149,26.6569,2.0316,7.5939,26.2861,1.9554,7.5285,26.2996,2.0558,7.6641,26.6523,2.1295,7.3229,26.2749,1.9062,7.3884,26.2604,1.8275,7.2769,26.3207,1.797,7.2601,26.5879,1.7806,7.3005,26.5901,1.7314,7.4304,26.2857,1.7699,7.3828,26.3598,1.6737,7.4634,26.3386,1.7092,7.4043,26.425,1.6333,7.3296,26.686,1.7492,7.4104,26.2714,1.9912,7.4898,26.2568,1.8992,7.5334,26.2839,1.8367});
			return lmc5_Coord_6_48_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lmphal2_Geo' coordIndex field, scene-graph level=5, element #53, 1696 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 getlmphal2_Geo_5_53_coordIndex()
		{
			MFInt32 lmphal2_Geo_5_53_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlmphal2_Geo_5_53_coordIndex_1()))
				.append(new MFInt32(getlmphal2_Geo_5_53_coordIndex_2()));
			return lmphal2_Geo_5_53_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lmphal2_Coord' point field, scene-graph level=6, element #53, 642 total numbers made up of 214 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 getlmphal2_Coord_6_53_point()
		{
			MFVec3f lmphal2_Coord_6_53_point = new MFVec3f(new double[] {6.0285,25.1867,4.3191,6.0778,25.2381,4.3482,6.0829,25.245,4.3289,5.9702,25.1529,4.2959,6.0403,25.1881,4.3036,6.3457,25.49,4.4285,6.2668,25.3583,4.3319,6.2413,25.3807,4.3686,6.3763,25.4846,4.3762,6.4199,25.4878,4.4885,6.3949,25.5194,4.4562,6.3821,25.5117,4.4894,6.4229,25.4899,4.4713,6.5181,25.4208,4.4364,6.4814,25.4937,4.3589,6.4679,25.4699,4.4411,6.5234,25.4163,4.431,6.5838,25.3825,4.5105,6.5659,25.3669,4.4276,6.228,25.3671,4.451,6.3362,25.4735,4.5086,6.2219,25.3857,4.4232,6.3332,25.4858,4.4749,5.9349,25.1006,4.3266,5.8919,25.081,4.3112,5.9332,25.0778,4.3353,5.9145,25.0563,4.3341,5.8934,25.0519,4.3202,5.8746,25.0573,4.3087,5.8607,25.0708,4.2953,5.8616,25.0911,4.2859,5.8793,25.103,4.2896,5.8971,25.1078,4.2987,5.9225,25.1118,4.3139,5.8666,25.1249,4.2681,5.8829,25.1315,4.2745,5.8675,25.131,4.2534,5.8843,25.1344,4.2594,6.0257,25.1786,4.333,5.9652,25.1474,4.3106,5.8573,25.0336,4.3061,5.857,25.025,4.3006,5.8947,25.0103,4.3278,5.8931,25.0233,4.3282,6.0226,24.9897,4.0664,6.0097,24.9966,4.066,6.0467,25.036,4.0756,6.0601,25.0316,4.0809,6.0807,24.9329,4.2016,6.088,24.9403,4.1947,6.0895,24.9393,4.2083,6.5792,25.363,4.2552,6.5752,25.3423,4.2427,6.5622,25.367,4.2376,6.1797,25.0425,4.2947,6.1226,25.0012,4.2628,6.1904,25.0395,4.2587,6.1406,24.9952,4.2334,6.1701,25.0977,4.1892,6.1194,25.0636,4.1531,6.1346,25.1328,4.2093,6.0819,25.0936,4.1839,6.0877,24.99,4.1449,6.0415,24.9504,4.1246,6.0371,24.9689,4.098,6.0447,24.9899,4.0944,6.4969,25.432,4.5016,6.485,25.4438,4.5289,6.5074,25.4259,4.5613,6.5644,25.3958,4.5275,6.4599,25.4549,4.5385,6.4561,25.4566,4.4912,6.4335,25.4729,4.5328,6.2477,25.0784,4.2851,6.4253,25.1732,4.3493,6.2389,25.0811,4.3257,6.4112,25.1882,4.4055,6.2904,25.3373,4.2976,6.1468,25.2088,4.2723,6.5655,25.2745,4.4601,6.3786,25.213,4.4586,6.5261,25.3112,4.5128,6.4168,25.4857,4.5056,6.4839,25.4423,4.4662,6.6255,25.3064,4.389,6.5938,25.3395,4.416,6.6149,25.3359,4.4496,6.61,25.3186,4.3684,6.5454,25.3873,4.3967,6.5249,25.4183,4.3559,6.5688,25.3599,4.3546,6.5882,25.3288,4.3141,6.5535,25.397,4.3022,6.5764,25.3627,4.2889,6.114,25.1568,4.4097,6.0575,25.1138,4.3817,6.1578,25.1289,4.4016,6.0942,25.0875,4.3661,5.9707,25.0839,4.182,6.0401,25.1188,4.2211,6.0126,25.0652,4.1179,6.0668,25.0111,4.1054,6.0882,24.9621,4.1734,6.1405,25.0103,4.2041,6.0624,24.9464,4.1531,6.1373,25.0305,4.176,6.127,25.0539,4.1535,6.0565,25.042,4.0824,5.998,25.1444,4.2636,5.9199,25.1196,4.2199,6.1091,25.2363,4.3036,6.0938,25.1616,4.2498,6.0545,25.183,4.2884,5.9449,25.021,4.3522,6.0363,25.051,4.342,5.9997,25.0749,4.363,5.9676,25.0001,4.319,6.0772,25.0297,4.307,6.0031,24.9761,4.2704,6.0632,24.9535,4.2375,5.9381,25.0319,4.3531,6.543,25.4209,4.2702,6.4924,25.4843,4.345,6.5936,25.3087,4.2863,6.6129,25.2955,4.3438,6.4455,25.4883,4.4518,6.3831,25.499,4.5172,6.3378,25.4901,4.4473,6.378,25.5186,4.4482,6.2474,25.3272,4.4847,6.3627,25.4464,4.5549,6.1885,25.174,4.2296,6.3157,25.3068,4.267,6.3402,25.2804,4.243,6.4845,25.3956,4.2467,6.5285,25.3463,4.2269,6.3735,25.2458,4.2197,6.1884,25.0696,4.1989,6.1776,25.0881,4.1894,6.1932,25.0498,4.2309,6.563,25.3833,4.5404,6.505,25.4111,4.5708,6.6245,25.2926,4.3908,6.6152,25.3219,4.4576,6.5874,25.2961,4.277,5.9357,25.0154,4.3496,6.0142,24.9602,4.0836,6.0017,24.9597,4.0832,6.0528,24.9268,4.1621,6.015,24.9297,4.1247,6.0247,24.9327,4.1213,6.0458,24.9205,4.1681,6.0536,24.9456,4.2338,6.0022,25.0614,4.1096,6.5065,25.3246,4.5299,6.0812,25.2241,4.3623,6.093,25.2445,4.314,6.2301,25.3887,4.3815,6.3653,25.5083,4.4845,6.2235,25.3907,4.3991,6.5834,25.37,4.5229,6.4795,25.485,4.3247,6.4642,25.4992,4.3451,6.4387,25.4426,4.2996,6.4127,25.4623,4.3301,6.4189,25.523,4.3998,6.5285,25.4222,4.2566,5.9717,25.116,4.3374,5.9076,25.1155,4.2118,5.9582,25.0802,4.173,6.3901,25.2267,4.2249,6.5453,25.3221,4.2304,6.2255,25.1354,4.2061,6.2321,25.1259,4.2069,5.8335,25.062,4.2816,5.8339,25.0998,4.2533,5.8309,25.0569,4.2726,5.8369,25.0994,4.2653,5.9959,24.9697,4.2668,5.9593,24.9929,4.3146,6.6061,25.2787,4.3314,6.4529,25.4349,4.5855,6.4073,25.4787,4.5552,6.3919,25.4722,4.5632,6.4613,25.4471,4.5763,6.3671,25.4948,4.5175,6.0353,25.1514,4.3606,5.9207,25.0049,4.1793,5.8897,24.9944,4.255,5.8672,25.0296,4.2265,5.935,24.978,4.2104,5.9768,24.9438,4.1576,5.963,24.9751,4.1183,6.2807,25.2877,4.5023,6.4101,25.3996,4.5798,6.4319,25.5219,4.4146,6.2503,25.0876,4.2521,6.4139,25.1978,4.2534,6.4273,25.1791,4.3026,6.2411,25.1061,4.2203,6.091,25.1901,4.3912,6.3266,25.2555,4.4934,6.2019,25.1043,4.374,6.4537,25.3641,4.5665,6.5658,25.2808,4.2683,6.5818,25.2581,4.3212,6.5846,25.2532,4.3846,6.1365,25.0642,4.3376,6.0102,24.9311,4.1969,5.9648,24.9617,4.2437,5.922,24.9805,4.2888,5.972,25.0201,4.0991,5.9281,25.0421,4.1636,5.8728,25.0777,4.2065});
			return lmphal2_Coord_6_53_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lmphal3_Geo' coordIndex field, scene-graph level=5, element #58, 2304 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 getlmphal3_Geo_5_58_coordIndex()
		{
			MFInt32 lmphal3_Geo_5_58_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlmphal3_Geo_5_58_coordIndex_1()))
				.append(new MFInt32(getlmphal3_Geo_5_58_coordIndex_2()))
				.append(new MFInt32(getlmphal3_Geo_5_58_coordIndex_3()));
			return lmphal3_Geo_5_58_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lmphal3_Coord' point field, scene-graph level=6, element #58, 870 total numbers made up of 290 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 getlmphal3_Coord_6_58_point()
		{
			MFVec3f lmphal3_Coord_6_58_point = new MFVec3f(new double[] {6.2383,25.0519,3.2076,6.0259,24.9471,3.1609,6.0166,24.9658,3.1909,5.9022,24.9262,3.1701,5.8133,24.8733,3.0988,5.7899,24.8879,3.1426,5.9163,24.9041,3.1328,5.8572,24.9764,3.3092,5.7516,24.9316,3.2499,5.7466,24.9473,3.2911,5.8641,24.9707,3.2743,6.4688,25.0213,3.5287,6.4124,24.9992,3.5367,6.5043,24.9855,3.4997,6.443,24.9601,3.4954,5.6946,24.8891,3.3279,5.651,24.8305,3.3266,5.6741,24.8194,3.318,5.6649,24.8868,3.3264,6.4727,25.1739,3.3371,6.4651,25.1764,3.3573,6.4825,25.1197,3.3573,6.4854,25.1166,3.3447,5.6506,24.8251,2.9986,5.6725,24.795,3.009,5.635,24.8064,2.9998,5.6578,24.7584,3.0225,5.6962,24.7665,3.0263,5.7156,24.791,3.0209,5.7178,24.8049,3.0177,5.7116,24.8162,3.0145,5.6931,24.8303,3.0079,5.6355,24.7892,3.0045,5.551,24.8774,3.2941,5.5854,24.8881,3.307,5.5512,24.8956,3.2913,5.5667,24.9199,3.2915,5.5892,24.9251,3.2959,5.6133,24.9148,3.3086,5.6223,24.8848,3.3178,5.6116,24.861,3.3173,5.5837,24.8478,3.308,5.5602,24.8593,3.3003,5.5972,24.7535,3.0134,5.5884,24.7864,2.9991,5.604,24.7532,3.0071,5.5966,24.7859,2.9953,5.6143,24.7622,3.2818,5.596,24.7709,3.2545,5.6331,24.751,3.2635,5.628,24.7215,3.0346,5.6354,24.7226,3.029,5.6669,24.7168,3.0765,5.6547,24.7137,3.0752,5.6727,24.9075,3.0378,5.7198,24.8631,3.0612,5.6727,24.8893,2.997,5.707,24.87,3.0125,5.7619,24.8384,3.0301,5.8,24.8463,3.0545,5.7764,24.8227,3.033,5.8095,24.8312,3.0516,6.4145,25.1144,3.5177,6.4045,25.1537,3.4949,6.3966,25.1133,3.5262,6.3862,25.153,3.4994,5.7266,24.7476,3.0423,5.7452,24.7444,3.0537,5.587,24.7754,3.2934,5.5903,24.78,3.3025,5.6203,24.7671,3.2886,5.591,24.8214,2.9887,5.623,24.8638,2.9835,5.5967,24.8191,2.9821,5.6277,24.857,2.9806,5.6597,24.8874,2.9932,5.6662,24.8805,2.9893,6.2954,25.1513,3.3849,6.2045,25.0932,3.3104,6.1868,25.1157,3.3532,6.3111,25.1412,3.3371,5.6673,24.7301,3.1965,5.6169,24.7668,3.2115,5.6289,24.7585,3.1796,5.6127,24.8943,3.1298,5.6305,24.909,3.1278,5.651,24.91,3.0876,5.6134,24.8878,3.0794,5.5812,24.8011,3.309,6.4267,25.1492,3.4642,6.422,25.1779,3.4605,6.264,24.996,3.1282,6.0435,24.9188,3.1029,6.254,25.019,3.1552,6.5269,25.0025,3.4015,6.5502,24.9624,3.4166,6.5316,24.9978,3.388,5.6847,24.8816,3.1589,5.6755,24.9102,3.1905,5.7225,24.9111,3.204,5.7303,24.8921,3.169,5.8139,24.8072,3.0569,5.8023,24.7675,3.0881,5.7785,24.7984,3.0388,5.8067,24.7864,3.2299,5.8024,24.765,3.1616,5.831,24.7724,3.1683,5.6916,24.8036,3.3014,5.7031,24.7922,3.2825,5.7808,24.8266,3.3018,5.6302,24.7316,3.0973,5.6726,24.7141,3.1286,5.63,24.7477,3.145,5.6165,24.8779,3.0315,5.6628,24.9073,3.0355,5.5712,24.9357,3.2153,5.5514,24.9485,3.2649,5.6046,24.9755,3.2527,5.6828,24.7188,3.1316,5.7397,24.7404,3.0898,5.7348,24.7444,3.1459,5.6034,24.9715,3.265,5.5583,24.949,3.2746,5.5948,24.9478,3.2894,5.7445,24.8754,3.1301,5.7005,24.878,3.1144,6.491,25.0569,3.3562,6.4889,25.104,3.3206,6.5176,24.9805,3.2777,6.5032,25.0041,3.2493,6.4996,25.031,3.3021,6.4902,25.0731,3.1744,6.4288,25.059,3.1488,6.4856,25.1238,3.2114,6.4166,25.1032,3.1876,6.0521,24.8999,3.0981,6.2762,24.9596,3.1201,6.0648,24.8661,3.1182,6.2901,24.9149,3.1378,5.6513,24.9323,3.3098,5.7011,24.9246,3.3168,5.6575,24.9493,3.2855,5.7015,24.9477,3.2946,5.5363,24.8285,3.2941,5.6103,24.9609,3.2082,5.5155,24.8949,3.2671,5.52,24.8972,3.277,5.6187,24.9747,3.2545,5.6625,24.9533,3.2713,6.1788,25.0887,3.4397,6.2853,25.129,3.4806,6.177,25.1176,3.396,6.2862,25.151,3.4338,5.6412,24.7579,3.2683,5.6394,24.7725,3.0096,5.6707,24.8336,3.0012,6.5597,24.9375,3.329,6.5293,24.9829,3.328,6.4975,25.0314,3.1776,6.4997,25.072,3.1851,6.4942,25.0516,3.2176,6.3489,24.9819,3.5217,6.2247,24.9548,3.4696,6.3811,24.944,3.4817,6.244,24.9121,3.4388,6.4028,25.1846,3.4589,6.4452,25.183,3.4094,6.4307,25.1921,3.4059,5.9063,24.8493,3.333,5.7678,24.8505,3.3228,5.8863,24.8813,3.3523,5.8569,24.968,3.328,5.7453,24.9446,3.305,5.9465,24.8713,3.0864,5.8497,24.8157,3.0755,5.8429,24.8409,3.0653,5.9555,24.8415,3.1051,6.4424,25.0736,3.5319,6.4811,25.0367,3.5192,6.4639,25.0609,3.5028,6.4494,25.1838,3.357,6.3222,25.1278,3.2982,6.3856,25.1741,3.3545,6.3962,25.1648,3.3164,6.0065,24.9849,3.2249,5.9914,24.9974,3.2604,6.2179,25.0779,3.2702,5.755,24.8937,3.3311,5.7447,24.9249,3.3206,5.7046,24.9503,3.2812,5.7639,24.9142,3.2145,5.7127,24.9317,3.2393,5.7754,24.9009,3.1796,6.4925,25.0356,3.4634,6.5142,25.0056,3.4885,6.4521,25.1383,3.4179,6.4388,25.1002,3.477,6.463,25.0824,3.4283,6.4925,25.0782,3.271,5.9597,24.8151,3.1342,6.0769,24.8103,3.2215,5.9533,24.7952,3.1951,6.0747,24.8358,3.1531,5.8489,24.7863,3.1043,5.9405,24.8857,3.091,5.8331,24.8542,3.0692,5.8798,24.9523,3.2346,5.8918,24.9417,3.2014,5.8604,24.946,3.3427,5.8702,24.9147,3.3547,5.9313,24.8073,3.2665,6.3742,25.1834,3.3964,6.3525,25.1781,3.4572,6.428,25.0696,3.5418,6.3799,25.0527,3.5482,6.3214,25.0304,3.5324,6.2047,24.9945,3.4799,5.9706,24.9757,3.3798,5.9869,24.9361,3.3935,6.4895,25.027,3.166,6.4887,25.0595,3.3693,5.5579,24.8355,3.1858,5.5505,24.819,3.2359,5.5365,24.8462,3.2258,5.5712,24.8092,3.1975,5.5853,24.8031,3.0578,5.5974,24.7869,3.1157,5.5854,24.8149,3.1031,5.5951,24.7736,3.0695,5.5297,24.826,3.2824,5.515,24.8596,3.273,5.521,24.8629,3.2827,6.4424,25.0104,3.1392,6.5026,24.9751,3.1932,6.4624,24.9547,3.1668,5.7027,24.8592,3.0051,5.7456,24.8342,3.0209,5.7614,24.8185,3.0256,6.4866,25.1542,3.28,6.4761,25.1596,3.2698,6.4967,25.1188,3.2206,6.5081,24.9825,3.2036,6.5302,24.9324,3.243,6.5551,24.9178,3.3254,6.5335,24.9451,3.2513,6.5436,24.9391,3.4221,6.4587,25.1802,3.3319,5.9625,25.0024,3.3592,5.9621,25.0197,3.3316,5.6253,24.9605,3.2089,5.6357,24.9326,3.1666,5.6442,24.9088,3.1316,5.622,24.9324,3.1658,5.663,24.9098,3.0926,5.7716,24.8631,3.0827,6.2947,25.0878,3.5106,6.1855,25.047,3.4697,6.303,24.8466,3.2714,6.425,24.8929,3.2043,6.4377,24.8695,3.2971,6.3027,24.8718,3.1873,6.3866,24.9927,3.1261,6.4055,24.9379,3.1529,6.3521,25.0707,3.1746,6.3415,25.103,3.2307,5.5894,24.8436,3.0918,5.5854,24.8245,3.1479,5.5902,24.8522,3.1399,5.5936,24.914,3.1713,5.5371,24.88,3.2209,5.5619,24.8665,3.1799,5.6691,24.9345,3.2268,6.0033,24.909,3.39,6.0273,24.8699,3.3684,6.4083,25.1385,3.2454,5.9719,25.0176,3.2984,6.056,24.8235,3.3071,6.2808,24.859,3.3671,6.486,24.9088,3.2193,6.504,24.8884,3.3118,6.3687,25.0361,3.1371,6.4239,24.8939,3.4078,6.4881,24.9133,3.4193,6.3538,25.11,3.5289,6.3437,25.1505,3.5009,5.7597,24.7947,3.0309,5.7213,24.7602,3.2039,5.6755,24.7351,3.1982,5.5873,24.834,3.0461,5.5965,24.798,3.1573});
			return lmphal3_Coord_6_58_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lmphal4_Geo' coordIndex field, scene-graph level=5, element #63, 2208 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 getlmphal4_Geo_5_63_coordIndex()
		{
			MFInt32 lmphal4_Geo_5_63_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlmphal4_Geo_5_63_coordIndex_1()))
				.append(new MFInt32(getlmphal4_Geo_5_63_coordIndex_2()))
				.append(new MFInt32(getlmphal4_Geo_5_63_coordIndex_3()));
			return lmphal4_Geo_5_63_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lmphal4_Coord' point field, scene-graph level=6, element #63, 834 total numbers made up of 278 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 getlmphal4_Coord_6_63_point()
		{
			MFVec3f lmphal4_Coord_6_63_point = new MFVec3f(new double[] {6.6824,25.1575,2.6203,6.6891,25.1629,2.5421,6.6718,25.18,2.6117,6.7094,25.1154,2.6444,6.7004,25.1199,2.7037,6.7284,25.09,2.6616,5.8995,25.0937,2.5748,5.8998,25.0904,2.5863,6.0201,25.1074,2.597,6.0192,25.1145,2.5847,6.6578,25.2881,2.6122,6.6205,25.2838,2.673,6.6402,25.2771,2.6702,6.6429,25.2974,2.6125,5.9191,24.987,2.5909,5.7967,24.9716,2.6086,5.8162,24.9593,2.5952,6.6852,25.2275,2.5398,6.6863,25.2257,2.5259,6.6761,25.287,2.5307,5.7351,24.9909,2.2696,5.7525,25.0098,2.2686,5.7746,24.9759,2.2725,5.7997,24.9426,2.2835,5.7586,24.9367,2.284,5.8236,24.9827,2.2764,5.8208,24.968,2.2783,5.7983,25.0118,2.2729,5.8175,24.9952,2.2754,5.7351,24.9723,2.2722,5.6925,25.0493,2.5942,5.6915,25.03,2.5949,5.7297,25.0376,2.6047,5.7347,25.0775,2.5974,5.7104,25.0738,2.5953,5.7694,25.0308,2.6103,5.7608,25.0638,2.6058,5.7254,24.9956,2.6009,5.7565,25.0066,2.6083,5.7007,25.0098,2.5977,5.7002,24.9361,2.2748,5.694,24.9359,2.2823,5.6852,24.9725,2.2729,5.6932,24.9721,2.2678,5.7644,24.8981,2.5358,5.7479,24.9083,2.5588,5.7258,24.9219,2.5342,5.7724,24.8857,2.3332,5.7267,24.8981,2.2959,5.7337,24.8996,2.2892,5.7593,24.8833,2.3333,5.8161,25.0518,2.2807,5.7797,25.0757,2.2718,5.7923,25.0919,2.3166,5.834,25.0426,2.328,5.9254,25.0009,2.302,5.8878,24.9963,2.2863,5.9169,25.0168,2.3081,5.8734,25.0138,2.2873,6.6065,25.2477,2.7151,6.6182,25.2022,2.7364,6.6294,25.2483,2.7048,6.6357,25.2036,2.7238,5.855,25.0114,2.2795,5.8099,25.0417,2.2723,6.137,25.1306,2.6204,6.1351,25.1453,2.603,5.8322,24.9193,2.2934,5.8528,24.9135,2.3022,5.7269,24.9253,2.5858,5.722,24.9219,2.5763,5.7555,24.9122,2.5656,5.6938,25.0084,2.2583,5.6889,25.0103,2.2661,5.7244,25.0535,2.2617,5.7285,25.0466,2.2571,5.7713,25.068,2.2637,5.7655,25.0749,2.2695,5.7493,24.9173,2.4505,5.7897,24.8836,2.459,5.7416,24.9224,2.4863,5.7541,25.1319,2.5531,5.8138,25.0875,2.5174,5.7661,25.1278,2.5053,5.8086,25.1093,2.5691,5.8315,24.9476,2.5796,5.8425,24.9349,2.5509,5.9292,24.9622,2.5619,5.7197,24.9469,2.5964,5.6728,24.9798,2.5907,5.8058,25.1021,2.5822,5.8999,25.066,2.6011,5.798,25.0809,2.6039,5.7862,25.0858,2.3752,5.8191,25.0561,2.4307,5.8217,25.0509,2.3872,5.7671,25.0766,2.4179,5.9703,24.9451,2.3453,6.0916,24.9655,2.3644,5.9592,24.923,2.4123,6.0917,24.937,2.4257,6.4429,25.0522,2.3334,6.2024,25.0154,2.3396,6.429,25.1019,2.3228,6.1888,25.054,2.3248,6.1473,25.1366,2.5502,6.3838,25.2261,2.5811,6.1566,25.1319,2.5072,6.6897,25.1415,2.4697,6.7077,25.0907,2.4353,6.6901,25.1212,2.4126,6.686,25.2156,2.4991,6.6896,25.1618,2.5281,5.9087,25.0316,2.3494,5.9187,25.0471,2.4143,5.9111,25.0589,2.4499,5.7413,25.1017,2.5926,5.7451,25.1278,2.5657,5.6971,25.1077,2.5863,5.9184,24.9301,2.3327,5.8516,24.9048,2.3399,5.8542,24.9018,2.3991,5.7965,24.8797,2.3883,5.7851,24.8757,2.3861,5.738,24.9003,2.3618,5.7417,25.1332,2.5527,5.706,25.1002,2.5177,5.6908,25.1097,2.5779,5.7807,25.0926,2.3154,5.725,25.0621,2.314,5.7153,24.9631,2.4369,5.6951,24.9708,2.4835,5.7452,24.9107,2.4132,5.9423,24.9309,2.4841,5.9281,24.9177,2.4084,5.929,24.9751,2.3038,5.8891,24.97,2.2889,5.8981,25.0816,2.5262,6.7314,25.0934,2.5502,6.7274,25.0989,2.5648,6.7531,25.052,2.5761,6.3764,25.2266,2.6447,6.4146,25.1603,2.3687,6.4199,25.1394,2.3372,6.1825,25.0715,2.3325,5.8171,25.0709,2.4749,5.7665,25.1002,2.458,6.6436,25.2465,2.6681,5.7528,25.1285,2.5069,6.5221,25.2081,2.3752,6.5328,25.1724,2.3346,5.7739,24.9043,2.5405,6.173,25.0961,2.3994,6.1678,25.115,2.4403,6.4073,25.1885,2.4283,5.7387,24.9541,2.2749,5.7743,25.0172,2.2695,6.6679,25.1561,2.3436,6.6072,25.1444,2.3251,6.6683,25.2033,2.3508,6.598,25.1902,2.3375,6.6798,25.1753,2.3884,6.6773,25.1619,2.3543,6.6795,25.2003,2.3595,5.939,25.0349,2.3571,6.0432,25.0811,2.4273,6.0523,25.0606,2.3801,6.7209,25.0864,2.4876,6.6731,25.1603,2.6852,6.6639,25.1578,2.729,5.9539,25.0214,2.3197,6.663,25.2401,2.6115,6.6815,25.1951,2.446,6.2154,24.9463,2.5309,6.0786,24.9413,2.5068,6.2249,24.943,2.4377,5.9693,24.9796,2.3191,6.0753,25.0311,2.3239,6.0852,24.9971,2.3382,5.9627,25.0076,2.3127,6.0706,25.0458,2.3313,6.0384,25.092,2.4593,5.9055,25.068,2.4834,6.0227,25.1091,2.5382,6.031,25.1,2.4953,5.9099,25.0316,2.6066,6.0246,25.0792,2.6104,6.0344,25.0445,2.6176,6.0486,25.0092,2.6087,6.0645,24.9756,2.5832,6.65,25.153,2.7422,6.6868,25.1017,2.7155,6.6,25.1386,2.7494,6.5592,25.0708,2.7186,6.6283,25.0837,2.7251,6.5356,25.1204,2.7405,6.1772,25.027,2.6348,6.4046,25.094,2.7091,6.1625,25.0556,2.6441,6.4213,25.0529,2.6901,6.7177,25.0664,2.6745,6.4344,25.0116,2.6496,6.5847,25.0325,2.6713,6.1463,25.0996,2.6372,5.6815,25.0003,2.4765,5.6793,24.9768,2.5273,5.6652,25.0073,2.5223,5.71,24.9571,2.3924,5.6909,24.9823,2.3362,5.7006,24.9495,2.3432,5.6978,24.9885,2.3845,5.6642,24.9791,2.5792,5.6501,25.016,2.5758,5.6577,25.0179,2.5854,6.1656,25.125,2.4686,6.6274,25.0842,2.3424,6.6797,25.0974,2.3549,5.871,24.9937,2.2802,6.6818,25.2733,2.4679,6.6697,25.2507,2.3963,6.6699,25.2808,2.4603,6.6822,25.2437,2.4027,6.6878,25.1044,2.366,6.7122,25.0449,2.3965,6.7497,25.0372,2.4825,6.7432,25.0173,2.4783,6.718,25.0581,2.4061,6.7454,25.0273,2.5814,6.6614,25.2949,2.5289,6.3786,25.1988,2.6832,5.7539,25.0779,2.4161,5.7539,25.1018,2.4586,5.7725,25.0873,2.3716,6.3961,25.2082,2.4988,6.5079,25.1825,2.7361,6.3868,25.151,2.7082,6.4692,24.9627,2.4596,6.5891,25.0181,2.3789,6.6129,24.9808,2.4678,6.4596,25.0002,2.3767,6.5463,25.1305,2.3197,6.5653,25.0713,2.3365,6.52,25.2365,2.436,6.5017,25.2692,2.5975,6.5106,25.254,2.5113,5.7043,24.9926,2.4321,5.7024,25.0197,2.3759,5.7101,25.0223,2.4266,5.7287,25.0662,2.3652,5.7351,25.0663,2.4183,5.7221,25.0823,2.4664,5.6675,25.0431,2.5214,5.687,25.0333,2.4737,6.5752,25.1975,2.7413,5.6935,25.0159,2.3277,6.5948,25.2654,2.444,6.5934,25.2358,2.3812,6.5637,25.2439,2.7188,6.4971,25.2299,2.7115,6.5933,25.284,2.5212,6.5828,25.2959,2.6077,5.8085,25.0295,2.614,6.1967,24.9879,2.6042,6.2152,24.9787,2.3705,6.616,24.988,2.5811,6.4596,24.964,2.5631,6.6556,25.0298,2.3853,6.5685,25.2837,2.6734,6.4971,25.2652,2.6644,6.6851,24.9952,2.4737,6.6856,25.0035,2.584,6.6519,25.0444,2.6765,5.8683,24.9683,2.2829,5.6583,25.0544,2.584,5.8489,24.9112,2.4629,5.7987,24.8881,2.4603,5.6521,25.0536,2.5741,6.6544,25.1932,2.6719});
			return lmphal4_Coord_6_63_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lmphal5_Geo' coordIndex field, scene-graph level=5, element #68, 1744 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 getlmphal5_Geo_5_68_coordIndex()
		{
			MFInt32 lmphal5_Geo_5_68_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlmphal5_Geo_5_68_coordIndex_1()))
				.append(new MFInt32(getlmphal5_Geo_5_68_coordIndex_2()));
			return lmphal5_Geo_5_68_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lmphal5_Coord' point field, scene-graph level=6, element #68, 660 total numbers made up of 220 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 getlmphal5_Coord_6_68_point()
		{
			MFVec3f lmphal5_Coord_6_68_point = new MFVec3f(new double[] {6.4886,24.89,1.6833,6.4767,24.8689,1.6801,6.4758,24.8735,1.6276,6.4974,24.8949,1.6316,6.4498,24.9038,1.7842,6.4578,24.8777,1.7365,6.4718,24.8971,1.7369,6.431,24.8842,1.7826,6.4158,24.9341,1.5667,6.4208,24.9561,1.5643,6.4526,24.935,1.5842,6.4028,24.9993,1.834,6.3664,24.9853,1.8321,6.4065,24.967,1.8321,6.4828,24.9486,1.5951,6.513,24.9621,1.6061,6.5109,24.9292,1.6197,6.4429,24.9774,1.5691,6.4607,24.9773,1.5838,6.34,25.0115,1.8287,6.3773,25.0147,1.8301,6.8834,25.2821,1.6848,6.9108,25.2441,1.7151,6.9687,25.2313,1.692,6.9055,25.2868,1.6147,6.8796,25.2355,1.8207,6.8522,25.2563,1.8343,6.8326,25.2455,1.9088,6.9104,25.2192,1.8642,6.7177,25.3818,1.822,6.7618,25.3825,1.7219,6.7519,25.3696,1.7221,6.7272,25.3912,1.8242,6.8358,25.3391,1.5742,6.8505,25.3409,1.5767,6.8441,25.331,1.5683,6.7992,25.3769,1.658,6.7908,25.3751,1.6488,6.7754,25.3868,1.7245,6.7255,25.3698,1.8654,6.725,25.3643,1.876,6.7399,25.3684,1.8634,6.918,25.2075,1.8782,6.8267,25.2427,1.9307,6.9168,25.1932,1.8841,6.8167,25.2322,1.9387,6.4137,25.0338,1.6245,6.3783,25.025,1.6884,6.3869,25.0318,1.6901,6.4051,25.0299,1.6202,6.3814,25.0361,1.7042,6.351,25.048,1.7651,6.3611,25.0507,1.766,6.3716,25.03,1.7066,6.2886,24.9684,1.8167,6.2951,24.9443,1.8273,6.2941,24.9698,1.8256,6.2929,24.9409,1.8197,6.4151,25.0471,1.823,6.3677,25.0496,1.8171,6.3666,25.0466,1.8255,6.413,25.054,1.8144,6.6313,25.207,1.8421,6.5463,25.1171,1.8089,6.5469,25.1074,1.8256,6.63,25.2233,1.8241,6.5262,24.9712,1.6128,6.5062,25.0054,1.6024,6.4924,25.0,1.5984,6.396,24.9719,1.5538,6.3867,24.9774,1.5595,6.4206,25.0138,1.567,6.4331,25.0083,1.5649,6.4629,24.8679,1.6243,6.4146,24.8766,1.602,6.4213,24.88,1.5865,6.4636,24.8789,1.6104,6.8349,25.3156,1.5679,6.7242,25.1917,1.6029,6.822,25.3273,1.577,6.7095,25.2041,1.6091,6.3902,24.8923,1.8174,6.4014,24.8951,1.8187,6.3896,24.8995,1.825,6.4166,25.0306,1.6995,6.4124,25.0327,1.7093,6.4495,25.0382,1.7095,6.4898,25.0803,1.8119,6.4284,25.0499,1.7719,6.498,25.0843,1.7823,6.8555,25.2806,1.7587,6.8114,25.3447,1.7399,6.7996,25.3346,1.776,6.8536,25.3098,1.6838,6.3286,24.9781,1.8298,6.3312,24.965,1.83,6.9154,25.232,1.755,6.8003,25.3229,1.8087,6.8212,25.2873,1.8375,6.6175,25.084,1.6208,6.6462,25.0391,1.628,6.7633,25.1375,1.6216,6.4766,24.9219,1.6025,6.4629,24.9052,1.5982,6.4282,25.0093,1.8352,6.447,24.9507,1.824,6.3274,24.9911,1.8271,6.5492,25.1218,1.7901,6.3781,24.9792,1.6181,6.4328,24.8991,1.5852,6.4189,24.9137,1.5758,6.3785,24.9423,1.8289,6.3518,24.9501,1.8286,6.3925,24.9547,1.8305,6.7153,25.3544,1.8738,6.7159,25.3604,1.8624,6.9009,25.2624,1.5766,6.973,25.1908,1.6703,6.7962,25.0808,1.6674,6.6301,25.237,1.8021,6.7401,25.3898,1.819,6.7922,25.3744,1.7311,6.7597,25.3725,1.8059,6.9039,25.2277,1.7928,6.8302,25.3276,1.7041,6.4649,24.9515,1.8177,6.4832,24.9268,1.7865,6.4292,24.9175,1.8211,6.4295,25.0176,1.5705,6.4919,25.0107,1.6083,6.7514,25.3009,1.9304,6.7653,25.3074,1.9235,6.3387,25.0527,1.8177,6.326,25.0457,1.818,6.3329,25.045,1.8269,6.5509,25.0493,1.6267,6.5588,25.0361,1.6195,6.2961,24.9958,1.8156,6.2995,24.9951,1.8234,6.336,24.9087,1.8172,6.3364,24.915,1.8244,6.4372,25.0267,1.6335,6.4468,24.8727,1.734,6.3838,24.8956,1.7287,6.3923,24.8913,1.7076,6.418,24.9243,1.8287,6.3787,24.9358,1.566,6.3869,24.9331,1.5588,6.3567,24.9564,1.6895,6.3708,24.9439,1.6225,6.3583,24.9864,1.6862,6.3134,24.9625,1.7633,6.3484,24.9856,1.7113,6.3459,24.9582,1.715,6.3185,24.9946,1.7645,6.5567,24.9602,1.7961,6.5324,24.9908,1.8222,6.4912,24.903,1.6193,6.5015,24.9189,1.7431,6.5179,24.9138,1.6884,6.3947,24.8991,1.5711,6.4616,25.0008,1.5828,6.4666,24.8651,1.6785,6.4029,24.8829,1.65,6.4583,25.0112,1.5896,6.3914,25.0444,1.7687,6.9435,25.2149,1.8191,6.9668,25.2138,1.7677,6.7775,25.3029,1.905,6.7518,25.36,1.8527,6.8509,25.3364,1.6054,6.8094,25.3654,1.6709,6.9126,25.277,1.5767,6.7802,25.3607,1.6487,6.7405,25.2895,1.9291,6.9843,25.1865,1.772,6.9637,25.1674,1.7665,6.9889,25.2079,1.6754,6.9355,25.1675,1.8283,6.9559,25.1899,1.8332,6.9,25.1748,1.8785,6.9836,25.2022,1.7719,6.9549,25.204,1.8281,6.608,25.0992,1.628,6.4192,24.8808,1.7805,6.4448,25.0155,1.8322,6.4905,25.0725,1.8215,6.3873,24.8992,1.581,6.3763,24.9093,1.6287,6.3635,24.9257,1.6944,6.7565,25.0724,1.8321,6.6518,24.9851,1.7649,6.7826,25.0615,1.7855,6.6337,24.9975,1.8088,6.5731,24.9511,1.7558,6.3199,24.9315,1.7671,6.3508,24.9302,1.7226,6.5312,24.9256,1.6375,6.5908,24.9483,1.7006,6.5971,24.9634,1.6479,6.5815,25.001,1.626,6.473,25.0267,1.6468,6.5166,25.0748,1.7183,6.5388,25.0652,1.6531,6.5043,25.0399,1.8296,6.9126,25.286,1.5861,6.9879,25.2214,1.6829,6.6539,25.1623,1.8708,6.5648,25.0765,1.8382,6.7041,25.1101,1.8696,6.5961,25.0301,1.8378,6.6702,25.0005,1.6587,6.7971,25.061,1.7316,6.6666,24.9837,1.7112,6.5918,25.1118,1.6528,6.6864,25.2258,1.6521,6.5729,25.1176,1.722,6.6581,25.2321,1.7281,6.8044,25.2134,1.9345,6.3576,24.8973,1.7708});
			return lmphal5_Coord_6_68_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lpisform_Geo' coordIndex field, scene-graph level=5, element #73, 5952 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 getlpisform_Geo_5_73_coordIndex()
		{
			MFInt32 lpisform_Geo_5_73_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlpisform_Geo_5_73_coordIndex_1()))
				.append(new MFInt32(getlpisform_Geo_5_73_coordIndex_2()))
				.append(new MFInt32(getlpisform_Geo_5_73_coordIndex_3()))
				.append(new MFInt32(getlpisform_Geo_5_73_coordIndex_4()))
				.append(new MFInt32(getlpisform_Geo_5_73_coordIndex_5()))
				.append(new MFInt32(getlpisform_Geo_5_73_coordIndex_6()));
			return lpisform_Geo_5_73_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lpisform_Coord' point field, scene-graph level=6, element #73, 2238 total numbers made up of 746 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 getlpisform_Coord_6_73_point()
		{
			MFVec3f lpisform_Coord_6_73_point = new MFVec3f(new double[] {7.3308,28.7049,2.0702,7.327,28.7207,2.0646,7.3251,28.7204,2.0641,7.4447,28.7536,1.9276,7.4558,28.7399,1.9322,7.4559,28.7393,1.9299,7.4451,28.7542,1.9297,7.477,28.696,1.947,7.4827,28.6789,1.951,7.4774,28.6948,1.945,7.2559,28.6091,1.8846,7.2619,28.6066,1.8753,7.258,28.6061,1.8861,7.2541,28.6138,1.8788,7.2545,28.6118,1.8821,7.2561,28.6152,1.8715,7.2547,28.6151,1.8751,7.2608,28.6125,1.866,7.2582,28.6143,1.8683,7.2659,28.6072,1.8649,7.2634,28.61,1.8649,7.2692,28.6015,1.8685,7.2679,28.6042,1.8662,7.2691,28.598,1.8753,7.2696,28.5993,1.8716,7.2657,28.5987,1.8823,7.2677,28.5978,1.879,7.3914,28.7161,2.0075,7.3949,28.7227,1.999,7.3899,28.7173,2.0076,7.3946,28.7142,2.0063,7.3929,28.7151,2.007,7.3978,28.7134,2.0043,7.3962,28.7137,2.0054,7.4007,28.7137,2.0017,7.3993,28.7134,2.003,7.4029,28.7151,1.9988,7.4019,28.7143,2.0002,7.4041,28.7173,1.996,7.4036,28.7161,1.9973,7.4041,28.7202,1.9935,7.4042,28.7187,1.9947,7.4031,28.7234,1.9918,7.4037,28.7218,1.9926,7.401,28.7265,1.9909,7.4022,28.725,1.9912,7.3983,28.7292,1.9909,7.3997,28.7279,1.9907,7.3951,28.7311,1.9918,7.3967,28.7302,1.9912,7.3919,28.7319,1.9936,7.3935,28.7316,1.9926,7.3891,28.7316,1.9961,7.3905,28.7319,1.9948,7.3869,28.7303,1.999,7.3879,28.7311,1.9976,7.3857,28.728,2.002,7.3862,28.7292,2.0005,7.3856,28.7251,2.0046,7.3855,28.7266,2.0034,7.3866,28.7219,2.0065,7.386,28.7235,2.0057,7.3886,28.7187,2.0075,7.3875,28.7203,2.0071,7.3351,28.7075,2.0695,7.3237,28.7193,2.0631,7.4098,28.637,2.062,7.397,28.6495,2.0668,7.3941,28.6456,2.0676,7.4114,28.6419,2.0601,7.404,28.7883,1.9249,7.4191,28.779,1.9253,7.4177,28.7777,1.9238,7.4051,28.7891,1.9265,7.2468,28.6362,1.8702,7.2363,28.6583,1.8792,7.2416,28.6596,1.8712,7.2442,28.6358,1.8754,7.2847,28.5794,1.8798,7.3063,28.565,1.8772,7.3029,28.561,1.8857,7.2863,28.5812,1.8742,7.2606,28.6032,1.8862,7.2615,28.5954,1.9094,7.2573,28.5997,1.9103,7.2633,28.6006,1.8848,7.2696,28.5872,1.9045,7.2656,28.5911,1.9075,7.2767,28.5811,1.896,7.2733,28.5837,1.9007,7.2825,28.5788,1.8854,7.2798,28.5794,1.8909,7.2877,28.5874,1.8642,7.2873,28.5839,1.869,7.4781,28.6843,1.9318,7.4765,28.6922,1.9413,7.4809,28.6692,1.9417,7.2863,28.5959,1.8566,7.2874,28.5915,1.8601,7.2823,28.6049,1.8514,7.2846,28.6005,1.8537,7.2759,28.6138,1.849,7.2793,28.6094,1.8498,7.2685,28.6224,1.8499,7.2723,28.6182,1.849,7.2608,28.6296,1.854,7.2647,28.6263,1.8515,7.2533,28.6345,1.861,7.257,28.6324,1.8571,7.2499,28.6358,1.8653,7.2421,28.6345,1.8807,7.2402,28.6295,1.8913,7.2408,28.6323,1.8861,7.2416,28.622,1.9003,7.2405,28.626,1.896,7.2461,28.6131,1.9067,7.2435,28.6176,1.9038,7.3107,28.7141,2.063,7.3214,28.7182,2.0626,7.3209,28.6992,2.0678,7.2531,28.604,1.91,7.2494,28.6085,1.9088,7.4433,28.7524,1.9262,7.4551,28.7384,1.9282,7.4767,28.6938,1.9434,7.4802,28.6816,1.9552,7.32,28.7351,2.0575,7.3178,28.7344,2.0575,7.3147,28.7492,2.049,7.3125,28.7487,2.0489,7.3117,28.7626,2.0392,7.3091,28.7749,2.0275,7.3095,28.7624,2.0389,7.3113,28.7749,2.028,7.3117,28.7858,2.0145,7.3139,28.7856,2.0152,7.3194,28.7945,2.0008,7.3259,28.8017,1.9845,7.3174,28.7948,1.9999,7.3278,28.8014,1.9857,7.3382,28.8058,1.9709,7.3488,28.8082,1.9557,7.3364,28.8062,1.9696,7.3504,28.8078,1.9572,7.3765,28.8034,1.9358,7.3638,28.8068,1.946,7.3777,28.803,1.9377,7.3624,28.8072,1.9442,7.3916,28.7971,1.9322,7.3908,28.7972,1.93,7.4057,28.7891,1.9287,7.4198,28.7792,1.9273,7.4324,28.7671,1.9258,7.433,28.7674,1.9279,7.4652,28.7243,1.9334,7.4722,28.7101,1.9405,7.4725,28.7093,1.9382,7.4651,28.7249,1.9357,7.4638,28.7224,1.9294,7.4718,28.7083,1.9367,7.4713,28.7072,1.9344,7.4645,28.7234,1.9317,7.3896,28.7964,1.9284,7.4029,28.7876,1.9226,7.3884,28.7959,1.9262,7.43,28.7651,1.9222,7.431,28.7659,1.9243,7.4167,28.7769,1.9217,7.4424,28.7514,1.9241,7.4545,28.7374,1.9259,7.3753,28.8026,1.9343,7.3739,28.8023,1.9321,7.3457,28.8074,1.9525,7.3351,28.8055,1.9683,7.3475,28.8075,1.9543,7.3331,28.8054,1.9666,7.3245,28.801,1.9833,7.3224,28.8008,1.9819,7.3103,28.7849,2.0134,7.3138,28.7938,1.9975,7.308,28.7846,2.0123,7.316,28.794,1.9988,7.3111,28.7477,2.0479,7.3057,28.7608,2.0371,7.3088,28.7469,2.0472,7.3081,28.7615,2.0379,7.3163,28.7334,2.0565,7.3141,28.7324,2.0559,7.3077,28.774,2.0264,7.3533,28.6786,2.0747,7.3456,28.6945,2.0725,7.3415,28.6915,2.0732,7.3571,28.682,2.074,7.38,28.6551,2.0722,7.3696,28.67,2.0737,7.3662,28.6664,2.0745,7.383,28.6591,2.0715,7.4433,28.6327,2.0421,7.4259,28.6309,2.0536,7.443,28.6273,2.0433,7.427,28.6361,2.052,7.4725,28.6313,2.0145,7.4588,28.6326,2.0298,7.4595,28.6272,2.0302,7.4708,28.6363,2.0155,7.4833,28.6513,1.9795,7.4778,28.6439,1.9995,7.4802,28.6396,1.9971,7.4807,28.655,1.9829,7.4811,28.668,1.9675,7.4837,28.6648,1.9636,7.3612,28.8065,1.9428,7.2539,28.595,1.9324,7.247,28.6021,1.932,7.2433,28.6017,1.954,7.2547,28.5931,1.9752,7.2431,28.6043,1.975,7.2527,28.5923,1.9546,7.2542,28.6188,2.009,7.2599,28.5975,1.9935,7.2683,28.6052,2.0088,7.2467,28.6101,1.9937,7.278,28.6415,2.0322,7.2796,28.6153,2.0214,7.2929,28.6268,2.0325,7.265,28.6296,2.0214,7.3071,28.6387,2.0435,7.3067,28.6653,2.054,7.2922,28.6536,2.0427,7.3211,28.6505,2.0551,7.3345,28.6617,2.0663,7.3326,28.685,2.0708,7.3207,28.6762,2.0649,7.3455,28.6712,2.0723,7.3541,28.6998,2.0648,7.3641,28.6889,2.0661,7.3698,28.695,2.054,7.369,28.7076,2.0388,7.3617,28.704,2.0529,7.375,28.7009,2.0395,7.3813,28.7079,2.0242,7.3776,28.7121,2.0238,7.2408,28.6095,1.9301,7.2345,28.6118,1.9515,7.2321,28.6163,1.9726,7.234,28.6235,1.9916,7.2407,28.6331,2.0071,7.2512,28.6444,2.0197,7.2642,28.6566,2.0306,7.2932,28.6804,2.0519,7.2783,28.6688,2.041,7.308,28.6911,2.0623,7.3452,28.7112,2.062,7.3637,28.7145,2.037,7.3545,28.7133,2.0506,7.3743,28.7165,2.0227,7.2353,28.6172,1.9269,7.2269,28.6223,1.9471,7.2223,28.6291,1.9676,7.2225,28.6377,1.9867,7.2281,28.6481,2.0027,7.2383,28.6599,2.0158,7.2514,28.6723,2.027,7.2812,28.6962,2.048,7.266,28.6846,2.0375,7.2967,28.7066,2.0579,7.3374,28.7229,2.0578,7.3591,28.7218,2.0343,7.3483,28.7229,2.047,7.3715,28.721,2.0209,7.231,28.625,1.9225,7.2206,28.6329,1.9411,7.2143,28.6423,1.9601,7.213,28.6527,1.9787,7.2174,28.6641,1.9951,7.227,28.6764,2.0089,7.2403,28.689,2.0206,7.2556,28.7013,2.0313,7.2714,28.7128,2.0416,7.3024,28.7295,2.0561,7.2876,28.7229,2.0511,7.3312,28.7349,2.0519,7.3556,28.7291,2.0306,7.3433,28.7327,2.0421,7.3695,28.7257,2.0185,7.2281,28.6325,1.9171,7.2163,28.6433,1.9336,7.2086,28.6551,1.9509,7.2061,28.6676,1.9683,7.2095,28.6805,1.9843,7.2185,28.6936,1.9983,7.2318,28.7065,2.0106,7.2476,28.7188,2.0217,7.2642,28.7301,2.0322,7.2809,28.7397,2.0417,7.2965,28.7454,2.0469,7.3267,28.7471,2.0443,7.3531,28.7363,2.0259,7.3397,28.7424,2.0359,7.3682,28.7303,2.0155,7.2267,28.6396,1.9107,7.2142,28.653,1.925,7.2058,28.6672,1.9402,7.2026,28.6816,1.9559,7.2053,28.6961,1.9713,7.2138,28.7102,1.9854,7.2268,28.7237,1.9981,7.2427,28.7361,2.0097,7.2598,28.7471,2.0206,7.277,28.756,2.0304,7.293,28.7606,2.0361,7.3242,28.7588,2.0354,7.3519,28.7433,2.0203,7.3378,28.7519,2.0285,7.3677,28.7347,2.0119,7.2269,28.646,1.9036,7.2145,28.6618,1.9154,7.2062,28.6781,1.9283,7.203,28.6944,1.9421,7.2055,28.7102,1.9564,7.2135,28.7253,1.9704,7.2261,28.7393,1.9834,7.2417,28.7518,1.9956,7.2588,28.7625,2.0071,7.2762,28.7708,2.0173,7.2924,28.7744,2.0237,7.3239,28.7694,2.0255,7.352,28.7497,2.0141,7.3376,28.7604,2.0203,7.368,28.7387,2.008,7.2287,28.6513,1.8958,7.2175,28.6695,1.9052,7.2099,28.6875,1.9157,7.2074,28.7054,1.9274,7.2103,28.7225,1.9401,7.2182,28.7385,1.9533,7.2303,28.7529,1.9665,7.2454,28.7656,1.9792,7.262,28.776,1.9912,7.2791,28.7838,2.0021,7.2952,28.7865,2.0093,7.326,28.7787,2.0143,7.3536,28.7554,2.0073,7.3394,28.7679,2.0112,7.3692,28.7423,2.0038,7.2319,28.6555,1.8876,7.2228,28.6757,1.8948,7.2167,28.6952,1.9027,7.2154,28.7144,1.9123,7.2191,28.7325,1.9232,7.2273,28.7493,1.9351,7.2392,28.7642,1.9477,7.2535,28.777,1.9604,7.2693,28.7873,1.973,7.2859,28.7946,1.9847,7.3015,28.7966,1.9931,7.3308,28.7864,2.0019,7.3566,28.7601,2.0002,7.3433,28.7742,2.0013,7.3712,28.7453,1.9994,7.2301,28.6803,1.8843,7.2261,28.7008,1.89,7.2264,28.7207,1.8977,7.2311,28.7396,1.907,7.2397,28.7569,1.9176,7.2513,28.7724,1.9291,7.265,28.7856,1.9412,7.2799,28.7959,1.9538,7.296,28.8029,1.9662,7.3109,28.8042,1.976,7.3381,28.7924,1.9888,7.3493,28.7792,1.991,7.3611,28.7639,1.9928,7.3741,28.7477,1.9949,7.2387,28.6827,1.8742,7.2374,28.7039,1.8783,7.2395,28.7241,1.8844,7.2453,28.7432,1.8924,7.2543,28.7609,1.9018,7.2656,28.7769,1.9122,7.2786,28.7905,1.9234,7.293,28.8012,1.9355,7.3086,28.8082,1.9483,7.3226,28.8092,1.9593,7.3473,28.7964,1.9761,7.3569,28.7826,1.9809,7.3669,28.7665,1.9855,7.3776,28.7493,1.9906,7.2477,28.6593,1.864,7.2481,28.6829,1.8651,7.2499,28.7045,1.8677,7.2539,28.7245,1.8726,7.2608,28.7436,1.8794,7.2702,28.7615,1.8877,7.2813,28.7776,1.8971,7.2939,28.7914,1.9078,7.308,28.8023,1.9196,7.323,28.8097,1.9323,7.3362,28.8111,1.9439,7.3582,28.7983,1.9644,7.3658,28.7843,1.9716,7.3734,28.7678,1.979,7.3816,28.7501,1.9867,7.2541,28.6575,1.8577,7.258,28.6811,1.8575,7.263,28.7028,1.8586,7.2688,28.7224,1.8619,7.2766,28.7411,1.8679,7.2862,28.7587,1.8756,7.2974,28.7744,1.8849,7.3099,28.7878,1.8955,7.3238,28.7989,1.9072,7.3385,28.8071,1.9196,7.351,28.8094,1.9314,7.3699,28.7978,1.9547,7.3754,28.784,1.964,7.3805,28.7677,1.9736,7.3859,28.7501,1.9834,7.2606,28.6543,1.8524,7.2757,28.699,1.8515,7.2678,28.6774,1.8512,7.2831,28.7179,1.8533,7.2917,28.7358,1.8587,7.3019,28.7525,1.8664,7.3133,28.7674,1.8761,7.3259,28.7805,1.887,7.3399,28.792,1.8985,7.3544,28.8012,1.9106,7.3662,28.8046,1.9224,7.3822,28.7948,1.9475,7.3854,28.7818,1.9583,7.3879,28.7662,1.9693,7.3905,28.7492,1.9807,7.2671,28.6499,1.8479,7.2875,28.6929,1.8461,7.277,28.6719,1.846,7.3065,28.7278,1.8518,7.2969,28.7111,1.8474,7.3174,28.7436,1.8599,7.3291,28.7577,1.8701,7.342,28.7706,1.8814,7.3561,28.7827,1.8929,7.3706,28.7929,1.9046,7.3818,28.7974,1.9162,7.3947,28.7898,1.9426,7.3956,28.7779,1.9543,7.3955,28.7633,1.9662,7.3952,28.7474,1.9786,7.2734,28.6446,1.8442,7.2986,28.6846,1.8419,7.2857,28.6648,1.8419,7.3211,28.7177,1.8476,7.3102,28.7022,1.8435,7.3325,28.7324,1.8555,7.3447,28.746,1.8662,7.3582,28.7592,1.8778,7.3726,28.7718,1.8894,7.3869,28.7828,1.9009,7.3974,28.7882,1.9125,7.4072,28.7829,1.9396,7.4058,28.7724,1.9519,7.403,28.7592,1.9642,7.3999,28.745,1.9771,7.2796,28.6383,1.8416,7.3089,28.6745,1.8386,7.294,28.6564,1.8387,7.335,28.7057,1.8449,7.3226,28.691,1.8404,7.3473,28.7196,1.8527,7.3604,28.7331,1.8636,7.3743,28.7465,1.8754,7.389,28.7596,1.8872,7.4031,28.7712,1.8989,7.4127,28.7772,1.9108,7.4194,28.7744,1.9385,7.4158,28.7654,1.9509,7.4103,28.754,1.9633,7.4044,28.7418,1.9763,7.2856,28.6314,1.84,7.3186,28.6631,1.8359,7.3019,28.647,1.8364,7.348,28.6919,1.8426,7.334,28.6782,1.8378,7.3618,28.7054,1.851,7.3757,28.7188,1.8621,7.3902,28.7324,1.874,7.405,28.7458,1.8862,7.4187,28.7576,1.8987,7.4274,28.7642,1.911,7.4309,28.7641,1.939,7.4251,28.7571,1.9512,7.4172,28.7479,1.9633,7.4086,28.7381,1.9761,7.2913,28.624,1.8395,7.3277,28.651,1.834,7.3093,28.637,1.8351,7.3603,28.677,1.8408,7.3446,28.6643,1.8356,7.3755,28.6899,1.85,7.3906,28.7031,1.8619,7.4054,28.7164,1.8742,7.4201,28.7298,1.8871,7.4333,28.7418,1.9004,7.4411,28.7492,1.9131,7.4415,28.7526,1.9405,7.4235,28.7411,1.964,7.4337,28.7477,1.9524,7.4125,28.7339,1.9765,7.2965,28.6165,1.8402,7.3163,28.6268,1.8352,7.3362,28.6383,1.8334,7.3545,28.6497,1.8348,7.372,28.6614,1.8405,7.3887,28.6737,1.8507,7.4047,28.6863,1.8631,7.4341,28.7122,1.8895,7.4197,28.6991,1.8759,7.4533,28.7332,1.9159,7.4466,28.7246,1.9032,7.4509,28.7401,1.9428,7.429,28.7337,1.9655,7.4412,28.7377,1.9543,7.4159,28.7294,1.9775,7.3012,28.6091,1.8422,7.3224,28.6165,1.837,7.3437,28.6255,1.8349,7.3636,28.6349,1.8365,7.3828,28.6456,1.8432,7.4177,28.6689,1.8665,7.401,28.657,1.8541,7.4466,28.6941,1.8929,7.4327,28.6811,1.8793,7.4639,28.7167,1.9195,7.4582,28.707,1.9067,7.4586,28.7272,1.9459,7.4336,28.726,1.9678,7.4475,28.7272,1.957,7.4186,28.7247,1.979,7.305,28.6018,1.8454,7.3276,28.6066,1.8405,7.3499,28.613,1.8388,7.3714,28.6207,1.8414,7.3924,28.6301,1.8492,7.4289,28.6518,1.8718,7.4118,28.6407,1.8599,7.457,28.6764,1.8977,7.4437,28.6634,1.8842,7.4723,28.7002,1.9245,7.4677,28.6896,1.9117,7.4646,28.7142,1.9502,7.437,28.7183,1.9707,7.4522,28.7167,1.9607,7.4207,28.7199,1.9811,7.3077,28.594,1.8496,7.3316,28.5961,1.8459,7.3547,28.6001,1.8452,7.3776,28.6069,1.8495,7.3998,28.6156,1.8579,7.4373,28.6353,1.8796,7.42,28.6251,1.8683,7.4647,28.6593,1.905,7.452,28.6465,1.8917,7.4745,28.6729,1.919,7.4686,28.7015,1.9561,7.4392,28.7107,1.9746,7.4553,28.7064,1.9655,7.4219,28.7153,1.9837,7.3092,28.5859,1.8549,7.3336,28.5846,1.8533,7.3579,28.5864,1.8548,7.4044,28.6003,1.869,7.3817,28.5919,1.8603,7.4421,28.6196,1.8905,7.4247,28.61,1.8795,7.469,28.6432,1.9156,7.4568,28.6306,1.9024,7.478,28.657,1.9294,7.4705,28.6894,1.9639,7.4401,28.7034,1.9793,7.4567,28.6964,1.9719,7.4224,28.7108,1.9868,7.3094,28.578,1.8613,7.3336,28.5727,1.8625,7.3589,28.5722,1.8672,7.4054,28.5833,1.8828,7.3829,28.5757,1.8739,7.4426,28.6043,1.9046,7.4255,28.5934,1.8933,7.4693,28.6283,1.9298,7.4573,28.6156,1.9168,7.4815,28.6547,1.9552,7.4782,28.6422,1.9433,7.4715,28.6774,1.9744,7.4399,28.6966,1.985,7.4573,28.6867,1.98,7.422,28.7067,1.9903,7.3084,28.5709,1.869,7.3577,28.5584,1.8806,7.3323,28.5618,1.873,7.4025,28.5655,1.899,7.3812,28.5595,1.8892,7.4386,28.5883,1.9218,7.4217,28.5756,1.9098,7.4656,28.6146,1.9475,7.4533,28.6017,1.9344,7.4806,28.6407,1.9723,7.4762,28.6281,1.9611,7.4711,28.6661,1.9872,7.4386,28.6903,1.9918,7.4565,28.6778,1.9899,7.4207,28.7031,1.9942,7.3541,28.5464,1.8943,7.3294,28.5528,1.8842,7.3963,28.5491,1.9153,7.3764,28.5448,1.9045,7.4311,28.5734,1.9404,7.4146,28.5593,1.9274,7.4592,28.6027,1.9671,7.4456,28.5887,1.9536,7.4773,28.6287,1.9908,7.4716,28.6158,1.9807,7.4683,28.6565,2.0013,7.4358,28.685,1.9992,7.4536,28.6701,2.0007,7.4186,28.7001,1.9985,7.3481,28.5375,1.9078,7.3249,28.5465,1.8956,7.3871,28.5365,1.9317,7.3684,28.5333,1.9193,7.4207,28.5618,1.9592,7.4047,28.5468,1.9452,7.4493,28.5936,1.9866,7.4349,28.5786,1.9728,7.4694,28.6203,2.0086,7.4627,28.6069,1.9997,7.462,28.6498,2.0149,7.448,28.6647,2.0114,7.4314,28.6809,2.0068,7.4157,28.6977,2.0029,7.2987,28.5592,1.8943,7.3395,28.5326,1.9208,7.3187,28.5435,1.9068,7.3755,28.5298,1.9481,7.358,28.5272,1.9341,7.4077,28.5551,1.9777,7.3922,28.5399,1.9629,7.4355,28.5883,2.005,7.4217,28.5723,1.9917,7.4562,28.6162,2.0246,7.4489,28.6022,2.0171,7.4517,28.6466,2.0272,7.4398,28.6617,2.0214,7.4255,28.6785,2.014,7.4121,28.696,2.0073,7.2938,28.5599,1.9028,7.3292,28.5326,1.9334,7.3111,28.5439,1.9176,7.3619,28.5296,1.9642,7.3457,28.5271,1.9485,7.3926,28.5544,1.9949,7.3776,28.5394,1.98,7.4195,28.5875,2.021,7.4066,28.5714,2.0086,7.4393,28.6161,2.0384,7.4319,28.6018,2.0321,7.4386,28.6466,2.0377,7.4296,28.6615,2.0299,7.4184,28.6779,2.0205,7.4081,28.6953,2.0115,7.2882,28.5628,1.9108,7.3175,28.5373,1.9451,7.3024,28.5478,1.9276,7.3467,28.5357,1.9788,7.3319,28.5326,1.962,7.3765,28.5604,2.0085,7.3617,28.5458,1.9943,7.4032,28.591,2.0337,7.3905,28.5762,2.0216,7.4219,28.6198,2.0495,7.4146,28.6055,2.044,7.4245,28.6496,2.0463,7.4186,28.6637,2.0371,7.4108,28.679,2.0261,7.4037,28.6954,2.0152,7.2821,28.5677,1.9181,7.305,28.5458,1.9556,7.293,28.5545,1.9367,7.331,28.5476,1.9898,7.3174,28.5431,1.9733,7.3599,28.5714,2.018,7.3454,28.5579,2.0045,7.3867,28.5983,2.043,7.3738,28.5853,2.0309,7.4053,28.6262,2.0583,7.3979,28.6124,2.0533,7.4108,28.6546,2.0534,7.4077,28.6676,2.0431,7.4032,28.6813,2.0309,7.3992,28.6965,2.0184,7.2755,28.5739,1.9242,7.292,28.557,1.9637,7.2831,28.5633,1.9443,7.3152,28.5628,1.9973,7.3028,28.5569,1.9815,7.3428,28.5849,2.0246,7.3288,28.5729,2.0114,7.3696,28.6089,2.0496,7.3566,28.5966,2.0374,7.3896,28.6349,2.0654,7.3813,28.6222,2.0603,7.3983,28.6611,2.0594,7.3976,28.6727,2.0482,7.3958,28.6848,2.0349,7.3945,28.6984,2.021,7.2685,28.5808,1.9287,7.2792,28.5695,1.9695,7.2727,28.5728,1.9497,7.2993,28.5784,2.0026,7.2882,28.5716,1.9872,7.3254,28.5983,2.0293,7.3119,28.5878,2.0165,7.3525,28.6217,2.0538,7.3392,28.6096,2.0417,7.3648,28.6342,2.0648,7.374,28.6457,2.0702,7.3863,28.6692,2.0637,7.3879,28.6791,2.0518,7.3886,28.6893,2.0376,7.3899,28.701,2.0228,7.2613,28.5879,1.9314,7.2667,28.5818,1.9733,7.2625,28.5826,1.9531,7.2834,28.5922,2.0066,7.2737,28.5853,1.9912,7.3087,28.6123,2.0318,7.2953,28.6014,2.0199,7.3364,28.6358,2.0553,7.3227,28.6239,2.0434,7.3593,28.658,2.0723,7.3492,28.6476,2.0665,7.3748,28.6786,2.0658,7.3786,28.6867,2.0536,7.3816,28.6948,2.0391,7.3855,28.7042,2.0239,7.3595,28.8063,1.9409,7.3054,28.7735,2.0255});
			return lpisform_Coord_6_73_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lpphal_Geo' coordIndex field, scene-graph level=5, element #78, 1880 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 getlpphal_Geo_5_78_coordIndex()
		{
			MFInt32 lpphal_Geo_5_78_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlpphal_Geo_5_78_coordIndex_1()))
				.append(new MFInt32(getlpphal_Geo_5_78_coordIndex_2()));
			return lpphal_Geo_5_78_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lpphal_Coord' point field, scene-graph level=6, element #78, 711 total numbers made up of 237 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 getlpphal_Coord_6_78_point()
		{
			MFVec3f lpphal_Coord_6_78_point = new MFVec3f(new double[] {5.6178,26.5045,3.923,5.5883,26.4422,3.9539,5.6255,26.3852,3.8517,5.3658,26.5706,3.7845,5.3751,26.5541,3.7057,5.306,26.4804,3.7815,5.3411,26.552,3.8703,5.6319,26.2842,3.8256,5.6479,26.3015,3.7865,5.6735,26.4588,3.7823,5.6606,26.3711,3.7754,5.3697,26.5795,3.7836,5.3862,26.5703,3.7138,5.6066,26.2938,3.8797,5.6137,26.2831,3.8518,5.6178,26.2838,3.8593,5.6013,26.293,3.8766,5.5791,26.3301,3.9226,5.3363,26.495,3.6838,5.3078,26.4476,3.6923,5.3267,26.4802,3.6784,5.3336,26.4771,3.675,5.3024,26.4537,3.6964,5.9001,27.0892,3.4593,5.8073,27.1255,3.4345,5.8997,27.1043,3.4641,5.8085,27.1337,3.4406,5.6047,27.2405,3.467,5.6163,27.2718,3.5178,5.6161,27.2459,3.4691,5.6025,27.2642,3.5217,5.4554,26.463,3.9005,5.4601,26.4608,3.9012,5.4724,26.5031,3.9243,5.4486,26.4055,3.8521,5.4436,26.4079,3.8505,5.4501,26.3947,3.8157,5.4553,26.391,3.8181,5.6574,26.3521,3.7764,5.4419,26.5798,3.8994,5.3836,26.5879,3.8624,5.3462,26.5529,3.879,5.4101,26.5286,3.9172,5.5431,26.8889,3.6311,5.4859,26.759,3.6894,5.5296,26.8945,3.6462,5.4761,26.7653,3.6954,5.3144,26.5163,3.8687,5.8024,26.8039,3.6849,5.713,26.6675,3.7399,5.794,26.7968,3.6587,5.7185,26.6704,3.7538,5.6765,26.5419,3.7699,5.6779,26.5419,3.7812,5.6251,26.2821,3.8211,5.6409,26.3015,3.7802,5.5777,26.3905,3.9499,5.5813,26.4481,3.9595,5.5697,26.3932,3.9497,5.8057,26.8104,3.7029,5.5856,26.4066,3.7571,5.596,26.4642,3.7738,5.6709,26.4575,3.7774,5.6556,26.3688,3.7682,5.2801,26.4338,3.7298,5.2879,26.462,3.8284,5.6791,26.6716,3.7167,5.629,26.552,3.7584,5.5273,26.4956,3.7652,5.4446,26.5355,3.7244,5.4746,26.6008,3.7332,5.5591,26.5649,3.7502,5.4099,26.4672,3.6959,5.3822,26.5493,3.6954,5.437,26.5199,3.7199,5.3452,26.4941,3.6797,5.5127,26.4238,3.9349,5.5263,26.4793,3.9492,5.3197,26.5133,3.8748,5.383,26.4911,3.9009,5.3698,26.4263,3.6985,5.4973,26.4329,3.7475,5.4777,26.4105,3.7599,5.4024,26.4581,3.6919,5.3326,26.4068,3.7992,5.4688,26.4001,3.7748,5.3425,26.4045,3.7388,5.3449,26.4313,3.8447,5.2694,26.4353,3.7791,5.6717,26.5636,3.8221,5.7207,26.6829,3.7891,5.5679,26.5499,3.9185,5.643,26.5955,3.8838,5.6014,26.6122,3.8951,5.6173,26.5256,3.9182,5.5915,26.7543,3.8632,5.5371,26.7754,3.8415,5.4853,26.6535,3.8747,5.5424,26.631,3.8873,5.5015,26.5555,3.9098,5.5593,26.5352,3.9247,5.8886,27.1907,3.6817,5.9182,27.1484,3.6322,5.8548,27.1651,3.6087,5.841,27.1914,3.6288,5.6724,27.2309,3.5017,5.6696,27.2468,3.5396,5.7422,27.2127,3.5579,5.7935,27.1829,3.584,5.7921,27.2288,3.6313,5.8152,27.2114,3.6361,5.8582,27.1535,3.5803,5.8498,27.1508,3.5541,5.8395,27.1535,3.5405,5.8035,27.1692,3.5286,5.7779,27.1807,3.5331,5.7566,27.1964,3.5416,5.7439,27.2315,3.5878,5.737,27.161,3.4299,5.6688,27.2084,3.4343,5.75,27.1689,3.4632,5.6945,27.2007,3.4691,5.7092,26.8727,3.8354,5.7844,27.0314,3.8017,5.74,27.0474,3.799,5.7921,26.8195,3.7393,5.4293,26.6618,3.8258,5.4384,26.6585,3.8364,5.4868,26.7803,3.8047,5.8735,26.9499,3.7043,5.769,26.847,3.8067,5.8461,26.9941,3.7673,5.9096,27.1519,3.7513,5.8378,27.2009,3.764,5.651,27.0931,3.7612,5.6957,27.0635,3.7964,5.7048,27.2597,3.7251,5.5536,27.0733,3.6149,5.5259,26.9048,3.7093,5.5655,27.0848,3.6497,5.5794,27.196,3.4669,5.6403,27.1555,3.4239,5.5887,27.0355,3.531,5.5637,27.059,3.5571,5.6351,27.2879,3.5669,5.7688,27.239,3.6179,5.8698,27.124,3.4953,5.9103,27.1204,3.5301,5.6562,26.4911,3.8401,5.657,26.5051,3.8364,5.6744,26.476,3.7842,5.4749,26.397,3.7771,5.5461,26.3294,3.7905,5.5267,26.33,3.8356,5.5026,26.4311,3.7491,5.585,26.3952,3.7571,5.4893,26.405,3.7612,5.5629,26.3432,3.7674,5.5721,26.3302,3.9206,5.5043,26.3608,3.8878,5.2925,26.4573,3.8348,5.4303,26.6292,3.7283,5.3936,26.5647,3.7037,5.4192,26.6519,3.7871,5.418,26.6288,3.7295,5.6714,26.4738,3.7776,5.6006,26.4813,3.7759,5.3723,26.5877,3.8525,5.7686,27.2422,3.7487,5.61,26.5117,3.9258,5.8893,26.9038,3.6251,5.8876,26.9194,3.6564,5.2749,26.4305,3.7819,5.286,26.4293,3.7303,5.6524,26.3534,3.7693,5.6226,26.5204,3.9159,5.9937,27.1033,3.5846,5.9938,27.0932,3.5585,5.9296,27.1267,3.5723,5.7856,27.2892,3.7272,5.8518,27.2459,3.7402,5.792,27.2966,3.7167,5.8516,27.2499,3.7318,5.5235,26.4863,3.7648,5.5227,26.4865,3.7645,5.3843,26.6009,3.8468,5.51,26.5708,3.9052,5.3971,26.6013,3.858,5.4511,26.5946,3.8943,5.5025,26.4431,3.7486,5.5078,26.4421,3.7501,5.5854,27.1041,3.708,5.5956,27.243,3.5919,5.6189,27.2613,3.6479,5.6451,27.3008,3.6357,5.6582,27.3109,3.627,5.6208,27.2774,3.5777,5.7306,27.3184,3.6926,5.7228,27.3121,3.7039,5.9169,27.1953,3.7259,5.9175,27.1848,3.736,5.9849,27.1243,3.6545,5.9806,27.1351,3.6475,5.9978,27.0905,3.5936,5.9726,27.0725,3.501,5.9994,27.0792,3.5576,5.9677,27.0877,3.5042,5.6615,27.1981,3.4277,5.734,27.1517,3.4235,5.6029,26.8626,3.617,5.5357,26.725,3.6897,6.0009,27.0271,3.5585,5.9945,27.0532,3.6104,5.7917,27.2635,3.6714,5.7505,27.2793,3.6547,5.6547,26.9026,3.8361,5.4736,26.7724,3.7577,5.6164,26.6915,3.6976,5.6964,26.7088,3.8503,5.6507,26.7328,3.8666,5.8356,27.2369,3.6882,5.8074,27.1463,3.4706,5.6996,27.2732,3.6065,5.5727,27.2264,3.5365,5.5403,26.9282,3.7668,5.5891,26.9231,3.8018,5.9808,27.0863,3.6698,5.9764,27.0155,3.5046,5.8806,26.9078,3.5747,5.7498,26.8041,3.6337,5.8955,27.0351,3.4618,5.8327,26.9285,3.5428,5.6815,26.8267,3.6241,5.7201,27.1074,3.4202,5.7462,26.97,3.5182,5.6639,27.0008,3.5165,5.7944,27.0702,3.4295});
			return lpphal_Coord_6_78_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lpphal2_Geo' coordIndex field, scene-graph level=5, element #83, 2280 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 getlpphal2_Geo_5_83_coordIndex()
		{
			MFInt32 lpphal2_Geo_5_83_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlpphal2_Geo_5_83_coordIndex_1()))
				.append(new MFInt32(getlpphal2_Geo_5_83_coordIndex_2()))
				.append(new MFInt32(getlpphal2_Geo_5_83_coordIndex_3()));
			return lpphal2_Geo_5_83_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lpphal2_Coord' point field, scene-graph level=6, element #83, 861 total numbers made up of 287 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 getlpphal2_Coord_6_83_point()
		{
			MFVec3f lpphal2_Coord_6_83_point = new MFVec3f(new double[] {6.8168,26.3541,4.2634,6.7767,26.3536,4.2685,6.7577,26.1186,4.3432,6.5353,25.675,4.466,6.5421,25.5705,4.5195,6.576,25.6581,4.4724,6.4993,25.5627,4.5025,6.8826,25.9999,4.1071,6.9996,26.2131,4.0236,6.9052,26.0127,4.155,6.6887,25.5556,4.2075,6.6474,25.4443,4.2104,6.6385,25.4489,4.2203,6.6748,25.5609,4.2139,6.6044,25.3145,4.2303,6.5876,25.3277,4.1794,6.6173,25.3772,4.19,6.6108,25.3947,4.1881,6.6187,25.4212,4.2156,6.6346,25.4231,4.2063,6.5728,25.4083,4.2168,6.9296,26.3452,3.7592,6.887,26.3297,3.7452,6.9043,26.4396,3.7625,6.8558,26.2428,3.7905,6.8399,26.1342,3.9316,6.8277,26.2522,3.8028,6.837,25.982,4.0623,6.8627,26.1315,3.9261,6.9069,26.1522,3.943,6.7821,25.7658,4.1505,6.7059,25.5396,4.2128,6.7538,25.7709,4.1534,6.88,26.244,3.7941,6.7566,25.5708,4.3638,6.7601,25.5579,4.3314,6.8459,25.7936,4.2776,6.7255,25.451,4.3632,6.7111,25.4767,4.388,6.7355,26.3531,4.2737,6.686,26.3491,4.2676,6.6761,26.1278,4.3301,6.7887,26.6828,4.1537,6.7574,26.6986,4.1366,6.7751,26.6748,4.1674,6.7369,26.6305,4.2109,6.677,26.623,4.1962,6.6845,26.4788,4.2398,6.7186,26.6984,4.1213,6.6691,26.674,4.1515,6.6971,26.6561,4.176,6.9611,26.184,3.9728,6.4998,25.3328,4.2329,6.5213,25.3871,4.2262,6.5521,25.2724,4.185,6.4467,25.5667,4.4649,6.4529,25.5786,4.4618,6.3785,25.5372,4.4369,6.3929,25.5364,4.4136,6.6567,25.2532,4.3567,6.6336,25.229,4.3266,6.6741,25.3075,4.3353,6.4759,25.437,4.3027,6.4801,25.4326,4.2965,6.4719,25.4235,4.294,6.465,25.4272,4.2971,6.5735,25.4039,4.2291,6.6947,25.3077,4.3808,6.692,25.3591,4.3213,6.716,25.399,4.3718,6.4085,25.4833,4.3445,6.3362,25.4945,4.3883,6.3467,25.5042,4.3917,6.4007,25.476,4.3391,6.5057,25.5015,4.5423,6.4986,25.5188,4.5327,6.4732,25.4917,4.5314,6.5769,25.4526,4.5187,6.4796,25.4382,4.5613,6.5026,25.4291,4.5583,6.5755,25.4661,4.5031,6.532,25.501,4.5428,6.3424,25.4616,4.4621,6.4029,25.4923,4.4834,6.3513,25.4977,4.4431,6.3133,25.4589,4.4044,6.3165,25.4695,4.4278,6.337,25.4997,4.4096,6.6312,25.227,4.3431,6.6569,25.2468,4.3701,6.9579,26.4419,3.7776,6.9002,26.464,3.7783,6.8887,26.4638,3.8036,6.9443,26.4613,3.788,6.8536,26.455,3.7712,6.8285,26.3384,3.7525,6.7965,26.3553,3.7658,6.8629,26.3333,3.7421,6.9695,26.534,4.1556,6.9567,26.5678,4.1262,6.8737,26.6367,4.1531,6.8626,26.5829,4.1919,6.8033,25.9774,4.0641,6.7455,26.0113,4.1081,6.6952,25.7799,4.1817,6.5179,25.3775,4.5261,6.5502,25.4185,4.5268,6.4744,25.4144,4.5593,7.0064,26.5259,4.0545,7.0436,26.5109,3.977,6.9497,26.5102,4.0002,6.7726,26.691,4.116,6.812,26.6867,4.1292,6.8383,26.5826,4.0572,6.8432,26.519,3.9973,6.8928,26.5528,4.0477,6.957,26.4925,3.9416,6.9196,26.4756,3.8941,6.8579,26.4746,3.8765,6.8075,26.4922,3.8811,6.7664,26.517,3.8988,6.7424,26.5496,3.9357,6.7318,26.5753,3.9704,6.7507,26.5967,4.0161,6.7886,26.6058,4.0494,7.002,26.4531,3.7999,7.0104,26.3685,3.8206,6.6343,26.5565,3.935,6.6578,26.5843,3.921,6.7133,26.522,3.8495,6.6355,26.6321,3.9793,6.6197,26.6526,4.0842,6.6596,26.6673,4.0423,6.6038,26.6036,4.0038,6.7982,26.6101,4.2067,6.7709,26.4815,4.2454,6.59,26.329,4.158,6.6065,26.0936,4.2006,6.5912,26.12,4.231,6.5976,26.283,4.1071,7.059,26.3449,4.0474,6.9834,26.2932,4.1837,7.0077,26.2437,4.0922,7.0148,26.3974,4.1393,6.9208,26.0216,4.188,6.5547,26.4406,4.0921,6.5745,26.4043,4.0217,6.5747,26.5832,4.1182,6.5664,26.4742,4.1786,6.6235,26.6164,4.183,6.6031,26.4745,4.2166,6.5705,25.5665,4.5149,6.6032,25.6468,4.4767,6.3626,25.4275,4.5023,6.3918,25.4233,4.5279,6.4266,25.4424,4.5387,6.5651,25.2709,4.1873,6.5667,25.2332,4.2251,6.6713,25.4123,4.2637,6.8239,25.8341,4.3601,6.7171,25.5998,4.4243,6.6159,25.5392,4.4796,6.6625,25.6249,4.4642,6.6477,25.4765,4.4527,6.6975,25.4349,4.4021,6.671,25.5156,4.4393,6.6383,25.2959,4.4328,6.6856,25.3031,4.4044,6.6716,25.3501,4.4331,6.4431,25.5921,4.41,6.4455,25.5908,4.3983,6.4,25.531,4.4069,6.5283,25.3932,4.2252,6.4972,25.4498,4.3129,6.4432,25.4985,4.3656,6.4527,25.3367,4.3491,6.4807,25.3197,4.3947,6.3952,25.3254,4.4428,6.3677,25.3659,4.3852,6.4481,25.3938,4.3012,6.3818,25.4305,4.3479,6.5552,25.2313,4.2267,6.5053,25.269,4.2677,6.6089,25.4601,4.2445,6.6427,25.5723,4.2289,6.8125,25.7714,4.1898,6.8311,25.7838,4.2388,6.7567,25.5574,4.3014,6.728,25.5471,4.2518,6.5947,25.2132,4.2907,6.6499,25.4207,4.2198,6.4907,25.6847,4.3887,6.55,25.8899,4.3124,6.5218,25.6485,4.345,6.565,25.8623,4.279,6.4192,25.398,4.5531,6.4521,25.4226,4.5568,6.4874,25.5536,4.5024,6.3069,25.4254,4.452,6.5028,25.6852,4.4326,6.9255,26.2623,3.8226,6.5604,26.4596,4.1365,6.5902,26.3427,4.1916,6.6292,26.3447,4.2495,6.8307,26.5964,4.1992,6.8193,26.6481,4.1711,6.7987,26.6887,4.1467,6.8361,26.6703,4.1287,6.8706,26.6404,4.1239,6.5337,25.5106,4.3079,6.4288,25.3836,4.5527,6.9424,26.5767,4.1018,6.6243,26.1234,4.2902,6.7786,26.491,3.8062,6.7334,26.3991,3.8197,6.7348,26.3113,3.8937,6.7937,26.2675,3.8278,6.8167,26.1473,3.9514,6.75,26.1848,3.9908,6.9868,26.4692,3.8134,6.584,26.4969,3.9649,6.562,26.5402,4.0421,6.8713,26.4686,3.7817,6.6838,25.3932,4.4161,6.6865,25.3772,4.4281,6.515,25.5348,4.5325,6.6342,25.4488,4.4608,6.4526,25.3904,4.2975,6.6134,25.3905,4.4818,6.6183,25.3876,4.4779,6.6367,25.4326,4.4749,6.5802,25.3512,4.1736,6.6599,25.4403,4.2195,6.8303,26.67,4.1548,6.7183,25.442,4.324,6.6857,25.4388,4.2661,6.6149,25.9129,4.3914,6.8097,26.4782,4.2369,6.8396,26.4756,4.2303,6.4842,25.5603,4.3543,6.5929,26.1269,4.2474,6.4899,25.688,4.3998,6.7385,26.6915,4.1023,6.5874,25.3477,4.4759,6.5826,25.3509,4.4795,6.4856,25.3172,4.3913,6.5319,25.3231,4.4441,6.5365,25.3201,4.44,6.4572,25.3337,4.3454,6.5905,25.4948,4.4945,6.585,25.2085,4.2993,6.2985,25.4026,4.431,6.3331,25.3773,4.5023,6.3259,25.3588,4.4891,6.6673,26.4452,3.8783,6.6516,26.6335,3.9773,6.6722,26.5894,3.9234,6.6799,26.6632,4.0287,7.0366,26.4933,3.8918,7.0594,26.5027,3.9744,7.055,26.4826,3.8854,6.7839,26.5007,3.8161,6.727,26.5285,3.8557,6.5769,25.9101,4.3554,6.5508,25.8938,4.3242,6.76,25.8672,4.4051,6.6307,25.8141,4.2282,6.6738,26.0395,4.1562,6.5726,25.6081,4.292,7.0188,26.5179,4.0712,7.0346,26.4868,4.1063,7.0799,26.4324,4.0107,7.0708,26.4035,3.9103,6.9042,26.0628,4.2802,6.8349,26.0967,4.327,6.6908,25.8908,4.4111,6.9495,26.4389,4.1968,6.9139,26.3353,4.2404,6.985,26.2789,3.8787,6.677,26.2332,4.0434,6.6624,26.3573,3.9503,7.0543,26.3046,3.9705,6.3812,25.3831,4.537,6.4555,25.3395,4.4958,6.546,25.2434,4.3373,6.5974,25.2641,4.3981,6.389,25.365,4.5373});
			return lpphal2_Coord_6_83_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lpphal3_Geo' coordIndex field, scene-graph level=5, element #88, 2392 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 getlpphal3_Geo_5_88_coordIndex()
		{
			MFInt32 lpphal3_Geo_5_88_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlpphal3_Geo_5_88_coordIndex_1()))
				.append(new MFInt32(getlpphal3_Geo_5_88_coordIndex_2()))
				.append(new MFInt32(getlpphal3_Geo_5_88_coordIndex_3()));
			return lpphal3_Geo_5_88_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lpphal3_Coord' point field, scene-graph level=6, element #88, 903 total numbers made up of 301 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 getlpphal3_Coord_6_88_point()
		{
			MFVec3f lpphal3_Coord_6_88_point = new MFVec3f(new double[] {6.5796,25.1999,3.3558,6.5699,25.1999,3.3459,6.5672,25.2023,3.3552,6.7056,25.1976,3.2058,6.6974,25.1349,3.2003,6.6624,25.1549,3.1821,6.7821,25.2983,3.2327,6.7701,25.303,3.2304,6.9216,25.5899,3.2271,6.9374,25.5827,3.2131,6.5506,25.0075,3.5276,6.5543,24.9982,3.5152,6.5689,25.0138,3.5186,6.6429,25.005,3.4085,6.6451,25.0041,3.4005,6.6552,25.0206,3.4055,6.5961,24.9759,3.2222,6.6853,25.0166,3.2581,6.6529,24.9889,3.2795,6.6415,24.9751,3.2804,6.6497,24.9879,3.3261,6.5666,24.9795,3.3007,6.6422,25.1768,3.1843,6.6191,25.1593,3.1574,6.6137,25.1709,3.1664,6.6328,25.1197,3.1742,6.503,25.183,3.5309,6.5509,25.2162,3.5565,6.5148,25.2546,3.5346,6.5226,25.1695,3.5357,6.5465,25.1448,3.5435,6.548,25.097,3.5416,6.5857,25.1759,3.5656,6.5826,25.0868,3.5445,6.459,25.1789,3.5166,6.4981,25.12,3.526,6.8024,25.2903,3.238,7.0164,25.5524,3.2391,6.8294,25.2809,3.2553,6.9736,25.5687,3.2203,7.195,25.9384,3.1536,7.0531,25.8158,3.1795,7.1134,25.9716,3.1429,7.1109,25.7927,3.1978,7.2493,26.2866,3.3756,7.2507,26.2875,3.3967,7.2968,26.2592,3.3738,7.3427,26.2303,3.3434,7.3261,26.2383,3.3239,7.2575,26.2848,3.412,7.2863,26.2607,3.3183,7.2685,26.2716,3.3273,7.3498,26.2279,3.364,7.3334,26.2412,3.4104,7.3436,26.2337,3.3909,7.2959,26.2643,3.4298,7.315,26.2529,3.4252,7.3046,26.25,3.3158,7.2532,26.2822,3.3498,7.086,26.3688,3.4297,7.1379,26.3678,3.3782,7.1072,26.3507,3.3748,7.1407,26.3866,3.4323,7.2518,26.3019,3.1565,7.2521,26.297,3.1408,7.2368,26.302,3.1475,7.2409,26.2726,3.1079,7.3485,26.2662,3.1436,7.3401,26.2406,3.1187,6.9517,26.0614,3.537,6.9398,26.0626,3.5142,6.9075,25.9062,3.5209,7.2714,25.9104,3.1874,7.2282,25.7445,3.2724,7.1686,25.7696,3.2161,7.3329,25.8889,3.2679,7.1433,26.3912,3.4497,7.1653,26.3868,3.437,6.3836,25.1784,3.5002,6.4281,25.2349,3.5035,6.4286,25.237,3.4904,6.3836,25.1765,3.486,6.5478,25.241,3.4441,6.5363,25.2406,3.4384,6.5102,25.258,3.5201,6.5269,25.2646,3.5251,6.7235,25.1433,3.2142,6.7049,25.0803,3.2138,6.7287,25.0912,3.233,6.5398,24.9976,3.181,6.5888,24.9653,3.2303,6.5314,24.9909,3.1906,7.0266,25.8279,3.1936,6.6014,25.1904,3.5697,6.5967,25.0859,3.5378,6.662,25.0167,3.2305,6.6901,25.2033,3.2064,7.3892,26.2768,3.573,7.3188,26.3216,3.5828,7.3905,26.2703,3.5849,7.3152,26.3189,3.602,7.4394,26.2353,3.1855,7.4422,26.2275,3.1773,7.3495,26.2704,3.1553,7.1585,26.3674,3.3815,7.1743,26.336,3.3072,7.1599,26.3377,3.301,6.5296,25.0672,3.5302,7.2113,26.327,3.4184,7.2072,26.3224,3.3764,6.4349,25.1501,3.5133,6.4287,25.1138,3.511,6.4447,25.066,3.5124,6.5956,25.068,3.1786,6.545,25.0532,3.161,6.5576,25.0806,3.1552,6.6466,25.0797,3.1962,6.6347,25.0392,3.2074,6.5857,25.1081,3.1563,6.5158,24.999,3.4593,6.6032,25.0067,3.4824,6.8308,25.6359,3.4467,6.7042,25.3269,3.3756,6.6777,25.3473,3.4609,6.87,25.6082,3.3647,6.6667,25.2237,3.2731,6.606,25.1906,3.2538,6.6377,25.2481,3.3684,6.4572,25.2095,3.4097,6.6078,25.2713,3.4573,6.5929,25.0145,3.2049,6.5562,25.0189,3.1813,6.7696,25.1472,3.2608,6.7642,25.1177,3.3034,6.685,25.0222,3.2876,6.8507,25.6495,3.553,6.6704,25.378,3.5471,6.6992,25.3635,3.5585,6.8134,25.6613,3.5276,6.4901,25.0464,3.5222,6.6957,25.1551,3.5194,6.7056,25.1299,3.4868,6.837,25.2685,3.4968,7.4786,26.1616,3.4594,7.4784,26.182,3.4549,7.4471,26.2186,3.5321,7.4405,26.1908,3.5414,7.4372,26.1953,3.1646,6.5292,25.263,3.5383,6.6629,25.3805,3.5332,6.8062,25.6607,3.5094,6.5919,25.1922,3.2475,6.5918,25.2934,3.544,6.5884,25.2974,3.5302,6.906,25.9056,3.4958,6.9494,26.061,3.4759,7.393,26.2109,3.3144,7.3641,26.2333,3.2742,7.2756,26.2754,3.4233,6.7285,25.1899,3.2144,6.7476,25.1801,3.2271,6.4937,24.9979,3.5076,6.6189,25.0695,3.5189,6.8782,25.2453,3.3523,6.7517,25.106,3.3366,6.5496,25.0036,3.3768,6.5024,25.0272,3.3453,6.5533,25.0016,3.3673,6.4984,25.0289,3.3545,6.4731,25.0792,3.3216,6.4696,25.081,3.3312,6.5038,25.1707,3.3323,6.4779,25.1273,3.3168,6.4749,25.1288,3.3247,6.5072,25.168,3.3232,6.6869,25.1832,3.5419,6.7836,25.3021,3.5523,6.6694,25.0372,3.4069,6.6639,25.0059,3.3243,6.6858,25.029,3.3248,6.6159,25.0228,3.4851,6.6382,25.0481,3.486,6.4186,25.0363,3.5025,6.379,25.1024,3.4993,6.4877,25.0057,3.5181,6.5647,25.2284,3.56,6.6645,25.2444,3.5641,6.7383,25.3413,3.5655,6.6258,25.2772,3.559,7.3673,26.2309,3.4481,7.3933,26.2132,3.4077,7.4066,26.2052,3.3539,7.2798,26.2706,3.263,7.243,26.2889,3.2805,7.2288,26.3222,3.4461,7.3002,26.2791,3.4894,7.2653,26.3045,3.4765,7.4423,26.2289,3.5246,7.3366,26.2527,3.4753,7.0822,25.9851,3.1607,7.0518,25.9948,3.2263,6.9781,25.852,3.3434,7.0295,26.0126,3.3266,7.0081,25.8398,3.2519,6.9849,26.0401,3.4051,6.9361,25.8721,3.427,6.9691,25.8801,3.5648,7.1246,25.9831,3.6118,7.0291,26.0298,3.5852,7.0528,25.8355,3.5906,7.2004,25.7682,3.5273,7.2276,25.937,3.5928,7.1367,25.7916,3.5742,7.2908,25.9049,3.5411,7.333,25.881,3.4593,7.2503,25.7288,3.3573,7.3532,25.873,3.353,7.2385,25.7409,3.4543,7.0293,26.3027,3.4396,6.971,26.1873,3.503,7.0237,26.3069,3.4898,6.9795,26.1839,3.4578,6.3777,25.1012,3.4872,6.4195,25.0325,3.4911,6.5291,25.0881,3.1355,6.5079,25.0445,3.1548,6.516,25.095,3.142,6.5201,25.0463,3.1475,6.567,25.134,3.141,6.5587,25.1443,3.1457,7.163,26.1074,3.1082,7.172,26.2202,3.1176,7.2071,26.2093,3.094,7.1296,26.1213,3.1285,7.1882,26.3856,3.4831,7.2339,26.3662,3.5544,7.2438,26.363,3.5403,7.1683,26.389,3.4966,7.4719,26.1933,3.4509,7.4906,26.1842,3.3527,7.4857,26.1956,3.2552,7.4807,26.2048,3.2619,7.4975,26.1733,3.3526,7.4891,26.1634,3.2529,7.4977,26.1437,3.3528,7.3797,26.235,3.6043,7.0505,25.5454,3.5183,6.8675,25.2524,3.4309,7.0882,25.5251,3.4471,7.4039,25.9948,3.465,7.3625,26.0255,3.5522,6.4817,25.0576,3.2405,6.5091,25.0075,3.2706,6.4179,25.0887,3.4111,6.4228,25.1607,3.4069,7.0721,25.5339,3.2803,7.0981,25.5239,3.3579,6.8576,25.26,3.2892,7.2836,26.2938,3.6285,7.1943,26.3409,3.5921,7.3193,26.2541,3.2575,7.2027,26.3188,3.2181,7.2152,26.3086,3.3251,7.0625,26.2894,3.3746,7.1058,26.2645,3.2974,7.1702,26.2992,3.1958,7.1289,26.2301,3.1929,7.144,26.3217,3.3004,7.3057,26.17,3.102,7.4085,26.1177,3.1584,7.4622,26.0922,3.256,7.4757,26.0859,3.3525,7.4148,26.1189,3.5562,7.4544,26.0972,3.4637,7.0801,26.3751,3.4766,7.0481,26.2987,3.5398,7.1054,26.3713,3.5221,7.2334,26.2231,3.651,7.1335,26.2689,3.6141,7.1912,26.3183,3.2038,6.9952,26.1892,3.5457,6.9279,25.6171,3.5765,7.0814,26.1559,3.6066,7.1813,26.1099,3.6339,7.2918,26.06,3.6121,7.3501,26.165,3.6208,6.9912,25.5812,3.5673,7.4116,25.9995,3.2652,7.4254,25.9855,3.349,7.356,26.0364,3.1716,6.9046,25.5962,3.2737,7.0705,26.1498,3.3118,7.0186,26.1645,3.3894,7.0906,26.1276,3.2043,7.2626,26.0681,3.1168,6.5266,25.1562,3.2264,6.4863,25.1055,3.2271,6.7314,25.1077,3.4142,6.7373,25.3082,3.2881,6.4517,25.0304,3.4317,7.2108,26.2824,3.1283});
			return lpphal3_Coord_6_88_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lpphal4_Geo' coordIndex field, scene-graph level=5, element #93, 2312 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 getlpphal4_Geo_5_93_coordIndex()
		{
			MFInt32 lpphal4_Geo_5_93_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlpphal4_Geo_5_93_coordIndex_1()))
				.append(new MFInt32(getlpphal4_Geo_5_93_coordIndex_2()))
				.append(new MFInt32(getlpphal4_Geo_5_93_coordIndex_3()));
			return lpphal4_Geo_5_93_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lpphal4_Coord' point field, scene-graph level=6, element #93, 873 total numbers made up of 291 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 getlpphal4_Coord_6_93_point()
		{
			MFVec3f lpphal4_Coord_6_93_point = new MFVec3f(new double[] {6.8494,25.1247,2.7117,6.8736,25.134,2.689,6.9544,25.2219,2.6907,6.8998,25.2584,2.7507,6.7168,25.2445,2.7519,6.7267,25.172,2.7507,6.7636,25.2,2.7517,6.6582,25.2215,2.7418,6.6884,25.1908,2.7459,6.6764,25.283,2.7476,6.6591,25.2572,2.7436,6.7375,25.2906,2.7599,6.6928,25.2976,2.7502,6.7891,25.2483,2.7631,6.7759,25.2833,2.7689,6.8558,25.3455,2.785,6.8621,25.2537,2.7664,6.8267,25.3236,2.7839,6.67,25.3534,2.7342,6.7517,25.3762,2.7589,6.7445,25.3746,2.7423,6.6727,25.3422,2.7487,7.0025,25.397,2.4176,6.8801,25.3061,2.3743,6.9858,25.4097,2.4349,6.8544,25.3022,2.3912,6.8423,25.2454,2.3685,6.9409,25.2516,2.3994,6.9057,25.2211,2.4004,6.86,25.2912,2.3672,6.9629,25.1744,2.4399,6.9594,25.2679,2.3999,6.9809,25.1826,2.453,6.9099,25.1065,2.5269,6.8957,25.0843,2.5213,6.9091,25.1046,2.5075,6.7424,25.2833,2.3589,6.7199,25.2177,2.3427,6.6983,25.2236,2.3564,6.7813,25.2738,2.3498,7.3596,26.321,2.8106,7.4117,26.3944,2.7998,7.4214,26.3944,2.7042,7.3828,26.3155,2.7094,7.6351,26.2934,2.6068,7.6313,26.2961,2.5979,7.6043,26.3144,2.6203,7.62,26.3041,2.5857,7.6092,26.3115,2.5816,7.6001,26.3178,2.5816,7.5892,26.3252,2.5869,7.5777,26.333,2.6029,7.5734,26.3356,2.6224,7.5764,26.3333,2.6409,7.5827,26.3288,2.6502,7.5903,26.3235,2.6564,7.6022,26.3153,2.6601,7.6129,26.3079,2.6587,7.6283,26.2975,2.6466,7.6727,26.2293,2.86,7.7061,26.1051,2.7779,7.7435,26.1864,2.7749,7.6373,26.161,2.847,7.6944,26.3058,2.8361,7.6909,26.3196,2.8187,7.6121,26.3616,2.8387,7.608,26.3573,2.8573,7.7091,26.3016,2.4133,7.7572,26.2843,2.4753,7.765,26.2634,2.4644,7.7039,26.3145,2.4307,7.3412,26.0032,2.4239,7.3878,26.1777,2.4154,7.4107,26.1616,2.3906,7.3281,26.0119,2.4431,7.2439,25.8175,2.4439,6.7695,25.3007,2.364,7.2597,25.8101,2.4304,7.3688,25.9845,2.4165,6.8762,25.4554,2.7285,6.8804,25.4548,2.7475,6.9767,25.5604,2.7529,6.9716,25.5664,2.7356,7.326,25.7406,2.7771,7.2872,25.7639,2.7878,7.194,25.5837,2.76,7.0562,25.3632,2.4267,6.9968,25.2144,2.4683,7.1022,25.3283,2.4744,6.7172,25.2768,2.4381,6.7539,25.3155,2.4479,7.644,26.3005,2.7305,7.7499,26.2626,2.7472,7.6772,26.2794,2.6953,7.442,25.6547,2.5899,7.3128,25.5105,2.5841,7.4346,25.6647,2.5304,7.3162,25.5168,2.53,7.3291,25.7355,2.4438,7.5194,25.8858,2.4608,7.3878,25.6984,2.4779,7.4519,25.933,2.4332,7.4912,26.4043,2.4248,7.4626,26.3679,2.4076,7.45,26.3769,2.5105,7.4825,26.4069,2.5314,6.7581,25.3366,2.7679,6.8104,25.1554,2.7514,6.7549,25.2057,2.3566,6.7922,25.2322,2.3587,6.8252,25.1728,2.3874,6.8212,25.1108,2.4109,6.7804,25.1243,2.3897,6.9131,25.1689,2.4188,6.8911,25.1341,2.4245,6.7044,25.2742,2.552,6.7372,25.2989,2.5613,6.8996,25.4411,2.6613,6.8085,25.3132,2.5749,6.7765,25.3473,2.6541,6.9209,25.4395,2.5895,6.594,25.2709,2.722,6.6575,25.301,2.6422,6.626,25.2453,2.6416,6.6351,25.3244,2.7306,6.6819,25.1554,2.4343,6.6932,25.1704,2.5543,6.6814,25.2277,2.5485,6.6807,25.2257,2.4263,7.061,25.3177,2.701,7.0083,25.3668,2.7489,6.9077,25.1059,2.4408,6.8346,25.0715,2.4404,6.7467,25.1125,2.7498,7.0058,25.1963,2.5189,6.9091,25.0981,2.4495,6.7974,25.0843,2.6833,6.8238,25.0823,2.6047,6.8442,25.1039,2.6898,6.8852,25.0955,2.617,6.7513,25.1002,2.7362,6.9149,25.1122,2.5287,7.1174,25.3062,2.5306,7.0012,25.1992,2.5568,7.112,25.3001,2.5713,6.9542,25.4274,2.5111,6.8243,25.3191,2.4726,6.7549,25.154,2.3678,7.1834,25.4241,2.4831,7.2119,25.4023,2.5315,6.9418,25.4225,2.7614,7.4218,26.2886,2.4016,7.4242,26.2984,2.4995,7.4325,26.275,2.8716,7.3745,26.3108,2.8459,7.3321,26.2029,2.8338,7.3904,26.1723,2.8458,7.6939,26.263,2.6354,7.7802,26.2525,2.6554,7.4636,26.4251,2.7874,7.4756,26.4212,2.8063,7.4945,26.4248,2.7826,7.5354,26.4052,2.4624,7.5125,26.3967,2.4023,7.4934,26.4138,2.6858,7.4664,26.4221,2.6926,7.4938,26.4077,2.6335,7.4702,26.4088,2.6283,7.6358,26.2926,2.6279,6.827,25.0699,2.5106,6.8303,25.0627,2.4634,6.9027,25.1235,2.6161,6.87,25.13,2.6889,6.6044,25.2052,2.721,6.6015,25.2699,2.7352,6.6161,25.2049,2.7345,6.8677,25.1294,2.6915,7.5767,25.8329,2.6599,7.4319,25.66,2.6495,7.5857,25.827,2.5951,7.3008,25.5116,2.6421,7.2111,25.4004,2.5793,7.2017,25.4064,2.6359,7.0965,25.2999,2.6256,6.6424,25.3154,2.7439,6.6664,25.1493,2.7413,6.6612,25.1437,2.7293,6.7163,25.1386,2.3572,6.7415,25.0909,2.4055,6.6952,25.1378,2.3731,6.7525,25.0962,2.3888,7.7584,26.2396,2.7641,7.7595,26.0833,2.5747,7.7821,26.1774,2.6709,7.7504,26.0781,2.6739,7.7887,26.1799,2.5776,7.679,26.1519,2.4088,7.7591,26.2147,2.4623,7.7372,26.1131,2.4779,7.7032,26.2438,2.4058,7.5414,26.2366,2.3582,7.6376,26.2803,2.3767,7.6111,26.1986,2.3743,7.5724,26.3118,2.3651,7.5939,26.3324,2.5069,7.6493,26.343,2.4139,7.5929,26.3747,2.4158,7.6236,26.3116,2.5073,7.6558,26.2916,2.5253,7.6773,26.274,2.5538,7.5632,26.3532,2.5249,7.5403,26.3659,2.5769,7.5295,26.3737,2.6282,7.5419,26.359,2.703,7.5317,26.3713,2.6648,7.6006,26.3233,2.7387,7.5634,26.346,2.7256,7.6889,26.2651,2.5898,7.5091,26.408,2.5501,7.5301,26.4022,2.8382,7.5418,26.4053,2.8215,7.7904,26.2299,2.663,7.5896,26.3636,2.3814,7.6476,26.3308,2.3878,7.4594,26.277,2.3703,7.4908,26.3523,2.3813,7.4682,26.1326,2.3783,7.0718,25.5266,2.4512,7.1652,25.64,2.4342,7.0896,25.5108,2.4356,7.1464,25.6511,2.4501,7.1616,25.8638,2.7819,7.0532,25.695,2.7443,7.0564,25.6829,2.7596,7.1551,25.8699,2.7662,7.2535,26.0482,2.7886,7.2583,26.0382,2.8059,7.3197,26.2113,2.81,7.4327,26.38,2.8425,7.2262,25.5789,2.4437,7.2806,25.543,2.4809,7.1421,25.4631,2.4459,7.7794,26.2582,2.572,7.4404,26.3848,2.6227,7.3028,26.0031,2.8167,7.4788,26.1198,2.8496,7.3963,25.9599,2.8165,7.2046,25.8156,2.7947,7.1114,25.6396,2.7748,7.5233,26.2172,2.8824,7.5741,26.0624,2.8235,7.4661,25.9179,2.7974,7.3904,25.6886,2.7386,7.5357,25.8762,2.7561,7.7015,25.9911,2.6731,7.6457,26.0172,2.7695,7.7076,25.9934,2.5812,7.6836,26.0033,2.4937,7.5684,25.8433,2.5222,7.6237,26.0441,2.436,7.5533,26.0921,2.3979,7.1922,25.861,2.6857,7.1128,25.673,2.6031,7.0807,25.6843,2.6806,7.2243,25.847,2.6028,7.1303,25.6616,2.5229,7.2339,25.8408,2.5172,7.3239,26.0256,2.5128,7.3227,26.0373,2.6037,7.2963,26.0468,2.6953,7.3758,26.1927,2.6056,7.3501,26.2056,2.7084,7.3815,26.184,2.4993,7.4125,26.306,2.6133,7.562,26.2933,2.8931,7.4823,26.3572,2.8703,7.7911,26.2362,2.5769,7.0404,25.527,2.7646,7.1062,25.4782,2.75,7.1694,25.4365,2.711,7.0178,25.5476,2.5995,7.0453,25.5337,2.5228,6.9951,25.5587,2.6711,6.6277,25.1927,2.6486,6.9075,25.1288,2.6162,6.991,25.2052,2.6203,6.7339,25.1017,2.4708,6.6951,25.1243,2.6624,6.7408,25.1203,2.5786,6.6995,25.3353,2.6474,7.2614,25.5365,2.7231});
			return lpphal4_Coord_6_93_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lpphal5_Geo' coordIndex field, scene-graph level=5, element #98, 2464 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 getlpphal5_Geo_5_98_coordIndex()
		{
			MFInt32 lpphal5_Geo_5_98_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlpphal5_Geo_5_98_coordIndex_1()))
				.append(new MFInt32(getlpphal5_Geo_5_98_coordIndex_2()))
				.append(new MFInt32(getlpphal5_Geo_5_98_coordIndex_3()));
			return lpphal5_Geo_5_98_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lpphal5_Coord' point field, scene-graph level=6, element #98, 930 total numbers made up of 310 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 getlpphal5_Coord_6_98_point()
		{
			MFVec3f lpphal5_Coord_6_98_point = new MFVec3f(new double[] {6.9698,25.261,1.8701,6.9566,25.2384,1.8687,6.9924,25.2501,1.8169,7.0016,25.2701,1.813,6.9179,25.4215,1.6963,6.8911,25.4085,1.7576,6.9049,25.4114,1.7613,6.9043,25.4221,1.6907,7.6302,26.291,1.7345,7.5609,26.3369,1.7491,7.6389,26.3121,1.7497,7.5739,26.2921,2.0437,7.5514,26.2779,2.063,7.6295,26.2628,2.0577,7.5237,26.3219,2.0159,7.5001,26.3395,1.9786,7.4984,26.31,2.0294,7.7338,26.1975,1.9897,7.7567,26.1825,1.9341,7.7292,26.2103,1.9821,7.7518,26.1991,1.9313,6.8805,25.3242,1.9152,6.8223,25.3513,1.897,6.8221,25.3303,1.8975,6.9853,25.3385,1.6384,6.9365,25.3148,1.6084,6.9364,25.3284,1.6079,7.1595,25.46,1.71,7.1266,25.3784,1.7339,7.1279,25.408,1.69,7.1674,25.4301,1.7463,7.1032,25.3518,1.773,7.1608,25.412,1.7875,6.8945,25.2973,1.5927,6.8835,25.2913,1.6008,6.8735,25.3218,1.5974,6.8884,25.3232,1.5926,6.9277,25.2404,1.898,6.8884,25.2254,1.8949,7.0093,25.2492,1.6743,7.0284,25.2643,1.7474,7.0199,25.2447,1.7443,6.99,25.2425,1.6621,6.9894,25.2509,1.6463,7.0272,25.2757,1.6662,7.0282,25.2679,1.6856,6.8837,25.4407,1.9013,6.8855,25.4264,1.8489,6.8628,25.4306,1.8422,6.849,25.4341,1.8934,6.9164,25.3632,1.9328,6.928,25.333,1.9313,6.9032,25.297,1.9205,6.8765,25.2783,1.9118,6.8532,25.2914,1.9049,6.8316,25.3114,1.902,6.836,25.3684,1.9017,6.8854,25.3719,1.9197,6.953,25.2922,1.6189,6.9453,25.4233,1.6221,6.9635,25.435,1.631,6.9745,25.3846,1.6287,7.0421,25.4413,1.6595,7.0766,25.4136,1.6638,7.0305,25.3707,1.6571,7.0068,25.3892,1.6486,6.9274,25.2706,1.9216,6.8742,25.2388,1.905,6.9491,25.2642,1.908,7.0101,25.452,1.6642,6.9976,25.4582,1.6754,7.058,25.517,1.701,7.0732,25.516,1.6889,6.935,25.4334,1.63,6.9501,25.4365,1.6402,7.6078,26.2768,1.9104,7.6307,26.3006,1.8439,7.6033,26.3161,1.8543,7.0734,25.4346,1.9465,7.0351,25.3839,1.9455,7.0435,25.3451,1.8795,7.1083,25.4133,1.8892,7.6808,26.24,1.9161,7.6858,26.2405,1.8915,7.0321,25.4833,1.9557,7.1123,25.5651,1.9619,7.0002,25.5233,1.94,7.075,25.6069,1.9547,7.685,26.2495,1.8636,7.5751,26.3276,1.8708,7.5539,26.3339,1.8953,7.5461,26.3287,1.923,7.5505,26.3196,1.9524,7.5686,26.3067,1.9695,7.624,26.2723,1.9761,7.6529,26.2547,1.9609,7.517,26.3599,1.7703,7.5514,26.372,1.797,7.5885,26.356,1.7765,6.8566,25.247,1.8417,6.8297,25.2516,1.8807,6.9155,25.2283,1.86,7.0113,25.299,1.6559,7.042,25.3352,1.6631,6.9502,25.3672,1.6177,6.9353,25.342,1.6096,7.0036,25.5178,1.8777,7.1002,25.6035,1.8309,7.0195,25.497,1.8113,7.0835,25.6071,1.8988,6.8412,25.3243,1.7469,6.7959,25.3308,1.8151,6.8411,25.3537,1.7488,6.7891,25.3735,1.8153,6.9856,25.2879,1.6389,6.8159,25.4213,1.8295,6.8877,25.4081,1.7708,6.8604,25.3885,1.7572,6.9022,25.4094,1.7749,6.9481,25.436,1.7928,7.0115,25.2795,1.8139,7.0147,25.2786,1.8044,7.0587,25.3247,1.8183,7.1608,25.5919,1.696,7.313,25.8123,1.691,7.1836,25.5622,1.7033,7.2251,25.8232,1.9279,7.2355,25.8289,1.8529,7.6055,26.2401,1.7147,7.4896,26.2231,1.6891,7.5385,26.3058,1.7304,7.5614,26.1745,1.6911,7.6435,26.3247,1.7635,7.7164,26.271,1.7582,7.7473,26.1702,1.7756,7.7587,26.1297,1.8565,7.7173,26.1103,1.7634,7.7241,26.0832,1.8536,7.5929,26.2931,1.9777,7.6617,26.2746,1.8458,7.6712,26.2438,1.9375,6.9759,25.4343,1.7216,7.302,25.9848,2.0015,7.3789,26.1308,2.0275,7.3112,25.9951,1.9486,7.3806,26.1578,1.9693,7.2256,25.5078,1.7553,7.2288,25.4892,1.8007,7.0131,25.4601,1.9563,7.096,25.4342,1.6702,7.5597,26.3696,1.8148,7.5316,26.3733,1.8383,6.9261,25.2553,1.6233,6.9295,25.2659,1.6121,7.2702,25.8404,1.692,7.3509,26.0087,1.6671,7.3705,26.0052,1.6597,7.3233,25.9699,2.0149,7.2174,25.8286,1.9765,7.2245,25.8229,1.9882,7.0055,25.3466,1.9412,6.9769,25.3464,1.9455,7.1042,25.3744,1.6841,6.8605,25.3701,1.9103,6.8664,25.3867,1.744,6.976,25.236,1.7189,6.8478,25.3224,1.7351,6.8583,25.2936,1.7389,6.8543,25.2929,1.7527,6.7952,25.4231,1.8722,6.7931,25.4139,1.8843,6.8498,25.4283,1.9067,7.2036,25.5339,1.7187,7.516,26.3428,1.974,7.5396,26.3239,2.0033,7.7702,26.1881,1.8659,7.7613,26.2023,1.8692,7.7066,26.2817,1.7805,7.7492,26.233,1.8105,7.7572,26.2183,1.7986,7.5037,26.3725,1.8792,7.4986,26.3532,1.9243,7.5189,26.3683,1.8838,7.5125,26.3532,1.9251,7.4584,26.3181,1.9203,7.4486,26.336,1.8601,7.4301,26.269,1.9114,7.4275,26.2825,1.8466,7.4268,25.9804,1.659,7.593,26.0476,1.6906,7.49,25.9239,1.6915,7.5152,26.1116,1.671,6.981,25.2728,1.8704,7.0067,25.2709,1.8033,7.0359,25.2727,1.7502,7.1332,25.4876,1.6912,7.5823,26.2992,2.03,7.5247,26.1173,2.0676,7.5529,26.0143,2.0204,7.5981,26.0709,2.0366,7.4842,26.0627,2.0504,7.6243,25.9715,1.9032,7.6471,26.0376,1.9769,7.6016,25.9819,1.9665,7.6687,26.026,1.9142,7.6299,26.0017,1.7488,7.679,26.0277,1.8463,7.6342,25.9723,1.8362,7.6743,26.0559,1.7578,7.6376,26.1029,1.7006,7.674,26.1879,2.046,7.5715,26.1765,2.082,7.6421,26.1311,2.047,7.6055,26.2254,2.0755,7.6926,26.0933,1.987,7.744,26.1331,1.9321,7.7208,26.1517,1.9921,7.7131,26.0804,1.9245,7.4087,26.2002,2.0397,7.4939,26.2185,2.0835,7.4404,26.256,2.0482,7.4519,26.1637,2.0683,7.7078,26.2266,1.7312,7.6772,26.1625,1.7135,7.4416,26.2898,1.9837,7.4131,26.2401,1.9788,7.4602,26.3457,1.8005,7.4225,26.2683,1.762,7.4733,26.3201,1.9812,7.4718,26.2875,2.0424,7.475,26.3628,1.8704,7.4796,26.3407,1.9235,7.5259,26.2517,2.0761,7.6344,26.2713,2.0419,7.416,26.1663,1.6854,7.4438,26.2482,1.7138,7.4578,26.1459,1.6636,7.5175,26.3775,1.83,7.5977,26.3533,1.7966,7.6443,26.3289,1.7824,7.6902,26.235,2.0192,7.6894,26.2244,2.033,6.9266,25.4636,1.9268,6.9751,25.4222,1.9504,7.1049,25.3518,1.7238,7.0256,25.3257,1.8778,7.0726,25.3424,1.8241,7.0857,25.3298,1.7685,6.9137,25.3982,1.6048,6.9015,25.4065,1.6109,6.8526,25.3233,1.6532,6.8668,25.2882,1.6587,6.8169,25.2842,1.824,6.7882,25.2935,1.8816,6.7705,25.3353,1.8622,6.7913,25.2836,1.8683,6.7725,25.3349,1.8769,6.9552,25.2429,1.7847,6.9504,25.2422,1.801,6.9998,25.252,1.8035,6.8949,25.2591,1.7746,6.8987,25.2599,1.7604,6.8488,25.3543,1.7366,6.8875,25.3478,1.5926,6.831,25.2585,1.8918,6.7649,25.3829,1.8627,6.7668,25.3799,1.8761,6.9236,25.4707,1.9121,6.9973,25.5297,1.9256,7.0706,25.6138,1.9422,6.9541,25.4034,1.9493,7.4073,26.1056,2.0528,6.8751,25.3478,1.5974,7.1282,25.6208,1.712,7.2607,25.8473,1.7063,7.1385,25.6144,1.6983,7.3346,26.0156,1.6924,7.3966,26.1793,1.7256,7.4902,25.8526,1.9525,7.4478,25.8886,1.9994,7.3328,25.7441,1.9772,7.1872,25.5016,1.9013,7.3728,25.7151,1.9332,7.1518,25.5272,1.9496,7.5282,25.843,1.8244,7.5124,25.8378,1.8898,7.396,25.7028,1.8739,7.2109,25.4887,1.8518,7.4087,25.7019,1.8194,7.1363,25.409,1.84,7.1046,25.5066,1.6852,7.0393,25.4997,1.7446,6.931,25.4548,1.8609,7.3215,26.0103,1.8717,7.3856,26.1697,1.8877,7.3294,26.0202,1.7716,7.389,26.1849,1.8066,7.5194,25.8766,1.7539,7.389,25.9337,2.0221,7.115,25.6113,1.7592,6.8776,25.4047,1.6758,7.4938,26.3352,1.7559,7.4818,26.3698,1.812,7.277,25.7817,1.9921,7.3955,25.7276,1.761,7.2523,25.8384,1.7726,6.8872,25.436,1.9184,7.3614,25.7674,1.7152,6.8534,25.3561,1.6559,6.9076,25.2538,1.6801});
			return lpphal5_Coord_6_98_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lhamate_Geo' coordIndex field, scene-graph level=5, element #103, 2200 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 getlhamate_Geo_5_103_coordIndex()
		{
			MFInt32 lhamate_Geo_5_103_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlhamate_Geo_5_103_coordIndex_1()))
				.append(new MFInt32(getlhamate_Geo_5_103_coordIndex_2()))
				.append(new MFInt32(getlhamate_Geo_5_103_coordIndex_3()));
			return lhamate_Geo_5_103_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lhamate_Coord' point field, scene-graph level=6, element #103, 831 total numbers made up of 277 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 getlhamate_Coord_6_103_point()
		{
			MFVec3f lhamate_Coord_6_103_point = new MFVec3f(new double[] {7.1369,28.6934,2.3977,7.1273,28.8602,2.3302,7.1286,28.7374,2.3002,7.1428,28.6656,2.3699,7.2007,28.4761,2.0432,7.2787,28.4233,1.9991,7.174,28.4275,1.9914,7.2635,28.4733,2.0368,7.6484,28.6198,2.0425,7.6629,28.6067,2.0483,7.5907,28.5553,1.9913,7.3786,28.4373,1.9937,7.47,28.4872,1.9894,7.3976,28.4027,2.0055,7.499,28.4526,1.9927,7.6235,28.627,2.5416,7.5903,28.6124,2.5493,7.6482,28.4799,2.5232,7.6824,28.4976,2.495,7.6493,28.451,2.4847,7.6008,28.4347,2.4844,7.5719,28.4441,2.3849,7.7335,28.5006,2.3369,7.7379,28.4801,2.3282,7.7335,28.5081,2.1765,7.7347,28.5305,2.1849,7.7163,28.526,2.0641,7.7121,28.5492,2.0647,7.6893,28.4824,2.4895,7.6935,28.5055,2.475,6.9578,28.3613,2.0443,6.962,28.3735,2.0605,7.0009,28.4057,2.0214,6.9931,28.3849,2.0097,6.9488,28.3161,2.1059,6.944,28.3017,2.0908,6.9816,28.2402,2.1321,6.9879,28.2508,2.1431,7.0856,28.184,2.1691,7.1865,28.1897,2.1439,7.1692,28.1938,2.1592,7.0713,28.1815,2.1532,7.3318,28.3383,2.3155,7.3069,28.3183,2.2561,7.323,28.3104,2.241,7.3142,28.3372,2.323,7.2023,28.5966,2.4701,7.2329,28.474,2.4555,7.2496,28.4851,2.4753,7.1776,28.5952,2.4534,7.476,28.9932,2.5257,7.4164,29.0015,2.465,7.4031,28.9975,2.4802,7.4892,28.9876,2.5136,7.3295,28.3738,2.4621,7.3204,28.3696,2.4469,7.3393,28.362,2.4476,7.1652,28.7181,2.435,7.1511,28.7087,2.4223,7.1538,28.932,2.3028,7.1573,28.9321,2.3221,7.139,28.8667,2.3429,7.5181,28.9514,2.4647,7.5637,28.8937,2.3881,7.5489,28.9014,2.3816,7.5282,28.9456,2.4766,7.579,28.8602,2.3054,7.5988,28.8484,2.308,7.6375,28.7575,2.2095,7.6143,28.7651,2.2067,7.1202,28.2066,2.1709,7.3351,28.3548,2.391,7.3538,28.3595,2.4355,7.2366,28.5499,2.0915,7.5702,28.7111,2.1463,7.499,28.7205,2.1609,7.5559,28.7943,2.2312,7.2308,28.7237,2.183,7.1885,28.6364,2.1655,7.1799,28.6994,2.2064,7.2441,28.6639,2.1528,7.1591,28.6817,2.2334,7.1682,28.6153,2.1867,7.1485,28.6566,2.2609,7.1668,28.5886,2.2079,7.1524,28.6046,2.307,7.1809,28.5301,2.2388,7.1698,28.562,2.3296,7.2283,28.4422,2.3379,7.2849,28.3332,2.2686,7.2955,28.3544,2.3377,7.2347,28.419,2.2608,7.0372,28.2909,1.9919,7.078,28.2475,1.9963,7.0191,28.2855,2.0071,7.1525,28.534,2.1169,7.0914,28.4685,2.0681,7.14,28.5032,2.1317,7.0743,28.44,2.0879,7.5809,28.7521,2.5812,7.5323,28.7283,2.567,7.3327,28.5034,2.4924,7.6993,28.6124,2.1051,7.689,28.6637,2.1452,7.6612,28.731,2.2419,7.6427,28.7022,2.1203,7.5394,28.8658,2.3144,7.1402,28.2286,1.9951,7.1359,28.2473,1.9796,7.4359,28.395,2.1489,7.3701,28.3342,2.0939,7.4057,28.3901,2.0148,7.3841,28.3867,2.4755,7.4629,28.4081,2.4628,7.4516,28.4155,2.4869,7.3956,28.3846,2.4445,7.2645,28.2687,2.207,7.2438,28.2876,2.2144,7.5078,28.4393,2.0024,7.6311,28.4877,2.0013,7.6232,28.4729,2.0116,7.162,28.5874,2.4206,7.5078,28.4436,2.2478,7.6471,28.4588,2.2975,7.6116,28.4549,2.3532,7.6232,28.467,2.1415,7.6533,28.4702,2.1922,7.5031,28.4289,2.0943,7.5781,28.4544,2.1039,7.3956,28.372,2.2176,7.342,28.3051,2.1739,7.3849,28.3869,2.3286,7.4113,28.407,2.3629,7.5283,28.4315,2.3974,7.635,28.6386,2.5303,7.6081,28.7958,2.5113,7.593,28.762,2.5743,7.6595,28.6924,2.4721,7.7015,28.5834,2.4021,7.5301,28.8629,2.593,7.4806,28.8435,2.5698,7.5366,28.5911,2.5445,7.472,28.7075,2.5473,7.3271,28.78,2.4932,7.1793,28.8869,2.3878,7.2381,28.7518,2.4691,7.2714,28.9151,2.4463,7.5514,28.8945,2.5329,7.5168,28.9265,2.5638,7.5413,28.8732,2.5845,7.4313,28.9379,2.5389,7.4985,28.9308,2.5682,7.1421,28.8669,2.2899,7.1648,28.7654,2.2344,7.2056,28.7835,2.2063,7.4257,28.5335,2.0444,7.3703,28.4561,2.0027,7.354,28.4999,2.0383,7.4577,28.501,1.9966,7.2465,28.9947,2.326,7.1926,28.9004,2.2569,7.2763,28.9527,2.2885,7.5019,28.9556,2.4573,7.6102,28.833,2.4481,7.5837,28.8675,2.41,7.5409,28.9262,2.4922,7.7234,28.4701,2.3213,7.7222,28.4881,2.1729,7.1903,28.3786,2.182,7.0822,28.4022,2.1098,7.1118,28.322,2.1475,7.1443,28.4604,2.1518,7.1354,28.4862,2.0525,7.1853,28.5531,2.1071,7.2864,28.3918,1.9791,7.2631,28.3642,1.9703,7.1627,28.4014,1.9696,7.0544,28.2945,1.9788,7.0894,28.2864,1.9674,7.1198,28.2679,1.9683,7.1274,28.2135,2.0155,7.1071,28.2089,2.0295,7.0701,28.2099,2.0473,7.0287,28.2355,2.0463,7.0092,28.2633,2.0305,7.053,28.4197,1.989,7.0412,28.4356,2.0311,7.0873,28.4445,2.0116,7.0691,28.1875,2.1028,7.1405,28.1841,2.0726,7.3286,28.3486,1.9924,7.3426,28.3307,2.0148,7.2869,28.2619,2.0506,7.2988,28.3235,1.9854,7.3155,28.3571,2.398,7.2818,28.3824,2.4145,7.2845,28.4095,2.45,7.7014,28.501,2.0761,7.5201,28.9053,2.3808,7.4454,28.9608,2.4267,7.3963,28.9189,2.3182,7.3531,28.9708,2.3533,7.4757,28.9183,2.3676,7.4441,28.8821,2.2887,7.3779,28.8308,2.2271,7.3247,28.8854,2.2521,7.2969,28.6732,2.1462,7.374,28.5907,2.0989,7.3277,28.5666,2.0907,7.1456,28.7566,2.2643,7.1612,28.8806,2.2616,7.2879,28.6324,2.5015,7.6012,28.462,2.5309,7.4123,28.8138,2.5302,7.4759,28.4213,2.394,7.3811,28.3723,2.283,7.0162,28.3984,2.0675,7.0051,28.3567,2.1021,7.2541,28.7296,2.176,7.0409,28.3943,1.9789,7.1085,28.3341,1.9549,7.0414,28.3506,1.9757,7.1428,28.3761,1.9607,7.3752,28.3996,2.4857,7.4378,28.4253,2.4966,7.2042,28.2212,2.0074,7.1981,28.263,1.9761,7.2636,28.2999,1.9802,7.2619,28.2477,2.038,7.6193,28.7084,2.1189,7.7139,28.6046,2.215,7.653,28.4642,2.5137,7.4894,28.8815,2.3089,7.4919,28.8455,2.2594,7.5629,28.6674,2.1116,7.4968,28.9831,2.5245,7.1796,28.1975,2.0414,7.2345,28.2186,2.0856,7.5222,28.4224,2.5102,7.5159,28.4366,2.521,7.238,28.9919,2.3495,7.2934,28.424,2.468,7.6201,28.5063,1.9974,7.2582,28.2278,2.1066,7.2154,28.2114,2.1571,7.3318,28.2969,2.0709,7.2326,28.3352,1.9636,7.6856,28.4671,2.4529,7.2774,28.2618,2.1966,7.605,28.4465,2.5199,7.3097,29.0053,2.3989,7.3239,29.0089,2.382,7.5772,28.5686,1.9993,7.629,28.632,2.0507,7.1703,28.2339,2.1785,7.1991,28.2149,2.1675,7.3073,28.2677,2.1456,7.5266,28.4158,2.4788,7.5155,28.6041,2.0699,7.4459,28.6523,2.1157,7.4316,28.7797,2.1971,7.3166,28.7709,2.1833,7.3708,28.7202,2.1524,7.0044,28.3492,1.9996,6.9713,28.3343,2.0275,6.9905,28.2354,2.1026,6.9531,28.2874,2.074,7.6172,28.8193,2.3318,7.6514,28.7695,2.3829,7.0399,28.2781,2.1405,7.22,28.4619,2.4185,7.4418,28.5543,2.5174,7.3795,28.6643,2.522,7.3568,28.9305,2.4909,7.2629,28.8253,2.2091,7.6842,28.6928,2.2976,7.174,28.2968,1.9582});
			return lhamate_Coord_6_103_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lscphoid_Geo' coordIndex field, scene-graph level=5, element #108, 2448 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 getlscphoid_Geo_5_108_coordIndex()
		{
			MFInt32 lscphoid_Geo_5_108_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlscphoid_Geo_5_108_coordIndex_1()))
				.append(new MFInt32(getlscphoid_Geo_5_108_coordIndex_2()))
				.append(new MFInt32(getlscphoid_Geo_5_108_coordIndex_3()));
			return lscphoid_Geo_5_108_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lscphoid_Coord' point field, scene-graph level=6, element #108, 924 total numbers made up of 308 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 getlscphoid_Coord_6_108_point()
		{
			MFVec3f lscphoid_Coord_6_108_point = new MFVec3f(new double[] {7.0725,28.721,2.8849,7.0747,28.7273,2.8933,7.0246,28.7077,2.8869,7.0262,28.7061,2.881,7.1494,28.9559,2.8741,7.1517,28.952,2.8641,7.155,28.971,2.8705,6.9947,29.1835,2.2651,7.1451,29.2434,2.1557,7.147,29.2354,2.1662,7.236,29.3266,2.181,6.988,29.0331,2.4554,7.0377,29.1223,2.3146,7.0415,29.1026,2.3349,7.0563,29.1086,2.3335,7.1354,29.205,2.2895,7.373,29.3294,2.5858,7.3738,29.3518,2.585,7.3403,29.3149,2.6691,7.3371,29.3438,2.6628,7.3537,29.3453,2.4637,7.3489,29.3167,2.4699,7.3069,29.3175,2.3647,7.3007,29.2934,2.3814,7.3633,29.2362,2.5969,7.3688,29.2433,2.5969,7.3516,29.2314,2.6903,7.348,29.2279,2.6866,7.044,28.8687,2.6795,7.1035,28.9056,2.7709,7.1072,28.895,2.7784,7.0438,28.8775,2.675,7.0108,28.9006,2.6172,7.0163,28.9059,2.6187,6.7024,29.0408,2.848,6.7564,29.1171,2.8516,6.7076,29.1139,2.7667,6.725,29.0205,2.6117,6.7825,28.949,2.5803,6.7027,28.882,2.5839,6.8038,29.1072,2.5881,6.8265,29.0368,2.537,6.7563,28.6929,2.6638,6.7903,28.852,2.587,6.8932,28.8011,2.6101,6.6382,28.7703,2.8032,6.5818,28.8533,2.8258,6.5534,28.8328,2.7715,6.5832,28.8613,2.8293,6.6735,28.9019,2.9209,6.6478,28.9323,2.8851,6.8317,29.2047,2.5061,6.7784,29.1482,2.6247,7.0284,29.3738,2.3371,7.0572,29.4093,2.3767,7.0734,29.4003,2.3249,7.1067,29.4209,2.365,7.1084,29.4293,2.3968,7.0875,29.4316,2.4316,7.0652,29.4236,2.4408,7.0429,29.4192,2.4437,7.017,29.4065,2.4358,7.0841,29.3585,2.2432,7.0929,29.384,2.275,7.1213,29.3834,2.2477,7.1407,29.4497,2.5097,7.1193,29.446,2.4885,7.0805,29.435,2.5439,7.0736,29.4295,2.5065,6.9988,28.8409,2.6995,7.0624,28.7417,2.8299,7.0358,28.7296,2.8265,7.0561,28.8244,2.9395,7.0037,28.7758,2.9351,6.9664,28.969,2.5312,6.9656,28.9113,2.6155,6.9413,28.8999,2.5877,6.9579,29.087,2.4088,6.9412,29.0563,2.4552,7.0238,29.0245,2.4128,7.1901,29.0744,2.851,7.1679,29.0724,2.8782,7.1979,29.0578,2.8134,7.1796,29.0794,2.7866,7.259,29.0962,2.7691,7.2697,29.0754,2.7849,7.2322,29.1031,2.77,7.2035,29.1042,2.7614,7.1525,29.0976,2.7129,7.1415,29.0832,2.7236,7.1035,29.0872,2.6608,7.2925,29.1596,2.7193,7.3496,29.1692,2.7164,7.3003,29.1924,2.6852,7.0583,28.9218,2.6985,7.0309,28.9246,2.6809,7.0908,29.1038,2.5796,7.1088,29.1217,2.5697,7.0767,29.0708,2.6043,7.0613,29.0477,2.6293,7.0639,29.0363,2.6491,7.0672,29.0334,2.6711,7.0883,29.0298,2.6925,7.1139,29.0428,2.7136,7.1635,29.112,2.7022,7.1715,29.1284,2.6757,7.1727,29.1365,2.6478,7.1546,29.1467,2.6105,7.1451,29.1417,2.5897,7.2697,29.1284,2.7502,7.3275,29.117,2.7531,7.073,28.9726,2.7242,6.9738,29.2546,2.2487,7.079,29.3275,2.2158,7.1015,29.2719,2.1569,7.1341,29.266,2.144,7.1314,29.2141,2.2619,7.02,29.1473,2.2943,7.0784,29.1031,2.3537,6.8436,29.1481,2.4924,6.894,29.2125,2.3472,6.7632,29.1876,2.6682,6.7829,29.2103,2.7525,6.8349,29.2904,2.7278,6.816,29.2621,2.6554,7.2071,29.4459,2.5359,7.1627,29.4454,2.5302,7.2049,29.4474,2.5559,7.1536,29.4338,2.6215,7.0896,29.4328,2.581,7.1182,29.4169,2.6503,7.2115,29.2819,2.7899,7.2869,29.202,2.7781,7.2774,29.3158,2.7389,7.3244,29.392,2.3093,7.3628,29.4069,2.4482,7.2885,29.2486,2.4109,7.2165,29.2196,2.3641,7.2181,29.2615,2.3091,7.0802,29.1242,2.4215,7.078,29.1207,2.4985,7.0311,29.0401,2.4816,7.0498,29.0546,2.5478,7.0131,28.9437,2.6287,7.0242,28.9857,2.6375,7.0309,28.9798,2.6815,7.1289,28.8137,2.8386,7.1404,28.9713,2.7946,7.1499,28.9474,2.8296,7.1889,29.0617,2.8448,7.1709,29.1672,2.8451,7.3205,29.2156,2.7332,7.3303,29.122,2.7541,7.3512,29.1713,2.7208,6.6216,28.9659,2.8472,6.5983,28.977,2.8019,6.6317,29.0425,2.7864,6.7312,29.0153,2.8786,6.7323,28.9419,2.9417,6.7959,28.9813,2.9505,6.7976,28.8104,2.9183,6.9299,28.7341,2.9097,6.8613,28.8424,2.9317,6.8546,28.7166,2.8802,6.9686,28.7091,2.8759,7.1252,29.0315,2.9162,7.1108,28.8952,2.9193,7.1638,29.069,2.8832,7.1402,28.8341,2.8772,7.0083,28.7208,2.8221,6.9712,28.7077,2.8695,6.924,28.7085,2.7676,6.9498,28.8186,2.6508,6.9089,28.8956,2.5672,6.9124,28.9758,2.5235,6.9894,28.9588,2.5451,6.6527,28.9453,2.6329,6.8588,28.9913,2.5201,6.8413,28.9333,2.5608,6.5509,28.8808,2.706,6.5267,28.9293,2.7389,6.6419,28.996,2.6717,6.6395,29.0414,2.7182,6.8252,29.0905,2.8784,6.8293,29.2016,2.8349,6.8822,29.0446,2.9529,7.0082,29.1059,2.9364,6.898,29.1526,2.8658,7.1164,29.2184,2.829,6.9906,29.1644,2.8499,7.1354,29.1262,2.8993,6.8944,29.0797,2.4552,7.1334,29.1197,2.9028,6.9579,29.2558,2.8559,6.7064,29.0608,2.6552,6.6963,29.0956,2.706,6.5751,28.8325,2.6732,6.6552,28.772,2.644,6.8425,28.6753,2.7274,7.1426,28.8329,2.867,6.8974,28.6862,2.8255,6.944,28.8885,2.9455,6.551,28.8384,2.7699,6.5809,28.7966,2.734,6.7174,28.6766,2.7298,6.6796,28.7079,2.7622,6.6406,28.7299,2.725,7.2678,29.0747,2.7969,7.2251,29.1327,2.7404,7.2335,29.1488,2.7147,7.1258,29.1322,2.5792,7.2204,29.277,2.2838,7.3398,29.2685,2.4789,7.2596,29.4432,2.4438,7.0,29.3605,2.3598,6.9941,29.3898,2.4217,6.9856,29.3667,2.3961,6.928,29.1413,2.3625,7.2311,29.333,2.1777,7.3048,29.2196,2.607,7.1675,29.1202,2.689,7.242,29.1652,2.6889,6.99,29.2937,2.2738,7.2505,29.4363,2.5415,6.8342,29.2932,2.6078,6.9487,29.3865,2.5617,6.9793,29.3966,2.4981,6.9307,29.3796,2.5478,6.8215,28.6543,2.7919,6.8937,28.6869,2.8312,6.7873,28.698,2.8403,7.0264,29.0223,2.4193,7.0823,29.1039,2.3627,6.9957,28.962,2.5471,7.3341,29.2617,2.4827,7.1942,29.3063,2.7909,6.9531,29.2659,2.85,6.5789,28.799,2.7273,6.6412,28.7315,2.7181,6.7206,28.6764,2.7233,6.8253,28.6531,2.7862,6.8856,29.0395,2.9553,6.7982,28.9754,2.9526,6.676,28.896,2.9216,7.0109,29.1005,2.939,6.735,28.9363,2.9433,7.3567,29.416,2.4463,7.3198,29.4003,2.3077,7.3454,29.4033,2.6351,7.3656,29.4122,2.5635,7.3378,29.4126,2.6313,7.3728,29.403,2.5648,7.171,29.3518,2.7887,7.2528,29.3993,2.7227,7.1633,29.3607,2.7827,7.2597,29.3903,2.7287,7.074,29.3148,2.8265,7.0799,29.3052,2.8324,7.2703,29.3452,2.7347,7.2686,29.0822,2.802,7.2834,29.2428,2.4178,7.2136,29.2152,2.3734,7.1487,29.1656,2.3486,7.1483,29.1631,2.3586,6.7402,28.7876,2.8857,6.9355,29.3659,2.4734,6.9222,29.3182,2.424,6.8614,29.3195,2.5615,6.8961,29.2912,2.4432,6.8739,29.2627,2.4639,6.8955,29.3452,2.5164,6.9517,29.3043,2.347,6.9956,29.3156,2.2843,6.9342,29.2832,2.3457,7.0062,29.3329,2.2989,7.197,29.4259,2.3389,7.1603,29.4409,2.419,7.21,29.446,2.4308,7.157,29.4241,2.3549,7.0158,29.4136,2.5685,7.0287,29.4208,2.513,6.8572,29.3269,2.6638,7.0233,29.3754,2.6959,6.9245,29.3062,2.7705,7.0436,29.343,2.7643,6.9211,29.342,2.6998,7.1489,29.3919,2.7159,7.2017,29.4171,2.6731,7.2468,29.4392,2.5809,6.9198,29.2597,2.346,7.1783,29.203,2.4329,7.1298,29.1673,2.4175,7.1136,29.153,2.4885,7.1481,29.1779,2.4978,7.0,28.9851,2.5721,7.2339,29.2269,2.4664,7.27,29.2415,2.5213,7.0191,29.0085,2.5979,7.1243,28.9987,2.7664,7.2058,29.2067,2.5603,7.1867,29.1967,2.5188,7.2374,29.42,2.3252,7.152,29.3761,2.2243,7.0055,29.3991,2.6231,6.9213,29.3694,2.625,6.886,29.356,2.5983,7.2419,29.1863,2.635,7.0368,28.9584,2.9411});
			return lscphoid_Coord_6_108_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='ltrpzium_Geo' coordIndex field, scene-graph level=5, element #113, 3680 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 getltrpzium_Geo_5_113_coordIndex()
		{
			MFInt32 ltrpzium_Geo_5_113_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getltrpzium_Geo_5_113_coordIndex_1()))
				.append(new MFInt32(getltrpzium_Geo_5_113_coordIndex_2()))
				.append(new MFInt32(getltrpzium_Geo_5_113_coordIndex_3()))
				.append(new MFInt32(getltrpzium_Geo_5_113_coordIndex_4()));
			return ltrpzium_Geo_5_113_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='ltrpzium_Coord' point field, scene-graph level=6, element #113, 1386 total numbers made up of 462 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 getltrpzium_Coord_6_113_point()
		{
			MFVec3f ltrpzium_Coord_6_113_point = new MFVec3f(new double[] {6.69,28.3793,3.1503,6.6423,28.4466,3.1171,6.6482,28.4433,3.1056,6.6128,28.485,3.107,6.6166,28.4802,3.094,6.4127,28.869,2.6965,6.4632,28.8706,2.7126,6.429,28.8565,2.6873,6.4155,28.8228,2.6646,6.4024,28.8267,2.6632,6.4189,28.8529,2.686,6.5318,28.6689,3.1867,6.5905,28.638,3.2021,6.5936,28.6552,3.2045,6.7428,28.548,3.2985,6.7198,28.5136,3.2753,6.7334,28.5068,3.2763,6.7582,28.5505,3.3017,6.806,28.4956,3.243,6.826,28.5032,3.2313,6.8185,28.508,3.241,6.6956,28.478,3.2517,6.6884,28.4267,3.2012,6.706,28.4652,3.2489,6.7031,28.421,3.2037,6.7495,28.6988,3.2247,6.8256,28.6383,3.2546,6.8009,28.6924,3.2305,6.7607,28.4014,3.1516,6.7503,28.4004,3.0487,6.7648,28.3966,3.0525,6.7735,28.4079,3.1422,6.8423,28.64,3.2008,6.8397,28.6446,3.214,6.8596,28.5633,3.226,6.8523,28.5694,3.2376,6.7465,28.8792,2.9362,6.6908,28.9265,2.9478,6.6918,28.9267,2.9601,6.7438,28.8782,2.9262,6.8059,28.4244,3.0054,6.8133,28.4303,3.0112,6.8118,28.4242,3.0167,6.6949,28.7002,2.6997,6.7012,28.69,2.7089,6.691,28.6895,2.6979,6.3799,28.9085,3.0848,6.3698,28.9049,3.0811,6.3546,28.8657,3.1311,6.3646,28.8707,3.1376,6.379,28.911,3.0199,6.3697,28.9051,3.0156,6.3649,28.6828,2.6121,6.3473,28.707,2.6336,6.356,28.7275,2.626,6.376,28.5684,2.8592,6.3558,28.5766,2.921,6.3625,28.5902,2.8614,6.841,28.472,3.1595,6.8456,28.4952,3.1781,6.7966,28.4551,3.2125,6.8095,28.5512,3.2577,6.7007,28.3805,3.1606,6.7525,28.4221,3.1948,6.8043,28.4377,3.1544,6.7845,28.4304,3.1791,6.827,28.4478,3.0834,6.8155,28.4773,3.0388,6.4996,28.7923,2.6561,6.4628,28.8273,2.6724,6.4813,28.8294,2.6799,6.3506,28.7769,2.6446,6.34,28.8024,2.6854,6.3601,28.8211,2.6722,6.3336,28.5964,2.9904,6.3151,28.6314,3.0413,6.3258,28.6435,3.0047,6.3642,28.8946,3.0709,6.4093,28.7808,2.6338,6.428,28.755,2.6359,6.4165,28.7423,2.6155,6.5835,28.6029,3.188,6.524,28.6282,3.1675,6.5211,28.5914,3.1392,6.575,28.5596,3.1706,6.7063,28.529,3.263,6.7763,28.7466,3.2064,6.6933,28.8074,3.1138,6.7261,28.8113,3.1097,6.6967,28.8516,3.045,6.6141,28.8129,3.1494,6.655,28.7946,3.1608,6.6145,28.8221,3.1134,6.6539,28.8147,3.1136,6.5812,28.538,3.1261,6.6078,28.5371,3.1876,6.6105,28.509,3.1441,6.7373,28.4289,2.9859,6.6874,28.4694,2.964,6.7089,28.4623,2.9385,6.4261,28.5597,2.8086,6.4622,28.5399,2.8076,6.446,28.5491,2.8562,6.4138,28.5608,2.8573,6.5642,28.5833,2.7745,6.5247,28.6011,2.7144,6.5389,28.621,2.7471,6.499,28.5394,2.734,6.4584,28.5632,2.7242,6.473,28.5578,2.6889,6.4027,28.5765,3.0123,6.3907,28.5695,2.933,6.4234,28.5633,2.9378,6.3703,28.5867,2.9993,6.7127,28.6211,2.7575,6.6775,28.6706,2.7087,6.6422,28.7463,2.6401,6.6317,28.7385,2.6477,6.6113,28.7631,2.6444,6.4356,28.5766,2.7187,6.4384,28.5587,2.7599,6.4046,28.5824,2.763,6.5212,28.9143,2.8615,6.5187,28.8959,2.8396,6.4914,28.9066,2.8307,6.4632,28.7824,2.671,6.5092,28.7819,2.6556,6.4861,28.7476,2.6787,6.6034,28.942,2.9454,6.5583,28.9303,2.9087,6.5643,28.9293,2.9442,6.4504,28.5832,2.6535,6.5691,28.5094,2.8231,6.4783,28.5309,2.759,6.5484,28.5305,2.8649,6.3184,28.7783,3.063,6.2987,28.6967,3.1178,6.3089,28.7288,3.1408,6.3184,28.7378,3.0379,6.4731,28.8619,3.0924,6.43,28.9043,3.0257,6.4174,28.8903,3.0882,6.4883,28.8969,3.0323,6.5534,28.907,2.9913,6.603,28.9094,2.9934,6.7546,28.8264,3.005,6.7652,28.7839,3.0849,6.5666,28.9273,2.9,6.5954,28.8935,2.8813,6.6962,28.891,2.9128,6.6071,28.56,2.8007,6.6387,28.5474,2.8178,6.5883,28.5453,2.7915,6.4314,28.8228,2.6782,6.3828,28.8681,2.6953,6.3719,28.822,2.6649,6.3424,28.8691,2.7696,6.361,28.9025,2.8082,6.3648,28.8886,2.751,6.3641,28.9047,2.8576,6.3569,28.8894,2.8371,6.6806,28.4958,2.8911,6.6591,28.5029,2.9167,6.6045,28.5216,2.8914,6.6245,28.5076,2.8585,6.683,28.4352,3.052,6.7437,28.52,2.8945,6.7158,28.5538,2.8183,6.7335,28.5565,2.8159,6.8179,28.5308,3.0703,6.8056,28.4922,3.0227,6.6477,28.4741,3.0319,6.6603,28.4725,2.9971,6.3277,28.7324,2.6637,6.3479,28.6884,2.6594,6.3943,28.9032,3.0868,6.4049,28.8592,3.1431,6.3812,28.8659,3.1399,6.5234,28.7638,2.6664,6.3442,28.6056,2.9316,6.6054,28.7239,3.1977,6.6098,28.7683,3.1736,6.5383,28.7893,3.1719,6.5363,28.7463,3.1855,6.6959,28.7765,3.1722,6.7215,28.5969,3.2712,6.6689,28.676,3.2237,6.6593,28.6266,3.2358,6.7163,28.6451,3.2452,6.4542,28.9057,2.8082,6.4506,28.9105,2.8445,6.4817,28.9123,2.8388,6.477,28.7407,2.6761,6.4534,28.7249,2.6412,6.4539,28.7759,2.669,6.8548,28.5417,3.2153,6.8411,28.6145,3.1778,6.7903,28.4137,3.0784,6.5426,28.8849,3.0385,6.5969,28.873,3.0447,6.5034,28.9027,2.9869,6.5699,28.7815,2.6448,6.6842,28.595,2.7731,6.695,28.8912,2.9994,6.324,28.7967,3.1426,6.3379,28.8255,3.0998,6.4427,28.8268,2.6808,6.4009,28.9081,3.0224,6.3776,28.6493,2.6567,6.4025,28.6299,2.6234,6.6541,28.5401,2.8313,6.8157,28.4427,3.1189,6.7727,28.4262,3.1862,6.7828,28.4486,3.216,6.7954,28.5447,3.267,6.7792,28.5839,3.2776,6.7868,28.4508,2.9764,6.6377,28.5137,3.2092,6.6383,28.4795,3.1645,6.3259,28.8272,2.7332,6.3268,28.7798,2.6984,6.5801,28.758,2.6557,6.5263,28.8398,2.7274,6.5511,28.814,2.6834,6.5177,28.8136,2.6897,6.614,28.5704,2.7974,6.6293,28.5777,2.7895,6.6549,28.5499,2.8206,6.5306,28.5684,2.7227,6.4668,28.8435,3.1463,6.3961,28.5716,2.8095,6.5185,28.9086,2.9415,6.6114,28.9403,2.9373,6.6888,28.8589,2.8776,6.7122,28.8525,2.8882,6.3956,28.5917,2.7577,6.3881,28.6179,2.7087,6.4239,28.5852,2.7161,6.4385,28.5891,2.6552,6.6482,28.6391,2.7252,6.6546,28.7045,2.6781,6.6253,28.678,2.697,6.387,28.5611,2.8604,6.5277,28.5517,2.9067,6.5846,28.5357,2.9244,6.6376,28.5101,2.9423,6.3769,28.9133,2.9077,6.4054,28.9115,2.9202,6.406,28.9147,2.8965,6.7547,28.7616,2.9402,6.7735,28.7478,3.0455,6.7764,28.7157,3.0096,6.7578,28.7952,2.973,6.8502,28.5184,3.1967,6.3687,28.9057,2.9631,6.3673,28.9068,2.9118,6.3652,28.8946,2.9519,6.3397,28.8346,3.1415,6.5086,28.5842,2.6789,6.5142,28.7908,2.6582,6.4938,28.8297,2.6871,6.5744,28.7909,2.6465,6.5808,28.7975,2.6905,6.7418,28.5634,2.8194,6.7722,28.5526,2.955,6.7539,28.5215,2.9125,6.7511,28.6008,2.8746,6.3673,28.7315,2.6192,6.3735,28.6842,2.6019,6.7512,28.8681,2.9314,6.6133,28.7713,2.6489,6.4733,28.8708,2.7171,6.4556,28.8937,2.7551,6.469,28.8902,2.758,6.7042,28.8185,2.855,6.7264,28.7779,2.8334,6.7031,28.7904,2.8178,6.7269,28.8101,2.8675,6.7357,28.8461,2.8988,6.6852,28.3879,3.1616,6.7114,28.5834,3.27,6.7947,28.5923,3.2701,6.7289,28.6571,3.2407,6.6389,28.4511,3.1273,6.6383,28.7044,3.2096,6.6734,28.6934,3.217,6.3402,28.5895,2.9985,6.3664,28.5924,3.0124,6.5294,28.5495,3.0673,6.471,28.565,3.0354,6.5328,28.5451,3.0539,6.4676,28.57,3.0486,6.3995,28.5818,3.0256,6.4127,28.6996,2.5926,6.4041,28.7417,2.6121,6.424,28.7031,2.5971,6.4451,28.6448,2.6066,6.4866,28.6066,2.6452,6.4792,28.5979,2.643,6.4545,28.6506,2.6109,6.5228,28.5583,2.7211,6.5019,28.5743,2.6781,6.57,28.5916,2.7736,6.4969,28.6988,2.6994,6.5252,28.6625,2.7263,6.5164,28.6569,2.7231,6.5065,28.7035,2.703,6.5844,28.5329,2.7963,6.6221,28.6242,3.2183,6.6274,28.6405,3.2207,6.6536,28.6105,3.2348,6.8275,28.6826,3.1805,6.8238,28.6884,3.1926,6.8259,28.6221,3.1162,6.827,28.6543,3.1514,6.8387,28.5861,3.148,6.8283,28.5584,3.1091,6.8048,28.5604,3.0359,6.8153,28.5912,3.076,6.7744,28.4899,2.9465,6.7948,28.4582,2.9807,6.7889,28.5224,2.9888,6.702,28.763,2.7815,6.7258,28.7469,2.8009,6.6723,28.7262,2.6721,6.7102,28.7229,2.7487,6.6864,28.7437,2.724,6.7322,28.7361,2.8077,6.7153,28.7107,2.7534,6.7349,28.8038,2.8769,6.7336,28.7707,2.843,6.7434,28.8389,2.9067,6.7662,28.4821,2.9415,6.7712,28.774,3.0773,6.808,28.7324,3.1711,6.8129,28.7253,3.1602,6.7599,28.8186,2.9958,6.6663,28.7179,2.6687,6.6474,28.7535,2.6437,6.4653,28.9001,2.8023,6.6509,28.934,2.9537,6.6506,28.9335,2.9425,6.3769,28.8935,2.749,6.3715,28.9089,2.8066,6.378,28.912,2.963,6.3707,28.8643,2.6995,6.4117,28.6313,2.6148,6.385,28.5803,2.8106,6.3211,28.6253,3.0482,6.3041,28.6912,3.1253,6.2969,28.667,3.0895,6.3025,28.6598,3.0955,6.3152,28.7248,3.1493,6.3611,28.7788,2.6366,6.3637,28.5704,2.9294,6.3472,28.8345,3.15,6.3591,28.6555,2.7138,6.3664,28.6064,2.8145,6.3702,28.6228,2.7678,6.7236,28.6194,2.7704,6.7343,28.6539,2.8167,6.6627,28.7645,2.6992,6.6219,28.7813,2.6968,6.3319,28.7517,2.7466,6.3395,28.698,2.7202,6.3513,28.6638,2.7768,6.3419,28.699,2.8405,6.3397,28.7229,2.7952,6.3533,28.6426,2.8217,6.3553,28.6215,2.8667,6.335,28.6588,2.9434,6.3441,28.6753,2.8858,6.3924,28.6073,3.0638,6.354,28.6189,3.0538,6.5256,28.5685,3.1001,6.4637,28.5912,3.0811,6.5865,28.5197,3.0882,6.502,28.6309,2.6848,6.4757,28.6746,2.6551,6.4115,28.907,2.8052,6.4139,28.8922,2.7471,6.5221,28.8727,2.8156,6.5242,28.8562,2.7715,6.5855,28.8237,2.7847,6.6334,28.8338,2.8351,6.6326,28.8133,2.7935,6.5854,28.8407,2.8278,6.6798,28.8031,2.8023,6.6814,28.827,2.8424,6.7505,28.7272,2.9045,6.769,28.6799,2.9719,6.8024,28.6241,3.0429,6.8131,28.6583,3.0843,6.3244,28.8057,2.773,6.3389,28.8259,2.8405,6.3407,28.8475,2.8051,6.3281,28.7822,2.8137,6.3305,28.7556,2.8594,6.3388,28.7756,2.939,6.3402,28.8003,2.8899,6.3329,28.7291,2.905,6.3259,28.7121,2.9551,6.3302,28.758,2.9823,6.3185,28.6974,3.0128,6.343,28.6791,3.1323,6.3398,28.6494,3.1013,6.4622,28.6511,3.1508,6.3841,28.6371,3.1082,6.459,28.6165,3.1198,6.3858,28.6666,3.1388,6.6463,28.5663,3.2231,6.6156,28.5848,3.2044,6.6467,28.7495,3.1852,6.6835,28.7307,3.1969,6.5405,28.828,3.1478,6.4013,28.822,3.1587,6.4669,28.8081,3.1651,6.3706,28.829,3.1538,6.3506,28.8531,3.0428,6.3605,28.8746,3.0,6.8129,28.6942,3.125,6.3612,28.7894,3.1568,6.3492,28.7145,3.1545,6.3311,28.7955,3.1514,6.4087,28.9108,2.8509,6.3741,28.9112,2.8561,6.4031,28.9098,2.9713,6.649,28.9003,2.9964,6.6125,28.5132,3.0119,6.3499,28.845,2.9204,6.3447,28.8222,2.9731,6.5791,28.6495,2.7264,6.6037,28.6109,2.7526,6.6025,28.7171,2.6688,6.6458,28.8922,2.897,6.6396,28.8629,2.866,6.6319,28.793,2.7519,6.6782,28.7793,2.7622,6.5545,28.6881,2.7003,6.5399,28.7299,2.6805,6.3498,28.8696,2.8674,6.4425,28.9161,2.8856,6.5904,28.867,2.8546,6.4687,28.6908,3.1727,6.539,28.8432,3.1022,6.4673,28.769,3.1734,6.5556,28.5399,2.9922,6.4953,28.5569,2.9717,6.3344,28.8041,3.0095,6.5856,28.8069,2.7417,6.7463,28.693,2.8689,6.7616,28.6442,2.9343,6.7917,28.59,3.0016,6.3986,28.7818,3.1634,6.3902,28.7022,3.1608,6.4356,28.907,2.9794,6.4412,28.9097,2.933,6.6468,28.8622,3.0449,6.5116,28.9183,2.8695,6.59,28.5161,3.0744,6.3955,28.784,2.6316,6.548,28.6265,2.7502});
			return ltrpzium_Coord_6_113_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='ltrpzoid_Geo' coordIndex field, scene-graph level=5, element #118, 1984 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 getltrpzoid_Geo_5_118_coordIndex()
		{
			MFInt32 ltrpzoid_Geo_5_118_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getltrpzoid_Geo_5_118_coordIndex_1()))
				.append(new MFInt32(getltrpzoid_Geo_5_118_coordIndex_2()));
			return ltrpzoid_Geo_5_118_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='ltrpzoid_Coord' point field, scene-graph level=6, element #118, 750 total numbers made up of 250 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 getltrpzoid_Coord_6_118_point()
		{
			MFVec3f ltrpzoid_Coord_6_118_point = new MFVec3f(new double[] {6.8915,28.3876,2.7491,6.9104,28.3897,2.7376,6.9127,28.3795,2.7399,6.7818,28.4215,2.8235,6.7813,28.4273,2.7921,6.8465,28.4046,2.7799,6.9129,28.3117,2.8472,6.9213,28.3035,2.8622,6.9045,28.3159,2.8687,7.3512,28.5388,3.1803,7.3553,28.5477,3.1611,7.3492,28.5499,3.181,7.0495,28.5254,3.3256,7.0563,28.5359,3.3281,7.0318,28.5489,3.3232,7.0519,28.4749,2.8749,7.0432,28.5257,2.8754,7.0961,28.5124,2.9416,6.7717,28.6054,2.7167,6.8029,28.6488,2.7837,6.7844,28.6148,2.7157,6.8158,28.6524,2.7749,7.0479,28.5322,2.8803,6.931,28.3277,2.8101,6.9318,28.3501,2.76,6.9422,28.3515,2.7553,6.9231,28.327,2.8079,7.356,28.5564,3.0441,7.3611,28.5635,3.0437,6.998,28.4099,3.1268,6.9357,28.401,3.0686,6.9433,28.397,3.0627,6.987,28.4105,3.1306,6.9904,28.6168,2.7781,6.9952,28.609,2.7778,6.9737,28.5883,2.6742,6.9629,28.5966,2.678,6.9729,28.3955,2.7245,6.9693,28.4031,2.7218,7.0998,28.5072,2.9487,7.0956,28.5041,2.9483,7.2946,28.4852,3.2946,7.2945,28.4804,3.2912,7.1672,28.4456,3.254,7.2775,28.4761,3.2951,7.2052,28.4705,3.3188,7.0759,28.4279,3.192,7.118,28.4516,3.2845,7.0385,28.4643,3.2451,6.9202,28.4132,2.7265,7.1095,28.655,2.9346,7.2065,28.6916,2.9537,7.0976,28.577,2.9137,6.9576,28.3739,2.7379,7.0673,28.4448,3.0408,7.0897,28.4602,3.0094,7.087,28.4508,3.0767,7.093,28.5764,3.3089,7.208,28.53,3.3106,7.2012,28.584,3.2879,6.7884,28.7561,2.9597,6.7792,28.7945,3.0352,6.7948,28.8038,3.0023,6.7823,28.7407,3.0013,6.7573,28.4637,2.8117,6.7881,28.4861,2.9309,6.7757,28.5363,2.8882,6.7796,28.4231,2.8461,7.1063,28.7093,3.1422,7.0355,28.7522,3.0927,7.0213,28.7247,3.149,7.1739,28.6588,3.1878,7.2185,28.6717,3.129,7.1879,28.6837,3.1189,7.0615,28.7379,3.0442,7.0856,28.7172,3.0043,7.0199,28.7474,2.996,6.9938,28.7574,3.0336,6.9855,28.7047,2.9291,7.0119,28.634,2.8813,6.9658,28.6792,2.8985,6.9313,28.6077,2.6954,6.924,28.5975,2.6759,7.3595,28.6159,3.0742,7.3056,28.654,3.0247,7.2869,28.6687,3.0426,7.3284,28.6256,3.0973,7.2056,28.7008,3.0086,7.2109,28.6975,2.963,7.1103,28.7194,3.0267,6.956,28.7784,2.9867,6.926,28.7767,3.0231,6.8898,28.6231,2.7227,6.8375,28.6965,2.8433,6.9152,28.6571,2.8025,6.9736,28.358,2.9405,7.0093,28.3936,3.0063,6.8938,28.3874,3.0034,6.7989,28.4364,2.767,6.8681,28.4178,2.7416,6.8391,28.3524,2.8627,6.9062,28.3409,2.8024,6.9106,28.4916,2.696,6.966,28.5847,2.6712,6.9496,28.4864,2.689,6.9245,28.5845,2.6699,6.7825,28.528,2.7281,6.7599,28.545,2.7376,6.8334,28.3534,2.8866,6.8191,28.3961,2.9505,6.884,28.39,3.0046,6.8248,28.4725,3.0578,6.8045,28.5338,2.9878,6.7641,28.4466,2.7999,6.9963,28.5133,2.8005,6.957,28.4869,2.6932,6.8047,28.6879,2.8962,6.8245,28.6915,2.8482,6.7917,28.6328,2.8345,6.7653,28.6005,2.7788,6.754,28.5611,2.7486,7.1556,28.6908,3.1242,7.2328,28.6478,3.1563,7.2359,28.6283,3.1934,7.2158,28.6161,3.2266,7.1896,28.625,3.2404,7.1553,28.6422,3.2356,7.1181,28.6613,3.2229,7.1017,28.6801,3.1982,7.2775,28.5257,3.282,7.2533,28.5666,3.2604,7.2871,28.6298,3.1203,7.2936,28.5908,3.1942,7.3277,28.5683,3.1912,6.9964,28.6528,3.273,7.1337,28.6182,3.2779,7.0598,28.6563,3.2529,7.004,28.506,3.2818,6.9591,28.4774,3.2057,7.0802,28.4274,3.1831,7.0912,28.4449,3.1451,7.0449,28.4295,3.0723,7.1716,28.4953,3.0891,7.1704,28.4973,3.0736,7.1977,28.5087,3.0925,7.1913,28.4937,3.1298,7.2205,28.5022,3.1392,7.2356,28.5157,3.1142,7.2362,28.5212,3.0813,7.2149,28.5252,3.0575,7.1907,28.5153,3.0533,7.1721,28.5026,3.0654,7.1737,28.5078,3.0572,7.0125,28.6241,2.8741,7.0193,28.629,2.8818,7.264,28.5846,2.9432,7.1658,28.5378,2.931,6.9552,28.6356,2.7895,6.9078,28.7012,2.8863,6.9608,28.6657,2.8827,7.0192,28.7422,2.983,6.9568,28.7735,2.9741,6.7962,28.7649,2.9251,6.8076,28.8083,2.9765,7.0841,28.7101,2.9918,7.3648,28.6076,3.0665,7.3083,28.6461,3.0145,7.1728,28.4934,3.1046,6.8594,28.5097,3.1564,6.8919,28.4747,3.1317,6.8981,28.7368,3.1346,6.7869,28.7994,3.0392,6.8125,28.7534,3.1076,6.9052,28.7643,3.0659,6.932,28.6431,3.2856,6.9011,28.6194,3.2919,6.9765,28.7576,3.0806,7.2596,28.677,3.066,6.7391,28.491,2.7816,6.7613,28.5799,2.8403,6.9831,28.3767,2.9077,7.0411,28.4277,2.9421,7.0252,28.4106,2.9742,6.9925,28.3955,2.875,6.9179,28.7283,2.9181,6.8277,28.8047,2.964,6.8091,28.7692,2.9206,6.8258,28.8096,2.9747,6.8165,28.8117,2.9846,6.8388,28.707,3.1789,6.9034,28.7082,3.2057,6.7863,28.6765,2.9517,7.1636,28.4449,3.24,7.2904,28.4812,3.2976,7.2646,28.5787,2.9458,6.9762,28.4062,2.7251,7.1693,28.5323,2.938,6.8756,28.5855,2.6704,6.8715,28.4968,2.703,6.8789,28.4268,2.7285,6.8027,28.808,3.008,7.2119,28.4798,3.3225,6.9092,28.3759,2.7457,6.7979,28.4525,2.7545,6.7459,28.4933,2.7657,6.8056,28.7462,3.1055,6.832,28.6983,3.1759,6.895,28.6091,3.2887,6.878,28.5981,2.6753,7.0102,28.4381,2.8079,7.0522,28.4664,2.8801,7.0095,28.4295,2.8129,7.1463,28.4974,3.0385,7.1434,28.487,3.0553,7.0928,28.4838,2.9765,7.1184,28.4737,3.0353,7.1231,28.4895,3.0103,7.0022,28.4144,2.8423,7.0475,28.4489,2.9093,7.1478,28.4789,3.1175,7.1405,28.4796,3.0855,7.1164,28.4641,3.0811,7.1246,28.4611,3.1288,7.1493,28.5078,3.0218,7.1841,28.5231,3.0145,7.2309,28.5423,3.0226,7.273,28.5235,3.1359,7.2737,28.5345,3.07,7.185,28.4795,3.1676,7.2431,28.4967,3.186,7.2495,28.5564,2.9863,7.1778,28.527,2.9744,7.3126,28.5442,3.0582,7.3117,28.5277,3.1576,7.2667,28.4876,3.2318,7.1794,28.462,3.2036,6.7811,28.6092,2.8915,6.7928,28.5714,2.9397,6.8248,28.5785,3.0644,6.8056,28.6274,3.0081,6.8074,28.6961,3.0732,6.8325,28.6519,3.1451,6.9647,28.7297,3.1413,6.9653,28.7009,3.2046,7.0271,28.6938,3.2036,7.1995,28.7003,3.0464,7.1339,28.7147,3.0574,6.8924,28.5742,3.2636,6.7829,28.6218,2.8117,7.1277,28.5053,2.9854});
			return ltrpzoid_Coord_6_118_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='ltrqtral_Geo' coordIndex field, scene-graph level=5, element #123, 3312 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 getltrqtral_Geo_5_123_coordIndex()
		{
			MFInt32 ltrqtral_Geo_5_123_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getltrqtral_Geo_5_123_coordIndex_1()))
				.append(new MFInt32(getltrqtral_Geo_5_123_coordIndex_2()))
				.append(new MFInt32(getltrqtral_Geo_5_123_coordIndex_3()))
				.append(new MFInt32(getltrqtral_Geo_5_123_coordIndex_4()));
			return ltrqtral_Geo_5_123_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='ltrqtral_Coord' point field, scene-graph level=6, element #123, 1248 total numbers made up of 416 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 getltrqtral_Coord_6_123_point()
		{
			MFVec3f ltrqtral_Coord_6_123_point = new MFVec3f(new double[] {7.6701,28.7987,1.9946,7.6908,28.7507,1.9861,7.674,28.7231,1.9466,7.384,28.852,2.2769,7.3763,28.8536,2.2691,7.3805,28.8443,2.271,7.3822,28.7279,2.1353,7.3554,28.7488,2.1299,7.3484,28.6988,2.0817,7.7158,28.6636,1.9904,7.7135,28.6545,1.9758,7.7178,28.6643,1.9787,7.6107,28.6728,2.1186,7.5355,28.6931,2.155,7.5419,28.6765,2.1391,7.6131,28.7062,2.1255,7.477,28.6211,1.9822,7.4861,28.5983,1.9918,7.4909,28.5953,2.0046,7.4712,28.6127,2.0117,7.4353,28.8467,1.8757,7.5209,28.7915,1.8792,7.4984,28.7779,1.8533,7.4628,28.866,1.9007,7.3799,28.9671,1.9669,7.3876,28.9826,1.9862,7.3987,28.9678,1.968,7.3539,28.9122,2.0673,7.3459,28.8919,2.0006,7.3344,28.8818,2.0321,7.3636,28.9391,2.0192,7.3719,28.9624,1.9702,7.3778,28.9346,1.943,7.3604,28.9048,1.9635,7.5124,29.0596,2.4047,7.5377,29.0143,2.4411,7.5479,29.0393,2.4024,7.5085,29.0567,2.4078,7.4713,29.0227,2.411,7.5023,29.0185,2.4313,7.3757,28.8039,2.0338,7.3592,28.7799,2.08,7.3842,28.8236,2.0751,7.4349,28.9457,2.3635,7.4521,28.944,2.3716,7.4436,28.982,2.3888,7.5316,28.9311,2.3799,7.468,28.9041,2.3349,7.5625,28.8912,2.3136,7.6338,28.6432,1.8385,7.6623,28.6345,1.8632,7.6002,28.6068,1.8742,7.371,28.7712,2.2144,7.4071,28.6993,2.1534,7.487,28.6902,2.1973,7.4363,28.7532,2.2498,7.4456,28.692,2.182,7.6151,28.7458,2.1348,7.5184,28.7791,2.2072,7.5287,28.7135,2.1748,7.6119,28.7985,2.1764,7.7254,28.7845,2.0821,7.7261,28.8406,2.1197,7.7249,28.8344,2.139,7.6418,28.8784,2.0162,7.6771,28.8643,2.0303,7.3853,28.8583,2.0934,7.3859,28.8904,2.1292,7.3706,28.8831,2.0833,7.3752,28.9131,2.109,7.3841,28.8156,2.2536,7.3745,28.8116,2.2467,7.4097,29.0251,2.0462,7.409,29.027,2.0715,7.4457,29.0566,2.0806,7.4252,28.9785,2.1839,7.454,29.0415,2.1551,7.4122,29.003,2.1457,7.4581,29.0204,2.1994,7.4244,28.9351,2.2812,7.4565,28.9988,2.2519,7.4302,28.9577,2.2289,7.4408,28.9733,2.3111,7.364,28.8172,2.0205,7.3708,28.7835,1.987,7.3358,28.8747,2.0391,7.3558,28.9045,2.0747,7.3549,28.8568,2.0473,7.3204,28.8461,2.0101,7.351,28.8138,1.9895,7.332,28.8319,2.016,7.3288,28.8425,1.9797,7.3486,28.8269,1.9707,7.3542,28.8116,1.9801,7.3238,28.8434,1.9979,7.5114,28.6355,2.0812,7.5048,28.6584,2.1205,7.4994,28.6452,2.0827,7.526,28.6542,2.1094,7.5884,28.616,2.0292,7.6023,28.624,2.0491,7.5629,28.6153,2.0563,7.4916,28.6182,2.0559,7.4859,28.6232,2.0561,7.49,28.5958,2.0201,7.429,28.8193,2.2714,7.5026,28.8303,2.2446,7.4807,28.8699,2.2868,7.4151,28.8718,2.2888,7.4024,28.7656,2.2353,7.6851,28.976,2.2566,7.7135,28.8743,2.2009,7.698,28.9817,2.2119,7.7214,28.8951,2.152,7.702,28.9838,2.1744,7.6997,28.9846,2.1964,7.7163,28.8965,2.1249,7.7076,28.6478,1.9345,7.7071,28.7031,1.9801,7.6942,28.6811,1.9389,7.6318,28.6537,1.8352,7.6036,28.6775,1.8322,7.6175,28.6731,1.8392,7.6953,28.7718,2.0041,7.4228,28.9075,2.3296,7.4491,29.0621,2.1123,7.4901,29.093,2.1225,7.4023,29.0181,2.0708,7.4039,29.0165,2.0392,7.3981,29.0076,2.0707,7.681,28.9063,2.0616,7.6462,28.9696,2.0855,7.6781,28.9807,2.1185,7.7218,28.8898,2.1637,7.6038,28.8873,2.3327,7.6241,28.8625,2.2814,7.637,28.886,2.353,7.688,28.6327,1.8989,7.632,28.6099,1.9035,7.6686,28.6224,1.935,7.7038,28.6919,2.0513,7.6766,28.6628,2.0717,7.6996,28.6636,2.0282,7.4443,28.7581,2.2507,7.6524,28.7462,2.1308,7.6802,28.7032,2.1007,7.6866,28.7476,2.1308,7.6477,28.7044,2.1117,7.4271,28.8425,1.8776,7.3898,28.8448,1.9125,7.4061,28.8725,1.8948,7.3736,28.7931,2.119,7.3443,28.705,2.0797,7.352,28.756,2.1224,7.3796,28.7022,2.1087,7.4037,28.8799,2.3008,7.4017,28.8478,2.2737,7.353,28.8428,1.9502,7.379,28.7977,1.9656,7.3747,28.7801,1.9776,7.5197,29.1112,2.1516,7.5212,29.1052,2.1696,7.5429,29.1256,2.1763,7.6444,28.6679,2.0953,7.6477,28.8377,2.2203,7.6369,28.8572,2.2726,7.6045,28.8393,2.2238,7.6392,28.6586,2.0902,7.6296,28.6477,2.0807,7.666,28.6544,2.0706,7.6143,28.6382,2.0635,7.6442,28.6349,2.0368,7.4415,28.6401,2.0199,7.4615,28.6559,1.9709,7.4189,28.6621,2.0205,7.4241,28.7094,1.9718,7.4938,28.5823,1.9965,7.407,29.0286,2.1063,7.4006,29.0194,2.0992,7.4038,29.0219,2.1113,7.3925,28.9106,1.9139,7.3888,28.8975,1.9102,7.3851,28.9069,1.9162,7.3702,28.8167,2.2401,7.3687,28.7785,2.2084,7.4265,28.9156,2.3379,7.4195,28.9145,2.3283,7.431,28.95,2.3566,7.4406,28.9887,2.3811,7.456,29.0033,2.4042,7.4531,29.0083,2.3939,7.4742,28.6121,2.0212,7.726,28.7909,2.0726,7.7248,28.8481,2.1092,7.5113,28.6714,2.1512,7.5417,28.6695,2.1309,7.5058,28.666,2.1436,7.4965,28.6807,2.1766,7.4959,28.6938,2.1967,7.5053,28.6835,2.1774,7.4224,28.8128,2.2686,7.4858,28.877,2.2957,7.6013,28.8451,2.2307,7.6487,28.883,2.3441,7.6465,28.8877,2.3488,7.6499,28.8793,2.3384,7.3973,28.8399,2.2689,7.6067,28.6634,2.1141,7.6933,28.6543,2.0231,7.4999,28.5786,2.0033,7.4428,28.6385,2.0314,7.6237,28.6496,1.8344,7.3656,28.9383,2.0833,7.3666,28.9314,2.0928,7.3206,28.8526,2.0035,7.5065,29.0621,2.3956,7.412,29.0191,2.0333,7.4405,28.6677,2.0536,7.4216,28.6584,2.0312,7.4706,28.6355,2.0574,7.5365,28.9902,2.4491,7.5291,29.0103,2.4455,7.5039,28.9951,2.437,7.5504,28.9846,2.4507,7.3759,28.8268,1.9392,7.363,28.7591,2.1719,7.3561,28.7524,2.0235,7.3792,28.8375,2.054,7.3273,28.8521,1.9825,7.3484,28.8504,1.957,7.4874,28.6683,2.1261,7.7172,28.8247,2.1517,7.5843,28.6402,2.0906,7.6943,28.6382,1.9554,7.7051,28.6396,1.936,7.7176,28.8499,2.0816,7.7009,28.8541,2.0492,7.7026,28.9028,2.0866,7.51,28.9711,2.4334,7.5596,28.9888,2.4467,7.5872,28.963,2.4401,7.6008,29.0155,2.3824,7.6658,28.9371,2.3109,7.4912,29.0595,2.2173,7.4954,29.0792,2.1657,7.5444,28.9662,2.4432,7.5779,28.9592,2.4438,7.6972,28.7954,2.0181,7.6495,28.7663,1.9572,7.6644,28.6433,1.8628,7.6795,28.6651,1.8981,7.6898,28.6412,1.8963,7.6451,28.6681,1.8631,7.7122,28.7449,2.0181,7.7193,28.7232,2.0326,7.6557,28.7004,1.9076,7.381,28.9427,2.1334,7.3781,28.9593,2.1115,7.5097,29.0808,2.2274,7.5138,29.0856,2.2139,7.4795,29.0392,2.28,7.391,28.8385,2.1036,7.387,28.8681,2.1507,7.4665,28.6667,2.0905,7.6929,28.9821,2.1406,7.6747,29.0347,2.1691,7.6732,29.0313,2.1985,7.5545,29.1299,2.2055,7.5376,29.1116,2.2091,7.3873,28.938,1.9388,7.5327,28.7287,1.8417,7.5673,28.6976,1.8335,7.5573,28.6839,1.8479,7.5313,28.5954,2.0252,7.5886,28.6105,1.8729,7.5665,28.6307,1.8809,7.5757,28.6423,1.8602,7.7179,28.715,2.0405,7.7059,28.714,2.0653,7.3504,28.7018,2.0684,7.5618,29.1213,2.2756,7.5522,29.1189,2.2836,7.5578,29.1156,2.2928,7.4058,28.7825,1.9497,7.4019,28.7631,1.9626,7.4645,28.7549,1.9023,7.3996,28.7973,1.9416,7.4033,28.8088,1.9257,7.4559,28.7495,1.9179,7.3802,28.6891,2.042,7.3872,28.7354,1.993,7.4397,28.6851,2.1166,7.4135,28.6875,2.0747,7.4677,28.6811,2.1518,7.5986,28.6708,1.8316,7.5643,28.5978,1.9041,7.5472,28.619,1.9065,7.5088,28.606,1.9576,7.5179,28.587,1.963,7.5264,28.6484,1.9074,7.4904,28.6829,1.9207,7.4975,28.6916,1.9088,7.514,28.6396,1.9238,7.5058,28.7017,1.8943,7.5399,28.6594,1.888,7.5717,28.7218,1.858,7.5725,28.7034,1.8342,7.534,28.7377,1.8427,7.5965,28.6973,1.8473,7.4348,28.9024,1.9193,7.4066,28.9376,1.9386,7.4152,28.8772,1.8935,7.3771,28.9639,2.0999,7.3735,28.9604,2.0377,7.3831,28.9813,2.0567,7.3897,28.9935,2.099,7.4066,28.984,1.9887,7.3954,28.9984,2.0065,7.4564,29.0577,2.0747,7.4348,29.0094,2.0205,7.4798,29.0444,2.0615,7.5565,29.0918,2.1349,7.5523,29.1278,2.1726,7.5923,29.1064,2.1685,7.5262,29.1115,2.1453,7.5634,29.1275,2.2425,7.6037,29.1098,2.1989,7.5634,29.1311,2.2038,7.6005,29.1045,2.2345,7.5698,29.0681,2.3427,7.5929,29.0931,2.2856,7.5359,29.0898,2.3456,7.528,29.0903,2.3415,7.514,29.081,2.2884,7.4879,29.053,2.3507,7.5546,29.1265,2.2424,7.5296,29.102,2.2356,7.6301,28.9765,2.3508,7.6507,29.0099,2.2923,7.6704,29.0282,2.2252,7.6606,29.0322,2.1444,7.6072,28.9559,2.048,7.5373,28.9817,2.0252,7.5798,29.0075,2.0683,7.5661,28.934,2.0055,7.4931,28.9546,1.9851,7.4928,28.8878,1.9312,7.4584,28.9285,1.9494,7.523,28.9107,1.9662,7.6845,28.8413,2.2301,7.6251,28.6953,1.8711,7.6069,28.6014,1.9352,7.6149,28.6157,2.0007,7.5814,28.5969,1.9649,7.6424,28.6172,1.9686,7.7112,28.771,2.1042,7.6898,28.8071,2.1847,7.7164,28.792,2.0458,7.3799,28.9805,1.9924,7.3783,28.8397,2.199,7.3823,28.8095,2.1532,7.3967,28.973,2.1393,7.3917,28.9925,2.1112,7.41,28.9312,2.2093,7.3903,28.9233,2.1596,7.3896,28.9043,2.1903,7.4078,28.9508,2.1713,7.3988,28.8849,2.2976,7.3825,28.8769,2.2326,7.4038,28.9052,2.2582,7.4956,29.0602,2.2857,7.4487,28.7454,1.9305,7.6707,28.6351,1.9971,7.6279,28.7371,1.92,7.6098,28.8516,1.9801,7.5773,28.8255,1.9446,7.4634,28.9969,2.0045,7.5087,29.0279,2.0453,7.4556,29.0132,2.3398,7.4705,29.0331,2.347,7.6191,29.0432,2.3244,7.5974,29.0986,2.2674,7.6462,29.0781,2.2205,7.6432,29.0726,2.2509,7.6046,28.7169,1.8808,7.6446,29.0824,2.1849,7.6313,29.0787,2.1575,7.5524,28.8013,1.9085,7.4241,28.9673,1.9683,7.6667,29.0247,2.2425,7.639,29.0673,2.2687,7.5922,29.0683,2.1227,7.6188,29.0195,2.1043,7.6145,28.925,2.3967,7.5252,28.5832,1.9676,7.5565,28.5968,1.9946,7.3876,28.9967,2.0133,7.4922,28.7737,1.8542,7.4384,28.7311,1.9459,7.361,28.7466,2.0135,7.3744,28.8124,1.9556,7.5528,29.0576,2.0886,7.5238,29.0781,2.1046,7.6533,28.8028,2.1771,7.5701,28.9267,2.3932,7.5296,28.6107,1.9278,7.5418,28.5897,1.9304,7.4779,28.6717,1.9414,7.497,28.6321,1.9498,7.5,29.095,2.1178,7.3608,28.7671,2.1654,7.4683,29.0274,2.3997,7.3822,28.6856,2.0532,7.5494,28.5856,1.9344,7.5732,28.5936,1.9068,7.6056,28.923,2.4008});
			return ltrqtral_Coord_6_123_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='ldphal_Geo' coordIndex field, scene-graph level=5, element #128, 1888 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 getldphal_Geo_5_128_coordIndex()
		{
			MFInt32 ldphal_Geo_5_128_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getldphal_Geo_5_128_coordIndex_1()))
				.append(new MFInt32(getldphal_Geo_5_128_coordIndex_2()));
			return ldphal_Geo_5_128_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='ldphal_Coord' point field, scene-graph level=6, element #128, 714 total numbers made up of 238 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 getldphal_Coord_6_128_point()
		{
			MFVec3f ldphal_Coord_6_128_point = new MFVec3f(new double[] {5.3924,26.1987,4.0826,5.3541,26.1338,4.1077,5.371,26.1346,4.1086,5.3625,26.0696,4.1394,5.346,26.0726,4.1387,5.3437,26.0603,4.1412,5.4316,26.1857,4.0656,5.3953,26.1272,4.0942,5.402,26.1214,4.0761,5.2644,26.0377,4.0288,5.2795,26.1094,4.0267,5.2926,26.1017,4.0141,5.2524,26.0435,4.047,5.6007,26.4118,3.9739,5.6171,26.3905,3.9384,5.6124,26.3978,3.9365,5.6064,26.4062,3.9815,5.282,26.4684,3.8477,5.2746,26.4612,3.8464,5.2736,26.4624,3.8485,5.3863,26.4564,3.8614,5.4498,26.4476,3.8784,5.4063,26.4461,3.8514,5.6105,26.3764,3.9974,5.6103,26.34,4.0119,5.6139,26.3586,3.9503,5.5898,26.3272,3.9576,5.5067,26.4322,3.9159,5.4898,26.4413,3.9195,5.4452,26.2768,3.9026,5.3586,26.28,3.9142,5.3672,26.3148,3.8584,5.4472,26.315,3.8577,5.3421,26.387,4.0,5.3368,26.3498,4.0189,5.4226,26.3764,4.0208,5.4075,26.341,4.0299,5.505,26.4312,3.8847,5.5122,26.4266,3.9033,5.468,26.4509,3.9171,5.4428,26.4582,3.9044,5.2802,25.9941,4.1207,5.2702,25.9807,4.1105,5.285,25.9741,4.1226,5.2822,25.9481,4.1101,5.3618,26.2026,4.0752,5.4364,26.26,4.0554,5.3876,26.2696,4.0505,5.2721,26.1144,4.0381,5.2864,26.1834,4.0339,5.2843,26.1733,4.0176,5.2776,26.1167,4.0505,5.2752,26.2426,4.0061,5.2596,26.3309,3.9871,5.258,26.3067,3.9735,5.2734,26.26,4.0224,5.3877,26.1332,4.1071,5.5516,26.2777,4.0029,5.529,26.2998,4.0302,5.4794,26.2411,4.0393,5.4971,26.2255,4.011,5.3257,25.9031,4.0785,5.3103,25.8997,4.038,5.3396,25.9005,4.052,5.3085,25.9063,4.0675,5.3856,25.9883,4.044,5.3943,25.9867,4.0618,5.3849,25.9649,4.0448,5.3788,25.9475,4.1001,5.3738,25.9843,4.14,5.3595,25.9452,4.1161,5.3873,25.9862,4.12,5.3192,25.9988,4.1434,5.2987,26.0094,4.1347,5.3119,25.9789,4.1357,5.2746,25.939,4.0972,5.2413,25.9704,4.0757,5.2671,25.9292,4.0751,5.2593,25.977,4.0977,5.4021,26.0605,4.1204,5.3839,26.0674,4.1331,5.2609,26.059,4.0863,5.2509,26.0538,4.0663,5.3122,25.9202,4.1023,5.3418,25.9171,4.085,5.3557,25.9871,4.0165,5.3688,25.9879,4.0331,5.3502,25.9379,4.0169,5.3727,25.9456,4.0311,5.3291,26.2051,4.0617,5.335,26.2794,4.0403,5.3069,26.081,4.1192,5.286,26.0703,4.1049,5.2826,26.0366,4.117,5.3249,26.0402,4.1397,5.3009,25.9646,4.1243,5.2952,26.2235,3.9872,5.2943,26.1631,4.0031,5.404,26.4637,3.8815,5.3895,26.463,3.872,5.4184,26.4641,3.8912,5.2979,25.9564,4.0094,5.3063,25.9851,4.0153,5.3199,25.9352,4.0168,5.3339,25.9871,4.0154,5.3731,25.9263,4.0515,5.389,25.9563,4.0828,5.5659,26.2975,3.9666,5.5877,26.3049,4.009,5.4346,26.4472,3.8466,5.4601,26.4426,3.8502,5.3369,26.131,4.1044,5.3131,26.1229,4.0918,5.3307,26.0768,4.1317,5.3365,25.9505,4.1264,5.4852,26.4352,3.8659,5.4099,26.1139,4.0457,5.4094,26.057,4.0989,5.4052,26.0503,4.054,5.3236,26.0391,4.0063,5.3454,26.0948,4.002,5.3405,26.0402,4.0068,5.3138,25.9089,4.0234,5.2717,25.9336,4.0306,5.3751,26.162,3.9776,5.3512,26.2155,3.955,5.4126,26.2235,3.9412,5.3308,26.1536,3.9805,5.3003,26.2703,4.0323,5.3048,26.1945,4.0486,5.3466,25.9098,4.0347,5.259,26.3438,3.8716,5.3768,26.3576,3.8125,5.2563,26.3149,3.9212,5.5741,26.3589,4.0352,5.5572,26.3275,4.037,5.3597,26.0415,4.0148,5.3776,26.0445,4.0251,5.2443,25.9739,4.0543,5.2562,25.9412,4.05,5.3942,25.9898,4.0984,5.4474,26.1735,4.0315,5.3338,25.9918,4.1469,5.3211,25.9575,4.1294,5.2844,25.9835,4.0153,5.5967,26.4021,3.884,5.5758,26.3685,3.895,5.4854,26.2208,3.9926,5.5111,26.27,3.9485,5.5358,26.2724,3.976,5.4626,26.2196,3.9749,5.4786,26.3286,4.0407,5.4991,26.3546,4.0435,5.2955,26.3943,3.8336,5.2676,26.4057,3.8527,5.3931,26.4063,3.7988,5.3507,26.4012,3.8081,5.3308,26.437,3.8076,5.3238,26.4377,3.8105,5.331,26.4436,3.8125,5.2646,25.9274,4.0487,5.2712,26.0531,4.102,5.2719,26.0641,4.0977,5.2853,26.1188,4.0629,5.3498,25.9872,4.1464,5.305,25.9379,4.1143,5.3635,25.9178,4.0678,5.3177,26.4906,3.8984,5.2892,26.4865,3.8727,5.2817,26.4834,3.8779,5.3229,26.4926,3.8914,5.4254,26.4788,3.9598,5.3613,26.4965,3.916,5.3559,26.4947,3.9234,5.4288,26.481,3.9518,5.4099,26.4439,3.7901,5.4792,26.4362,3.799,5.4791,26.4309,3.7955,5.4117,26.4495,3.7942,5.5459,26.4105,3.8342,5.5945,26.4073,3.8857,5.5456,26.4157,3.8376,5.5601,26.4338,3.9906,5.5018,26.4556,3.9969,5.5641,26.4291,3.9997,5.5011,26.4591,3.9877,5.3325,26.4759,3.8704,5.3265,26.4619,3.8499,5.3869,26.4811,3.9052,5.3591,26.4794,3.8868,5.4351,26.4696,3.9308,5.4858,26.4543,3.9563,5.5291,26.4353,3.9603,5.5606,26.4183,3.9512,5.5553,26.4165,3.8872,5.5696,26.4079,3.9248,5.4706,26.4376,3.8218,5.5184,26.4232,3.8508,5.3649,26.4434,3.8273,5.4211,26.4469,3.8164,5.2387,26.3627,3.9091,5.2581,26.4152,3.8708,5.5468,26.325,3.8995,5.5266,26.3803,3.8445,5.5014,26.3408,3.8537,5.4463,26.3506,3.8218,5.4646,26.3954,3.8072,5.2919,26.4093,3.9496,5.2637,26.4348,3.8976,5.2422,26.3794,3.9332,5.3058,26.4543,3.9188,5.4299,26.448,3.9807,5.3483,26.4227,3.9774,5.4338,26.4092,4.0052,5.3523,26.4634,3.9472,5.514,26.3799,4.0371,5.571,26.3971,4.0179,5.5087,26.4215,4.0163,5.4933,26.3068,3.8884,5.5325,26.2954,3.9248,5.4823,26.275,3.9224,5.2405,26.3325,3.9431,5.2458,26.3542,3.9619,5.2942,26.3415,4.0034,5.2897,26.3759,3.9782,5.3125,26.0909,3.9998,5.2948,26.0365,4.0054,5.3956,26.0464,4.0362,5.3825,26.1022,4.0199,5.4007,26.1068,4.0306,5.437,26.1679,4.017,5.4166,26.1657,4.0039,5.2952,26.1208,4.0751,5.2797,26.2841,3.9555,5.4359,26.2215,3.9574,5.3632,26.0984,4.0106,5.394,26.164,3.9901,5.2557,25.9777,4.0364});
			return ldphal_Coord_6_128_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='ldphal2_Geo' coordIndex field, scene-graph level=5, element #133, 1888 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 getldphal2_Geo_5_133_coordIndex()
		{
			MFInt32 ldphal2_Geo_5_133_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getldphal2_Geo_5_133_coordIndex_1()))
				.append(new MFInt32(getldphal2_Geo_5_133_coordIndex_2()));
			return ldphal2_Geo_5_133_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='ldphal2_Coord' point field, scene-graph level=6, element #133, 714 total numbers made up of 238 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 getldphal2_Coord_6_133_point()
		{
			MFVec3f ldphal2_Coord_6_133_point = new MFVec3f(new double[] {5.6703,24.8933,4.1186,5.6758,24.882,4.112,5.7154,24.9026,4.1441,5.6208,24.8694,4.0863,5.628,24.8697,4.0923,5.6201,24.8821,4.0982,5.6727,24.9406,4.1061,5.6672,24.9221,4.1161,5.7077,24.9421,4.1403,5.7334,24.9093,4.0269,5.7337,24.8898,4.0337,5.7057,24.8917,3.9789,5.7017,24.8695,3.9869,5.8436,25.1142,4.2377,5.8258,25.0718,4.2622,5.8338,25.0727,4.2594,5.8381,25.1175,4.2359,5.9891,24.9094,4.1187,5.9896,24.9119,4.1172,5.9893,24.9143,4.1242,5.9441,25.0065,4.1536,5.9238,25.0193,4.1805,5.9451,24.9825,4.1596,5.8207,25.1076,4.2193,5.7801,25.0489,4.2424,5.805,25.0614,4.2532,5.8111,25.0807,4.196,5.8946,25.0195,4.2094,5.8911,25.0369,4.2068,5.8949,25.0522,4.1987,5.9075,25.0604,4.1904,5.9143,24.9928,4.1988,5.9019,25.0033,4.208,5.6081,24.8592,4.0046,5.6251,24.8545,3.9931,5.6221,24.8519,4.0108,5.6032,24.8716,3.9826,5.7713,24.8858,4.0635,5.7238,24.8705,4.0496,5.732,24.8755,4.0397,5.766,24.8747,4.0781,5.6651,24.9066,4.1231,5.771,24.9687,4.2093,5.7687,25.014,4.1897,5.7456,24.9942,4.1539,5.7423,24.956,4.1722,5.7643,24.9766,4.0614,5.721,24.9565,4.034,5.7524,24.9791,4.0751,5.7119,24.9626,4.0469,5.6127,24.9878,4.0057,5.6102,24.9781,4.0308,5.6258,24.983,4.0166,5.5671,24.9266,4.0249,5.5675,24.9119,4.0654,5.5707,24.9511,4.0266,5.576,24.9347,4.0613,5.5919,24.8696,4.0285,5.6144,24.8527,4.0357,5.595,24.865,4.0463,5.6213,24.8879,3.9443,5.653,24.8581,3.9524,5.6096,24.8766,3.9663,5.6355,24.8555,3.9782,5.5819,24.936,3.9635,5.5814,24.968,3.9844,5.5917,24.9646,3.9538,5.5788,24.9405,3.9828,5.6124,24.9262,4.101,5.6151,24.9025,4.103,5.6953,24.8533,4.0037,5.682,24.8462,4.0222,5.5813,24.9061,3.9792,5.6295,24.9866,3.9578,5.639,24.9776,4.0014,5.6541,24.979,3.9848,5.6157,24.9924,3.9818,5.6454,24.8462,4.033,5.657,24.8527,4.0717,5.6672,24.8497,4.05,5.6178,24.8613,4.0667,5.5956,24.8724,4.009,5.9411,24.9761,4.17,5.9339,24.9798,4.1795,5.9268,24.9835,4.1888,5.6402,24.9646,3.9406,5.6732,24.9431,3.9579,5.6649,24.9477,3.9357,5.6634,24.9633,3.973,5.7703,25.0335,4.2169,5.7977,25.0544,4.1797,5.9376,25.0484,4.1665,5.9446,25.0307,4.1597,5.6919,24.8664,4.0851,5.6816,24.8727,4.1031,5.6396,24.8624,4.0847,5.9222,25.0582,4.1775,5.6211,24.9468,4.0905,5.6845,24.9685,4.0891,5.6465,24.9753,4.0606,5.6928,24.9619,4.0022,5.6985,24.9502,3.9942,5.6498,24.9195,3.9228,5.6245,24.962,3.9278,5.7872,24.9956,4.2528,5.7948,24.9332,4.2354,5.8069,24.9475,4.2481,5.7752,24.9809,4.2339,5.5924,24.9839,3.9841,5.6048,24.9791,3.9519,5.8985,25.0085,4.0749,5.9402,25.0349,4.0755,5.9297,24.9291,4.067,5.8915,24.914,4.0752,5.6818,24.9703,4.0154,5.6708,24.9757,4.0301,5.6478,24.8933,3.93,5.6672,24.8736,3.9432,5.5824,24.968,4.026,5.589,24.9532,4.0536,5.5974,24.9296,3.9496,5.7303,24.887,4.1337,5.7485,24.8767,4.1181,5.7309,24.9353,4.0189,5.77,24.9476,4.0467,5.7022,24.9692,4.0605,5.7385,24.9827,4.0908,5.8277,25.037,4.12,5.8456,25.03,4.0999,5.8077,25.0023,4.0845,5.792,25.0019,4.1002,5.8885,25.0997,4.1215,5.9197,25.0806,4.0952,5.8849,25.0606,4.095,5.8575,25.0695,4.1191,5.5831,24.8755,4.0526,5.5805,24.8859,4.019,5.6736,24.8455,4.0363,5.706,24.8654,4.0701,5.7152,24.8671,4.0597,5.681,24.9271,3.9459,5.8765,25.1395,4.2121,5.864,25.1207,4.1828,5.7859,25.0269,4.1656,5.8056,25.0349,4.1407,5.7576,25.0024,4.1367,5.7741,25.0026,4.1182,5.7258,24.9848,4.1062,5.6926,24.9739,4.0745,5.9615,24.92,4.0937,5.9597,24.9546,4.0854,5.9649,25.0075,4.0896,5.9652,25.0432,4.0991,5.8498,25.0994,4.1496,5.9852,24.9792,4.1082,5.9861,24.977,4.1016,5.986,24.9841,4.1016,5.6379,24.9038,3.9266,5.7716,24.9044,4.0541,5.6663,24.8443,4.0306,5.5746,24.889,4.0583,5.586,24.8885,3.9916,5.5726,24.9012,4.0216,5.6118,24.952,3.9298,5.9794,24.8982,4.1507,5.9553,24.9007,4.1788,5.9774,24.8903,4.1495,5.959,24.9084,4.1774,5.9377,24.9192,4.2054,5.8962,24.9388,4.2378,5.9338,24.9109,4.2071,5.9009,24.9466,4.2355,5.9657,25.1007,4.1457,5.9863,25.0524,4.1202,5.9657,25.1043,4.1409,5.9856,25.0495,4.1262,5.8785,25.1355,4.2152,5.9203,25.1333,4.1732,5.9208,25.1294,4.1778,5.8644,24.9774,4.2625,5.8362,25.0197,4.2701,5.858,24.9713,4.2659,5.8437,25.0235,4.2665,5.9679,24.9461,4.1393,5.9599,24.9333,4.1602,5.9309,24.9479,4.198,5.9453,24.9406,4.1792,5.8809,24.9877,4.2367,5.9059,24.9666,4.2183,5.8663,25.0201,4.2395,5.8593,25.0549,4.2343,5.8667,25.0853,4.2182,5.892,25.1016,4.2017,5.9524,25.0775,4.1538,5.9215,25.0971,4.1757,5.9657,24.9935,4.1275,5.9665,25.0417,4.1399,5.9576,24.8991,4.1061,5.9218,24.8875,4.0918,5.9055,25.1176,4.1491,5.9442,25.0933,4.1196,5.9289,24.8883,4.1697,5.9134,24.8672,4.116,5.9474,24.8794,4.1338,5.8983,24.8739,4.1593,5.8719,24.9281,4.2333,5.876,24.882,4.1982,5.9068,24.8978,4.2035,5.8442,24.9144,4.2269,5.8345,24.9604,4.2577,5.8138,25.0087,4.2622,5.8265,25.0685,4.1443,5.8914,24.884,4.0917,5.8612,24.8673,4.1212,5.86,24.8875,4.0977,5.8875,24.8638,4.1175,5.8562,24.9786,4.0834,5.8723,24.867,4.1551,5.8461,24.8673,4.1494,5.8252,24.9014,4.2155,5.8309,24.8711,4.1769,5.8528,24.8733,4.1894,5.8089,24.8968,4.1975,5.788,24.9253,4.2157,5.7082,24.93,3.9791,5.6588,24.9811,4.0448,5.8132,24.8748,4.1005,5.8039,24.8757,4.1234,5.7574,24.8743,4.098,5.7539,24.9164,4.1773,5.7723,24.8949,4.1645,5.8147,24.889,4.0833,5.794,24.8794,4.1468,5.8548,24.9159,4.083,5.8116,24.9104,4.0719,5.8116,24.9619,4.0685,5.7171,24.9789,4.1208,5.676,24.8931,3.9405});
			return ldphal2_Coord_6_133_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='ldphal3_Geo' coordIndex field, scene-graph level=5, element #138, 1888 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 getldphal3_Geo_5_138_coordIndex()
		{
			MFInt32 ldphal3_Geo_5_138_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getldphal3_Geo_5_138_coordIndex_1()))
				.append(new MFInt32(getldphal3_Geo_5_138_coordIndex_2()));
			return ldphal3_Geo_5_138_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='ldphal3_Coord' point field, scene-graph level=6, element #138, 714 total numbers made up of 238 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 getldphal3_Coord_6_138_point()
		{
			MFVec3f ldphal3_Coord_6_138_point = new MFVec3f(new double[] {5.2889,24.7715,3.077,5.2919,24.7631,3.0655,5.344,24.7705,3.0954,5.2271,24.7613,3.0486,5.2362,24.7593,3.0528,5.2306,24.769,3.0645,5.292,24.8212,3.0812,5.2874,24.7999,3.0854,5.3385,24.8097,3.1074,5.3321,24.8199,2.982,5.3326,24.7988,2.9815,5.2898,24.8213,2.9362,5.286,24.7972,2.9369,5.5285,24.9365,3.2363,5.5113,24.8871,3.2477,5.519,24.889,3.2436,5.5228,24.9404,3.2371,5.6288,24.7835,3.0184,5.6292,24.7864,3.0178,5.6308,24.7861,3.0253,5.5998,24.8636,3.0957,5.5865,24.8661,3.13,5.5997,24.8386,3.0925,5.4992,24.9373,3.2212,5.4558,24.8732,3.2302,5.4861,24.8808,3.2397,5.4796,24.9203,3.191,5.5632,24.8559,3.1636,5.5608,24.8736,3.1683,5.5645,24.8912,3.1654,5.5766,24.9019,3.1579,5.5783,24.8342,3.1397,5.5687,24.841,3.1549,5.1924,24.7819,2.9701,5.2068,24.7815,2.9539,5.2078,24.7724,2.9704,5.183,24.8019,2.9548,5.3801,24.7837,3.001,5.3247,24.7747,2.9919,5.3312,24.783,2.9826,5.3773,24.7677,3.0121,5.2859,24.7826,3.0872,5.3807,24.8711,3.0328,5.3252,24.8625,3.008,5.3718,24.8685,3.0492,5.3194,24.8636,3.0244,5.2089,24.9041,3.0157,5.2115,24.8856,3.0365,5.2244,24.8953,3.0213,5.1613,24.8392,3.0221,5.1711,24.8101,3.0556,5.1677,24.8618,3.0317,5.1804,24.8333,3.0577,5.1825,24.7831,2.9999,5.2062,24.7641,2.996,5.19,24.7722,3.0146,5.1941,24.8314,2.9206,5.2267,24.7997,2.9111,5.1861,24.8127,2.9398,5.2141,24.7879,2.938,5.1623,24.8707,2.9643,5.1699,24.8935,2.9956,5.1731,24.9014,2.9634,5.164,24.8679,2.9847,5.2821,24.7756,2.9485,5.2722,24.7621,2.9663,5.1627,24.8363,2.9686,5.2151,24.9205,2.9668,5.2335,24.8956,3.0021,5.2455,24.9029,2.9837,5.207,24.9173,2.9944,5.2368,24.7585,2.9844,5.2593,24.7503,3.0208,5.264,24.7554,2.9969,5.2183,24.7608,3.0277,5.1817,24.793,2.9816,5.5975,24.8286,3.1008,5.5926,24.8287,3.1126,5.5878,24.8289,3.1242,5.2198,24.9057,2.9403,5.2555,24.8784,2.9415,5.2426,24.8912,2.9244,5.2507,24.8922,2.9649,5.4367,24.8679,3.202,5.4577,24.9013,3.1683,5.6007,24.8989,3.1246,5.6044,24.8845,3.1101,5.3,24.758,3.0309,5.2947,24.7574,3.0525,5.2455,24.7549,3.0404,5.5884,24.9044,3.1417,5.2351,24.8334,3.0797,5.3025,24.854,3.0725,5.256,24.8714,3.0558,5.2881,24.8797,2.9856,5.2909,24.8714,2.9727,5.2217,24.8693,2.9056,5.2008,24.9082,2.931,5.4599,24.8184,3.219,5.4564,24.7651,3.178,5.474,24.774,3.1928,5.4404,24.8114,3.198,5.1829,24.9087,2.9987,5.1877,24.9158,2.9641,5.5323,24.8952,3.0314,5.5801,24.9198,3.0333,5.5556,24.8221,2.989,5.5151,24.8051,2.9987,5.2806,24.883,3.0034,5.2734,24.8828,3.0217,5.219,24.8416,2.9035,5.2404,24.8177,2.9048,5.1811,24.878,3.0345,5.1932,24.8536,3.0539,5.1743,24.8695,2.9455,5.3555,24.7594,3.0768,5.3696,24.7551,3.0545,5.3298,24.8478,2.9842,5.38,24.8488,3.0072,5.3134,24.865,3.0416,5.3616,24.8663,3.0682,5.4713,24.9064,3.0986,5.4844,24.9071,3.0733,5.4364,24.8866,3.0558,5.4236,24.8806,3.0737,5.5443,24.9652,3.1113,5.5685,24.9563,3.073,5.529,24.9377,3.0723,5.5071,24.9375,3.104,5.1804,24.78,3.0269,5.1698,24.8024,2.9992,5.2669,24.7564,2.9811,5.3108,24.7625,3.0133,5.3179,24.7678,3.0021,5.2596,24.8676,2.9231,5.5591,24.9697,3.2143,5.5366,24.9628,3.1822,5.4379,24.8804,3.1469,5.453,24.897,3.122,5.3969,24.868,3.1157,5.4093,24.8749,3.0948,5.3526,24.8628,3.0863,5.3076,24.8644,3.0587,5.5949,24.8031,3.0044,5.5944,24.8393,3.0094,5.6065,24.8881,3.0315,5.613,24.9186,3.0534,5.5106,24.9548,3.1457,5.6291,24.854,3.0344,5.6283,24.8544,3.0272,5.6289,24.8611,3.0299,5.2088,24.853,2.9062,5.3795,24.8048,2.9985,5.2579,24.7574,2.9769,5.1744,24.7909,3.0391,5.1689,24.8149,2.973,5.1637,24.8161,3.0088,5.2272,24.8101,3.0844,5.1872,24.8981,2.9321,5.622,24.754,3.043,5.6112,24.7611,3.0796,5.607,24.7533,3.079,5.6251,24.7611,3.0465,5.5925,24.7528,3.1139,5.5688,24.7767,3.1606,5.5637,24.7684,3.161,5.5969,24.7613,3.1145,5.6309,24.9562,3.1181,5.6409,24.9193,3.072,5.6301,24.9615,3.1149,5.6412,24.9144,3.0767,5.5614,24.9648,3.2153,5.5942,24.9777,3.1658,5.5953,24.9723,3.1686,5.5408,24.7965,3.2052,5.5181,24.8344,3.2338,5.5345,24.7896,3.2076,5.5254,24.8392,3.2302,5.615,24.8111,3.0554,5.6104,24.7912,3.0722,5.5908,24.7915,3.1192,5.6005,24.7913,3.0958,5.5524,24.8156,3.1809,5.5716,24.8021,3.1505,5.5415,24.8457,3.1984,5.5368,24.881,3.2078,5.544,24.9158,3.2021,5.5681,24.9372,3.1871,5.6163,24.9313,3.1201,5.5918,24.9423,3.1545,5.6237,24.902,3.0909,5.6148,24.8607,3.0619,5.5493,24.7733,2.9991,5.5917,24.7787,3.0094,5.5712,24.9718,3.1405,5.6016,24.9591,3.0954,5.576,24.7451,3.0716,5.5445,24.745,3.0164,5.5859,24.7498,3.0307,5.5399,24.7356,3.0629,5.5362,24.7602,3.158,5.527,24.7292,3.1074,5.5622,24.7419,3.1116,5.5041,24.7499,3.1528,5.4916,24.8271,3.2271,5.5068,24.7824,3.2008,5.4804,24.9276,3.1339,5.5164,24.7704,3.0038,5.4901,24.7438,3.0318,5.4845,24.7718,3.0169,5.517,24.7416,3.0219,5.4856,24.864,3.0367,5.5106,24.7308,3.0618,5.4813,24.7335,3.0617,5.4799,24.7418,3.1412,5.4728,24.7272,3.0924,5.4995,24.7244,3.1006,5.4573,24.7442,3.1257,5.443,24.765,3.1577,5.4278,24.8089,3.1707,5.4249,24.8594,3.1688,5.2959,24.8577,2.9494,5.2652,24.8826,3.0402,5.4339,24.759,3.0242,5.43,24.7516,3.0482,5.3735,24.76,3.0326,5.3953,24.771,3.1245,5.4093,24.755,3.1007,5.4321,24.779,3.0124,5.4261,24.7466,3.0738,5.4777,24.8043,3.014,5.4277,24.8036,3.0098,5.4319,24.854,3.025,5.3855,24.8108,3.1361,5.388,24.854,3.1317,5.3468,24.8518,3.1,5.2504,24.8372,2.9071,5.2285,24.7868,3.0774});
			return ldphal3_Coord_6_138_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='ldphal4_Geo' coordIndex field, scene-graph level=5, element #143, 1888 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 getldphal4_Geo_5_143_coordIndex()
		{
			MFInt32 ldphal4_Geo_5_143_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getldphal4_Geo_5_143_coordIndex_1()))
				.append(new MFInt32(getldphal4_Geo_5_143_coordIndex_2()));
			return ldphal4_Geo_5_143_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='ldphal4_Coord' point field, scene-graph level=6, element #143, 714 total numbers mad