package net.coderextreme.data;
import org.web3d.x3d.jsail.*;
import org.web3d.x3d.jsail.CADGeometry.*;
import org.web3d.x3d.jsail.Core.*;
import org.web3d.x3d.jsail.CubeMapTexturing.*;
import org.web3d.x3d.jsail.DIS.*;
import org.web3d.x3d.jsail.EnvironmentalEffects.*;
import org.web3d.x3d.jsail.EnvironmentalSensor.*;
import org.web3d.x3d.jsail.EventUtilities.*;
import org.web3d.x3d.jsail.Followers.*;
import org.web3d.x3d.jsail.Geometry2D.*;
import org.web3d.x3d.jsail.Geometry3D.*;
import org.web3d.x3d.jsail.Geospatial.*;
import org.web3d.x3d.jsail.Grouping.*;
import org.web3d.x3d.jsail.HAnim.*;
import org.web3d.x3d.jsail.Interpolation.*;
import org.web3d.x3d.jsail.KeyDeviceSensor.*;
import org.web3d.x3d.jsail.Layering.*;
import org.web3d.x3d.jsail.Layout.*;
import org.web3d.x3d.jsail.Lighting.*;
import org.web3d.x3d.jsail.NURBS.*;
import org.web3d.x3d.jsail.Navigation.*;
import org.web3d.x3d.jsail.Networking.*;
import org.web3d.x3d.jsail.ParticleSystems.*;
import org.web3d.x3d.jsail.Picking.*;
import org.web3d.x3d.jsail.PointingDeviceSensor.*;
import org.web3d.x3d.jsail.Rendering.*;
import org.web3d.x3d.jsail.RigidBodyPhysics.*;
import org.web3d.x3d.jsail.Scripting.*;
import org.web3d.x3d.jsail.Shaders.*;
import org.web3d.x3d.jsail.Shape.*;
import org.web3d.x3d.jsail.Sound.*;
import org.web3d.x3d.jsail.Text.*;
import org.web3d.x3d.jsail.Texturing3D.*;
import org.web3d.x3d.jsail.Texturing.*;
import org.web3d.x3d.jsail.Time.*;
import org.web3d.x3d.jsail.VolumeRendering.*;
import org.web3d.x3d.jsail.fields.*;
import java.util.ArrayList;
import java.util.List;
import net.coderextreme.X3DRoots;
public class CatByMuru implements X3DRoots {
  public static void main(String[] args) {
    ConfigurationProperties.setXsltEngine(ConfigurationProperties.XSLT_ENGINE_NATIVE_JAVA);
    ConfigurationProperties.setDeleteIntermediateFiles(false);
    ConfigurationProperties.setStripTrailingZeroes(true);
    ConfigurationProperties.setStripDefaultAttributes(true);
    X3D model = new CatByMuru().getRootNodeList().get(0); // only get one root node
    System.out.print(model.validationReport().trim());
    model.toFileX3D("../data/CatByMuru.new.java.x3d");
    model.toFileJSON("../data/CatByMuru.new.java.x3dj");
    }
    public List<X3D> getRootNodeList() {
    	List<X3D> list = new ArrayList<X3D>(1);
    	list.add(initialize());
    	return list;
    }
    public X3D initialize() {
      X3D X3D0 =  new X3D().setProfile(new SFString("Immersive")).setVersion(new SFString("4.1"))
      .setHead(new head()
        .addComponent(new component().setName(new SFString("Shape")).setLevel(2))
        .addComponent(new component().setName(new SFString("Rendering")).setLevel(5))
        .addMeta(new meta().setName(new SFString("title")).setContent(new SFString("CatByMuru.x3d")))
        .addMeta(new meta().setName(new SFString("description")).setContent(new SFString("Converted glTF model showing use of Tangent node for advanced Physically Based Modeling (PBR) effects. Tangent is developmental in X3D version 4.1 draft specification.")))
        .addMeta(new meta().setName(new SFString("created")).setContent(new SFString("31 December 2020")))
        .addMeta(new meta().setName(new SFString("converted")).setContent(new SFString("10 July 2025")))
        .addMeta(new meta().setName(new SFString("modified")).setContent(new SFString("10 January 2026")))
        .addMeta(new meta().setName(new SFString("creator")).setContent(new SFString("Muru, https://www.artstation.com/sujian")))
        .addMeta(new meta().setName(new SFString("reference")).setContent(new SFString("https://github.com/castle-engine/demo-models/tree/master/bump_mapping/tangents")))
        .addMeta(new meta().setName(new SFString("reference")).setContent(new SFString("https://sketchfab.com/3d-models/cat-16c3444c8d1440fc97fdf10f60ec58b0")))
        .addMeta(new meta().setName(new SFString("source")).setContent(new SFString("CatByMuruScene.gltf")))
        .addMeta(new meta().setName(new SFString("source")).setContent(new SFString("https://github.com/castle-engine/demo-models/tree/master/bump_mapping/tangents/cat-16c3444c8d1440fc97fdf10f60ec58b0")))
        .addMeta(new meta().setName(new SFString("Image")).setContent(new SFString("CatByMuruScene_screenshot_castle_model_viewer.png")))
        .addMeta(new meta().setName(new SFString("license")).setContent(new SFString("CatByMuruSceneLicense.txt")))
        .addMeta(new meta().setName(new SFString("license")).setContent(new SFString("CC-BY-4.0 http://creativecommons.org/licenses/by/4.0/")))
        .addMeta(new meta().setName(new SFString("reference")).setContent(new SFString("https://khronos/gltf")))
        .addMeta(new meta().setName(new SFString("reference")).setContent(new SFString("https://en.wikipedia.org/glTF")))
        .addMeta(new meta().setName(new SFString("generator")).setContent(new SFString("castle-model-viewer, https://castle-engine.io/castle-model-viewer")))
        .addMeta(new meta().setName(new SFString("generator")).setContent(new SFString("X3D-Edit 4.0, https://www.web3d.org/x3d/tools/X3D-Edit")))
        .addMeta(new meta().setName(new SFString("specificationSection")).setContent(new SFString("X3D 4.1 Architecture, ISO/IEC 19775-1:202x, 11 Rendering component, 11.4.13 Tangent")))
        .addMeta(new meta().setName(new SFString("specificationUrl")).setContent(new SFString("https://www.web3d.org/specifications/X3Dv4Draft/ISO-IEC19775-1v4.1-CD/Part01/components/rendering.html#Tangent")))
        .addMeta(new meta().setName(new SFString("identifier")).setContent(new SFString("https://www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/GltfSampleModels/CatByMuru.x3d")))
        .addMeta(new meta().setName(new SFString("license")).setContent(new SFString("https://www.web3d.org/x3d/content/examples/license.html")))
        .addMeta(new meta().setName(new SFString("generator")).setContent(new SFString("X3DJSAIL https://www.web3d.org/specifications/java/X3DJSAIL.html"))))
      .setScene(new Scene()
        .addChild(new WorldInfo().setTitle(new SFString("CatByMuru.x3d")))
        .addChild(new Background().setSkyColor(new MFColor0().getArray()))
        .addChild(new PointLight().setDEF(new SFString("LightenThingsUp")).setLocation(new float[] {0f ,3f ,6f }))
        .addChild(new Viewpoint().setDEF(new SFString("OpeningView")).setDescription(new SFString("Cat by Maru conversion from SketchFab to glTF to X3D")).setPosition(new float[] {0f ,0.6f ,5f }))
        .addChild(new Transform().setDEF(new SFString("Sketchfab_model")).setRotation(new float[] {-1f ,0f ,0f ,1.5707963f })
          .addChild(new Transform().setDEF(new SFString("CastleEncoded_Pose_scene_46_fbx")).setRotation(new float[] {1f ,0f ,0f ,1.5707963f })
            .addChild(new Transform().setDEF(new SFString("RootNode"))
              .addChild(new Transform().setDEF(new SFString("headModel"))
                .addChild(new Transform().setDEF(new SFString("head_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("head_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("head_lambert2_0_Primitive0")).setBboxCenter(new float[] {0f ,1.1182153f ,0.010965019f }).setBboxSize(new float[] {1.2585641f ,0.9631852f ,0.9510488f })
                      .setAppearance(new Appearance().setDEF(new SFString("lambert2")).setAlphaMode(new SFString("OPAQUE"))
                        .setTextureTransform(new TextureTransform().setDEF(new SFString("FlipVertical")).setScale(new float[] {1f ,-1f }).setTranslation(new float[] {0f ,-1f }))
                        .setMaterial(new PhysicalMaterial().setBaseTextureMapping(new SFString("TEXCOORD_0")).setMetallicRoughnessTextureMapping(new SFString("TEXCOORD_0")).setNormalTextureMapping(new SFString("TEXCOORD_0")).setOcclusionTextureMapping(new SFString("TEXCOORD_0"))
                          .setOcclusionTexture(new ImageTexture().setUrl(new MFString1().getArray())
                            .addComments(new CommentsBlock("flipVertical='true'"))
                            .setTextureProperties(new TextureProperties().setDEF(new SFString("AveragePixel")).setGenerateMipMaps(true).setMagnificationFilter(new SFString("AVG_PIXEL")).setMinificationFilter(new SFString("AVG_PIXEL_AVG_MIPMAP"))))
                          .setOcclusionTexture(new ImageTexture().setDEF(new SFString("MetallicRoughness")).setUrl(new MFString2().getArray())
                            .addComments(new CommentsBlock("flipVertical='true'"))
                            .setTextureProperties(new TextureProperties().setUSE(new SFString("AveragePixel"))))
                          .setOcclusionTexture(new ImageTexture().setUrl(new MFString3().getArray())
                            .addComments(new CommentsBlock("flipVertical='true'"))
                            .setTextureProperties(new TextureProperties().setUSE(new SFString("AveragePixel"))))
                          .setOcclusionTexture(new ImageTexture().setUSE(new SFString("MetallicRoughness")))))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt324().getArray().append(new MFInt325().getArray()).append(new MFInt326().getArray()).append(new MFInt327().getArray())).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f8().getArray().append(new MFVec3f9().getArray())))
                        .setNormal(new Normal().setVector(new MFVec3f10().getArray().append(new MFVec3f11().getArray())))
                        .setTangent(new Tangent().setVector(new MFVec4f12().getArray().append(new MFVec4f13().getArray()).append(new MFVec4f14().getArray())))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f15().getArray().append(new MFVec2f16().getArray())))))))))
              .addChild(new Transform().setDEF(new SFString("torso"))
                .addChild(new Transform().setDEF(new SFString("polySurface4"))
                  .addChild(new Transform().setDEF(new SFString("polySurface4_lambert2_0"))
                    .addChild(new Group().setDEF(new SFString("polySurface4_lambert2_1"))
                      .addChild(new Shape().setDEF(new SFString("polySurface4_lambert2_0_Primitive0")).setBboxCenter(new float[] {0f ,0.022523463f ,0.054077893f }).setBboxSize(new float[] {0.9722276f ,1.1641115f ,0.6969903f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3217().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f18().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f19().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f20().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f21().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("polySurface5")).setTranslation(new float[] {0f ,0.0943406f ,-0.010145962f })
                  .addChild(new Transform().setDEF(new SFString("polySurface5_lambert2_0"))
                    .addChild(new Group().setDEF(new SFString("polySurface5_lambert2_1"))
                      .addChild(new Shape().setDEF(new SFString("polySurface5_lambert2_0_Primitive0")).setBboxCenter(new float[] {-0.17056528f ,-0.037723754f ,0.3266586f }).setBboxSize(new float[] {0.34113055f ,0.29685637f ,0.15182886f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3222().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f23().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f24().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f25().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f26().getArray())))))))))
              .addChild(new Transform().setDEF(new SFString("token1")).setRotation(new float[] {0.6039326f ,0.4331038f ,0.66909486f ,0.19925927f }).setTranslation(new float[] {0.006833289f ,0.046988785f ,-0.05926623f })
                .addChild(new Transform().setDEF(new SFString("token1_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("token1_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("token1_lambert2_0_Primitive0")).setBboxCenter(new float[] {-0.025646769f ,0.30564907f ,0.32469505f }).setBboxSize(new float[] {0.11151911f ,0.12638825f ,0.07073733f })
                      .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3227().getArray()).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f28().getArray()))
                        .setNormal(new Normal().setVector(new MFVec3f29().getArray()))
                        .setTangent(new Tangent().setVector(new MFVec4f30().getArray()))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f31().getArray()))))))))
              .addChild(new Transform().setDEF(new SFString("token2"))
                .addChild(new Transform().setDEF(new SFString("token2_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("token2_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("token2_lambert2_0_Primitive0")).setBboxCenter(new float[] {0.025646769f ,0.30564907f ,0.32469505f }).setBboxSize(new float[] {0.11151911f ,0.12638825f ,0.07073733f })
                      .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3232().getArray()).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f33().getArray()))
                        .setNormal(new Normal().setVector(new MFVec3f34().getArray()))
                        .setTangent(new Tangent().setVector(new MFVec4f35().getArray()))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f36().getArray()))))))))
              .addChild(new Transform().setDEF(new SFString("eyes"))
                .addChild(new Transform().setDEF(new SFString("eyes_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("eyes_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("eyes_lambert2_0_Primitive0")).setBboxCenter(new float[] {0f ,0.9886312f ,0.35902876f }).setBboxSize(new float[] {0.6239903f ,0.16978037f ,0.117905974f })
                      .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3237().getArray()).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f38().getArray()))
                        .setNormal(new Normal().setVector(new MFVec3f39().getArray()))
                        .setTangent(new Tangent().setVector(new MFVec4f40().getArray()))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f41().getArray()))))))))
              .addChild(new Transform().setDEF(new SFString("bag"))
                .addChild(new Transform().setDEF(new SFString("bag_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("bag_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("bag_lambert2_0_Primitive0")).setBboxCenter(new float[] {0f ,-0.41379064f ,0.3247386f }).setBboxSize(new float[] {0.56199455f ,0.39347386f ,0.1767717f })
                      .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3242().getArray()).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f43().getArray()))
                        .setNormal(new Normal().setVector(new MFVec3f44().getArray()))
                        .setTangent(new Tangent().setVector(new MFVec4f45().getArray()))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f46().getArray()))))))))
              .addChild(new Transform().setDEF(new SFString("glasses"))
                .addChild(new Transform().setDEF(new SFString("glasses_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("glasses_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("glasses_lambert2_0_Primitive0")).setBboxCenter(new float[] {0f ,0.48621643f ,0.25212124f }).setBboxSize(new float[] {0.6840171f ,0.3387859f ,0.19120623f })
                      .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3247().getArray()).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f48().getArray()))
                        .setNormal(new Normal().setVector(new MFVec3f49().getArray()))
                        .setTangent(new Tangent().setVector(new MFVec4f50().getArray()))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f51().getArray()))))))))
              .addChild(new Transform().setDEF(new SFString("tube"))
                .addChild(new Transform().setDEF(new SFString("tube_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("tube_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("tube_lambert2_0_Primitive0")).setBboxCenter(new float[] {-0.21928704f ,-0.38584232f ,0.24780884f }).setBboxSize(new float[] {0.52778745f ,0.48546982f ,0.5195282f })
                      .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3252().getArray()).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f53().getArray()))
                        .setNormal(new Normal().setVector(new MFVec3f54().getArray()))
                        .setTangent(new Tangent().setVector(new MFVec4f55().getArray()))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f56().getArray()))))))))
              .addChild(new Transform().setDEF(new SFString("ring"))
                .addChild(new Transform().setDEF(new SFString("ring_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("ring_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("ring_lambert2_0_Primitive0")).setBboxCenter(new float[] {0f ,-0.160575f ,0.41670147f }).setBboxSize(new float[] {0.18658239f ,0.12935656f ,0.017154276f })
                      .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3257().getArray()).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f58().getArray()))
                        .setNormal(new Normal().setVector(new MFVec3f59().getArray()))
                        .setTangent(new Tangent().setVector(new MFVec4f60().getArray()))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f61().getArray()))))))))
              .addChild(new Transform().setDEF(new SFString("tail")).setRotation(new float[] {0.26184407f ,-0.17727791f ,0.9486887f ,1.9223686f }).setTranslation(new float[] {-0.3034334f ,-0.72215825f ,-0.051197503f })
                .addChild(new Transform().setDEF(new SFString("tail_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("tail_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("tail_lambert2_0_Primitive0")).setBboxCenter(new float[] {-0.015489876f ,0.0031029582f ,-0.7017957f }).setBboxSize(new float[] {0.5946194f ,0.94446385f ,0.82327056f })
                      .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3262().getArray()).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f63().getArray()))
                        .setNormal(new Normal().setVector(new MFVec3f64().getArray()))
                        .setTangent(new Tangent().setVector(new MFVec4f65().getArray()))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f66().getArray()))))))))
              .addChild(new Transform().setDEF(new SFString("scarf"))
                .addChild(new Transform().setDEF(new SFString("scarf_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("scarf_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("scarf_lambert2_0_Primitive0")).setBboxCenter(new float[] {0f ,0.5819483f ,0.021083072f }).setBboxSize(new float[] {0.7067938f ,0.23573467f ,0.52555907f })
                      .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3267().getArray()).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f68().getArray()))
                        .setNormal(new Normal().setVector(new MFVec3f69().getArray()))
                        .setTangent(new Tangent().setVector(new MFVec4f70().getArray()))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f71().getArray()))))))))
              .addChild(new Transform().setDEF(new SFString("dress"))
                .addChild(new Transform().setDEF(new SFString("polySurface1"))
                  .addChild(new Transform().setDEF(new SFString("polySurface6"))
                    .addChild(new Transform().setDEF(new SFString("polySurface6_lambert2_0"))
                      .addChild(new Group().setDEF(new SFString("polySurface6_lambert2_1"))
                        .addChild(new Shape().setDEF(new SFString("polySurface6_lambert2_0_Primitive0")).setBboxCenter(new float[] {0.049242556f ,0.036761224f ,0.008216158f }).setBboxSize(new float[] {1.5648896f ,1.4889677f ,0.9276724f })
                          .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                          .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3272().getArray().append(new MFInt3273().getArray()).append(new MFInt3274().getArray()).append(new MFInt3275().getArray())).setSolid(false)
                            .setCoord(new Coordinate().setPoint(new MFVec3f76().getArray().append(new MFVec3f77().getArray()).append(new MFVec3f78().getArray())))
                            .setNormal(new Normal().setVector(new MFVec3f79().getArray().append(new MFVec3f80().getArray()).append(new MFVec3f81().getArray())))
                            .setTangent(new Tangent().setVector(new MFVec4f82().getArray().append(new MFVec4f83().getArray()).append(new MFVec4f84().getArray()).append(new MFVec4f85().getArray())))
                            .setTexCoord(new MultiTextureCoordinate()
                              .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f86().getArray().append(new MFVec2f87().getArray())))))))))
                  .addChild(new Transform().setDEF(new SFString("polySurface7")).setTranslation(new float[] {-0.0006133765f ,0.017866751f ,0.008241703f })
                    .addChild(new Transform().setDEF(new SFString("polySurface7_lambert2_0"))
                      .addChild(new Group().setDEF(new SFString("polySurface7_lambert2_1"))
                        .addChild(new Shape().setDEF(new SFString("polySurface7_lambert2_0_Primitive0")).setBboxCenter(new float[] {0.31516987f ,0.14819466f ,0.39807782f }).setBboxSize(new float[] {0.15265946f ,0.2006579f ,0.13072902f })
                          .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                          .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3288().getArray()).setSolid(false)
                            .setCoord(new Coordinate().setPoint(new MFVec3f89().getArray()))
                            .setNormal(new Normal().setVector(new MFVec3f90().getArray()))
                            .setTangent(new Tangent().setVector(new MFVec4f91().getArray()))
                            .setTexCoord(new MultiTextureCoordinate()
                              .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f92().getArray())))))))))
                .addChild(new Transform().setDEF(new SFString("polySurface2")).setScale(new float[] {0.5653541f ,0.5653541f ,0.5653541f }).setTranslation(new float[] {-0.13662225f ,-0.22767556f ,0.19908942f })
                  .addChild(new Transform().setDEF(new SFString("polySurface2_lambert2_0"))
                    .addChild(new Group().setDEF(new SFString("polySurface2_lambert2_1"))
                      .addChild(new Shape().setDEF(new SFString("polySurface2_lambert2_0_Primitive0")).setBboxCenter(new float[] {-0.31643677f ,-0.3667103f ,0.41138643f }).setBboxSize(new float[] {0.18148865f ,0.20494741f ,0.12133187f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3293().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f94().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f95().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f96().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f97().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("polySurface3")).setScale(new float[] {0.5653541f ,0.5653541f ,0.5653541f }).setTranslation(new float[] {-0.11810917f ,-0.04175537f ,0.18899019f })
                  .addChild(new Transform().setDEF(new SFString("polySurface3_lambert2_0"))
                    .addChild(new Group().setDEF(new SFString("polySurface3_lambert2_1"))
                      .addChild(new Shape().setDEF(new SFString("polySurface3_lambert2_0_Primitive0")).setBboxCenter(new float[] {-0.31643677f ,-0.3667103f ,0.41138643f }).setBboxSize(new float[] {0.18148865f ,0.20494741f ,0.12133187f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt3298().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f99().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f100().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f101().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f102().getArray())))))))))
              .addChild(new Transform().setDEF(new SFString("armband"))
                .addChild(new Transform().setDEF(new SFString("armband_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("armband_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("armband_lambert2_0_Primitive0")).setBboxCenter(new float[] {-0.57332623f ,0.16790341f ,-0.0765675f }).setBboxSize(new float[] {0.2556053f ,0.23705533f ,0.29410872f })
                      .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32103().getArray()).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f104().getArray()))
                        .setNormal(new Normal().setVector(new MFVec3f105().getArray()))
                        .setTangent(new Tangent().setVector(new MFVec4f106().getArray()))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f107().getArray()))))))))
              .addChild(new Transform().setDEF(new SFString("ring_band"))
                .addChild(new Transform().setDEF(new SFString("ring_band_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("ring_band_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("ring_band_lambert2_0_Primitive0")).setBboxCenter(new float[] {0f ,-0.013752174f ,0.37756467f }).setBboxSize(new float[] {0.14236796f ,0.18614823f ,0.08663437f })
                      .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32108().getArray()).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f109().getArray()))
                        .setNormal(new Normal().setVector(new MFVec3f110().getArray()))
                        .setTangent(new Tangent().setVector(new MFVec4f111().getArray()))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f112().getArray()))))))))
              .addChild(new Transform().setDEF(new SFString("boots"))
                .addChild(new Transform().setDEF(new SFString("boots_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("boots_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("boots_lambert2_0_Primitive0")).setBboxCenter(new float[] {0f ,-0.7049269f ,0.13233985f }).setBboxSize(new float[] {0.9519459f ,0.3220762f ,0.58306074f })
                      .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32113().getArray().append(new MFInt32114().getArray())).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f115().getArray()))
                        .setNormal(new Normal().setVector(new MFVec3f116().getArray()))
                        .setTangent(new Tangent().setVector(new MFVec4f117().getArray().append(new MFVec4f118().getArray())))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f119().getArray()))))))))
              .addChild(new Transform().setDEF(new SFString("ear_hair"))
                .addChild(new Transform().setDEF(new SFString("ear_hair_lambert2_0"))
                  .addChild(new Group().setDEF(new SFString("ear_hair_lambert2_1"))
                    .addChild(new Shape().setDEF(new SFString("ear_hair_lambert2_0_Primitive0")).setBboxCenter(new float[] {-5.9604645e-8f ,1.4840882f ,0.043489516f }).setBboxSize(new float[] {0.9572753f ,0.20112431f ,0.053607583f })
                      .setAppearance(new Appearance().setUSE(new SFString("lambert2")))
                      .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32120().getArray()).setSolid(false)
                        .setCoord(new Coordinate().setPoint(new MFVec3f121().getArray()))
                        .setNormal(new Normal().setVector(new MFVec3f122().getArray()))
                        .setTangent(new Tangent().setVector(new MFVec4f123().getArray()))
                        .setTexCoord(new MultiTextureCoordinate()
                          .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f124().getArray()))))))))
              .addChild(new Transform().setDEF(new SFString("locator1")).setRotation(new float[] {0.20889941f ,-0.9758205f ,-0.0643087f ,0.8551302f }).setTranslation(new float[] {0.33690828f ,-0.22996704f ,-0.3073421f })
                .addChild(new Transform().setDEF(new SFString("pCube31"))
                  .addChild(new Transform().setDEF(new SFString("pCube31_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube31_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube31_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.9973309f ,-0.02509451f ,0.015933074f }).setBboxSize(new float[] {0.102261126f ,0.101638794f ,0.024524996f })
                        .setAppearance(new Appearance().setDEF(new SFString("lambert3")).setAlphaMode(new SFString("OPAQUE"))
                          .setTextureTransform(new TextureTransform().setUSE(new SFString("FlipVertical")))
                          .setMaterial(new PhysicalMaterial().setBaseTextureMapping(new SFString("TEXCOORD_0")).setMetallicRoughnessTextureMapping(new SFString("TEXCOORD_0")).setNormalTextureMapping(new SFString("TEXCOORD_0"))
                            .setOcclusionTexture(new ImageTexture().setUrl(new MFString125().getArray())
                              .addComments(new CommentsBlock("flipVertical='true'"))
                              .setTextureProperties(new TextureProperties().setUSE(new SFString("AveragePixel"))))
                            .setOcclusionTexture(new ImageTexture().setUrl(new MFString126().getArray())
                              .addComments(new CommentsBlock("flipVertical='true'"))
                              .setTextureProperties(new TextureProperties().setUSE(new SFString("AveragePixel"))))
                            .setOcclusionTexture(new ImageTexture().setUrl(new MFString127().getArray())
                              .addComments(new CommentsBlock("flipVertical='true'"))
                              .setTextureProperties(new TextureProperties().setUSE(new SFString("AveragePixel"))))))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32128().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f129().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f130().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f131().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f132().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube32"))
                  .addChild(new Transform().setDEF(new SFString("pCube32_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube32_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube32_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.7362683f ,-0.078639984f ,0.015933072f }).setBboxSize(new float[] {0.29831976f ,0.14399433f ,0.022697318f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32133().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f134().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f135().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f136().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f137().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube33"))
                  .addChild(new Transform().setDEF(new SFString("pCube33_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube33_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube33_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.5727056f ,0.0844543f ,0.015933074f }).setBboxSize(new float[] {0.076934576f ,0.056143284f ,0.07371192f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32138().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f139().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f140().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f141().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f142().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube30"))
                  .addChild(new Transform().setDEF(new SFString("pCube30_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube30_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube30_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.6897973f ,-0.0928247f ,0.015933074f }).setBboxSize(new float[] {0.18800133f ,0.014431477f ,0.051370338f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32143().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f144().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f145().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f146().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f147().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube27"))
                  .addChild(new Transform().setDEF(new SFString("pCube27_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube27_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube27_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.87296635f ,0.0015757084f ,0.01593307f }).setBboxSize(new float[] {0.1632489f ,0.03379011f ,0.03194437f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32148().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f149().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f150().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f151().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f152().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube23"))
                  .addChild(new Transform().setDEF(new SFString("pCube23_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube23_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube23_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.8010615f ,-0.011079788f ,0.015932966f }).setBboxSize(new float[] {0.04878068f ,0.19888878f ,0.114288755f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32153().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f154().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f155().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f156().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f157().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube22"))
                  .addChild(new Transform().setDEF(new SFString("pCube22_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube22_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube22_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.49471503f ,-0.092090845f ,0.015933074f }).setBboxSize(new float[] {0.20386073f ,0.1181941f ,0.07052313f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32158().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f159().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f160().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f161().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f162().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCylinder6"))
                  .addChild(new Transform().setDEF(new SFString("pCylinder6_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCylinder6_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCylinder6_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.6993264f ,0.0069522858f ,0.015582077f }).setBboxSize(new float[] {0.12997174f ,0.1236105f ,0.13846485f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32163().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f164().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f165().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f166().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f167().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube25"))
                  .addChild(new Transform().setDEF(new SFString("pCube25_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube25_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube25_lambert3_0_Primitive0")).setBboxCenter(new float[] {-0.89526427f ,0.0070507526f ,0.015933078f }).setBboxSize(new float[] {0.12240535f ,0.19484472f ,0.13279471f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32168().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f169().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f170().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f171().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f172().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube24"))
                  .addChild(new Transform().setDEF(new SFString("pCube24_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube24_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube24_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.6869166f ,0.08705926f ,0.015933074f }).setBboxSize(new float[] {0.07072395f ,0.061353207f ,0.07371192f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32173().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f174().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f175().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f176().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f177().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube19"))
                  .addChild(new Transform().setDEF(new SFString("pCube19_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube19_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube19_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.023091763f ,0.41808283f ,-0.025400221f }).setBboxSize(new float[] {1.6250722f ,0.6683104f ,0.11354709f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32178().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f179().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f180().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f181().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f182().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube17"))
                  .addChild(new Transform().setDEF(new SFString("pCube17_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube17_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube17_lambert3_0_Primitive0")).setBboxCenter(new float[] {1.0682355f ,0.0014224052f ,0.015933074f }).setBboxSize(new float[] {0.056156635f ,0.28877068f ,0.096287325f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32183().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f184().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f185().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f186().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f187().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube21"))
                  .addChild(new Transform().setDEF(new SFString("pCube21_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube21_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube21_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.82840765f ,0.100940704f ,-0.022948697f }).setBboxSize(new float[] {0.043559074f ,0.039165497f ,0.055618495f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32188().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f189().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f190().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f191().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f192().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube20"))
                  .addChild(new Transform().setDEF(new SFString("pCube20_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube20_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube20_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.83956915f ,0.081840515f ,-0.02819699f }).setBboxSize(new float[] {0.07356751f ,0.049250603f ,0.012958407f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32193().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f194().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f195().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f196().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f197().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube16"))
                  .addChild(new Transform().setDEF(new SFString("pCube16_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube16_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube16_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.9219762f ,0.046004295f ,0.015933072f }).setBboxSize(new float[] {0.2716151f ,0.05977249f ,0.056507755f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32198().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f199().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f200().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f201().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f202().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube15"))
                  .addChild(new Transform().setDEF(new SFString("pCube15_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube15_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube15_lambert3_0_Primitive0")).setBboxCenter(new float[] {-0.042258203f ,0.008764744f ,0.01593297f }).setBboxSize(new float[] {1.6612861f ,0.14676476f ,0.10885523f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32203().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f204().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f205().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f206().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f207().getArray())))))))))
              .addChild(new Transform().setDEF(new SFString("wea_on")).setRotation(new float[] {-0.35694927f ,-0.43905374f ,0.8245108f ,0.25801635f }).setScale(new float[] {1f ,0.99999994f ,1f }).setTranslation(new float[] {-0.59417856f ,-0.13411887f ,0.36961198f })
                .addChild(new Transform().setDEF(new SFString("pCylinder2")).setTranslation(new float[] {-0.0023021805f ,0.16498992f ,3.2722332f })
                  .addChild(new Transform().setDEF(new SFString("pCylinder2_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCylinder2_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCylinder2_lambert3_0_Primitive0")).setBboxCenter(new float[] {-1.6205013e-7f ,0.06162104f ,-3.2708902f }).setBboxSize(new float[] {0.094214156f ,1.9496686f ,0.08906555f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32208().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f209().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f210().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f211().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f212().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCylinder4")).setTranslation(new float[] {-0.0023021805f ,0.16498992f ,3.2722332f })
                  .addChild(new Transform().setDEF(new SFString("pCylinder4_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCylinder4_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCylinder4_lambert3_0_Primitive0")).setBboxCenter(new float[] {-3.7252903e-9f ,1.2746029f ,-3.2746959f }).setBboxSize(new float[] {0.18721932f ,0.17805636f ,0.113521576f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32213().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f214().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f215().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f216().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f217().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCube34")).setRotation(new float[] {0.5502614f ,-0.09790803f ,-0.8292324f ,0.9526592f }).setScale(new float[] {1.5071636f ,0.45479387f ,1f }).setTranslation(new float[] {-1.2304044f ,-0.4804507f ,2.5599842f })
                  .addChild(new Transform().setDEF(new SFString("pCube34_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCube34_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCube34_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.01870934f ,-0.11965692f ,-3.1587381f }).setBboxSize(new float[] {0.33185512f ,2.6496687f ,0.5687375f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32218().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f219().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f220().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f221().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f222().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCylinder7")).setTranslation(new float[] {0.06677446f ,0.15938765f ,3.2722332f })
                  .addChild(new Transform().setDEF(new SFString("pCylinder7_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCylinder7_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCylinder7_lambert3_0_Primitive0")).setBboxCenter(new float[] {-0.16949934f ,1.2284845f ,-3.2650056f }).setBboxSize(new float[] {0.15001969f ,0.14416742f ,0.08708501f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32223().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f224().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f225().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f226().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f227().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("polySurface58")).setTranslation(new float[] {-0.0023021805f ,0.16498992f ,3.2722332f })
                  .addChild(new Transform().setDEF(new SFString("polySurface58_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("polySurface58_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("polySurface58_lambert3_0_Primitive0")).setBboxCenter(new float[] {0f ,1.5904846f ,-3.2749639f }).setBboxSize(new float[] {0.20110838f ,0.53936756f ,0.050325155f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32228().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f229().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f230().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f231().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f232().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("pCylinder3")).setTranslation(new float[] {-0.0023021805f ,0.16498992f ,3.2722332f })
                  .addChild(new Transform().setDEF(new SFString("pCylinder3_lambert3_0"))
                    .addChild(new Group().setDEF(new SFString("pCylinder3_lambert3_1"))
                      .addChild(new Shape().setDEF(new SFString("pCylinder3_lambert3_0_Primitive0")).setBboxCenter(new float[] {-3.7252903e-9f ,1.1111603f ,-3.2746959f }).setBboxSize(new float[] {0.15717262f ,0.1494801f ,0.1460619f })
                        .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                        .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32233().getArray()).setSolid(false)
                          .setCoord(new Coordinate().setPoint(new MFVec3f234().getArray()))
                          .setNormal(new Normal().setVector(new MFVec3f235().getArray()))
                          .setTangent(new Tangent().setVector(new MFVec4f236().getArray()))
                          .setTexCoord(new MultiTextureCoordinate()
                            .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f237().getArray()))))))))
                .addChild(new Transform().setDEF(new SFString("locator2")).setRotation(new float[] {0.19899915f ,0.95505226f ,-0.21971512f ,0.8010925f }).setScale(new float[] {1f ,0.99999994f ,1f }).setTranslation(new float[] {-0.3577003f ,0.9291848f ,-0.14117523f })
                  .addChild(new Transform().setDEF(new SFString("pCube14")).setRotation(new float[] {-0.35694927f ,-0.43905374f ,0.8245108f ,0.25801635f }).setScale(new float[] {1f ,0.99999994f ,1f }).setTranslation(new float[] {-0.19041543f ,-0.37330797f ,2.7639315f })
                    .addChild(new Transform().setDEF(new SFString("pCube14_lambert3_0"))
                      .addChild(new Group().setDEF(new SFString("pCube14_lambert3_1"))
                        .addChild(new Shape().setDEF(new SFString("pCube14_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.026809216f ,0.5222777f ,-2.7031724f }).setBboxSize(new float[] {0.7575691f ,0.4702232f ,0.6194267f })
                          .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                          .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32238().getArray()).setSolid(false)
                            .setCoord(new Coordinate().setPoint(new MFVec3f239().getArray()))
                            .setNormal(new Normal().setVector(new MFVec3f240().getArray()))
                            .setTangent(new Tangent().setVector(new MFVec4f241().getArray()))
                            .setTexCoord(new MultiTextureCoordinate()
                              .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f242().getArray()))))))))
                  .addChild(new Transform().setDEF(new SFString("polySurface8")).setRotation(new float[] {-0.35694927f ,-0.43905374f ,0.8245108f ,0.25801635f }).setScale(new float[] {1f ,0.99999994f ,1f }).setTranslation(new float[] {-0.19041543f ,-0.37330797f ,2.7639315f })
                    .addChild(new Transform().setDEF(new SFString("polySurface8_lambert3_0"))
                      .addChild(new Group().setDEF(new SFString("polySurface8_lambert3_1"))
                        .addChild(new Shape().setDEF(new SFString("polySurface8_lambert3_0_Primitive0")).setBboxCenter(new float[] {0.18289793f ,0.8397287f ,-2.6692457f }).setBboxSize(new float[] {0.2773044f ,0.332547f ,0.64719224f })
                          .setAppearance(new Appearance().setUSE(new SFString("lambert3")))
                          .setGeometry(new IndexedTriangleSet().setIndex(new MFInt32243().getArray()).setSolid(false)
                            .setCoord(new Coordinate().setPoint(new MFVec3f244().getArray()))
                            .setNormal(new Normal().setVector(new MFVec3f245().getArray()))
                            .setTangent(new Tangent().setVector(new MFVec4f246().getArray()))
                            .setTexCoord(new MultiTextureCoordinate()
                              .addTexCoord(new TextureCoordinate().setMapping(new SFString("TEXCOORD_0")).setPoint(new MFVec2f247().getArray()))))))))))))));
    return X3D0;
    }
private class MFColor0 {
  private org.web3d.x3d.jsail.fields.MFColor getArray() {
    return new org.web3d.x3d.jsail.fields.MFColor(new float[] {0.3f ,0.3f ,0.3f });
  }
}
private class MFString1 {
  private org.web3d.x3d.jsail.fields.MFString getArray() {
    return new org.web3d.x3d.jsail.fields.MFString(new java.lang.String[] {"textures/lambert2_baseColor.png","https://www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/GltfSampleModels/textures/lambert2_baseColor.png"});
  }
}
private class MFString2 {
  private org.web3d.x3d.jsail.fields.MFString getArray() {
    return new org.web3d.x3d.jsail.fields.MFString(new java.lang.String[] {"textures/lambert2_metallicRoughness.png","https://www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/GltfSampleModels/textures/lambert2_metallicRoughness.png"});
  }
}
private class MFString3 {
  private org.web3d.x3d.jsail.fields.MFString getArray() {
    return new org.web3d.x3d.jsail.fields.MFString(new java.lang.String[] {"textures/lambert2_normal.png","https://www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/GltfSampleModels/textures/lambert2_normal.png"});
  }
}
private class MFInt324 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,2,4,0,5,6,7,7,6,8,9,10,11,11,10,12,13,14,15,15,14,16,17,18,19,19,18,20,21,22,23,23,22,24,25,26,27,27,26,28,29,30,31,31,30,32,33,34,35,35,34,36,37,38,39,39,38,40,34,41,42,42,41,43,44,7,45,45,7,46,47,48,49,49,48,11,50,51,52,52,51,42,53,26,54,54,26,55,34,42,36,36,42,51,49,11,56,56,11,12,57,58,59,60,61,62,62,61,63,64,65,15,15,65,13,66,67,68,68,67,14,69,17,70,70,17,19,71,72,45,45,72,44,33,73,34,34,73,41,40,74,39,39,74,75,7,8,46,46,8,76,9,11,77,77,11,48,78,52,43,43,52,42,79,80,81,81,80,82,83,84,85,85,84,86,87,88,89,89,88,90,91,92,93,93,92,94,95,96,97,96,98,97,97,98,99,100,101,102,102,101,103,95,104,105,105,104,106,107,108,109,109,108,110,62,63,111,111,63,112,113,114,16,16,114,15,115,113,116,116,113,16,117,69,118,119,120,121,121,120,122,74,123,75,75,123,124,41,73,45,45,73,71,43,41,46,46,41,45,78,43,76,76,43,46,125,9,126,126,9,77,127,128,125,125,128,9,129,130,131,131,130,119,132,133,134,134,133,135,114,136,15,15,136,64,23,137,21,21,137,138,23,24,139,139,24,140,141,142,143,143,142,144,6,127,8,8,127,125,76,8,126,126,8,125,77,78,126,126,78,76,52,78,48,48,78,77,50,52,47,47,52,48,145,138,115,115,138,113,19,146,147,147,146,148,20,149,19,19,149,146,114,150,136,136,150,151,150,114,152,152,114,113,153,137,154,154,137,23,154,23,155,155,23,139,156,157,158,158,157,159,160,158,161,161,158,159,160,161,162,162,161,151,162,151,163,163,151,150,164,163,152,152,163,150,165,153,166,166,153,154,167,168,104,104,168,106,166,154,169,169,154,155,170,171,158,158,171,156,172,170,160,160,170,158,172,160,173,173,160,162,173,162,174,174,162,163,175,174,164,164,174,163,165,175,153,153,175,164,153,164,137,137,164,152,137,152,138,138,152,113,95,97,176,177,178,94,94,178,179,180,181,93,181,182,93,183,100,184,184,100,102,93,94,180,180,94,179,182,185,93,93,185,91,186,2,187,187,2,3,2,186,4,188,189,190,190,189,191,192,193,194,194,193,195,196,197,198,198,197,199,200,201,18,18,201,20,202,203,22,22,203,24,204,205,206,206,205,207,208,209,210,210,209,211,36,212,35,35,212,213,37,214,38,38,214,215,212,216,217,217,216,218,219,220,221,221,220,222,193,223,49,49,223,47,216,51,224,224,51,50,205,204,54,54,204,53,212,36,216,216,36,51,49,225,193,193,225,195,188,226,189,227,198,228,228,198,199,229,230,196,196,230,197,201,200,231,231,200,232,233,234,235,235,234,236,237,221,238,238,221,222,213,212,239,239,212,217,240,241,214,214,241,215,242,243,219,219,243,220,223,193,244,244,193,192,245,218,224,224,218,216,246,247,248,248,247,249,250,251,252,252,251,253,252,253,254,254,253,255,256,257,258,258,257,259,98,260,261,261,260,262,261,263,98,98,263,99,264,265,266,266,265,267,262,260,268,268,260,269,233,196,270,270,196,198,271,229,233,233,229,196,232,272,231,231,272,273,274,275,276,276,275,277,278,279,280,280,279,281,237,239,221,221,239,217,221,217,219,219,217,218,219,218,242,242,218,245,282,283,192,192,283,244,284,285,194,194,285,192,286,287,288,288,287,289,290,291,292,292,291,293,294,295,296,296,295,297,140,24,298,298,24,203,299,300,301,301,300,302,302,300,303,303,300,304,227,305,306,306,305,307,228,308,227});
  }
}
private class MFInt325 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {227,308,305,309,310,191,191,310,190,242,283,243,243,283,282,244,283,245,245,283,242,244,245,223,223,245,224,223,224,47,47,224,50,311,271,235,235,271,233,20,201,149,149,201,312,313,314,315,315,314,299,299,314,300,300,314,316,233,270,234,234,270,317,262,318,319,319,318,320,321,322,236,236,322,203,262,268,318,318,268,323,322,324,203,203,324,298,320,325,319,319,325,326,327,328,325,325,328,326,327,329,328,328,329,330,329,331,330,330,331,317,332,234,331,331,234,317,333,320,334,334,320,318,322,321,335,335,321,336,337,323,338,338,323,324,324,322,338,338,322,335,320,333,325,325,333,339,325,339,327,327,339,340,329,327,341,341,327,340,331,329,342,342,329,341,331,342,332,332,342,343,332,343,321,321,343,336,321,236,332,332,236,234,235,236,202,202,236,203,262,319,344,344,319,345,346,347,259,259,347,258,348,349,259,259,349,346,350,351,352,352,351,353,265,264,352,352,264,350,108,354,110,110,354,355,356,257,357,357,257,358,359,109,360,360,109,110,143,144,361,361,144,362,143,361,363,363,361,364,314,313,365,365,313,345,314,365,316,316,365,366,269,105,140,140,105,139,269,140,268,268,140,298,324,323,298,298,323,268,95,105,260,260,105,269,95,260,96,96,260,98,261,262,263,356,348,257,257,348,259,178,177,349,349,177,346,103,101,367,367,101,368,267,367,266,266,367,368,362,161,361,361,161,159,361,159,364,364,159,157,369,258,370,370,258,347,365,345,326,326,345,319,366,365,328,328,365,326,371,370,372,372,370,347,346,177,347,347,177,372,373,374,353,353,374,352,227,375,198,198,375,270,376,362,377,377,362,144,306,366,378,378,366,328,379,380,381,381,380,382,383,384,382,382,384,381,385,386,383,383,386,384,293,387,292,292,387,388,275,274,389,389,274,390,279,237,281,281,237,238,237,279,239,239,279,240,214,213,240,240,213,239,73,33,75,75,33,39,71,73,124,124,73,75,72,71,391,391,71,124,90,392,29,29,392,393,393,394,29,29,394,30,395,396,133,133,396,135,118,397,117,117,397,398,70,399,400,400,399,401,402,311,202,202,311,235,402,202,403,403,202,22,404,403,21,21,403,22,404,21,145,145,21,138,69,70,118,118,70,400,401,397,400,400,397,118,14,67,16,16,67,116,405,272,232,386,385,406,406,385,407,197,230,406,406,230,386,393,392,122,122,392,408,120,394,122,122,394,393,389,390,208,208,390,209,387,246,388,388,246,248,58,5,44,44,5,7,84,89,32,32,89,31,188,409,226,410,251,411,411,251,250,412,131,413,413,131,414,26,25,55,55,25,415,289,287,416,416,287,417,136,151,418,418,151,161,270,375,317,317,375,330,306,307,366,366,307,316,419,62,377,377,62,111,420,303,421,421,303,422,64,136,376,376,136,418,305,423,307,307,423,304,424,425,426,426,425,427,428,429,430,141,428,142,142,428,430,307,304,316,316,304,300,431,60,419,419,60,62,9,128,10,10,128,432,423,305,433,433,305,308,310,309,284,284,309,285,142,419,144,144,419,377,430,431,142,142,431,419,430,429,431,303,304,422,422,304,423,428,141,434,434,141,435,420,301,302,80,436,82,82,436,437,438,86,32,32,86,84,89,90,31,31,90,29,129,131,439,439,131,412,134,135,440,440,135,441,414,121,408,408,121,122,392,90,442,442,90,88,80,79,396,396,79,443,396,443,135,135,443,441,89,84,87,87,84,83,131,119,414,414,119,121,247,246,444,444,246,445,210,211,410,410,211,251,253,446,255,255,446,447,276,277,287,287,277,417,291,448,293,293,448,449,286,294,450,450,294,451,387,293,452,452,293,449,294,296,451,451,296,453,255,447,296,296,447,453,246,387,445});
  }
}
private class MFInt326 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {445,387,452,454,28,53,53,28,26,204,455,53,53,455,454,455,204,456,456,204,206,120,119,457,457,119,130,457,458,120,120,458,394,30,394,459,459,394,458,32,30,438,438,30,459,287,286,276,276,286,450,451,274,450,450,274,276,274,451,390,390,451,453,209,390,447,447,390,453,211,209,446,446,209,447,251,211,253,253,211,446,408,392,460,460,392,442,296,297,255,255,297,254,177,94,372,372,94,92,257,256,358,358,256,315,461,313,256,256,313,315,374,373,427,427,373,426,109,359,3,3,359,187,1,107,3,3,107,109,91,185,141,141,185,435,363,91,143,143,91,141,462,371,92,92,371,372,374,359,352,352,359,360,359,374,187,187,374,427,425,186,427,427,186,187,425,424,463,434,464,428,428,464,429,1,0,465,465,0,466,107,1,467,467,1,465,108,107,184,184,107,467,35,213,37,37,213,214,35,37,33,33,37,39,57,5,58,57,468,5,5,468,6,127,6,469,469,6,468,469,432,127,127,432,128,226,222,189,189,222,220,189,220,191,191,220,243,282,309,243,243,309,191,309,282,285,285,282,192,470,471,472,472,471,473,474,475,476,476,475,477,475,472,477,477,472,473,478,479,480,480,479,481,482,483,478,478,483,479,484,480,485,485,480,481,486,484,487,487,484,485,486,487,470,470,487,471,488,474,489,489,474,476,488,489,482,482,489,483,179,178,470,349,486,178,178,486,470,349,348,486,486,348,484,348,356,484,484,356,480,480,356,357,482,478,350,478,351,350,264,266,482,266,368,488,368,101,488,101,100,474,100,183,474,180,472,181,475,181,472,180,179,472,472,179,470,473,471,490,490,471,491,477,490,476,476,490,492,477,473,490,481,479,493,479,483,493,493,483,494,481,493,485,485,493,495,485,495,487,487,495,496,471,487,491,491,487,496,476,492,489,489,492,497,483,489,494,494,489,497,490,498,492,492,498,497,496,495,498,498,495,493,497,498,494,494,498,493,490,491,498,498,491,496,357,358,351,353,351,358,315,373,358,358,373,353,426,373,299,299,373,315,183,184,181,181,184,182,184,467,182,182,467,185,435,185,465,465,185,467,466,0,464,464,0,4,499,49,56,499,225,49,4,186,463,463,186,425,301,424,299,299,424,426,424,301,463,463,301,420,434,435,466,466,435,465,466,464,434,116,67,500,500,67,66,501,115,500,500,115,116,148,145,501,501,145,115,146,404,148,148,404,145,149,403,146,146,403,404,149,312,403,403,312,402,312,379,402,402,379,311,379,381,311,311,381,271,381,384,271,271,384,229,229,384,230,230,384,386,323,337,318,318,337,334,168,169,106,106,169,155,155,139,106,106,139,105,91,363,92,92,363,462,95,176,157,157,176,364,95,157,104,104,157,156,171,167,156,156,167,104,258,369,256,256,369,461,262,344,263,363,364,462,462,364,176,371,462,97,97,462,176,370,371,99,99,371,97,263,369,99,99,369,370,369,263,461,461,263,344,313,461,345,345,461,344,502,265,360,360,265,352,503,267,502,502,267,265,184,102,108,108,102,354,360,110,502,502,110,503,355,354,103,103,354,102,355,103,504,504,103,367,503,504,267,267,504,367,110,355,504,503,110,504,357,351,480,351,478,480,474,183,475,475,183,181,350,264,482,488,101,474,266,488,482,376,418,362,362,418,161,111,112,64,64,112,65,375,378,330,330,378,328,377,111,376,376,111,64,378,375,306,306,375,227,399,147,501,501,147,148,401,399,500,500,399,501,500,66,401,401,66,397,398,397,68,68,397,66,396,395,80,80,395,436,201,231,380,380,231,382,231,273,382,382,273,383,272,385,273,273,385,383,407,385,405,405,385,272,19,147,70,70,147,399,201,380,312,312,380,379,60,431,61,61,431,429,433,421,423});
  }
}
private class MFInt327 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {423,421,422,294,286,295,295,286,288,241,278,207,207,278,280,215,241,205,205,241,207,215,205,38,38,205,54,40,38,55,55,38,54,40,55,74,74,55,415,505,123,415,415,123,74,408,460,414,414,460,413,123,505,124,124,505,391,279,278,240,240,278,241,302,303,420});
  }
}
private class MFVec3f8 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.069718935f ,0.658507f ,0.31684637f ,0.057933643f ,0.6836452f ,0.3590293f ,5.551115e-17f ,0.6564514f ,0.31655645f ,5.551115e-17f ,0.67574465f ,0.3588168f ,5.551115e-17f ,0.6366228f ,0.053936347f ,0.5991853f ,1.1269332f ,-0.019469228f ,0.6243724f ,0.9710658f ,-0.048276376f ,0.56401426f ,1.1145475f ,-0.15425056f ,0.5483586f ,0.95419025f ,-0.18753871f ,0.47820222f ,0.76171494f ,-0.16268629f ,0.44286492f ,0.69656414f ,0.051765963f ,0.21653236f ,0.7215654f ,-0.16307193f ,0.2617731f ,0.6615695f ,0.05404289f ,0.5876247f ,1.1292704f ,0.10400692f ,0.5323136f ,1.270672f ,0.10109502f ,0.50992894f ,1.1079109f ,0.22468732f ,0.4521944f ,1.2289023f ,0.22544192f ,0.12846471f ,1.523871f ,0.11261967f ,5.551115e-17f ,1.5281767f ,0.13588428f ,0.12695064f ,1.4740527f ,0.2028843f ,-4.0649817e-9f ,1.4867799f ,0.20949246f ,0.12648745f ,1.2174501f ,0.3829528f ,-1.4112213e-10f ,1.1951056f ,0.39366448f ,0.13073829f ,1.1137388f ,0.39645952f ,5.551115e-17f ,1.0986121f ,0.39736134f ,0.27154276f ,1.5161445f ,0.002151996f ,0.1416778f ,1.5400271f ,0.016365677f ,0.27634662f ,1.5089495f ,0.03023959f ,0.12846471f ,1.523871f ,0.11261967f ,0.5635104f ,1.5507528f ,0.0115784705f ,0.5684264f ,1.5520971f ,0.036245026f ,0.58032507f ,1.5041922f ,0.005950898f ,0.5862065f ,1.496363f ,0.044098236f ,0.18151829f ,1.4224365f ,-0.33086807f ,0.18831433f ,1.2796736f ,-0.40323108f ,5.551115e-17f ,1.4375551f ,-0.3497098f ,5.551115e-17f ,1.2810746f ,-0.435346f ,2.915499e-10f ,1.495636f ,-0.2710041f ,5.551115e-17f ,1.5439229f ,-0.17343955f ,0.17467286f ,1.4842861f ,-0.24961768f ,0.16782957f ,1.5255265f ,-0.15954795f ,0.34889948f ,1.2765709f ,-0.3474297f ,0.18534267f ,1.136855f ,-0.44217843f ,0.3638264f ,1.1137921f ,-0.38420027f ,0.53738064f ,1.3148934f ,-0.055205032f ,0.46403748f ,1.2772614f ,-0.22802272f ,0.4662544f ,1.1110085f ,-0.27738822f ,5.551115e-17f ,0.7834298f ,-0.3521431f ,0.18888342f ,0.7954f ,-0.3236466f ,5.551115e-17f ,0.683366f ,-0.17053029f ,5.551115e-17f ,0.9314515f ,-0.44722778f ,5.551115e-17f ,1.1401342f ,-0.46455938f ,0.18092974f ,0.93670815f ,-0.4168343f ,5.551115e-17f ,1.5522758f ,0.026725031f ,-5.810343e-11f ,1.557249f ,-0.07167091f ,0.15839337f ,1.538563f ,-0.06830751f ,0.13352183f ,0.6493473f ,0.053990692f ,0.5876247f ,1.1292704f ,0.10400692f ,0.5597173f ,1.2568893f ,0.073744f ,0.5323136f ,1.270672f ,0.10109502f ,0.4440539f ,0.71961915f ,0.24979277f ,0.44286492f ,0.69656414f ,0.051765963f ,0.5000321f ,0.75895154f ,0.23630373f ,0.56464636f ,0.7692386f ,0.07947573f ,0.5484386f ,0.9498383f ,0.2307251f ,0.62364215f ,0.97391975f ,0.10612257f ,0.46712667f ,1.3637459f ,0.10787363f ,0.49600607f ,1.3216479f ,0.13937688f ,0.49002334f ,1.3343782f ,0.02672556f ,0.27634662f ,1.5089495f ,0.03023959f ,0.27138925f ,1.4752388f ,0.12567373f ,0.45082095f ,1.3743318f ,-0.20888996f ,0.49921146f ,1.3691628f ,-0.11339861f ,0.31978813f ,1.3948861f ,-0.29331815f ,0.27609694f ,1.4939741f ,-0.15022081f ,0.28090534f ,1.4588395f ,-0.22283706f ,0.44343308f ,0.950781f ,-0.29178023f ,0.3312581f ,0.81376576f ,-0.28299302f ,0.34386373f ,0.9450832f ,-0.36970085f ,0.5535587f ,1.5463322f ,0.042438507f ,0.5291849f ,1.4407516f ,0.022028953f ,0.56846035f ,1.4956105f ,0.04938475f ,0.5766637f ,1.431702f ,0.06425676f ,0.5597173f ,1.2568893f ,0.073744f ,0.5928699f ,1.4272504f ,0.055794075f ,0.5323136f ,1.270672f ,0.10109502f ,0.5766637f ,1.431702f ,0.06425676f ,0.53738064f ,1.3148934f ,-0.055205032f ,0.49921146f ,1.3691628f ,-0.11339861f ,0.5792995f ,1.4491098f ,-0.015817493f ,0.54016006f ,1.4759891f ,-0.062179465f ,0.13135888f ,0.7449036f ,0.4175828f ,0.09056421f ,0.76337504f ,0.45360678f ,0.10083641f ,0.731765f ,0.42674243f ,0.068504766f ,0.74306506f ,0.44805872f ,0.097165965f ,0.91589f ,0.43402332f ,0.05891133f ,0.8636314f ,0.46951443f ,0.0692172f ,0.84939384f ,0.46685332f ,5.551115e-17f ,0.86798644f ,0.48648942f ,5.551115e-17f ,0.8135571f ,0.48094088f ,0.06234749f ,0.7319632f ,0.44534653f ,0.024204345f ,0.74579936f ,0.45840997f ,0.052562594f ,0.7215957f ,0.44236398f ,0.019008618f ,0.7334865f ,0.4574582f ,0.13804135f ,0.95246756f ,0.3991844f ,0.0708649f ,0.97373855f ,0.4107796f ,0.1251681f ,0.9901063f ,0.39961737f ,0.05249034f ,0.69111633f ,0.38745618f ,0.045051523f ,0.6979048f ,0.41783935f ,5.551115e-17f ,0.6841069f ,0.3887087f ,-0.00005746637f ,0.6924562f ,0.41661608f ,0.5535904f ,0.83722645f ,0.232542f ,0.62928206f ,0.8571758f ,0.101979375f ,0.35402882f ,1.2032871f ,0.32243532f ,0.4222725f ,1.0870048f ,0.32907927f ,0.32375383f ,1.3168983f ,0.2941174f ,0.41108507f ,1.3170414f ,0.22879867f ,0.36801594f ,1.4562578f ,-0.010144502f ,0.36837962f ,1.4575902f ,0.06313662f ,0.40758723f ,1.5940545f ,0.0217385f ,0.4795413f ,1.599808f ,0.030773312f ,0.4248048f ,1.5913776f ,-0.01373364f ,0.48559108f ,1.5925438f ,0.005439922f ,0.355151f ,1.468093f ,-0.1442762f ,0.38510814f ,1.4430566f ,-0.18648502f ,0.5268908f ,0.8501079f ,-0.18256584f ,0.45050088f ,0.8644195f ,-0.26495546f ,0.6168848f ,0.8506704f ,-0.055684496f ,0.55739504f ,0.7670785f ,-0.050124027f ,0.3487272f ,1.5601351f ,0.031329714f ,0.4084295f ,1.5855994f ,0.032190897f ,0.34706664f ,1.5653145f ,0.018138804f ,0.27634662f ,1.5089495f ,0.03023959f ,0.36801594f ,1.4562578f ,-0.010144502f ,0.3487272f ,1.5601351f ,0.031329714f ,0.4189287f ,1.5121202f ,-0.0075955763f ,0.44915733f ,0.9882033f ,0.33217633f ,0.22549623f ,1.1353595f ,0.4016382f ,0.24474326f ,1.2302113f ,0.37884557f ,0.08337423f ,1.0404704f ,0.3997572f ,-8.444558e-11f ,1.0451057f ,0.40109938f ,0.18274136f ,0.7309229f ,0.37534684f ,0.31531605f ,0.725821f ,0.3329854f ,0.19544253f ,0.76250386f ,0.3894143f ,0.31833327f ,0.771713f ,0.36879706f ,0.22449371f ,1.318199f ,0.34465247f ,0.12797877f ,1.3929306f ,0.30383128f ,0.20524158f ,1.4376143f ,0.23186307f ,0.21245787f ,1.3848494f ,0.29275078f ,1.9037716e-10f ,1.4053324f ,0.31272244f ,0.36003113f ,1.0622302f ,0.3817724f ,0.35765907f ,0.96857435f ,0.39345032f ,0.30996394f ,1.1205608f ,0.39502096f ,0.21899965f ,1.0808184f ,0.40650433f ,0.171146f ,1.0681546f ,0.405833f ,0.13091351f ,1.0232093f ,0.3986627f ,0.15968165f ,0.92396545f ,0.40230805f ,0.14382976f ,0.892134f ,0.42095518f ,0.20560859f ,0.9062902f ,0.40376437f ,0.18814398f ,0.845952f ,0.4074586f ,0.26737788f ,0.92173445f ,0.4084863f ,0.30137292f ,0.88456154f ,0.406511f ,0.3052259f ,0.96752053f ,0.4015584f ,0.31298527f ,1.0379694f ,0.3983701f ,0.27475747f ,1.0719074f ,0.4025098f ,0.22292988f ,1.0173663f ,0.41632086f ,0.18947816f ,1.0155067f ,0.41442174f ,0.17255358f ,0.97075284f ,0.40322787f ,0.16312267f ,0.992211f ,0.40022027f ,0.16050272f ,1.0139765f ,0.39891046f ,0.21635658f ,0.9494906f ,0.41329622f ,0.18734363f ,0.9569555f ,0.4095224f ,0.24442244f ,0.95485365f ,0.41539556f ,0.27018282f ,0.9793434f ,0.4081936f ,0.2865199f ,1.02082f ,0.39893746f ,0.25547838f ,1.0196042f ,0.41430527f ,0.11522696f ,0.8528716f ,0.44869834f ,0.029922955f ,0.75937593f ,0.46395725f ,0.024919817f ,0.7481057f ,0.45937467f ,0.0630973f ,0.734268f ,0.4450183f ,0.088828936f ,0.7231947f ,0.4271567f ,0.0895039f ,0.72167826f ,0.42606914f ,0.09866968f ,0.7173744f ,0.41842014f ,0.08797496f ,0.72076833f ,0.4273147f ,0.08331456f ,0.7111025f ,0.42108458f ,0.124588825f ,0.719021f ,0.3995216f ,-0.069718935f ,0.658507f ,0.31684637f ,-0.05796914f ,0.683698f ,0.35902184f ,-0.5876247f ,1.1292704f ,0.10400692f ,-0.5991853f ,1.1269333f ,-0.019469228f ,-0.62364215f ,0.9739197f ,0.10612254f ,-0.6243724f ,0.9710658f ,-0.04827638f ,-0.47820222f ,0.76171494f ,-0.16268629f ,-0.21653236f ,0.7215654f ,-0.16307193f ,-0.44286492f ,0.69656414f ,0.051765963f ,-0.2617731f ,0.6615695f ,0.05404289f ,-0.45219436f ,1.2289025f ,0.22544195f ,-0.5323136f ,1.270672f ,0.10109502f ,-0.509929f ,1.1079109f ,0.22468732f ,-0.5876247f ,1.1292704f ,0.10400692f ,-0.12846471f ,1.523871f ,0.11261967f ,-0.12695062f ,1.4740527f ,0.2028843f ,-0.12648745f ,1.2174503f ,0.3829528f ,-0.13073829f ,1.1137388f ,0.39645952f ,-0.1416778f ,1.5400271f ,0.016365677f ,-0.15839334f ,1.5385633f ,-0.06830751f ,-0.27154276f ,1.5161445f ,0.002151996f ,-0.30996665f ,1.5052239f ,-0.062653534f ,-0.5535587f ,1.5463322f ,0.042438507f ,-0.5684264f ,1.5520972f ,0.036245026f ,-0.56846035f ,1.4956105f ,0.04938475f ,-0.5862065f ,1.496363f ,0.044098236f ,-0.18831433f ,1.2796736f ,-0.40323108f ,-0.18151829f ,1.4224365f ,-0.33086807f ,-0.1746729f ,1.4842861f ,-0.24961777f ,-0.16782954f ,1.5255265f ,-0.15954795f ,-0.18534267f ,1.136855f ,-0.44217843f ,-0.34889948f ,1.2765709f ,-0.3474297f ,-0.3638264f ,1.1137921f ,-0.38420027f ,-0.4662544f ,1.1110085f ,-0.27738822f ,-0.56401426f ,1.1145475f ,-0.15425056f ,-0.46403748f ,1.2772614f ,-0.22802272f ,-0.53738064f ,1.3148934f ,-0.055205032f ,-0.18888342f ,0.7954f ,-0.3236466f ,-0.18092974f ,0.93670815f ,-0.4168343f ,-0.13352183f ,0.6493473f ,0.053990692f ,-0.5597173f ,1.2568893f ,0.073744f ,-0.54843867f ,0.9498382f ,0.23072512f ,-0.62364215f ,0.9739197f ,0.10612254f ,-0.41108507f ,1.3170414f ,0.22879867f ,-0.49600607f ,1.3216479f ,0.13937688f ,-0.27138925f ,1.4752388f ,0.1256739f ,-0.27634662f ,1.5089495f ,0.03023959f ,-0.35402882f ,1.203287f ,0.32243532f ,-0.30996394f ,1.1205608f ,0.39502096f ,-0.24474326f ,1.2302113f ,0.37884557f ,-0.22549619f ,1.1353595f ,0.4016382f ,-0.45082095f ,1.3743318f ,-0.20888996f ,-0.49921146f ,1.3691628f ,-0.11339861f ,-0.31978813f ,1.3948861f ,-0.29331815f ,-0.28090635f ,1.458841f ,-0.22283585f ,-0.27609694f ,1.49398f ,-0.1502235f ,-0.44343308f ,0.950781f ,-0.29178023f ,-0.5483586f ,0.95419025f ,-0.18753871f ,-0.3312581f ,0.81376576f ,-0.28299302f ,-0.34386373f ,0.9450832f ,-0.36970085f ,-0.5291849f ,1.4407518f ,0.02202893f ,-0.5766637f ,1.431702f ,0.06425676f ,-0.4900234f ,1.3343782f ,0.02672559f ,-0.5323136f ,1.270672f ,0.10109502f ,-0.5597173f ,1.2568893f ,0.073744f ,-0.5928699f ,1.4272504f ,0.055794075f ,-0.53738064f ,1.3148934f ,-0.055205032f ,-0.5792995f ,1.4491098f ,-0.015817493f ,-0.49921146f ,1.3691628f ,-0.11339861f ,-0.54016006f ,1.475989f ,-0.062179502f ,-0.09073653f ,0.76420975f ,0.45299065f ,-0.06850518f ,0.7430212f ,0.44802338f ,-0.043885104f ,0.7777702f ,0.47173315f ,-0.029922955f ,0.75937593f ,0.46395725f ,-7.762191e-11f ,0.92915124f ,0.44881982f ,-0.05891133f ,0.8636314f ,0.46951443f ,-0.09716596f ,0.91589f ,0.43402332f ,-0.0692172f ,0.84939384f ,0.46685332f ,-0.06234749f ,0.7319632f ,0.44534653f ,-0.052563414f ,0.72159135f ,0.4423656f ,-0.024204345f ,0.74579936f ,0.45840997f ,-0.019008618f ,0.7334865f ,0.4574582f ,-0.0708649f ,0.97373855f ,0.4107796f ,-7.940231e-10f ,0.9700933f ,0.41752052f ,-0.4222725f ,1.0870048f ,0.32907927f ,-0.32375383f ,1.3168983f ,0.2941174f ,-0.36837962f ,1.4575902f ,0.06313664f ,-0.34230077f ,1.4502733f ,0.12173225f ,-0.4795413f ,1.599808f ,0.030773312f ,-0.47304884f ,1.5891422f ,0.035350196f ,-0.40758723f ,1.5940545f ,0.0217385f ,-0.4084295f ,1.5855994f ,0.032190897f ,-0.355174f ,1.468152f ,-0.1442962f ,-0.38510814f ,1.4430566f ,-0.18648502f });
  }
}
private class MFVec3f9 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.37211773f ,1.4762254f ,-0.09993898f ,-0.44510975f ,1.4267814f ,-0.12594143f ,-0.5268908f ,0.8501079f ,-0.18256584f ,-0.45050088f ,0.8644195f ,-0.26495546f ,-0.56464636f ,0.7692386f ,0.07947573f ,-0.55739504f ,0.7670785f ,-0.050124027f ,-0.37423584f ,1.5605965f ,-0.043985188f ,-0.34706664f ,1.5653145f ,0.018138804f ,-0.30996665f ,1.5052239f ,-0.062653534f ,-0.27154276f ,1.5161445f ,0.002151996f ,-0.27634662f ,1.5089495f ,0.03023959f ,-0.3487272f ,1.5601351f ,0.031329714f ,-0.36801594f ,1.4562578f ,-0.0101444945f ,-0.4189287f ,1.5121201f ,-0.007595584f ,-0.43003348f ,1.5427887f ,-0.066918835f ,-0.37211773f ,1.4762254f ,-0.09993898f ,-0.48861113f ,1.511105f ,-0.07475217f ,-0.44510975f ,1.4267814f ,-0.12594143f ,-0.08337423f ,1.0404704f ,0.3997572f ,-0.18274112f ,0.730923f ,0.37534696f ,-0.31531602f ,0.7258211f ,0.3329854f ,-0.23896371f ,0.6740553f ,0.2992859f ,-0.3058661f ,0.68563044f ,0.28809398f ,-0.3839056f ,0.7003583f ,0.2511832f ,-0.41187346f ,0.74297625f ,0.29184407f ,-0.5535904f ,0.8372264f ,0.23254193f ,-0.43768716f ,0.8568975f ,0.33872253f ,-0.43605128f ,0.79657245f ,0.3147307f ,-0.62928206f ,0.8571758f ,0.101979405f ,-0.6168848f ,0.8506704f ,-0.055684496f ,-0.62928206f ,0.8571758f ,0.101979405f ,-0.22449373f ,1.318199f ,0.34465247f ,-0.12797877f ,1.3929306f ,0.30383128f ,-0.14744493f ,0.7804535f ,0.43122774f ,-0.19544253f ,0.76250386f ,0.3894143f ,-0.13134363f ,0.7449037f ,0.41751087f ,-0.31833327f ,0.771713f ,0.36879706f ,-0.36003116f ,1.0622302f ,0.3817724f ,-0.13804135f ,0.95246756f ,0.3991844f ,-0.1438308f ,0.8921344f ,0.42095482f ,-0.15968165f ,0.9239655f ,0.40230805f ,-0.21899965f ,1.0808184f ,0.40650433f ,-0.171146f ,1.0681546f ,0.405833f ,-0.1251681f ,0.9901063f ,0.39961737f ,-0.13091351f ,1.0232093f ,0.3986627f ,-0.2056086f ,0.9062902f ,0.40376437f ,-0.18814398f ,0.845952f ,0.4074586f ,-0.26737788f ,0.92173445f ,0.4084863f ,-0.30137292f ,0.88456154f ,0.406511f ,-0.3052259f ,0.96752053f ,0.4015584f ,-0.35765907f ,0.96857435f ,0.39345032f ,-0.31298527f ,1.0379694f ,0.3983701f ,-0.27475747f ,1.0719074f ,0.4025098f ,-0.18734363f ,0.9569555f ,0.4095224f ,-0.17255358f ,0.97075284f ,0.40322787f ,-0.18947816f ,1.0155067f ,0.41442174f ,-0.22292988f ,1.0173663f ,0.41632086f ,-0.16312267f ,0.992211f ,0.40022027f ,-0.16050272f ,1.0139765f ,0.39891046f ,-0.21635658f ,0.9494906f ,0.41329622f ,-0.24442244f ,0.95485365f ,0.41539556f ,-0.27018282f ,0.9793434f ,0.4081936f ,-0.2865199f ,1.02082f ,0.39893746f ,-0.25547838f ,1.0196042f ,0.41430527f ,-0.11523754f ,0.8529004f ,0.44864392f ,-0.15781789f ,0.8356549f ,0.43109f ,5.551115e-17f ,0.7674836f ,0.46894038f ,0.000011131122f ,0.7837648f ,0.472906f ,-0.024919817f ,0.7481057f ,0.45937467f ,5.551115e-17f ,0.7544995f ,0.46701026f ,-0.08797496f ,0.72076833f ,0.4273147f ,-0.0895039f ,0.72167826f ,0.42606914f ,-0.08331456f ,0.7111025f ,0.42108458f ,-0.09866968f ,0.7173744f ,0.41842014f ,0.033637f ,0.705709f ,0.4342271f ,0.012110066f ,0.7106398f ,0.44292426f ,-0.0630973f ,0.73426807f ,0.4450183f ,-0.088828936f ,0.7231947f ,0.4271567f ,-0.1007875f ,0.73182595f ,0.42665756f ,-0.05250731f ,0.6911416f ,0.3874526f ,-0.044973075f ,0.69741094f ,0.41788584f ,0.19555299f ,0.8079702f ,0.39871484f ,0.31825504f ,0.82703155f ,0.39422476f ,0.1474651f ,0.780391f ,0.43128777f ,0.15779085f ,0.83564144f ,0.43111253f ,-0.19555299f ,0.8079702f ,0.39871484f ,-0.31825504f ,0.82703155f ,0.39422476f ,5.4961396e-7f ,0.73584276f ,0.4594916f ,5.551115e-17f ,0.7521921f ,0.46351814f ,-0.058156364f ,0.806959f ,0.4725225f ,-0.0000084255f ,0.8053505f ,0.47889888f ,0.058063757f ,0.80628616f ,0.47336113f ,0.04363813f ,0.7768038f ,0.47266406f ,-0.124605134f ,0.71905583f ,0.3995148f ,-0.099546954f ,0.70589185f ,0.3928091f ,-0.44915733f ,0.98820317f ,0.33217633f ,0.4376872f ,0.8568976f ,0.33872247f ,0.43605122f ,0.79657245f ,0.3147307f ,-0.41438103f ,0.91725147f ,0.35098952f ,-0.21245791f ,1.3848494f ,0.29275078f ,-0.20524158f ,1.4376143f ,0.2318631f ,-0.3034605f ,1.3784443f ,0.26152974f ,-0.28455016f ,1.4326775f ,0.19893347f ,-0.3641541f ,1.4210474f ,0.1548668f ,-0.3904507f ,1.3681389f ,0.20358856f ,-0.42170334f ,1.4109257f ,0.08215988f ,-0.46712667f ,1.3637459f ,0.10787363f ,-0.47422564f ,1.467945f ,-0.0073522255f ,-0.42974386f ,1.3949327f ,-0.020878747f ,-0.5188016f ,1.5743852f ,0.03847099f ,-0.530028f ,1.5836775f ,0.034430325f ,0.4451083f ,1.4267821f ,-0.12594208f ,0.48861113f ,1.5111051f ,-0.07475221f ,0.52889335f ,1.5794578f ,0.010726765f ,0.530028f ,1.5836775f ,0.034430325f ,0.42974386f ,1.3949327f ,-0.020878747f ,0.47422567f ,1.4679452f ,-0.0073522106f ,0.42170334f ,1.4109257f ,0.08215988f ,0.42974386f ,1.3949327f ,-0.020878747f ,0.28455013f ,1.4326775f ,0.19893341f ,0.34230077f ,1.4502733f ,0.12173225f ,0.3641541f ,1.4210474f ,0.15486684f ,-0.12708701f ,1.3163574f ,0.35016483f ,3.464476e-11f ,1.3175914f ,0.35848492f ,0.12708701f ,1.3163574f ,0.35016483f ,-0.36801594f ,1.4562578f ,-0.0101444945f ,-0.4900234f ,1.3343782f ,0.02672559f ,-0.42974386f ,1.3949327f ,-0.020878747f ,0.43003348f ,1.5427887f ,-0.06691884f ,-0.5323136f ,1.270672f ,0.10109502f ,-0.5766637f ,1.431702f ,0.06425676f ,-0.5323136f ,1.270672f ,0.10109502f ,0.27154276f ,1.5161445f ,0.002151996f ,0.30996394f ,1.5052247f ,-0.0626483f ,0.37423584f ,1.5605965f ,-0.043985188f ,0.30996394f ,1.5052247f ,-0.0626483f ,-0.27634662f ,1.5089495f ,0.03023959f ,-0.3487272f ,1.5601351f ,0.031329714f ,0.41438118f ,0.9172515f ,0.35098946f ,0.41187346f ,0.74297625f ,0.29184407f ,-0.2617731f ,0.6615695f ,0.05404289f ,-0.44286492f ,0.69656414f ,0.051765963f ,-0.4440539f ,0.71961915f ,0.24979277f ,-0.5000321f ,0.75895154f ,0.23630373f ,-0.16792321f ,0.6649521f ,0.31022233f ,-0.11820767f ,0.661484f ,0.31592613f ,-0.15363118f ,0.70864856f ,0.36301196f ,-0.11061325f ,0.69296217f ,0.35454595f ,0.23896371f ,0.6740553f ,0.2992859f ,0.2617731f ,0.6615695f ,0.05404289f ,0.3058661f ,0.68563044f ,0.28809398f ,0.3839056f ,0.7003582f ,0.2511832f ,0.56464636f ,0.7692386f ,0.07947573f ,-0.56464636f ,0.7692386f ,0.07947573f ,0.16792321f ,0.6649521f ,0.31022233f ,0.15358295f ,0.70859617f ,0.36301368f ,0.49002334f ,1.3343782f ,0.02672556f ,0.5323136f ,1.270672f ,0.10109502f ,0.56846035f ,1.4956105f ,0.04938475f ,0.27634662f ,1.5089495f ,0.03023959f ,0.4084295f ,1.5855994f ,0.032190897f ,0.47304884f ,1.5891422f ,0.035350196f ,0.4451083f ,1.4267821f ,-0.12594208f ,0.5188016f ,1.5743852f ,0.03847099f ,-0.56846035f ,1.4956105f ,0.04938475f ,-0.5535587f ,1.5463322f ,0.042438507f ,-0.58032507f ,1.5041922f ,0.005950898f ,-0.5635104f ,1.5507528f ,0.0115784705f ,-0.4084295f ,1.5855994f ,0.032190897f ,-0.47304884f ,1.5891422f ,0.035350196f ,-0.4248048f ,1.5913776f ,-0.01373364f ,-0.48559108f ,1.5925438f ,0.005439922f ,-0.5188016f ,1.5743852f ,0.03847099f ,-0.52889335f ,1.5794578f ,0.010726765f ,5.551115e-17f ,1.5281767f ,0.13588428f ,-0.12846471f ,1.523871f ,0.11261967f ,-0.27634662f ,1.5089495f ,0.03023959f ,0.47304884f ,1.5891422f ,0.035350196f ,0.5188016f ,1.5743852f ,0.03847099f ,0.5535587f ,1.5463322f ,0.042438507f ,0.37211773f ,1.4762254f ,-0.09993898f ,-0.10479324f ,0.79599035f ,0.45795536f ,0.10483215f ,0.7953714f ,0.4586352f ,-0.13352183f ,0.6493473f ,0.053990692f ,0.13352183f ,0.6493473f ,0.053990692f ,0.11052699f ,0.69284785f ,0.35455835f ,0.11820767f ,0.661484f ,0.31592613f ,0.09950867f ,0.70583487f ,0.39281714f ,0.62364215f ,0.97391975f ,0.10612257f ,0.62928206f ,0.8571758f ,0.101979375f ,0.03733749f ,0.7745367f ,0.41547394f ,0.039944857f ,0.78481495f ,0.36002296f ,0.08210698f ,0.7472293f ,0.40778697f ,0.08343893f ,0.75631297f ,0.3600229f ,0.041147396f ,0.7031306f ,0.40924007f ,0.08958291f ,0.72259796f ,0.40495414f ,0.051854722f ,0.7016125f ,0.36002278f ,0.09016839f ,0.72365475f ,0.36002284f ,-0.08958291f ,0.72259796f ,0.40495414f ,-0.09016839f ,0.72365475f ,0.36002284f ,-0.08210698f ,0.7472293f ,0.40778697f ,-0.08343893f ,0.75631297f ,0.3600229f ,-0.041147396f ,0.7031306f ,0.40924007f ,-0.051854722f ,0.7016125f ,0.36002278f ,-0.03733749f ,0.7745367f ,0.41547394f ,-0.039944857f ,0.78481495f ,0.36002296f ,5.551115e-17f ,0.7805152f ,0.4199201f ,5.551115e-17f ,0.7907697f ,0.36002302f ,5.551115e-17f ,0.7020188f ,0.41149372f ,5.551115e-17f ,0.6966087f ,0.35970432f ,0.0538664f ,0.75032926f ,0.3227685f ,0.03394015f ,0.7751164f ,0.32276857f ,0.03674853f ,0.7197935f ,0.3227685f ,-0.0538664f ,0.75032926f ,0.3227685f ,-0.03674853f ,0.7197935f ,0.3227685f ,-0.03394015f ,0.7751164f ,0.32276857f ,5.551115e-17f ,0.7794804f ,0.32276863f ,5.551115e-17f ,0.70789796f ,0.32244998f ,5.551115e-17f ,0.7494981f ,0.29546285f ,5.551115e-17f ,0.6366228f ,0.053936347f ,0.39045066f ,1.3681387f ,0.20358856f ,0.3034605f ,1.3784443f ,0.26152974f ,-0.033747f ,0.705234f ,0.4346251f ,-0.012359034f ,0.71053183f ,0.44301915f ,-0.00005665558f ,0.7114849f ,0.44466084f ,0.37211773f ,1.4762254f ,-0.09993898f });
  }
}
private class MFVec3f10 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.06177194f ,-0.9893973f ,0.13144311f ,0.13707855f ,-0.89062256f ,0.4335907f ,-0.000031308027f ,-0.9913079f ,0.13156259f ,-0.00040022683f ,-0.93148273f ,0.36378545f ,0f ,-0.9976458f ,-0.068577304f ,0.9658393f ,0.23322281f ,-0.112967014f ,0.9701135f ,0.06279544f ,-0.23438542f ,0.8683808f ,0.18219157f ,-0.46121708f ,0.8022135f ,-0.048065275f ,-0.59509945f ,0.29249373f ,-0.8655077f ,-0.40662512f ,0.26644078f ,-0.9577743f ,-0.10806432f ,0.16506274f ,-0.92171717f ,-0.35098705f ,0.14817429f ,-0.98054665f ,-0.128735f ,0.8963118f ,0.25110114f ,0.365477f ,0.65495753f ,0.35177782f ,0.66879225f ,0.75633997f ,0.26614004f ,0.5975946f ,0.6874465f ,0.3205764f ,0.6516503f ,0.16982827f ,0.92547154f ,0.33861586f ,-5.839531e-9f ,0.9347315f ,0.3553548f ,0.15907855f ,0.8270071f ,0.5392153f ,3.823518e-8f ,0.82162076f ,0.5700345f ,0.026738072f ,0.23898126f ,0.97065604f ,1.4998724e-8f ,0.17757592f ,0.9841071f ,-0.023512645f ,0.09234886f ,0.9954492f ,-4.6642917e-8f ,0.04414302f ,0.9990252f ,-0.0036714654f ,0.9990347f ,-0.043775667f ,0.14506468f ,0.9838247f ,0.105096824f ,0.2859992f ,0.8400923f ,0.4609222f ,0.16982827f ,0.92547154f ,0.33861586f ,0.6308395f ,0.52737814f ,-0.56913424f ,0.80940485f ,0.52797204f ,0.2571175f ,0.8778982f ,0.24922584f ,-0.40887794f ,0.9697225f ,0.18121064f ,0.1637101f ,0.21188177f ,0.5882455f ,-0.7804315f ,0.22757266f ,0.35736334f ,-0.9058158f ,-2.3466056e-8f ,0.6040666f ,-0.79693377f ,-7.52218e-9f ,0.36649936f ,-0.93041825f ,5.5009814e-8f ,0.85264415f ,-0.5224922f ,2.469585e-7f ,0.9541183f ,-0.29942998f ,0.19565764f ,0.84319675f ,-0.500737f ,0.19249201f ,0.94493777f ,-0.26464975f ,0.5084473f ,0.3298577f ,-0.79540896f ,0.22068305f ,0.033849087f ,-0.974758f ,0.49001575f ,0.05542427f ,-0.8699498f ,0.932607f ,0.13444495f ,-0.3349159f ,0.76329017f ,0.2714267f ,-0.5862727f ,0.73873514f ,0.10065739f ,-0.6664372f ,-2.2118238e-9f ,-0.7416691f ,-0.670766f ,0.20066482f ,-0.7381501f ,-0.64410245f ,7.4118267e-9f ,-0.9377334f ,-0.34735593f ,-4.488978e-9f ,-0.29668707f ,-0.9549748f ,1.8879657e-8f ,0.022952f ,-0.9997366f ,0.21180515f ,-0.31076047f ,-0.92658865f ,-1.3308514e-9f ,0.99159694f ,0.12936611f ,5.252953e-7f ,0.99848723f ,-0.054985285f ,0.16462332f ,0.9836148f ,-0.073492475f ,0.113398746f ,-0.9875094f ,-0.109389275f ,0.8963118f ,0.25110114f ,0.365477f ,0.98789346f ,0.12798344f ,0.087674856f ,0.65495753f ,0.35177782f ,0.66879225f ,0.46654883f ,-0.8533677f ,0.23258491f ,0.26644078f ,-0.9577743f ,-0.10806432f ,0.65009004f ,-0.6792273f ,0.34063658f ,0.65417755f ,-0.74867916f ,0.10738371f ,0.78450316f ,0.11819672f ,0.6087565f ,0.94711375f ,0.13547134f ,0.29090056f ,0.6859337f ,0.6942012f ,0.21812794f ,0.781497f ,0.4385814f ,0.4437441f ,-0.16297737f ,0.6642431f ,0.7295338f ,0.2859992f ,0.8400923f ,0.4609222f ,0.28825337f ,0.87605315f ,0.38657576f ,0.67235285f ,0.4032254f ,-0.62076646f ,0.8074391f ,0.18502635f ,-0.56018525f ,0.4189659f ,0.55386186f ,-0.719517f ,0.27988303f ,0.9171916f ,-0.283593f ,0.30768996f ,0.81571585f ,-0.48983127f ,0.6750315f ,-0.104240514f ,-0.7303879f ,0.24858885f ,-0.72611296f ,-0.64106435f ,0.3875602f ,-0.3012717f ,-0.8712247f ,-0.29952434f ,-0.09311074f ,0.9495344f ,-0.5382446f ,0.1252948f ,0.833423f ,-0.3879767f ,0.070228666f ,0.91898966f ,-0.40963745f ,0.25402334f ,0.8761675f ,0.98789346f ,0.12798344f ,0.087674856f ,0.9873003f ,-0.14827885f ,-0.05702391f ,0.65495753f ,0.35177782f ,0.66879225f ,-0.40963745f ,0.25402334f ,0.8761675f ,0.932607f ,0.13444495f ,-0.3349159f ,0.8074391f ,0.18502635f ,-0.56018525f ,0.9057749f ,-0.066933095f ,-0.4184398f ,0.6266274f ,0.25259903f ,-0.73724616f ,0.44319668f ,-0.52438605f ,0.7270461f ,0.3417968f ,-0.3972411f ,0.8516893f ,0.4237508f ,-0.5187564f ,0.742514f ,0.24584727f ,-0.4943738f ,0.83375883f ,0.27692133f ,0.41053945f ,0.8687762f ,0.2708142f ,0.38722828f ,0.8813138f ,0.31040436f ,0.11207419f ,0.9439748f ,0f ,0.26125705f ,0.96526927f ,-0.0014893592f ,-0.06891671f ,0.99762136f ,0.11137366f ,0.85060644f ,-0.51387227f ,0.08468228f ,0.8229229f ,-0.5618069f ,0.22237323f ,-0.5990175f ,0.7692387f ,0.1741418f ,-0.41250437f ,0.8941559f ,0.20458558f ,0.25400993f ,0.94531673f ,0.14435871f ,0.31549042f ,0.93788403f ,0.110078216f ,0.06357015f ,0.991888f ,0.19469164f ,-0.9409543f ,0.2769478f ,0.1971673f ,-0.89933574f ,0.3902824f ,0.0012944888f ,-0.963333f ,0.26830584f ,0.005917233f ,-0.92886466f ,0.37037203f ,0.79769444f ,-0.22694057f ,0.55873203f ,0.9389386f ,-0.27084264f ,0.21222289f ,0.5547882f ,0.36150166f ,0.74935085f ,0.64200115f ,0.29516432f ,0.70761055f ,0.4933816f ,0.41693255f ,0.7633752f ,0.61296064f ,0.38361588f ,0.6907374f ,0.5511842f ,0.37696782f ,0.7443731f ,0.51437163f ,0.8429979f ,0.15740551f ,-0.29535928f ,0.9547332f ,-0.035319682f ,0.089692935f ,0.98708975f ,0.13269943f ,-0.028483884f ,0.8726437f ,-0.48752606f ,0.24714784f ,0.7793785f ,-0.57574916f ,0.29887393f ,0.90145624f ,-0.31313106f ,0.4416723f ,0.7638702f ,-0.47056133f ,0.72551227f ,-0.3458066f ,-0.5950208f ,0.51187915f ,-0.4360903f ,-0.74013853f ,0.908608f ,-0.29727218f ,-0.29336116f ,0.59978026f ,-0.76670706f ,-0.22896284f ,0.14704046f ,-0.22320625f ,0.96361727f ,0.027519075f ,-0.30489603f ,0.95198804f ,-0.49472472f ,0.84795684f ,-0.19030662f ,0.2859992f ,0.8400923f ,0.4609222f ,0.5511842f ,0.37696782f ,0.7443731f ,0.14704046f ,-0.22320625f ,0.96361727f ,0.014074509f ,-0.28421932f ,0.95865595f ,0.68719906f ,0.09993361f ,0.7195629f ,0.022142762f ,0.17282458f ,0.9847038f ,0.25032952f ,0.34394574f ,0.90500635f ,0.029148625f ,0.07759374f ,0.9965589f ,-6.23203e-8f ,0.13266815f ,0.9911605f ,0.26572824f ,-0.6360431f ,0.72445685f ,0.2893145f ,-0.66927785f ,0.6843715f ,0.30607435f ,-0.38001302f ,0.8728738f ,0.2973764f ,-0.48411193f ,0.82292336f ,0.19911213f ,0.4780608f ,0.8554602f ,0.12136999f ,0.6613741f ,0.7401714f ,0.21233557f ,0.80934674f ,0.5476053f ,0.201322f ,0.6711618f ,0.7134504f ,6.2830395e-8f ,0.6612148f ,0.7501966f ,0.49784273f ,0.16802989f ,0.850834f ,0.44372302f ,-0.022896733f ,0.89587146f ,0.40934777f ,0.30020654f ,0.8615745f ,0.021004014f ,0.11831479f ,0.99275404f ,-0.12650537f ,0.08106189f ,0.98864824f ,-0.026868086f ,0.0050679925f ,0.99962616f ,0.08577351f ,0.21375693f ,0.9731141f ,0.37398958f ,0.2594922f ,0.8903907f ,0.031594418f ,0.0023200929f ,0.99949807f ,0.20684235f ,-0.03676899f ,0.9776832f ,0.048848465f ,-0.05417223f ,0.99733603f ,0.25568876f ,-0.09611336f ,0.96196955f ,0.15240869f ,0.044239305f ,0.9873269f ,0.21044017f ,0.05644966f ,0.9759757f ,0.12620927f ,0.08668031f ,0.98820937f ,-0.007740767f ,0.15241614f ,0.98828614f ,-0.19917443f ,0.093461655f ,0.97549707f ,-0.19526741f ,0.054312266f ,0.979245f ,-0.052023735f ,0.032206964f ,0.9981264f ,-0.18648946f ,-0.04065798f ,0.98161536f ,-0.07404295f ,-0.19920963f ,0.9771556f ,-0.18427141f ,-0.08837004f ,0.97889465f ,0.13770537f ,-0.10990847f ,0.98435634f ,0.21808267f ,0.047067247f ,0.9747947f ,0.16912408f ,0.03383298f ,0.9850139f ,0.1830655f ,0.13606206f ,0.97363967f ,0.38781798f ,0.2088992f ,0.8977518f ,0.082049154f ,-0.44084215f ,0.8938267f ,-0.32711664f ,-0.8966302f ,-0.29841077f ,-0.46263736f ,-0.8213663f ,-0.33365262f ,-0.4241666f ,-0.90543425f ,0.016479136f ,-0.57299703f ,-0.57784593f ,0.5811786f ,0.4424992f ,-0.7055986f ,0.55346644f ,-0.18845198f ,0.9626293f ,-0.19450101f ,0.27620327f ,-0.841692f ,0.46396816f ,0.37011516f ,-0.7371261f ,0.5653848f ,-0.06180747f ,-0.9893681f ,0.13164628f ,-0.13774142f ,-0.8904178f ,0.43380117f ,-0.89631194f ,0.251101f ,0.36547694f ,-0.9658393f ,0.23322292f ,-0.11296708f ,-0.9471137f ,0.13547154f ,0.29090038f ,-0.9701136f ,0.06279547f ,-0.2343854f ,-0.2924937f ,-0.8655077f ,-0.40662512f ,-0.16506273f ,-0.92171717f ,-0.35098705f ,-0.26644078f ,-0.9577743f ,-0.10806429f ,-0.1481743f ,-0.98054665f ,-0.12873502f ,-0.6874464f ,0.32057652f ,0.65165037f ,-0.6549578f ,0.3517775f ,0.6687921f ,-0.75634f ,0.26614007f ,0.5975947f ,-0.89631194f ,0.251101f ,0.36547694f ,-0.16982815f ,0.92547166f ,0.33861563f ,-0.15907842f ,0.82700735f ,0.53921515f ,-0.026738146f ,0.23898126f ,0.97065604f ,0.023512673f ,0.09234881f ,0.99544907f ,-0.1450644f ,0.9838245f ,0.105098516f ,-0.16461654f ,0.98361653f ,-0.07348512f ,0.0036726422f ,0.99903435f ,-0.04378263f ,-0.0235998f ,0.94195884f ,-0.33489782f ,0.29952335f ,-0.09311093f ,0.9495347f ,-0.80940413f ,0.52797276f ,0.2571182f ,0.38797653f ,0.070228614f ,0.9189897f ,-0.9697224f ,0.18121086f ,0.1637106f ,-0.22757271f ,0.3573633f ,-0.9058158f ,-0.21188153f ,0.58824533f ,-0.78043175f ,-0.19565013f ,0.84319556f ,-0.5007418f ,-0.19247052f ,0.94494146f ,-0.2646522f ,-0.22068316f ,0.033849094f ,-0.97475797f ,-0.50844723f ,0.3298577f ,-0.79540884f ,-0.4900159f ,0.055424266f ,-0.8699498f ,-0.7387352f ,0.100657366f ,-0.6664372f ,-0.8683807f ,0.18219163f ,-0.4612171f ,-0.76329017f ,0.27142674f ,-0.58627266f ,-0.932607f ,0.13444501f ,-0.33491609f ,-0.20066482f ,-0.7381501f ,-0.64410245f ,-0.21180516f ,-0.3107605f ,-0.92658865f ,-0.11339873f ,-0.98750937f ,-0.10938929f ,-0.9878934f ,0.1279835f ,0.08767517f ,-0.78450316f ,0.11819679f ,0.60875636f ,-0.9471137f ,0.13547154f ,0.29090038f ,-0.6129606f ,0.3836156f ,0.6907376f ,-0.78149724f ,0.43858093f ,0.44374415f ,-0.28825334f ,0.87605345f ,0.38657504f ,-0.28599927f ,0.84009266f ,0.46092173f ,-0.55478805f ,0.36150184f ,0.7493508f ,-0.40934747f ,0.3002066f ,0.8615746f ,-0.25033024f ,0.34394577f ,0.9050062f ,-0.022142727f ,0.17282447f ,0.9847038f ,-0.6723527f ,0.40322548f ,-0.62076664f ,-0.8074405f ,0.18502508f ,-0.56018347f ,-0.41896632f ,0.5538612f ,-0.7195173f ,-0.3076398f ,0.8156862f ,-0.48991197f ,-0.2796569f ,0.9172657f ,-0.28357658f ,-0.67503154f ,-0.10424052f ,-0.73038787f ,-0.8022135f ,-0.048065316f ,-0.5950995f ,-0.2485888f ,-0.72611296f ,-0.6410644f ,-0.38756016f ,-0.3012717f ,-0.8712247f ,0.53824437f ,0.12529443f ,0.83342326f ,0.40963745f ,0.2540232f ,0.8761674f ,0.16297771f ,0.6642427f ,0.72953403f ,-0.6549578f ,0.3517775f ,0.6687921f ,-0.9878934f ,0.1279835f ,0.08767517f ,-0.9873003f ,-0.14827882f ,-0.0570239f ,-0.932607f ,0.13444501f ,-0.33491609f ,-0.90577483f ,-0.06693344f ,-0.41843978f ,-0.8074405f ,0.18502508f ,-0.56018347f ,-0.62662727f ,0.25259912f ,-0.7372462f ,-0.3398724f ,-0.38708276f ,0.8571195f ,-0.2559603f ,-0.4729052f ,0.8431162f ,-0.16768178f ,-0.25724617f ,0.95168656f ,-0.10078256f ,-0.41541484f ,0.9040318f ,9.349293e-9f ,0.50117224f ,0.86534756f ,-0.2708142f ,0.38722813f ,0.88131386f ,-0.2769515f ,0.4104637f ,0.8688023f ,-0.3119538f ,0.10533736f ,0.94423985f ,-0.11144505f ,0.85064703f ,-0.51378953f ,-0.22914009f ,-0.5916866f ,0.7729177f ,-0.08468113f ,0.8229333f ,-0.5617918f ,-0.17361142f ,-0.40648112f ,0.89701295f ,-0.14435886f ,0.31549054f ,0.937884f ,5.223721e-9f ,0.39114198f ,0.92033035f ,-0.64200085f ,0.29516408f ,0.7076108f ,-0.49338177f ,0.41693234f ,0.7633754f ,-0.5143717f ,0.8429978f ,0.15740572f ,-0.40999532f ,0.83889604f ,0.3579907f ,-0.0896929f ,0.9870896f ,0.1327002f ,0.12203582f ,-0.29381543f ,0.94803995f ,0.29535928f ,0.9547332f ,-0.035320275f ,-0.02751888f ,-0.30489555f ,0.9519881f ,-0.29916728f ,0.9013476f ,-0.31316358f ,-0.44174623f ,0.76375294f ,-0.47068226f });
  }
}
private class MFVec3f11 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.1168292f ,0.7172287f ,-0.6869745f ,-0.4665167f ,0.5811018f ,-0.66684556f ,-0.7255123f ,-0.34580678f ,-0.5950207f ,-0.51187915f ,-0.4360901f ,-0.7401386f ,-0.65417755f ,-0.7486792f ,0.107383706f ,-0.59978f ,-0.7667072f ,-0.22896276f ,0.33537492f ,0.7387208f ,-0.5846497f ,0.49472362f ,0.8479559f ,-0.19031368f ,-0.0235998f ,0.94195884f ,-0.33489782f ,0.0036726422f ,0.99903435f ,-0.04378263f ,-0.28599927f ,0.84009266f ,0.46092173f ,-0.14704031f ,-0.22320615f ,0.9636172f ,-0.5511847f ,0.3769685f ,0.7443723f ,-0.014073949f ,-0.28421932f ,0.9586561f ,-0.07953658f ,0.5874145f ,-0.8053683f ,-0.1168292f ,0.7172287f ,-0.6869745f ,-0.30525407f ,0.4986176f ,-0.81129557f ,-0.4665167f ,0.5811018f ,-0.66684556f ,-0.0291486f ,0.077593744f ,0.9965589f ,-0.2655111f ,-0.63600785f ,0.72456735f ,-0.28931433f ,-0.6692781f ,0.68437135f ,-0.16380462f ,-0.9558832f ,0.24383503f ,-0.23491442f ,-0.9530217f ,0.19121963f ,-0.24829695f ,-0.9559892f ,0.1563116f ,-0.43228698f ,-0.6076545f ,0.66624624f ,-0.79769456f ,-0.226941f ,0.5587317f ,-0.59685737f ,-0.12236307f ,0.79296196f ,-0.53412354f ,-0.40046546f ,0.74453986f ,-0.9389386f ,-0.27084252f ,0.21222293f ,-0.90860796f ,-0.2972725f ,-0.293361f ,-0.9389386f ,-0.27084252f ,0.21222293f ,-0.19911237f ,0.47806117f ,0.8554599f ,-0.121369936f ,0.6613738f ,0.7401717f ,-0.5177158f ,-0.27663562f ,0.80959433f ,-0.305774f ,-0.37998378f ,0.8729918f ,-0.43982294f ,-0.52225614f ,0.7306192f ,-0.29737642f ,-0.4841124f ,0.8229232f ,-0.49784285f ,0.16803008f ,0.850834f ,-0.20458616f ,0.25401133f ,0.94531626f ,-0.37382293f ,0.25933397f ,0.89050674f ,-0.085772686f ,0.2137539f ,0.9731147f ,-0.021003949f ,0.11831477f ,0.99275404f ,0.12650535f ,0.081061855f ,0.98864824f ,-0.11007811f ,0.06357009f ,0.9918879f ,0.02686823f ,0.0050680335f ,0.99962616f ,-0.031593643f ,0.002319611f ,0.9994982f ,-0.2067508f ,-0.0368068f ,0.97770107f ,-0.04884836f ,-0.054172203f ,0.99733603f ,-0.25568843f ,-0.0961131f ,0.9619697f ,-0.15240863f ,0.04423933f ,0.9873269f ,-0.4437233f ,-0.02289666f ,0.8958713f ,-0.21043997f ,0.056449674f ,0.97597563f ,-0.12620924f ,0.0866804f ,0.9882094f ,0.1842717f ,-0.08837022f ,0.97889465f ,0.19526775f ,0.054312374f ,0.97924495f ,0.19917455f ,0.09346162f ,0.97549707f ,0.007740767f ,0.15241614f ,0.98828614f ,0.0520236f ,0.032206982f ,0.99812645f ,0.18648945f ,-0.040657874f ,0.98161536f ,0.0740431f ,-0.19920981f ,0.9771556f ,-0.13770567f ,-0.109908275f ,0.9843563f ,-0.2180827f ,0.047067344f ,0.9747946f ,-0.16912408f ,0.033832997f ,0.9850139f ,-0.18306544f ,0.13606209f ,0.9736397f ,-0.38762432f ,0.20549664f ,0.8986204f ,-0.52496874f ,0.072278485f ,0.848047f ,-0.000022727709f ,-0.20536387f ,0.97868574f ,-0.011730419f ,-0.28802744f ,0.9575503f ,0.32707402f ,-0.896647f ,-0.29840726f ,-2.3579663e-7f ,-0.9917344f ,-0.12830849f ,0.18845177f ,0.9626294f ,-0.19450124f ,0.5722303f ,-0.5766814f ,0.5830877f ,-0.2801909f ,-0.8405707f ,0.4636098f ,-0.44401175f ,-0.70392495f ,0.5543855f ,0.1614311f ,-0.7506524f ,0.6406723f ,0.093455024f ,-0.7126895f ,0.69522643f ,0.46291998f ,-0.8208532f ,-0.33452246f ,0.42322746f ,-0.9058841f ,0.015891405f ,-0.4246404f ,-0.5085197f ,0.7490583f ,-0.19712354f ,-0.9420034f ,0.27160975f ,-0.20158456f ,-0.90136385f ,0.3832842f ,0.26183963f ,-0.21410961f ,0.9410617f ,0.2946745f ,-0.25355762f ,0.9213444f ,0.5228389f ,-0.2769282f ,0.806195f ,0.526905f ,0.07393214f ,0.8467025f ,-0.26155263f ,-0.21424225f ,0.94111127f ,-0.29467425f ,-0.25355762f ,0.9213445f ,0.000022009293f ,-0.38850352f ,0.92144734f ,-0.0000012185009f ,0.81987447f ,-0.57254326f ,-0.22159712f ,-0.018263115f ,0.97496724f ,-0.009249038f ,-0.19127208f ,0.98149353f ,0.21838531f ,-0.0058755935f ,0.975845f ,0.15615493f ,-0.26720995f ,0.9509019f ,-0.36980128f ,-0.7370508f ,0.56568825f ,-0.27352116f ,-0.8935027f ,0.3561448f ,-0.68719906f ,0.09993354f ,0.7195629f ,0.5968575f ,-0.122362815f ,0.79296184f ,0.5341237f ,-0.40046486f ,0.7445399f ,-0.48285472f ,-0.05852526f ,0.8737426f ,-0.20132199f ,0.6711614f ,0.7134507f ,-0.21233544f ,0.8093466f ,0.5476056f ,-0.39526394f ,0.6545237f ,0.64448833f ,-0.32567078f ,0.7974884f ,0.5078888f ,-0.4945489f ,0.7415311f ,0.45337978f ,-0.5307872f ,0.6415231f ,0.5538168f ,-0.66512704f ,0.7375612f ,0.11665927f ,-0.68593377f ,0.6942013f ,0.21812701f ,0.28780225f ,-0.11244238f ,0.951066f ,-0.33468825f ,0.5929253f ,0.7324093f ,0.22377905f ,-0.22989455f ,0.94713855f ,-0.4388033f ,0.8532466f ,0.28181896f ,0.46651635f ,0.581104f ,-0.6668439f ,0.3052555f ,0.49861896f ,-0.81129426f ,0.41927645f ,0.68456525f ,-0.59630334f ,0.4388036f ,0.85324645f ,0.28181875f ,0.33468863f ,0.5929247f ,0.7324096f ,-0.28780264f ,-0.11244266f ,0.95106584f ,0.66512716f ,0.73756117f ,0.11665919f ,0.33468863f ,0.5929247f ,0.7324096f ,0.32567108f ,0.79748833f ,0.5078885f ,0.40999478f ,0.83889616f ,0.35799122f ,0.49454835f ,0.7415299f ,0.45338222f ,-0.06550962f ,0.41769674f ,0.90622187f ,7.224276e-8f ,0.37833768f ,0.9256677f ,0.06550969f ,0.41769642f ,0.9062219f ,-0.5511847f ,0.3769685f ,0.7443723f ,0.16297771f ,0.6642427f ,0.72953403f ,-0.33468825f ,0.5929253f ,0.7324093f ,0.07953579f ,0.5874143f ,-0.80536854f ,-0.6549578f ,0.3517775f ,0.6687921f ,0.40963745f ,0.2540232f ,0.8761674f ,-0.6549578f ,0.3517775f ,0.6687921f ,-0.0036714654f ,0.9990347f ,-0.043775667f ,0.023649856f ,0.94192064f ,-0.33500183f ,-0.33537674f ,0.7387162f ,-0.58465457f ,0.023649856f ,0.94192064f ,-0.33500183f ,-0.28599927f ,0.84009266f ,0.46092173f ,-0.14704031f ,-0.22320615f ,0.9636172f ,0.48285526f ,-0.05852535f ,0.87374234f ,0.43228742f ,-0.6076541f ,0.66624624f ,-0.1481743f ,-0.98054665f ,-0.12873502f ,-0.26644078f ,-0.9577743f ,-0.10806429f ,-0.46654838f ,-0.85336787f ,0.23258515f ,-0.65009004f ,-0.6792274f ,0.34063634f ,-0.13157089f ,-0.97096837f ,0.19977401f ,-0.07715905f ,-0.9833553f ,0.16449626f ,-0.24750091f ,-0.7677356f ,0.5910375f ,-0.17467758f ,-0.8286574f ,0.53180337f ,0.16380456f ,-0.95588326f ,0.24383458f ,0.14817429f ,-0.98054665f ,-0.128735f ,0.23491408f ,-0.95302194f ,0.19121912f ,0.24829698f ,-0.95598924f ,0.15631141f ,0.65417755f ,-0.74867916f ,0.10738371f ,-0.65417755f ,-0.7486792f ,0.107383706f ,0.13158973f ,-0.970975f ,0.19972937f ,0.24825266f ,-0.7676435f ,0.5908418f ,-0.16297737f ,0.6642431f ,0.7295338f ,0.65495753f ,0.35177782f ,0.66879225f ,-0.3879767f ,0.070228666f ,0.91898966f ,0.2859992f ,0.8400923f ,0.4609222f ,0.027519075f ,-0.30489603f ,0.95198804f ,-0.12203566f ,-0.29381517f ,0.94804007f ,0.46651635f ,0.581104f ,-0.6668439f ,-0.22377907f ,-0.22989467f ,0.9471385f ,0.38797653f ,0.070228614f ,0.9189897f ,0.29952335f ,-0.09311093f ,0.9495347f ,-0.8778984f ,0.24922638f ,-0.40887713f ,-0.63083917f ,0.5273783f ,-0.56913453f ,-0.02751888f ,-0.30489555f ,0.9519881f ,0.12203582f ,-0.29381543f ,0.94803995f ,0.028483871f ,0.87264353f ,-0.48752627f ,-0.2471481f ,0.77937835f ,-0.5757492f ,0.22377905f ,-0.22989455f ,0.94713855f ,-0.41927648f ,0.6845648f ,-0.59630394f ,-5.839531e-9f ,0.9347315f ,0.3553548f ,-0.16982815f ,0.92547166f ,0.33861563f ,-0.28599927f ,0.84009266f ,0.46092173f ,-0.12203566f ,-0.29381517f ,0.94804007f ,-0.22377907f ,-0.22989467f ,0.9471385f ,-0.29952434f ,-0.09311074f ,0.9495344f ,0.116560586f ,0.71713126f ,-0.68712187f ,-0.384153f ,-0.097606316f ,0.9180956f ,0.38950318f ,-0.09508945f ,0.9161033f ,-0.11339873f ,-0.98750937f ,-0.10938929f ,0.113398746f ,-0.9875094f ,-0.109389275f ,0.17495733f ,-0.8288995f ,0.53133386f ,0.077213064f ,-0.9833918f ,0.16425174f ,0.27312866f ,-0.893241f ,0.3571013f ,0.94711375f ,0.13547134f ,0.29090056f ,0.9389386f ,-0.27084264f ,0.21222289f ,-0.37536952f ,-0.8623571f ,-0.33976156f ,-0.38926113f ,-0.9202145f ,0.041001383f ,-0.6833762f ,-0.67812145f ,-0.27045962f ,-0.7626484f ,-0.61596096f ,0.19738169f ,-0.143724f ,0.9286291f ,-0.34204027f ,-0.7601819f ,0.648953f ,-0.031361796f ,-0.30867103f ,0.912633f ,0.26799867f ,-0.7761296f ,0.4785742f ,0.41059652f ,0.760182f ,0.6489529f ,-0.031361744f ,0.7761298f ,0.47857398f ,0.41059643f ,0.6833766f ,-0.678121f ,-0.27045956f ,0.76264864f ,-0.6159609f ,0.19738099f ,0.14372398f ,0.92862904f ,-0.3420404f ,0.30867115f ,0.91263306f ,0.2679984f ,0.3753694f ,-0.8623572f ,-0.33976153f ,0.38926122f ,-0.92021453f ,0.04100101f ,-4.5917606e-8f ,-0.939158f ,-0.34348556f ,-4.8473154e-8f ,-0.99999636f ,-0.002723012f ,1.1421909e-7f ,0.90054333f ,-0.43476626f ,2.9763182e-8f ,0.9903186f ,0.13881308f ,-0.62047535f ,-0.10432564f ,0.7772557f ,-0.40726644f ,-0.70562744f ,0.57984835f ,-0.41592866f ,0.6011053f ,0.6824045f ,0.62047577f ,-0.10432577f ,0.77725536f ,0.41592887f ,0.6011053f ,0.6824044f ,0.40726644f ,-0.7056276f ,0.57984805f ,-4.7211916e-8f ,-0.84882045f ,0.52868116f ,6.512436e-8f ,0.7977998f ,0.6029225f ,4.9821844e-9f ,0.01261046f ,0.9999205f ,0f ,-0.9976458f ,-0.068577304f ,0.53078717f ,0.64152306f ,0.55381685f ,0.39526522f ,0.6545248f ,0.64448637f ,-0.16300122f ,-0.74832976f ,0.6429877f ,-0.07757049f ,-0.70924306f ,0.70068336f ,0.004078857f ,-0.6816209f ,0.73169416f ,0.116560586f ,0.71713126f ,-0.68712187f });
  }
}
private class MFVec4f12 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.9751777f ,0.031772014f ,-0.21913269f ,1f ,0.93505687f ,-0.028122237f ,-0.35338062f ,1f ,1f ,-0.00004640825f ,-0.00011170699f ,1f ,0.99999994f ,-0.0004165413f ,0.00003362267f ,1f ,1f ,0.0000120230825f ,-0.00017490963f ,1f ,-0.089932136f ,-0.10717617f ,-0.99016446f ,1f ,-0.21895514f ,-0.18979727f ,-0.9570976f ,1f ,-0.45285404f ,-0.08766442f ,-0.88726443f ,1f ,-0.5953504f ,-0.13927923f ,-0.7913024f ,1f ,-0.83858514f ,-0.027789364f ,-0.54406136f ,1f ,-0.7643558f ,-0.14166036f ,-0.6290411f ,1f ,-0.9441622f ,-0.044781f ,-0.3264239f ,1f ,-0.9143289f ,-0.08621835f ,-0.3956882f ,1f ,0.3885637f ,-0.047655553f ,-0.9201888f ,1f ,0.7370957f ,-0.10240446f ,-0.6679844f ,1f ,0.6173177f ,0.011947968f ,-0.78662336f ,1f ,0.70658976f ,-0.08795193f ,-0.7021363f ,1f ,0.9452374f ,-0.05579442f ,-0.3215794f ,1f ,1f ,-0.00006713713f ,0.00017660503f ,1f ,0.9739345f ,-0.04200393f ,-0.22290638f ,1f ,1f ,-0.00010382444f ,0.00014957944f ,1f ,0.9972397f ,0.06090723f ,-0.042466078f ,1f ,1f ,-0.00017856802f ,0.0000322063f ,1f ,0.99814296f ,0.05813788f ,0.01818276f ,1f ,1f ,-0.00021362487f ,0.000009486016f ,1f ,-0.97806215f ,-0.012705278f ,-0.20792587f ,1f ,-0.9777079f ,0.15883291f ,-0.1373294f ,1f ,-0.922143f ,0.37205932f ,-0.10594406f ,1f ,-0.97501075f ,0.20773204f ,-0.07874922f ,1f ,0.6417584f ,-0.76690656f ,0.00069728907f ,1f ,0.52466255f ,-0.84682643f ,0.08726041f ,1f ,0.33823517f ,-0.9271741f ,0.16107568f ,1f ,0.14001116f ,-0.9617938f ,0.23526521f ,1f ,-0.97347665f ,0.056511153f ,-0.22169727f ,1f ,-0.9717124f ,0.023031395f ,-0.23504183f ,1f ,-0.99998504f ,-0.0043686377f ,-0.0033113481f ,1f ,-0.9999858f ,-0.0049647316f ,-0.00195564f ,1f ,-0.9999832f ,-0.0030277213f ,-0.0049409815f ,1f ,-0.9999822f ,-0.0017883207f ,-0.0056992164f ,1f ,-0.9701153f ,0.091698356f ,-0.22465026f ,1f ,-0.9656006f ,0.1343476f ,-0.22263484f ,1f ,-0.84583974f ,0.018225987f ,-0.53312564f ,1f ,-0.97531676f ,-0.000031945918f ,-0.22081067f ,1f ,-0.8702736f ,-0.026235025f ,-0.49186963f ,1f ,-0.3302395f ,-0.05636771f ,-0.94221264f ,1f ,-0.6151513f ,0.028031098f ,-0.7879107f ,1f ,-0.66668093f ,-0.036154155f ,-0.7444659f ,1f ,-0.99998707f ,-0.0034151662f ,0.003776169f ,1f ,-0.9695556f ,-0.05545035f ,-0.23851022f ,1f ,-0.99998206f ,-0.0020853914f ,0.0056297723f ,1f ,-0.9999871f ,-0.0048519676f ,0.0015073911f ,1f ,-0.99998677f ,-0.00515411f ,-0.00011834718f ,1f ,-0.9766402f ,-0.032156907f ,-0.21246141f ,1f ,-0.9999808f ,0.00080315745f ,-0.006156246f ,1f ,-0.99998033f ,-0.00034434148f ,-0.006262504f ,1f ,-0.9686682f ,0.14717437f ,-0.2000541f ,1f ,-0.9752872f ,-0.08962501f ,-0.2019466f ,1f ,0.36848798f ,0.03669581f ,-0.92890805f ,1f ,0.090912595f ,-0.019668236f ,-0.99566466f ,1f ,0.65345174f ,0.1808337f ,-0.735051f ,1f ,0.78248805f ,0.27562228f ,-0.55834115f ,1f ,0.74765915f ,0.27613232f ,-0.60395104f ,1f ,0.6760122f ,0.31228396f ,-0.6674475f ,1f ,0.5257726f ,0.34808406f ,-0.7761448f ,1f ,0.593571f ,0.1410623f ,-0.79232246f ,1f ,0.2867342f ,0.049750518f ,-0.9567175f ,1f ,0.5871465f ,-0.35095167f ,-0.72944635f ,1f ,0.58658737f ,-0.27419746f ,-0.76205724f ,1f ,0.8020378f ,0.51982903f ,-0.29413146f ,1f ,0.88023174f ,-0.040240068f ,-0.47283506f ,1f ,0.8829896f ,-0.086995326f ,-0.46126053f ,1f ,-0.70298934f ,0.08517599f ,-0.7060815f ,1f ,-0.57505524f ,0.03481342f ,-0.8173736f ,1f ,-0.8793229f ,0.049904246f ,-0.4736041f ,1f ,-0.919172f ,0.17074706f ,-0.3549202f ,1f ,-0.9095258f ,0.10095633f ,-0.4032007f ,1f ,-0.73761725f ,-0.073993035f ,-0.6711526f ,1f ,-0.9294328f ,0.0075079654f ,-0.36891502f ,1f ,-0.91670763f ,-0.026322816f ,-0.3986906f ,1f ,0.741609f ,-0.6488535f ,0.17030945f ,1f ,0.59192234f ,-0.6477329f ,0.47965625f ,1f ,0.6648362f ,-0.6692436f ,0.33182207f ,1f ,0.574019f ,-0.67469954f ,0.46398562f ,1f ,0.09068755f ,-0.93495923f ,0.34296805f ,1f ,-0.1242504f ,-0.94439095f ,0.3044466f ,1f ,-0.116382f ,-0.82751983f ,0.5492415f ,1f ,-0.12888889f ,-0.9669299f ,0.22007787f ,1f ,0.22613667f ,-0.9409403f ,0.25197956f ,1f ,0.33897924f ,-0.92265517f ,0.18384917f ,1f ,0.07872436f ,-0.9436791f ,0.3213602f ,1f ,0.48237434f ,-0.8687307f ,0.11234841f ,1f ,0.89393544f ,0.19814165f ,-0.40201917f ,1f ,0.9071617f ,0.37613717f ,-0.18862253f ,1f ,0.9008029f ,0.3271643f ,-0.28551292f ,1f ,0.79741883f ,0.59217286f ,0.115994565f ,1f ,0.9351035f ,0.09292454f ,-0.34197444f ,1f ,0.9500815f ,0.03983578f ,-0.30944836f ,1f ,0.9362967f ,0.13559666f ,-0.32397842f ,1f ,0.99999934f ,-0.00115854f ,0.0003135664f ,1f ,0.99999815f ,-0.0013370601f ,0.0014005419f ,1f ,0.9875494f ,-0.15253624f ,-0.038455773f ,1f ,0.9745935f ,-0.18574235f ,-0.12516908f ,1f ,0.4975146f ,-0.6088167f ,-0.6179171f ,1f ,0.7864911f ,-0.48813108f ,-0.3783647f ,1f ,0.9702096f ,0.075403094f ,-0.23023398f ,1f ,0.98412704f ,0.05309488f ,-0.16933675f ,1f ,0.9897538f ,0.08429905f ,-0.1152441f ,1f ,0.83210284f ,0.00895077f ,-0.55454916f ,1f ,0.67300725f ,-0.16531044f ,-0.7209256f ,1f ,0.99999917f ,0.0012245406f ,-0.00042803588f ,1f ,0.99998206f ,0.0051371255f ,-0.003092628f ,1f ,0.6018141f ,0.23999518f ,-0.7617232f ,1f ,0.28676274f ,0.2750848f ,-0.9176576f ,1f ,0.8122712f ,-0.040406927f ,-0.5818787f ,1f ,0.7415337f ,-0.0045030466f ,-0.6709005f ,1f ,0.8538462f ,-0.06476771f ,-0.5164802f ,1f ,0.7700456f ,-0.094265506f ,-0.6309864f ,1f ,0.828976f ,-0.34881133f ,-0.43718362f ,1f ,0.7051424f ,-0.31130078f ,-0.6370762f ,1f ,0.8542169f ,0.24734537f ,-0.45731175f ,1f ,0.9650826f ,-0.053212747f ,-0.25648433f ,1f ,0.90333617f ,-0.1863522f ,-0.38633746f ,1f ,0.87442553f ,-0.435398f ,-0.21402976f ,1f ,-0.8709074f ,0.12351541f ,-0.47567236f ,1f ,-0.8110753f ,0.11575499f ,-0.57337403f ,1f ,-0.67139745f ,-0.16571009f ,-0.72233355f ,1f ,-0.83457893f ,-0.048237767f ,-0.5487724f ,1f ,-0.3738423f ,-0.26572073f ,-0.8886139f ,1f ,-0.58367956f ,-0.22348246f ,-0.780624f ,1f ,0.8155493f ,0.5786084f ,0.009578781f ,1f ,0.86553985f ,0.48370206f ,0.12989657f ,1f ,0.75050503f ,0.30646226f ,-0.58551097f ,1f ,0.9549152f ,-0.20989771f ,-0.20995197f ,1f ,0.76520073f ,-0.58405536f ,-0.27082717f ,1f ,0.81007695f ,-0.53184825f ,-0.24680537f ,1f ,0.80241513f ,-0.5688372f ,-0.18042774f ,1f ,0.7175465f ,0.061392304f ,-0.6937997f ,1f ,0.99492645f ,0.09287551f ,-0.038673144f ,1f ,0.9604525f ,0.02949841f ,-0.27687702f ,1f ,0.998091f ,0.05204944f ,-0.03324609f ,1f ,1f ,-0.00027826248f ,0.00003730851f ,1f ,0.95085347f ,0.049013942f ,-0.3057375f ,1f ,0.94246674f ,0.074064136f ,-0.32599226f ,1f ,0.95084965f ,0.07681799f ,-0.29997334f ,1f ,0.95109624f ,0.07476667f ,-0.29970974f ,1f ,0.97001547f ,0.02800386f ,-0.24142487f ,1f ,0.9856483f ,0.007842646f ,-0.1686299f ,1f ,0.94207674f ,-0.02065816f ,-0.33476084f ,1f ,0.96229804f ,0.00048365362f ,-0.27199706f ,1f ,1f ,-0.00012912859f ,0.00011372972f ,1f ,0.8574956f ,0.051487256f ,-0.51190865f ,1f ,0.89363766f ,0.086314745f ,-0.4404106f ,1f ,0.89977616f ,0.02358052f ,-0.43571433f ,1f ,0.9943697f ,0.10068534f ,-0.03303771f ,1f ,0.98977333f ,0.076544896f ,0.120373204f ,1f ,0.9966647f ,0.07721878f ,0.026397001f ,1f ,0.9882064f ,0.10610254f ,-0.110410586f ,1f ,0.90391946f ,0.11282476f ,-0.41255328f ,1f ,0.9935675f ,0.10872562f ,-0.03165933f ,1f ,0.97302496f ,0.11208574f ,-0.2016415f ,1f ,0.9955124f ,0.08366655f ,-0.044214636f ,1f ,0.965175f ,0.0823205f ,-0.24831586f ,1f ,0.98502004f ,0.07473987f ,-0.15540145f ,1f ,0.97347826f ,0.07955277f ,-0.21450293f ,1f ,0.98425996f ,0.11328609f ,-0.13564171f ,1f ,0.9942713f ,0.1065361f ,-0.00864264f ,1f ,0.978113f ,0.08011561f ,0.19203275f ,1f ,0.973087f ,0.13530076f ,0.18653521f ,1f ,0.99227166f ,0.11441387f ,0.04802674f ,1f ,0.9787723f ,0.07876408f ,0.18921171f ,1f ,0.9899012f ,0.10409427f ,0.096230105f ,1f ,0.9710519f ,0.13764828f ,0.19522132f ,1f ,0.9865523f ,0.10356232f ,-0.1264493f ,1f ,0.97228485f ,0.07577485f ,-0.22117987f ,1f ,0.9801834f ,0.09881072f ,-0.17168863f ,1f ,0.97163814f ,0.12575418f ,-0.20026277f ,1f ,0.8908257f ,0.16516986f ,-0.42325956f ,1f ,0.89388454f ,0.42915317f ,0.12960714f ,1f ,0.71371824f ,-0.4413887f ,0.5438588f ,1f ,0.061566565f ,-0.40520775f ,0.91214937f ,1f ,0.256061f ,-0.102461904f ,0.961215f ,1f ,0.80839914f ,-0.5151227f ,0.28485f ,1f ,0.84909976f ,0.13111804f ,-0.51170087f ,1f ,0.91085666f ,0.097274356f ,-0.40109608f ,1f ,0.42034027f ,-0.32833925f ,-0.8458768f ,1f ,0.89891213f ,0.13056785f ,-0.41822147f ,1f ,0.9752231f ,-0.031793136f ,0.21892723f ,1f ,0.93497604f ,0.027650988f ,0.35363173f ,1f ,0.36618233f ,-0.04567316f ,0.9294216f ,1f ,-0.09213362f ,0.09840249f ,0.99087256f ,1f ,0.30493525f ,0.097593345f ,0.9473595f ,1f ,-0.21990319f ,0.1808215f ,0.9586169f ,1f ,-0.83402675f ,0.022871595f ,0.5512498f ,1f ,-0.94082344f ,0.040351253f ,0.33648652f ,1f ,-0.75765055f ,0.13881508f ,0.63772714f ,1f ,-0.90942407f ,0.08395156f ,0.40730825f ,1f ,0.70654577f ,0.08770416f ,0.7022116f ,1f ,0.7370545f ,0.10217521f ,0.6680651f ,1f ,0.61726886f ,-0.012164962f ,0.7866582f ,1f ,0.38851914f ,0.047454797f ,0.9202179f ,1f ,0.9451321f ,0.055652928f ,0.32191315f ,1f ,0.973877f ,0.041804574f ,0.22319499f ,1f ,0.9972173f ,-0.061219733f ,0.042542476f ,1f ,0.9981241f ,-0.058471084f ,-0.018151436f ,1f ,-0.9794268f ,-0.15784705f ,0.1257281f ,1f ,-0.97076976f ,-0.14837205f ,0.18865803f ,1f ,-0.9803436f ,0.012233861f ,0.19691822f ,1f ,-0.9550138f ,0.07781606f ,0.28616986f ,1f ,0.6948282f ,0.70331377f ,-0.15021153f ,1f ,0.52466255f ,0.84682614f ,-0.087263554f ,1f });
  }
}
private class MFVec4f13 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.20372434f ,0.96589535f ,-0.15982088f ,1f ,0.14000998f ,0.9617924f ,-0.23527138f ,1f ,-0.97233593f ,-0.0330843f ,0.23123245f ,1f ,-0.974365f ,-0.06535725f ,0.21527036f ,1f ,-0.9717293f ,-0.09788191f ,0.21485198f ,1f ,-0.96758705f ,-0.13781442f ,0.21161897f ,1f ,-0.9753426f ,-0.010134247f ,0.22046359f ,1f ,-0.8474755f ,-0.02806233f ,0.5300922f ,1f ,-0.87073475f ,0.016156921f ,0.49148747f ,1f ,-0.66760886f ,0.026522122f ,0.7440397f ,1f ,-0.4547409f ,0.07841931f ,0.8871647f ,1f ,-0.6171276f ,-0.037815433f ,0.7859539f ,1f ,-0.33161876f ,0.046888433f ,0.94224757f ,1f ,-0.96809113f ,0.04866728f ,0.24582748f ,1f ,-0.9762328f ,0.02273327f ,0.21552882f ,1f ,-0.9727217f ,0.0879212f ,0.2146681f ,1f ,0.0896716f ,0.00991019f ,0.9959221f ,1f ,0.59353256f ,-0.14127243f ,0.7923138f ,1f ,0.28670362f ,-0.04995934f ,0.9567159f ,1f ,0.76999706f ,0.094013296f ,0.63108325f ,1f ,0.58653075f ,0.27397004f ,0.7621826f ,1f ,0.8828632f ,0.086834095f ,0.46153262f ,1f ,0.8800962f ,0.04004694f ,0.47310355f ,1f ,0.81222266f ,0.040155858f ,0.5819638f ,1f ,0.8997377f ,-0.023823828f ,0.43578056f ,1f ,0.96041596f ,-0.029777557f ,0.2769738f ,1f ,0.9949f ,-0.093139976f ,0.038718924f ,1f ,-0.70527184f ,-0.09427935f ,0.7026401f ,1f ,-0.5762834f ,-0.04417803f ,0.8160551f ,1f ,-0.8816219f ,-0.058514975f ,0.46831512f ,1f ,-0.91253453f ,-0.10708513f ,0.3947323f ,1f ,-0.9222564f ,-0.17454109f ,0.34493256f ,1f ,-0.7374252f ,0.06424655f ,0.6723663f ,1f ,-0.5957517f ,0.1298227f ,0.7926071f ,1f ,-0.9266626f ,-0.014375199f ,0.375619f ,1f ,-0.91570175f ,0.016894167f ,0.4015035f ,1f ,0.5918875f ,0.6477769f ,-0.4796398f ,1f ,0.5739798f ,0.674738f ,-0.46397835f ,1f ,0.49477506f ,0.58469945f ,-0.64290303f ,1f ,0.07251859f ,0.9102123f ,-0.40774345f ,1f ,0.09068663f ,0.9349569f ,-0.34297457f ,1f ,-0.12424952f ,0.94438833f ,-0.30445477f ,1f ,0.22613908f ,0.94093764f ,-0.25198707f ,1f ,0.078728616f ,0.94367546f ,-0.32136965f ,1f ,0.3389808f ,0.92265344f ,-0.18385547f ,1f ,0.48237598f ,0.8687296f ,-0.11235003f ,1f ,0.9070069f ,-0.3758616f ,0.18991181f ,1f ,0.79337364f ,-0.60107225f ,-0.09628334f ,1f ,0.91810757f ,-0.3923983f ,0.055697914f ,1f ,0.8932929f ,-0.43783987f ,-0.101607986f ,1f ,0.9999998f ,-0.00054867455f ,0.00031776214f ,1f ,0.9498411f ,-0.04125816f ,0.30999944f ,1f ,0.935035f ,-0.09318644f ,0.34209043f ,1f ,0.93599606f ,-0.13651828f ,0.32446f ,1f ,0.98777175f ,0.15154049f ,0.03663988f ,1f ,0.49769866f ,0.6111856f ,0.6154252f ,1f ,0.9746712f ,0.18553816f ,0.12486704f ,1f ,0.7843917f ,0.4936728f ,0.3755219f ,1f ,0.9840747f ,-0.0535743f ,0.16949013f ,1f ,0.99999994f ,-0.00033827985f ,0.00014376378f ,1f ,0.7414863f ,0.0042695706f ,0.6709544f ,1f ,0.8537985f ,0.064507455f ,0.51659167f ,1f ,0.70498365f ,0.3111581f ,0.6373216f ,1f ,0.8029004f ,0.14573711f ,0.57802385f ,1f ,0.96508276f ,0.05321265f ,0.25648353f ,1f ,0.92938584f ,-0.30141664f ,-0.21304928f ,1f ,0.854215f ,-0.2473443f ,0.45731577f ,1f ,0.865535f ,-0.48371002f ,-0.12989917f ,1f ,-0.87484807f ,-0.12806097f ,0.46716312f ,1f ,-0.8150074f ,-0.12233975f ,0.56638867f ,1f ,-0.9339571f ,0.15589437f ,0.3215918f ,1f ,-0.8112568f ,0.019308992f ,0.5843712f ,1f ,-0.66993225f ,0.15693702f ,0.72564566f ,1f ,-0.83254385f ,0.039430536f ,0.55255395f ,1f ,-0.27469784f ,0.36746868f ,0.8885426f ,1f ,-0.57834053f ,0.21763144f ,0.7862307f ,1f ,0.8577135f ,0.017272303f ,0.5138377f ,1f ,0.7505062f ,-0.30645725f ,0.58551204f ,1f ,0.8482698f ,0.19614014f ,0.49190205f ,1f ,0.737339f ,0.026870726f ,0.67498827f ,1f ,0.95491636f ,0.20990472f ,0.20994017f ,1f ,0.8100458f ,0.5318932f ,0.24681085f ,1f ,0.7651874f ,0.5840839f ,0.27080303f ,1f ,0.802384f ,0.56887776f ,0.1804388f ,1f ,0.8654248f ,0.44163153f ,0.23664689f ,1f ,0.86532515f ,0.41297975f ,0.28400722f ,1f ,0.76331055f ,0.63750637f ,0.10460824f ,1f ,0.70025414f ,0.70323163f ,0.12292035f ,1f ,0.9980696f ,-0.052439425f ,0.033275805f ,1f ,0.9509999f ,-0.049265746f ,0.30524096f ,1f ,0.94251204f ,-0.07426402f ,0.32581577f ,1f ,0.9502996f ,-0.08656045f ,0.29906195f ,1f ,0.9116681f ,-0.14778703f ,0.38343215f ,1f ,0.87619644f ,-0.15283665f ,0.45707873f ,1f ,0.87654734f ,-0.10975644f ,0.4686346f ,1f ,0.60182196f ,-0.24019068f ,0.7616554f ,1f ,0.8017624f ,-0.12869085f ,0.583623f ,1f ,0.83909976f ,-0.14375165f ,0.52463996f ,1f ,0.28679934f ,-0.27526224f ,0.91759294f ,1f ,-0.3721007f ,0.25721106f ,0.89184284f ,1f ,0.12371563f ,0.30979446f ,0.94272053f ,1f ,0.9699719f ,-0.028277468f ,0.24156801f ,1f ,0.9856102f ,-0.008085784f ,0.1688408f ,1f ,0.8536721f ,-0.22973767f ,0.46740195f ,1f ,0.9509703f ,-0.07715354f ,0.29950446f ,1f ,0.8957479f ,-0.19645526f ,0.39879948f ,1f ,0.9511165f ,-0.074978545f ,0.29959244f ,1f ,0.85746485f ,-0.051719625f ,0.5119367f ,1f ,0.9701967f ,-0.07549772f ,0.23025744f ,1f ,0.9040767f ,-0.112527765f ,0.4122898f ,1f ,0.9882087f ,-0.10608549f ,0.110405795f ,1f ,0.99434566f ,-0.10091387f ,0.033064373f ,1f ,0.989756f ,-0.07680481f ,-0.120349675f ,1f ,0.9897293f ,-0.08456723f ,0.11525847f ,1f ,0.99664235f ,-0.077507146f ,-0.026395075f ,1f ,0.99356323f ,-0.10876557f ,0.031658463f ,1f ,0.97304535f ,-0.11207851f ,0.2015469f ,1f ,0.9955001f ,-0.08381788f ,0.04420571f ,1f ,0.9651649f ,-0.082502626f ,0.24829465f ,1f ,0.98500484f ,-0.07492776f ,0.1554075f ,1f ,0.8936226f ,-0.086536385f ,0.44039783f ,1f ,0.9734579f ,-0.07977958f ,0.2145115f ,1f ,0.9842316f ,-0.11351246f ,0.13565792f ,1f ,0.97104496f ,-0.13769299f ,-0.19522436f ,1f ,0.9730789f ,-0.1353657f ,-0.18653034f ,1f ,0.978099f ,-0.080344886f ,-0.19200803f ,1f ,0.99424976f ,-0.106734134f ,0.008673345f ,1f ,0.99225265f ,-0.11458149f ,-0.04802019f ,1f ,0.97875184f ,-0.079003006f ,-0.18921767f ,1f ,0.98988277f ,-0.1042419f ,-0.09625896f ,1f ,0.9865391f ,-0.10371054f ,0.12643123f ,1f ,0.9722717f ,-0.07592969f ,0.22118446f ,1f ,0.98016286f ,-0.099008895f ,0.17169191f ,1f ,0.9716077f ,-0.12595466f ,0.20028502f ,1f ,0.8915502f ,-0.16417727f ,0.4221186f ,1f ,0.8292713f ,-0.18088455f ,0.52876264f ,1f ,0.9999961f ,0.0027355058f ,0.0005972301f ,1f ,0.99993074f ,-0.002412143f ,0.01152403f ,1f ,0.7159256f ,0.44122565f ,-0.5410827f ,1f ,0.9999985f ,-0.00022299777f ,0.0017217834f ,1f ,0.8554951f ,-0.06364692f ,0.51388437f ,1f ,0.8086282f ,0.5152333f ,-0.28399864f ,1f ,0.42798993f ,0.32290894f ,0.84412944f ,1f ,0.84861887f ,-0.13179114f ,0.5123252f ,1f ,0.71556294f ,-0.35804588f ,-0.59981066f ,1f ,0.8616119f ,-0.2920046f ,-0.41516057f ,1f ,0.06187836f ,0.40639982f ,-0.9115976f ,1f ,0.2562503f ,0.10285925f ,-0.96112216f ,1f ,0.8998905f ,-0.32789272f ,0.28754756f ,1f ,0.8313046f ,-0.013747877f ,0.5556471f ,1f ,0.67162704f ,0.15762806f ,0.7239272f ,1f ,0.9647783f ,0.08368663f ,-0.24939822f ,1f ,0.9555724f ,0.07116613f ,-0.28603646f ,1f ,0.8505842f ,0.23171623f ,-0.47203192f ,1f ,0.8276453f ,0.18196675f ,-0.5309346f ,1f ,0.9648517f ,-0.08382019f ,0.24906904f ,1f ,0.95557404f ,-0.0713842f ,0.28597668f ,1f ,0.9999974f ,0.0021143933f ,0.00086760434f ,1f ,0.99999976f ,-0.00043584427f ,-0.0006262457f ,1f ,0.9391821f ,-0.2729969f ,0.20834985f ,1f ,0.99995726f ,-0.0018836244f ,0.009055951f ,1f ,0.9391553f ,0.27295116f ,-0.208531f ,1f ,0.9201436f ,0.3893552f ,-0.04169239f ,1f ,0.899135f ,-0.13048662f ,0.41776723f ,1f ,0.8525951f ,-0.053811595f ,0.5197942f ,1f ,0.71752036f ,-0.061621126f ,0.6938065f ,1f ,0.8017692f ,0.12847042f ,-0.5836623f ,1f ,0.8390762f ,0.14354612f ,-0.5247339f ,1f ,0.87401587f ,-0.094069034f ,0.4767048f ,1f ,0.9622399f ,-0.0007191201f ,0.272202f ,1f ,0.9419918f ,0.020466052f ,0.3350114f ,1f ,0.8814961f ,0.07296411f ,0.4665202f ,1f ,0.87795615f ,0.05571169f ,0.4754884f ,1f ,0.78436285f ,0.15605338f ,0.6003518f ,1f ,0.7859217f ,0.128039f ,0.6049242f ,1f ,0.575182f ,0.40640593f ,0.70992947f ,1f ,0.58702046f ,0.3507683f ,0.729636f ,1f ,0.75015986f ,0.64381105f ,-0.15088965f ,1f ,0.690581f ,0.683156f ,-0.23747812f ,1f ,0.9699967f ,0.14727712f ,-0.19343182f ,1f ,0.897629f ,0.4306712f ,0.09372639f ,1f ,-0.80764467f ,-0.027548695f ,-0.5890256f ,1f ,0.7633088f ,-0.63750803f ,-0.10460989f ,1f ,0.80326074f ,-0.58580595f ,-0.10772058f ,1f ,0.89762896f ,-0.4306705f ,-0.09372961f ,1f ,0.6906046f ,-0.6831405f ,0.23745374f ,1f ,0.7501934f ,-0.64376837f ,0.15090501f ,1f ,0.5753258f ,-0.40656894f ,-0.70971966f ,1f ,0.9387457f ,-0.14207445f ,-0.31396094f ,1f ,0.8780658f ,-0.05590014f ,-0.47526366f ,1f ,0.80303746f ,-0.14590211f ,-0.577792f ,1f ,0.7844771f ,-0.1562498f ,-0.60015136f ,1f ,0.99395216f ,-0.05289849f ,0.096233554f ,1f ,1f ,-0.00015712276f ,0.000064140826f ,1f ,0.9939806f ,0.052605923f ,-0.0961008f ,1f ,0.8289977f ,0.34861255f ,0.43730116f ,1f ,0.80150324f ,-0.5203285f ,0.2947049f ,1f ,0.9387175f ,0.14180125f ,0.31416878f ,1f ,0.8654236f ,-0.44163293f ,-0.23664862f ,1f ,0.64983195f ,-0.18951467f ,0.7360725f ,1f ,-0.12889366f ,0.9669298f ,-0.22007543f ,1f ,-0.11638717f ,0.82751703f ,-0.5492447f ,1f ,0.7373404f ,-0.026866818f ,-0.67498696f ,1f ,0.8482716f ,-0.19623312f ,-0.49186158f ,1f ,0.85771424f ,-0.017272457f ,-0.5138365f ,1f ,-0.9516935f ,-0.08140198f ,-0.29606295f ,1f ,0.41563684f ,-0.3246489f ,0.84961706f ,1f ,0.81554836f ,-0.5786097f ,-0.009579283f ,1f ,0.8740276f ,0.093848936f ,-0.4767267f ,1f ,0.87649816f ,0.109574646f ,-0.4687691f ,1f });
  }
}
private class MFVec4f14 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.8983158f ,-0.18788926f ,0.39714813f ,1f ,0.74779856f ,-0.27615064f ,0.6037699f ,1f ,0.78257936f ,-0.2757196f ,0.5581651f ,1f ,0.6760877f ,-0.31242862f ,0.6673034f ,1f ,0.95488095f ,-0.07000824f ,0.2886198f ,1f ,0.9624302f ,-0.030380718f ,0.26982468f ,1f ,0.9375977f ,-0.036007673f ,0.3458527f ,1f ,0.93628836f ,0.02735807f ,0.35016522f ,1f ,0.9502303f ,0.08648714f ,-0.2993031f ,1f ,0.89820373f ,0.1879046f ,-0.3973941f ,1f ,0.9115838f ,0.14772068f ,-0.3836584f ,1f ,0.8761004f ,0.15277857f ,-0.4572822f ,1f ,-0.28165627f ,-0.37290958f ,-0.88408613f ,1f ,0.5258828f ,-0.34819844f ,0.77601874f ,1f ,0.95477754f ,0.069952555f ,-0.28897482f ,1f ,0.937298f ,0.036322035f ,-0.3466314f ,1f ,0.49481356f ,-0.58467823f ,0.64289266f ,1f ,0.07252574f ,-0.9102143f ,0.40773785f ,1f ,0.20372705f ,-0.9658945f ,0.15982206f ,1f ,0.4156436f ,0.324646f ,-0.84961486f ,1f ,0.801941f ,-0.56181395f ,-0.20311551f ,1f ,0.7947518f ,-0.60109544f ,-0.08398682f ,1f ,0.70025563f ,-0.70323f ,-0.12292097f ,1f ,0.78220975f ,-0.622097f ,0.03381279f ,1f ,0.6647992f ,0.66928655f ,-0.33180955f ,1f ,0.7415743f ,0.6488973f ,-0.17029329f ,1f ,0.33823714f ,0.92717254f ,-0.16108015f ,1f ,0.6417592f ,0.76690584f ,-0.00069815223f ,1f ,0.8019063f ,0.5618588f ,0.20312838f ,1f ,0.79471904f ,0.60113657f ,0.08400388f ,1f ,0.9033354f ,0.18635318f ,0.38633895f ,1f ,0.874427f ,0.43539652f ,0.21402656f ,1f ,0.7821803f ,0.62213486f ,-0.03379668f ,1f ,0.8032609f ,0.5858058f ,0.107719645f ,1f ,-0.99998033f ,0.0022325884f ,-0.0058726515f ,1f ,-0.9766487f ,-0.20394145f ,0.06756808f ,1f ,-0.92493933f ,-0.36771584f ,0.096292734f ,1f ,0.92938775f ,0.30141193f ,0.2130478f ,1f ,0.9699968f ,-0.14727543f ,0.19343227f ,1f ,0.69483304f ,-0.7033084f ,0.15021452f ,1f ,0.8653441f ,-0.41287038f ,-0.28410858f ,1f ,0.9024917f ,-0.2494724f ,0.35110155f ,1f ,0.8998754f ,0.25122222f ,-0.3565272f ,1f ,0.9569197f ,-0.13817383f ,0.25536773f ,1f ,0.95684594f ,0.13819472f ,-0.2556326f ,1f ,0.9361454f ,-0.02712245f ,-0.3505654f ,1f ,0.9623004f ,0.030412775f ,-0.27028322f ,1f ,0.85286456f ,0.05312717f ,-0.51942235f ,1f ,0.30580005f ,-0.10623451f ,-0.9461505f ,1f ,0.12092109f ,-0.31770197f ,-0.9404486f ,1f ,0.37576345f ,-0.4766769f ,0.7947207f ,1f ,0.5407134f ,-0.19223867f ,0.8189465f ,1f ,-0.034279972f ,-0.3402457f ,0.9397116f ,1f ,0.37413833f ,-0.17117096f ,0.91143906f ,1f ,0.6017775f ,0.35639444f ,0.7147356f ,1f ,0.09236765f ,0.15572724f ,0.98347205f ,1f ,0.5810522f ,-0.04215101f ,0.8127742f ,1f ,0.40153685f ,-0.12697272f ,0.9069985f ,1f ,0.092268154f ,-0.15561199f ,-0.9834996f ,1f ,0.4014074f ,0.12720357f ,-0.90702343f ,1f ,-0.034065265f ,0.3404376f ,-0.9396498f ,1f ,0.37435237f ,0.17148425f ,-0.9112922f ,1f ,0.60127276f ,-0.35646063f ,-0.7151272f ,1f ,0.58075756f ,0.04230973f ,-0.81297636f ,1f ,0.376915f ,0.47690842f ,-0.7940362f ,1f ,0.5410762f ,0.19240487f ,-0.81866777f ,1f ,0.9999965f ,-0.0009130306f ,0.0024963035f ,1f ,0.9999999f ,-0.0000015595434f ,0.0005549405f ,1f ,0.9999991f ,-0.00058955804f ,-0.0012208866f ,1f ,1f ,0.000044998123f ,-0.00032123315f ,1f ,0.78410614f ,-0.06520327f ,0.6171922f ,1f ,0.8759709f ,-0.12211365f ,0.466651f ,1f ,0.8829458f ,0.087261125f ,0.46129432f ,1f ,0.78410804f ,0.06536479f ,-0.61717266f ,1f ,0.8829084f ,-0.08712559f ,-0.46139133f ,1f ,0.87602705f ,0.122265466f ,-0.4665059f ,1f ,1f ,0.00004848501f ,0.00007793864f ,1f ,1f ,0.000043991426f ,-0.000058316367f ,1f ,1f ,0.00007388009f ,-9.367123e-7f ,1f ,-0.9999733f ,-0.000501537f ,0.0072962428f ,1f ,0.7860129f ,-0.1282566f ,-0.60475945f ,1f ,0.88157403f ,-0.073195115f ,-0.4663365f ,1f ,0.7156595f ,0.35893494f ,0.5991639f ,1f ,0.8613356f ,0.30625412f ,0.4053512f ,1f ,0.9999852f ,0.0054255584f ,-0.00052019395f ,1f ,-0.93012065f ,-0.16377828f ,-0.32871306f ,1f });
  }
}
private class MFVec2f15 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.6096966f ,0.2700061f ,0.6069481f ,0.27986938f ,0.59095436f ,0.26820323f ,0.59095305f ,0.27669397f ,0.59096414f ,0.20463614f ,0.038486928f ,0.19107586f ,0.04878694f ,0.14717224f ,0.072282955f ,0.19128285f ,0.08628045f ,0.15004672f ,0.10574275f ,0.09892336f ,0.08865541f ,0.044327527f ,0.17014965f ,0.07074648f ,0.14401467f ,0.021514073f ,0.7705875f ,0.40325338f ,0.754879f ,0.45037404f ,0.73515624f ,0.3965328f ,0.71970403f ,0.43169308f ,0.6353876f ,0.5342693f ,0.5909194f ,0.5336103f ,0.6293673f ,0.50860363f ,0.5909229f ,0.5113549f ,0.62327576f ,0.42817718f ,0.5909359f ,0.42335197f ,0.62389857f ,0.4027059f ,0.5909388f ,0.40008622f ,0.148662f ,0.35599014f ,0.1863742f ,0.36649325f ,0.1466281f ,0.3635384f ,0.18892096f ,0.39223996f ,0.4678233f ,0.74920094f ,0.46831334f ,0.7430516f ,0.47892568f ,0.75230175f ,0.48277712f ,0.7432378f ,0.1829776f ,0.2734569f ,0.18333918f ,0.2357377f ,0.22808252f ,0.27584615f ,0.22830015f ,0.23485203f ,0.22796237f ,0.29846862f ,0.2278266f ,0.32404688f ,0.18232657f ,0.29762676f ,0.18218765f ,0.32133526f ,0.14295514f ,0.23525247f ,0.18611991f ,0.20098728f ,0.14387314f ,0.19465011f ,0.054318577f ,0.24916945f ,0.10247803f ,0.23823419f ,0.109710604f ,0.19348942f ,0.22894992f ,0.11243829f ,0.18344605f ,0.11225166f ,0.22921616f ,0.062232554f ,0.22873189f ,0.15353489f ,0.22847587f ,0.20176631f ,0.18732125f ,0.15289815f ,0.22757246f ,0.37184197f ,0.22769935f ,0.34797525f ,0.18253438f ,0.34467655f ,0.18538608f ,0.010668039f ,0.0078125f ,0.18963866f ,0.016999096f ,0.22814848f ,0.00804019f ,0.23402321f ,0.70437986f ,0.28980872f ,0.7265455f ,0.24446869f ,0.7198578f ,0.29887995f ,0.75712645f ,0.28020683f ,0.7396367f ,0.35017118f ,0.7767286f ,0.35197f ,0.7326058f ,0.47795564f ,0.73654103f ,0.4612829f ,0.75480795f ,0.48462543f ,0.6897878f ,0.5371552f ,0.67720854f ,0.51398474f ,0.10660794f ,0.26483476f ,0.077769175f ,0.26662338f ,0.14653498f ,0.26825422f ,0.15065831f ,0.31458965f ,0.1525117f ,0.29400283f ,0.12040672f ,0.15324402f ,0.14837174f ,0.11589831f ,0.14921466f ,0.1540158f ,0.869929f ,0.06012857f ,0.8820116f ,0.034707487f ,0.8817902f ,0.053171158f ,0.8958146f ,0.04325378f ,0.54225665f ,0.7569346f ,0.5002347f ,0.7460511f ,0.5429614f ,0.74620956f ,0.5003227f ,0.7412822f ,0.5168894f ,0.7859378f ,0.49523196f ,0.7990819f ,0.48978782f ,0.7616518f ,0.47796208f ,0.77314985f ,0.62270886f ,0.30806026f ,0.6137618f ,0.31876138f ,0.6156051f ,0.30605447f ,0.6100286f ,0.31650403f ,0.6153715f ,0.3547477f ,0.6053641f ,0.3432482f ,0.60820496f ,0.3400769f ,0.5909422f ,0.34449518f ,0.5909424f ,0.33473748f ,0.60500914f ,0.29583034f ,0.59632486f ,0.29224396f ,0.6039944f ,0.29343215f ,0.5955018f ,0.29097134f ,0.6261709f ,0.3635149f ,0.6090742f ,0.37000823f ,0.62259954f ,0.37285125f ,0.6054562f ,0.28493914f ,0.60323167f ,0.28862926f ,0.5909531f ,0.28145882f ,0.5909389f ,0.28519356f ,0.7348596f ,0.31912968f ,0.7722294f ,0.3138668f ,0.6856133f ,0.42280358f ,0.70110554f ,0.39080513f ,0.6781204f ,0.4529076f ,0.7059436f ,0.45521873f ,0.7233737f ,0.52726114f ,0.7108723f ,0.51291585f ,0.4289019f ,0.7592261f ,0.44398198f ,0.7487129f ,0.43687934f ,0.7648604f ,0.4477641f ,0.75438446f ,0.12736665f ,0.30508104f ,0.122098334f ,0.28893468f ,0.09480251f ,0.12329386f ,0.1192503f ,0.13096042f ,0.059815705f ,0.11565196f ,0.07431215f ,0.09139467f ,0.41400918f ,0.768427f ,0.4269337f ,0.7565305f ,0.41644663f ,0.77109885f ,0.81723243f ,0.009399235f ,0.8461451f ,0.010712266f ,0.8247832f ,0.030690432f ,0.848184f ,0.029788435f ,0.70565194f ,0.3644729f ,0.647749f ,0.4058019f ,0.6535973f ,0.42861697f ,0.61197704f ,0.38562262f ,0.5909402f ,0.3873853f ,0.63605845f ,0.30038112f ,0.6687614f ,0.29702196f ,0.63884515f ,0.31009814f ,0.66804606f ,0.3117894f ,0.6495149f ,0.45182255f ,0.6258186f ,0.47577205f ,0.6500312f ,0.4927902f ,0.64865243f ,0.4726661f ,0.590928f ,0.4788845f ,0.68117005f ,0.38497743f ,0.67876655f ,0.36180645f ,0.66865325f ,0.4002368f ,0.645858f ,0.392859f ,0.63393956f ,0.39081407f ,0.62376875f ,0.38073543f ,0.63141596f ,0.35572827f ,0.6272637f ,0.34759688f ,0.6419958f ,0.3492294f ,0.63776064f ,0.33364484f ,0.6566096f ,0.35187316f ,0.6640659f ,0.34199557f ,0.6661996f ,0.36259446f ,0.66881704f ,0.37992328f ,0.65961266f ,0.38920844f ,0.64638585f ,0.37744907f ,0.638542f ,0.377931f ,0.6343234f ,0.36682612f ,0.63183486f ,0.37239859f ,0.6308951f ,0.37785497f ,0.64493847f ,0.36014092f ,0.63811463f ,0.36290905f ,0.6515883f ,0.36061966f ,0.6579131f ,0.36617643f ,0.662303f ,0.3761757f ,0.6540525f ,0.37721354f ,0.6192395f ,0.33882844f ,0.5996055f ,0.3253044f ,0.5988698f ,0.3242693f ,0.6092598f ,0.31583992f ,0.61310184f ,0.3041654f ,0.61303496f ,0.30302277f ,0.61502594f ,0.30109063f ,0.6127113f ,0.30191246f ,0.61220425f ,0.29814148f ,0.6214963f ,0.29932505f ,0.5722117f ,0.2700006f ,0.57494503f ,0.2798721f ,0.44925556f ,0.19198166f ,0.41856763f ,0.1930932f ,0.44586998f ,0.14189704f ,0.40873414f ,0.14908244f ,0.35229343f ,0.10023162f ,0.28818905f ,0.07137272f ,0.36995876f ,0.04581988f ,0.3148445f ,0.022420317f ,0.4621669f ,0.43165553f ,0.42698658f ,0.45032626f ,0.44672468f ,0.3964918f ,0.41129154f ,0.403203f ,0.54645103f ,0.5342557f ,0.55247974f ,0.50859183f ,0.5585953f ,0.42816642f ,0.5579797f ,0.40269372f ,0.2688252f ,0.36693144f ,0.27289677f ,0.34515664f ,0.3066469f ,0.3568297f ,0.31786203f ,0.33581758f ,0.66494006f ,0.7478191f ,0.6637714f ,0.75172246f ,0.64988023f ,0.7471909f ,0.64930755f ,0.7519086f ,0.2732492f ,0.23621492f ,0.27321023f ,0.2739359f ,0.27360448f ,0.29811132f ,0.27349165f ,0.32182017f ,0.27083763f ,0.20143689f ,0.31363633f ,0.2361584f ,0.31314936f ,0.19554852f ,0.34732234f ,0.19475052f ,0.38477138f ,0.19294135f ,0.35407943f ,0.23956971f ,0.40211985f ,0.25101587f ,0.2744532f ,0.11273457f ,0.2701469f ,0.15333775f ,0.2735904f ,0.011135966f ,0.4396605f ,0.23039208f ,0.44225642f ,0.3501303f ,0.4051641f ,0.35191977f ,0.47592026f ,0.4551847f ,0.44532123f ,0.46124008f ,0.50463694f ,0.51395863f ,0.4920503f ,0.53712535f ,0.49626023f ,0.42277515f ,0.51322687f ,0.4002127f ,0.5282743f ,0.42859733f ,0.5341292f ,0.4057832f ,0.34966707f ,0.26612505f ,0.3784851f ,0.26821998f ,0.30970603f ,0.26912028f ,0.30345613f ,0.2948043f ,0.30509046f ,0.31540954f ,0.337054f ,0.1543937f ,0.37121236f ,0.15155882f ,0.30948675f ,0.11675325f ,0.3082395f ,0.15485978f ,0.4038485f ,0.034708202f ,0.39004603f ,0.04325527f ,0.39178973f ,0.008662939f ,0.3646931f ,0.007822752f ,0.589828f ,0.76560605f ,0.63184994f ,0.75472224f ,0.6151955f ,0.79460883f ,0.64229697f ,0.77032274f ,0.63685286f ,0.80775285f ,0.6541228f ,0.7818207f ,0.5680584f ,0.318863f ,0.5718501f ,0.31651643f ,0.5793435f ,0.32735112f ,0.5822697f ,0.32532564f ,0.5909414f ,0.3591021f ,0.57652545f ,0.34321994f ,0.5665198f ,0.35472617f ,0.5736868f ,0.34003988f ,0.5768913f ,0.29583836f ,0.57790685f ,0.2934436f ,0.58558226f ,0.29225048f ,0.58640754f ,0.29098028f ,0.57281137f ,0.36999673f ,0.5909417f ,0.36982948f ,0.4807771f ,0.390773f ,0.50374424f ,0.45288137f ,0.47097373f ,0.5128797f ,0.48492858f ,0.50367063f ,0.68810284f ,0.75738364f ,0.69052523f ,0.7553451f ,0.7031829f ,0.7678968f ,0.7051511f ,0.76520133f ,0.32848266f ,0.3061486f ,0.33392143f ,0.29005936f ,0.33640105f ,0.31543067f ,0.3583573f ,0.29019323f ,0.36297446f ,0.124717f ,0.33844674f ,0.13212363f ,0.41120738f ,0.076185256f ,0.38380212f ,0.0930368f ,0.700989f ,0.78881276f ,0.71563816f ,0.77976954f ,0.7107154f ,0.80808026f ,0.72920376f ,0.7985714f ,0.4686262f ,0.009396195f ,0.46107674f ,0.030687988f ,0.43971366f ,0.010710895f ,0.43767586f ,0.029787242f ,0.68546367f ,0.7886519f ,0.68790585f ,0.812604f ,0.6689405f ,0.7871295f ,0.66021013f ,0.8126091f ,0.5699053f ,0.38561296f ,0.5458488f ,0.3003705f ,0.51314497f ,0.29700017f ,0.52968556f ,0.2779595f ,0.5130678f ,0.28152844f ,0.49153113f ,0.28155792f ,0.48767772f ,0.2986387f ,0.4470411f ,0.31909072f ,0.48277023f ,0.33110812f ,0.4827128f ,0.31434157f ,0.40967247f ,0.31381887f ,0.39804044f ,0.11744666f ,0.43462622f ,0.10559088f ,0.5323496f ,0.45180437f ,0.5560385f ,0.47576123f ,0.5557405f ,0.31846327f ,0.54305977f ,0.3100849f ,0.5591963f ,0.30805433f ,0.51385707f ,0.31176725f ,0.50071436f ,0.3849502f ,0.55571973f ,0.3634968f ,0.5546332f ,0.34757534f ,0.55047786f ,0.35570863f ,0.53602386f ,0.39284027f ,0.5479425f ,0.39079812f ,0.55928737f ,0.37283614f ,0.55811596f ,0.38072127f ,0.5398999f ,0.34920996f ,0.54413974f ,0.3336277f ,0.5252844f ,0.35185143f ,0.51783025f ,0.34197298f ,0.5156912f ,0.3625708f ,0.50312424f ,0.36178002f ,0.51306885f ,0.37989894f ,0.52227056f ,0.38918635f ,0.54377663f ,0.3628901f ,0.54756635f ,0.36680785f ,0.5433443f ,0.37791294f ,0.53550076f ,0.3774293f ,0.55005306f ,0.3723814f ,0.5509909f ,0.3778386f ,0.5369535f ,0.3601209f ,0.53030336f ,0.3605985f ,0.5239769f ,0.36615422f ,0.51958406f ,0.37615287f ,0.52783436f ,0.37719223f ,0.5626542f ,0.3388022f ,0.55263174f ,0.33237815f ,0.59093815f ,0.3274592f ,0.59094185f ,0.32979944f ,0.58300614f ,0.3242836f ,0.590938f ,0.32596707f ,0.5691864f ,0.30191654f ,0.5688623f ,0.3030273f ,0.56969625f ,0.2981424f ,0.5668764f ,0.3010921f ,0.5998477f ,0.28932145f ,0.5940874f ,0.2887111f ,0.57262206f ,0.315859f ,0.5687945f ,0.30417067f ,0.5662962f ,0.30606002f ,0.57643956f ,0.2849378f ,0.5787076f ,0.2885869f ,0.6393582f ,0.32288116f ,0.6676538f ,0.3271357f ,0.6261613f ,0.31845912f ,0.6292639f ,0.33239338f ,0.5425444f ,0.32286578f ,0.51424575f ,0.32711297f ,0.59095466f ,0.29066497f ,0.5909541f ,0.29229933f ,0.5763313f ,0.33179125f ,0.59093726f ,0.3333467f ,0.6055069f ,0.33170658f ,0.6024646f ,0.32726172f ,0.5604042f ,0.299333f ,0.5656056f ,0.29369953f ,0.47623783f ,0.36444002f ,0.6991279f ,0.33113864f ,0.69918925f ,0.3143716f ,0.4874053f ,0.3471652f ,0.53320587f ,0.47264844f ,0.5318209f ,0.4927721f ,0.5074627f ,0.47102982f ,0.5076565f ,0.49231777f ,0.48240617f ,0.49093476f ,0.47975838f ,0.4710682f ,0.45823228f ,0.49596107f ,0.44925115f ,0.47791362f ,0.42005295f ,0.029491425f ,0.41699094f ,0.0078125f ,0.6779487f ,0.7498971f ,0.6757929f ,0.7528749f ,0.09766285f ,0.28880936f ,0.46314433f ,0.7784586f ,0.45750782f ,0.7501642f ,0.4562918f ,0.74420416f ,0.86886775f ,0.0078125f ,0.8658068f ,0.029491782f ,0.7236192f ,0.49600074f ,0.74489045f ,0.5121592f ,0.6741958f ,0.49234295f ,0.6969203f ,0.5037026f ,0.6994467f ,0.49096727f ,0.5575918f ,0.45356733f ,0.59093153f ,0.45458102f ,0.624272f ,0.45357785f ,0.45846775f ,0.5272212f ,0.427047f ,0.48457658f ,0.43695578f ,0.512113f ,0.44662118f ,0.77998126f ,0.44855648f ,0.23636173f ,0.63176185f ,0.74995315f ,0.5891232f ,0.754881f ,0.40288123f ,0.7899009f ,0.42136806f ,0.79940885f ,0.43109584f ,0.78014195f ,0.1376717f ,0.33486164f ,0.7342793f ,0.7927817f ,0.7180757f ,0.77709776f ,0.69448894f ,0.34719488f ,0.694228f ,0.29866713f });
  }
}
private class MFVec2f16 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.50867105f ,0.21961078f ,0.4553724f ,0.24443313f ,0.4775278f ,0.289778f ,0.4620476f ,0.29884514f ,0.5475232f ,0.27524018f ,0.55991447f ,0.27303225f ,0.5522944f ,0.2922046f ,0.56209946f ,0.28488478f ,0.6522243f ,0.27797592f ,0.67325276f ,0.21963319f ,0.66884166f ,0.28154972f ,0.6903784f ,0.28158507f ,0.047087163f ,0.07425339f ,0.42478326f ,0.28016335f ,0.63438624f ,0.2752516f ,0.6296002f ,0.2922003f ,0.89406896f ,0.008661568f ,0.9211656f ,0.00782007f ,0.48220435f ,0.73852f ,0.39780575f ,0.784111f ,0.8336991f ,0.045067787f ,0.8466929f ,0.05576551f ,0.47187427f ,0.8039386f ,0.85837f ,0.060067296f ,0.4040709f ,0.053171813f ,0.41593254f ,0.06012857f ,0.653159f ,0.7609725f ,0.66426134f ,0.7578717f ,0.4521615f ,0.04506576f ,0.43916842f ,0.055764318f ,0.6952055f ,0.7735311f ,0.6843206f ,0.7630552f ,0.42749146f ,0.06006664f ,0.67457694f ,0.75883496f ,0.22742315f ,0.3999153f ,0.2660047f ,0.3926497f ,0.30860043f ,0.36439937f ,0.4415595f ,0.74667436f ,0.45413598f ,0.74122643f ,0.46714458f ,0.7391484f ,0.444179f ,0.8039332f ,0.56548226f ,0.3259179f ,0.6163743f ,0.325838f ,0.5479426f ,0.2090814f ,0.633984f ,0.2090938f ,0.619783f ,0.28486833f ,0.6219942f ,0.2730406f ,0.6162873f ,0.29368946f ,0.011729538f ,0.13959315f ,0.023357749f ,0.10340879f ,0.6003539f ,0.32020104f ,0.5985217f ,0.3165369f ,0.61037135f ,0.3105059f ,0.6038345f ,0.31011873f ,0.6021097f ,0.2974107f ,0.61096615f ,0.3049286f ,0.6013309f ,0.30034357f ,0.6051631f ,0.30518857f ,0.5709266f ,0.3049328f ,0.5767266f ,0.3051913f ,0.5715164f ,0.310513f ,0.5780527f ,0.31012177f ,0.57978773f ,0.29741287f ,0.58056134f ,0.30034497f ,0.5815264f ,0.32020718f ,0.5833618f ,0.31653887f ,0.5909393f ,0.32249805f ,0.59094113f ,0.31899342f ,0.59094954f ,0.29615724f ,0.59094673f ,0.29796308f ,0.59899807f ,0.30862102f ,0.59580123f ,0.3125005f ,0.5966685f ,0.30407f ,0.58288914f ,0.30862227f ,0.5852208f ,0.30407068f ,0.58608425f ,0.3125014f ,0.5909424f ,0.3135275f ,0.5909451f ,0.30266076f ,0.5909436f ,0.30841443f ,0.22950459f ,0.0078125f ,0.70210063f ,0.4711013f ,0.6743963f ,0.47105506f ,0.58206f ,0.28932163f ,0.5877585f ,0.2887223f ,0.59093875f ,0.28849494f ,0.1193495f ,0.31427813f });
  }
}
private class MFInt3217 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,0,0,5,1,1,5,6,6,5,7,3,1,8,8,1,6,6,9,8,8,9,10,7,11,6,6,11,9,11,12,9,9,12,13,9,13,10,10,13,14,13,15,14,14,15,16,13,12,15,15,12,17,15,17,18,18,17,19,16,15,20,20,15,18,21,22,23,23,22,24,22,25,24,23,24,26,26,24,27,27,28,26,26,28,29,29,28,30,29,30,31,31,30,32,31,32,33,33,32,34,34,35,36,34,36,33,33,36,37,38,39,40,40,39,41,42,43,38,38,43,39,43,4,39,39,4,0,39,0,41,41,0,2,43,44,4,4,44,5,42,45,43,43,45,44,44,45,46,46,45,47,5,44,7,7,44,46,34,48,35,35,48,49,34,32,48,48,32,30,48,30,50,50,30,28,49,48,51,51,48,50,51,50,52,28,27,50,50,27,24,50,24,52,52,24,25,7,46,11,11,46,53,46,47,53,53,47,54,53,54,17,17,54,19,11,53,12,12,53,17,55,56,57,57,56,58,56,59,58,58,59,60,56,61,59,59,61,62,55,63,56,56,63,61,64,65,63,63,65,61,65,66,61,61,66,62,67,68,65,65,68,66,69,67,64,64,67,65,70,71,69,69,71,67,67,71,68,68,71,72,71,73,72,72,73,74,70,75,71,71,75,73,76,77,78,78,77,79,78,79,80,77,81,79,79,81,82,83,84,81,81,84,82,83,85,84,83,86,85,85,86,87,86,88,87,87,88,89,89,90,91,92,90,88,88,90,89,93,94,95,95,94,96,94,97,96,96,97,98,58,60,94,94,60,97,57,58,93,93,58,94,59,99,60,60,99,97,99,100,97,97,100,98,99,101,100,100,101,102,59,62,99,99,62,101,103,104,91,91,104,89,89,104,87,87,104,85,104,105,85,85,105,84,103,106,104,104,106,105,106,107,105,79,82,105,105,82,84,80,79,107,107,79,105,62,66,101,101,66,108,101,108,102,102,108,109,108,72,109,109,72,74,66,68,108,108,68,72});
  }
}
private class MFVec3f18 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.19881111f ,-0.39683056f ,0.30529878f ,0.16671076f ,-0.1720264f ,0.36685154f ,0f ,-0.3710844f ,0.3628049f ,0f ,-0.16869867f ,0.40257305f ,0.33388096f ,-0.45111525f ,0.20091084f ,0.34113055f ,-0.18615194f ,0.29755837f ,0.17299704f ,0.11070443f ,0.32809502f ,0.32962966f ,0.11070443f ,0.25201175f ,0f ,0.11070441f ,0.34890527f ,0.16049522f ,0.33537364f ,0.26643395f ,0f ,0.36478677f ,0.2807978f ,0.29409635f ,0.32547888f ,0.21028145f ,0.24995133f ,0.40512255f ,0.16565086f ,0.14725998f ,0.4495356f ,0.18993405f ,0f ,0.48031786f ,0.20151353f ,0.16198137f ,0.5414174f ,0.10082196f ,0f ,0.5692567f ,0.10670543f ,0.29811987f ,0.4755767f ,0.09735536f ,0.17454013f ,0.578158f ,-0.00028202502f ,0.32172668f ,0.51712495f ,-0.00028202502f ,0f ,0.6045792f ,-0.00028201708f ,0f ,0.6045792f ,-0.00028201708f ,0.17454013f ,0.578158f ,-0.00028202502f ,0f ,0.5692566f ,-0.10726947f ,0.23005061f ,0.5084971f ,-0.09965272f ,0.32172668f ,0.51712495f ,-0.00028202502f ,0f ,0.40949577f ,-0.21462621f ,0.19860567f ,0.33446077f ,-0.19965339f ,0.23934114f ,0.17594144f ,-0.24640821f ,0f ,0.031279176f ,-0.29441726f ,0.25392067f ,-0.12510931f ,-0.27283964f ,0f ,-0.39053994f ,-0.25987726f ,0.242102f ,-0.40400603f ,-0.25971013f ,0f ,-0.48958552f ,-0.1814505f ,0.2661818f ,-0.5438889f ,-0.1393454f ,0.4690625f ,-0.5595322f ,-0.044499576f ,0.17466533f ,-0.5595323f ,-0.0049425866f ,0f ,-0.5278338f ,0.011317082f ,0.17466533f ,-0.5595323f ,-0.0049425866f ,0.20782885f ,-0.5595318f ,0.15002783f ,0f ,-0.5278338f ,0.011317082f ,0f ,-0.5098466f ,0.24570262f ,0.4690625f ,-0.5595322f ,-0.044499576f ,0.43407053f ,-0.5595317f ,0.081284836f ,0.44889525f ,-0.20282274f ,0.15217543f ,0.4861138f ,-0.20340213f ,-0.004637614f ,0.42398104f ,0.110704474f ,0.12925272f ,0.45558646f ,0.11070441f ,-0.00028203827f ,0.44889522f ,-0.19144797f ,-0.15307073f ,0.4861138f ,-0.20340213f ,-0.004637614f ,0.40057933f ,0.20362562f ,-0.11748636f ,0.45558646f ,0.11070441f ,-0.00028203827f ,0.40691173f ,0.37048703f ,-0.00028203774f ,0.37717766f ,0.34782362f ,0.11081157f ,0.40691173f ,0.37048703f ,-0.00028203774f ,0f ,-0.16869867f ,0.40257305f ,-0.16671076f ,-0.1720264f ,0.36685154f ,0f ,-0.3710844f ,0.3628049f ,-0.19881111f ,-0.39683056f ,0.30529878f ,-0.34113055f ,-0.18615194f ,0.29755837f ,-0.33388096f ,-0.45111525f ,0.20091084f ,-0.17299704f ,0.11070443f ,0.32809502f ,-0.32962966f ,0.11070443f ,0.25201175f ,0f ,0.11070441f ,0.34890527f ,0f ,0.36478677f ,0.2807978f ,-0.16049522f ,0.33537364f ,0.26643395f ,-0.29409635f ,0.32547888f ,0.21028145f ,-0.14725998f ,0.4495356f ,0.18993405f ,-0.24995133f ,0.40512255f ,0.16565086f ,0f ,0.48031786f ,0.20151353f ,0f ,0.5692567f ,0.10670543f ,-0.16198137f ,0.5414174f ,0.10082196f ,-0.29811987f ,0.4755767f ,0.09735536f ,-0.17454013f ,0.578158f ,-0.00028202502f ,-0.32172668f ,0.51712495f ,-0.00028202502f ,0f ,0.6045792f ,-0.00028201708f ,0f ,0.6045792f ,-0.00028201708f ,0f ,0.5692566f ,-0.10726947f ,-0.17454013f ,0.578158f ,-0.00028202502f ,-0.23005061f ,0.5084971f ,-0.09965272f ,-0.32172668f ,0.51712495f ,-0.00028202502f ,0f ,0.40949577f ,-0.21462621f ,-0.19860567f ,0.33446077f ,-0.19965339f ,0f ,0.031279176f ,-0.29441726f ,-0.23934114f ,0.17594144f ,-0.24640821f ,-0.25392067f ,-0.12510931f ,-0.27283964f ,0f ,-0.39053994f ,-0.25987726f ,-0.242102f ,-0.40400603f ,-0.25971013f ,0f ,-0.48958552f ,-0.1814505f ,-0.2661818f ,-0.5438889f ,-0.1393454f ,-0.17466533f ,-0.5595323f ,-0.0049425866f ,-0.4690625f ,-0.5595322f ,-0.044499576f ,0f ,-0.5278338f ,0.011317082f ,0f ,-0.5098466f ,0.24570262f ,-0.20782885f ,-0.5595318f ,0.15002783f ,0f ,-0.5278338f ,0.011317082f ,-0.17466533f ,-0.5595323f ,-0.0049425866f ,-0.43407053f ,-0.5595317f ,0.081284836f ,-0.4690625f ,-0.5595322f ,-0.044499576f ,-0.44889525f ,-0.20282274f ,0.15217543f ,-0.4861138f ,-0.20340213f ,-0.004637614f ,-0.42398104f ,0.110704474f ,0.12925272f ,-0.45558646f ,0.11070441f ,-0.00028203827f ,-0.4861138f ,-0.20340213f ,-0.004637614f ,-0.44889522f ,-0.19144797f ,-0.15307073f ,-0.40057933f ,0.20362562f ,-0.11748636f ,-0.45558646f ,0.11070441f ,-0.00028203827f ,-0.40691173f ,0.37048703f ,-0.00028203774f ,-0.37717766f ,0.34782362f ,0.11081157f ,-0.40691173f ,0.37048703f ,-0.00028203774f });
  }
}
private class MFVec3f19 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.30566478f ,-0.43454084f ,0.8471973f ,0.2842788f ,-0.010203115f ,0.95868737f ,-2.0318052e-9f ,-0.39807293f ,0.91735375f ,1.511057e-8f ,0.03125512f ,0.9995114f ,0.53265023f ,-0.37943947f ,0.7565114f ,0.6176417f ,-0.04100648f ,0.78538996f ,0.26989418f ,0.19073778f ,0.9438094f ,0.6228319f ,0.18063372f ,0.7612174f ,4.9635815e-9f ,0.20334618f ,0.97910696f ,0.24856009f ,0.35761267f ,0.9001839f ,0f ,0.3789294f ,0.9254256f ,0.5591476f ,0.33221954f ,0.75959474f ,0.41837716f ,0.5481802f ,0.7241955f ,0.27511415f ,0.5984782f ,0.75242007f ,1.8474184e-9f ,0.64485776f ,0.7643027f ,0.26788267f ,0.797863f ,0.5400495f ,0f ,0.8555784f ,0.51767325f ,0.5435239f ,0.6127682f ,0.5736697f ,0.27750492f ,0.9574393f ,-0.079379186f ,0.6935691f ,0.7077349f ,-0.13443671f ,0f ,0.9999987f ,-0.001665974f ,0f ,0.9999987f ,-0.001665974f ,0.27750492f ,0.9574393f ,-0.079379186f ,1.0005097e-8f ,0.7214256f ,-0.692492f ,0.41265452f ,0.5599998f ,-0.71841246f ,0.6935691f ,0.7077349f ,-0.13443671f ,-1.493648e-8f ,0.36944664f ,-0.9292519f ,0.37858197f ,0.37468192f ,-0.84633875f ,0.3200775f ,0.18577766f ,-0.9289979f ,-1.6544549e-9f ,0.06396031f ,-0.99795246f ,0.29585883f ,0.015232973f ,-0.95511025f ,0f ,-0.21239401f ,-0.9771841f ,0.3226448f ,-0.3196276f ,-0.89092004f ,2.0705737e-9f ,-0.82928824f ,-0.5588212f ,0.24733381f ,-0.6974726f ,-0.6725757f ,0.7124874f ,-0.5112415f ,-0.48061833f ,-0.10894653f ,-0.9896395f ,-0.093510985f ,2.9453968e-9f ,-0.9988538f ,-0.047865584f ,-0.10894653f ,-0.9896395f ,-0.093510985f ,0.04297751f ,-0.9213486f ,0.38635445f ,2.9453968e-9f ,-0.9988538f ,-0.047865584f ,0f ,-0.8594921f ,0.5111491f ,0.7124874f ,-0.5112415f ,-0.48061833f ,0.67303544f ,-0.6105754f ,0.41739804f ,0.89591384f ,-0.030980395f ,0.44314623f ,0.99988174f ,0.0143790245f ,0.0054674777f ,0.8880253f ,0.1502633f ,0.43454805f ,0.9873101f ,0.14511168f ,-0.06450866f ,0.74580526f ,-0.009021675f ,-0.66610295f ,0.99988174f ,0.0143790245f ,0.0054674777f ,0.7389145f ,0.22179706f ,-0.63624805f ,0.9873101f ,0.14511168f ,-0.06450866f ,0.8812545f ,0.38872847f ,-0.26885056f ,0.8251816f ,0.30269778f ,0.4769164f ,0.8812545f ,0.38872847f ,-0.26885056f ,1.511057e-8f ,0.03125512f ,0.9995114f ,-0.2842788f ,-0.010203113f ,0.95868737f ,-2.0318052e-9f ,-0.39807293f ,0.91735375f ,-0.30566478f ,-0.43454084f ,0.8471973f ,-0.6176416f ,-0.041006472f ,0.78538984f ,-0.53265023f ,-0.37943947f ,0.7565114f ,-0.26989415f ,0.1907378f ,0.9438094f ,-0.6228319f ,0.18063371f ,0.7612175f ,4.9635815e-9f ,0.20334618f ,0.97910696f ,0f ,0.3789294f ,0.9254256f ,-0.24856009f ,0.35761267f ,0.9001839f ,-0.55914754f ,0.33221954f ,0.75959474f ,-0.2751142f ,0.59847826f ,0.75242007f ,-0.4183771f ,0.5481802f ,0.7241955f ,1.8474184e-9f ,0.64485776f ,0.7643027f ,0f ,0.8555784f ,0.51767325f ,-0.26788265f ,0.79786295f ,0.54004955f ,-0.54352397f ,0.61276805f ,0.5736698f ,-0.27750492f ,0.95743924f ,-0.07937919f ,-0.6935692f ,0.7077348f ,-0.13443668f ,0f ,0.9999987f ,-0.001665974f ,0f ,0.9999987f ,-0.001665974f ,1.0005097e-8f ,0.7214256f ,-0.692492f ,-0.27750492f ,0.95743924f ,-0.07937919f ,-0.41265452f ,0.5599998f ,-0.71841246f ,-0.6935692f ,0.7077348f ,-0.13443668f ,-1.493648e-8f ,0.36944664f ,-0.9292519f ,-0.37858194f ,0.37468195f ,-0.8463387f ,-1.6544549e-9f ,0.06396031f ,-0.99795246f ,-0.3200775f ,0.18577766f ,-0.9289979f ,-0.29585883f ,0.015232969f ,-0.95511025f ,0f ,-0.21239401f ,-0.9771841f ,-0.3226449f ,-0.3196276f ,-0.8909201f ,2.0705737e-9f ,-0.82928824f ,-0.5588212f ,-0.24733381f ,-0.6974726f ,-0.6725758f ,0.10894654f ,-0.9896395f ,-0.093510985f ,-0.71248734f ,-0.5112415f ,-0.48061824f ,2.9453968e-9f ,-0.9988538f ,-0.047865584f ,0f ,-0.8594921f ,0.5111491f ,-0.0429775f ,-0.9213486f ,0.3863544f ,2.9453968e-9f ,-0.9988538f ,-0.047865584f ,0.10894654f ,-0.9896395f ,-0.093510985f ,-0.6730354f ,-0.61057544f ,0.41739804f ,-0.71248734f ,-0.5112415f ,-0.48061824f ,-0.89591384f ,-0.030980371f ,0.4431463f ,-0.99988174f ,0.01437906f ,0.005467484f ,-0.88802534f ,0.15026332f ,0.43454814f ,-0.9873101f ,0.14511168f ,-0.064508654f ,-0.99988174f ,0.01437906f ,0.005467484f ,-0.7458053f ,-0.009021675f ,-0.66610295f ,-0.7389145f ,0.22179703f ,-0.636248f ,-0.9873101f ,0.14511168f ,-0.064508654f ,-0.88125455f ,0.3887285f ,-0.2688506f ,-0.8251816f ,0.30269787f ,0.47691646f ,-0.88125455f ,0.3887285f ,-0.2688506f });
  }
}
private class MFVec4f20 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.1746768f ,0.9002738f ,0.39874208f ,1f ,-0.07407376f ,0.99672073f ,0.032572933f ,1f ,0.11705067f ,0.9110478f ,0.3953366f ,1f ,-0.079802014f ,0.99632376f ,-0.031155441f ,1f ,0.1397333f ,0.9210273f ,0.36357033f ,1f ,-0.052690223f ,0.99423844f ,0.09334713f ,1f ,-0.22036627f ,0.9664051f ,-0.13228773f ,1f ,-0.1867643f ,0.9791792f ,-0.079543665f ,1f ,-0.2408f ,0.9502965f ,-0.19736266f ,1f ,-0.34791493f ,0.9002924f ,-0.261589f ,1f ,-0.405984f ,0.8457281f ,-0.34629607f ,1f ,-0.27668414f ,0.9384511f ,-0.20677412f ,1f ,-0.41267568f ,0.8250086f ,-0.3860827f ,1f ,-0.44345254f ,0.7733882f ,-0.45301285f ,1f ,-0.4899741f ,0.6662709f ,-0.56214637f ,1f ,-0.5396351f ,0.5886149f ,-0.60193574f ,1f ,-0.56886727f ,0.42574975f ,-0.70365286f ,1f ,-0.44088814f ,0.78997487f ,-0.42609572f ,1f ,-0.72552824f ,0.15469125f ,-0.67058146f ,1f ,-0.6699248f ,0.5650346f ,-0.48159805f ,1f ,-0.632901f ,-0.0012898515f ,-0.7742316f ,1f ,0.5110674f ,-0.0014319724f ,-0.85953945f ,1f ,0.5614397f ,-0.22866447f ,-0.79529744f ,1f ,0.44851053f ,-0.61893386f ,-0.644794f ,1f ,0.32309207f ,-0.8273993f ,-0.45937133f ,1f ,0.5154865f ,-0.61793596f ,-0.59365726f ,1f ,0.26101458f ,-0.89703935f ,-0.3566397f ,1f ,0.2321118f ,-0.92361253f ,-0.30506414f ,1f ,0.15095647f ,-0.97805804f ,-0.14357789f ,1f ,0.09622004f ,-0.99332213f ,-0.06366354f ,1f ,0.0426866f ,-0.99908483f ,-0.0027115466f ,1f ,-0.06868348f ,-0.9748766f ,0.21189249f ,1f ,-0.10794187f ,-0.94754285f ,0.30085078f ,1f ,-0.23006897f ,-0.54383045f ,0.807042f ,1f ,-0.19244803f ,-0.7156751f ,0.6713963f ,1f ,-0.1708011f ,-0.790707f ,0.5878856f ,1f ,-0.2013694f ,-0.070148535f ,0.9770003f ,1f ,-0.19854844f ,-0.046912633f ,0.9789677f ,1f ,0.48801625f ,-0.13520291f ,0.86229956f ,1f ,0.4058087f ,0.3694725f ,0.8359482f ,1f ,0.42086774f ,-0.043419935f ,0.90608233f ,1f ,0.3574777f ,0.47737324f ,0.8026983f ,1f ,0.6857055f ,0.3619465f ,0.63150835f ,1f ,0.28158653f ,0.7333825f ,0.6187562f ,1f ,-0.029785527f ,0.99113095f ,0.12950778f ,1f ,-0.01500852f ,0.9898084f ,0.14161311f ,1f ,-0.14343207f ,0.98846173f ,-0.04869016f ,1f ,-0.14964786f ,0.98610425f ,-0.07213896f ,1f ,0.036474533f ,-0.9978554f ,0.054353792f ,1f ,0.014190388f ,-0.9993513f ,0.033102512f ,1f ,0.14196645f ,-0.97431993f ,-0.174775f ,1f ,0.13592742f ,-0.982258f ,-0.12920117f ,1f ,0.2998888f ,-0.8995392f ,-0.31764165f ,1f ,-0.23450309f ,0.9516791f ,-0.19828121f ,1f ,-0.4510579f ,0.86162966f ,-0.2326824f ,1f ,0.079802014f ,0.99632376f ,-0.031155441f ,-1f ,0.07407374f ,0.9967207f ,0.03257292f ,-1f ,-0.11705058f ,0.9110479f ,0.39533654f ,-1f ,-0.17467678f ,0.9002738f ,0.3987421f ,-1f ,0.052690238f ,0.9942385f ,0.09334715f ,-1f ,-0.13973336f ,0.9210273f ,0.36357036f ,-1f ,0.22036627f ,0.96640503f ,-0.13228773f ,-1f ,0.1867643f ,0.9791792f ,-0.079543665f ,-1f ,0.24079995f ,0.95029646f ,-0.19736268f ,-1f ,0.40598398f ,0.8457281f ,-0.34629604f ,-1f ,0.3479149f ,0.90029246f ,-0.26158902f ,-1f ,0.27668414f ,0.93845105f ,-0.2067741f ,-1f ,0.44345248f ,0.7733882f ,-0.45301276f ,-1f ,0.41267565f ,0.8250085f ,-0.38608265f ,-1f ,0.48997417f ,0.66627085f ,-0.56214637f ,-1f ,0.56886727f ,0.42574972f ,-0.70365286f ,-1f ,0.5396351f ,0.5886148f ,-0.6019357f ,-1f ,0.440888f ,0.7899749f ,-0.42609558f ,-1f ,0.72552824f ,0.15469122f ,-0.6705814f ,-1f ,0.66992486f ,0.56503475f ,-0.4815979f ,-1f ,0.632901f ,-0.0012898515f ,-0.7742316f ,-1f ,-0.51106745f ,-0.0014319724f ,-0.8595395f ,-1f ,-0.44851077f ,-0.61893374f ,-0.64479387f ,-1f ,-0.56143963f ,-0.22866444f ,-0.7952975f ,-1f ,-0.32309204f ,-0.8273993f ,-0.45937127f ,-1f ,-0.5154867f ,-0.61793613f ,-0.59365684f ,-1f ,-0.26101437f ,-0.89703935f ,-0.3566397f ,-1f ,-0.23211183f ,-0.92361253f ,-0.3050641f ,-1f ,-0.09622013f ,-0.9933221f ,-0.06366355f ,-1f ,-0.15095644f ,-0.97805804f ,-0.14357789f ,-1f ,-0.042686578f ,-0.99908495f ,-0.0027115475f ,-1f ,0.06868347f ,-0.9748766f ,0.21189246f ,-1f ,0.10794187f ,-0.94754285f ,0.30085078f ,-1f ,0.23006895f ,-0.54383045f ,0.80704206f ,-1f ,0.19244783f ,-0.71567506f ,0.6713964f ,-1f ,0.20136942f ,-0.07014854f ,0.97700036f ,-1f ,0.17080066f ,-0.79070675f ,0.58788615f ,-1f ,0.19854847f ,-0.046912637f ,0.9789677f ,-1f ,-0.35747778f ,0.47737315f ,0.80269825f ,-1f ,-0.4058087f ,0.36947238f ,0.8359482f ,-1f ,-0.42086768f ,-0.043419924f ,0.9060823f ,-1f ,-0.48801625f ,-0.13520291f ,0.86229944f ,-1f ,-0.28158662f ,0.73338246f ,0.6187561f ,-1f ,-0.68570554f ,0.36194673f ,0.63150805f ,-1f ,0.029785547f ,0.991131f ,0.12950777f ,-1f ,0.015008556f ,0.9898083f ,0.1416131f ,-1f ,0.14343207f ,0.9884618f ,-0.04869017f ,-1f ,0.14964785f ,0.98610425f ,-0.07213897f ,-1f ,-0.014190423f ,-0.99935126f ,0.033102486f ,-1f ,-0.036474552f ,-0.9978554f ,0.054353826f ,-1f ,-0.14196637f ,-0.97431993f ,-0.174775f ,-1f ,-0.13592742f ,-0.9822581f ,-0.12920128f ,-1f ,-0.2998887f ,-0.8995391f ,-0.31764168f ,-1f ,0.2345031f ,0.951679f ,-0.19828114f ,-1f ,0.45105788f ,0.8616296f ,-0.23268245f ,-1f });
  }
}
private class MFVec2f21 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.5623638f ,0.12957251f ,0.6211372f ,0.14079204f ,0.5665727f ,0.18187822f ,0.6245993f ,0.18312395f ,0.54715705f ,0.08761859f ,0.6146166f ,0.094372034f ,0.6927188f ,0.12612194f ,0.686711f ,0.08155942f ,0.70160276f ,0.1702146f ,0.75024134f ,0.11210182f ,0.76994693f ,0.14847907f ,0.74082357f ,0.07679841f ,0.7658209f ,0.07658684f ,0.783017f ,0.099948645f ,0.80412424f ,0.1318757f ,0.8093214f ,0.08038294f ,0.83365774f ,0.11404693f ,0.78166103f ,0.054085314f ,0.8287504f ,0.060650826f ,0.79738f ,0.031953335f ,0.85722387f ,0.09656632f ,0.6261177f ,0.8733126f ,0.6349063f ,0.85841185f ,0.63575965f ,0.8787471f ,0.6475222f ,0.85916406f ,0.6454975f ,0.84631324f ,0.65400237f ,0.88544154f ,0.6648786f ,0.86765397f ,0.68107355f ,0.8673599f ,0.69288623f ,0.8925886f ,0.7093799f ,0.86865336f ,0.73664063f ,0.89260036f ,0.7352407f ,0.8696261f ,0.7499322f ,0.89016145f ,0.75118434f ,0.8627971f ,0.7538694f ,0.84092504f ,0.7656513f ,0.8688504f ,0.7692114f ,0.88618547f ,0.46931496f ,0.099048465f ,0.50892687f ,0.109501585f ,0.45667264f ,0.14445475f ,0.5164588f ,0.16919382f ,0.50341636f ,0.024417132f ,0.5185987f ,0.052813053f ,0.6057416f ,0.049283564f ,0.599356f ,0.007819027f ,0.6842108f ,0.04182604f ,0.68412936f ,0.0078125f ,0.71684515f ,0.84661657f ,0.7185729f ,0.83214253f ,0.67878467f ,0.84726506f ,0.6868256f ,0.83392453f ,0.66081846f ,0.839267f ,0.7453511f ,0.044095874f ,0.75449365f ,0.015856504f ,1.6245992f ,0.18312395f ,1.6211371f ,0.14079204f ,1.5665727f ,0.18187822f ,1.5623639f ,0.12957251f ,1.6146166f ,0.094372034f ,1.547157f ,0.08761859f ,1.6927187f ,0.12612194f ,1.6867111f ,0.08155942f ,1.7016027f ,0.1702146f ,1.7699469f ,0.14847907f ,1.7502413f ,0.11210182f ,1.7408235f ,0.07679841f ,1.7830169f ,0.099948645f ,1.765821f ,0.07658684f ,1.8041242f ,0.1318757f ,1.8336577f ,0.11404693f ,1.8093214f ,0.08038294f ,1.781661f ,0.054085314f ,1.8287504f ,0.060650826f ,1.79738f ,0.031953335f ,1.8572239f ,0.09656632f ,1.6261177f ,0.8733126f ,1.6357596f ,0.8787471f ,1.6349063f ,0.85841185f ,1.6475222f ,0.85916406f ,1.6454976f ,0.84631324f ,1.6540024f ,0.88544154f ,1.6648786f ,0.86765397f ,1.6928862f ,0.8925886f ,1.6810735f ,0.8673599f ,1.7093799f ,0.86865336f ,1.7366407f ,0.89260036f ,1.7352407f ,0.8696261f ,1.7499323f ,0.89016145f ,1.7511843f ,0.8627971f ,1.7656512f ,0.8688504f ,1.7538694f ,0.84092504f ,1.7692114f ,0.88618547f ,1.5164587f ,0.16919382f ,1.5089269f ,0.109501585f ,1.4566727f ,0.14445475f ,1.4693149f ,0.099048465f ,1.5185987f ,0.052813053f ,1.5034163f ,0.024417132f ,1.6057416f ,0.049283564f ,1.5993559f ,0.007819027f ,1.6842108f ,0.04182604f ,1.6841294f ,0.0078125f ,1.7185729f ,0.83214253f ,1.7168452f ,0.84661657f ,1.6787846f ,0.84726506f ,1.6868255f ,0.83392453f ,1.6608185f ,0.839267f ,1.7453511f ,0.044095874f ,1.7544937f ,0.015856504f });
  }
}
private class MFInt3222 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,0,0,5,1});
  }
}
private class MFVec3f23 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.16671076f ,-0.1720264f ,0.36685154f ,-0.17299704f ,0.11070443f ,0.32669997f ,-0.34113055f ,-0.18615194f ,0.29755837f ,-0.32962966f ,0.11070443f ,0.2507442f ,6.938894e-18f ,-0.16869867f ,0.40257305f ,1.06003824e-17f ,0.11070441f ,0.34747532f });
  }
}
private class MFVec3f24 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.2842788f ,-0.010203113f ,0.95868737f ,-0.26989418f ,0.19073783f ,0.9438095f ,-0.6176417f ,-0.041006476f ,0.78538996f ,-0.6228319f ,0.18063371f ,0.7612175f ,1.5110572e-8f ,0.031255122f ,0.99951154f ,4.9635815e-9f ,0.20334618f ,0.97910696f });
  }
}
private class MFVec4f25 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.9578772f ,-0.039430384f ,-0.28445825f ,1f ,-0.9628172f ,-0.041404743f ,-0.26696205f ,1f ,-0.7835739f ,-0.053383972f ,-0.6190008f ,1f ,-0.78188443f ,-0.10994568f ,-0.61365193f ,1f ,-0.9994743f ,-0.03240749f ,0.00101341f ,1f ,-0.9999962f ,0.002714331f ,-0.00056372164f ,1f });
  }
}
private class MFVec2f26 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.3042897f ,0.9663162f ,0.30540484f ,0.8934597f ,0.35229433f ,0.9671537f ,0.34971136f ,0.89047825f ,0.26079655f ,0.9671432f ,0.26096892f ,0.89449596f });
  }
}
private class MFInt3227 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,3,3,5,2});
  }
}
private class MFVec3f28 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.0026763529f ,0.24245495f ,0.3600637f ,0.030112788f ,0.35447946f ,0.30460075f ,-0.041072477f ,0.2425682f ,0.35568535f ,-0.010239234f ,0.36863306f ,0.29351184f ,-0.054006204f ,0.3688432f ,0.28932637f ,-0.081406325f ,0.25662506f ,0.34440365f });
  }
}
private class MFVec3f29 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.08729105f ,0.45908928f ,0.8840912f ,-0.08371659f ,0.4573785f ,0.88532275f ,-0.087111235f ,0.45819363f ,0.8845735f ,-0.083442986f ,0.4564924f ,0.8858059f ,-0.082591586f ,0.45527205f ,0.88651335f ,-0.08705596f ,0.4574128f ,0.8849829f });
  }
}
private class MFVec4f30 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.2143081f ,0.8753533f ,-0.43339214f ,-1f ,0.21420084f ,0.87593293f ,-0.4322725f ,-1f ,0.21422654f ,0.87579083f ,-0.43254775f ,-1f ,0.21412072f ,0.8763567f ,-0.4314527f ,-1f ,0.21401837f ,0.87690085f ,-0.43039662f ,-1f ,0.21415475f ,0.8761792f ,-0.43179607f ,-1f });
  }
}
private class MFVec2f31 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {1.7712779f ,0.18048693f ,1.8037928f ,0.18048947f ,1.7694031f ,0.1694747f ,1.8059645f ,0.16947779f ,1.8040891f ,0.1584658f ,1.7715755f ,0.15846281f });
  }
}
private class MFInt3232 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,1,4,3,3,4,5});
  }
}
private class MFVec3f33 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.0026763529f ,0.24245495f ,0.3600637f ,0.041072477f ,0.2425682f ,0.35568535f ,-0.030112788f ,0.35447946f ,0.30460075f ,0.010239234f ,0.36863306f ,0.29351184f ,0.081406325f ,0.25662506f ,0.34440365f ,0.054006204f ,0.3688432f ,0.28932637f });
  }
}
private class MFVec3f34 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.08729156f ,0.45908928f ,0.8840912f ,0.08711141f ,0.4581936f ,0.88457346f ,0.083716676f ,0.4573785f ,0.88532275f ,0.083442986f ,0.45649242f ,0.88580585f ,0.08705596f ,0.4574128f ,0.8849829f ,0.08259159f ,0.45527205f ,0.88651335f });
  }
}
private class MFVec4f35 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.21430808f ,0.87535334f ,-0.43339205f ,1f ,-0.21422651f ,0.8757908f ,-0.43254766f ,1f ,-0.21420082f ,0.87593293f ,-0.43227258f ,1f ,-0.21412072f ,0.87635666f ,-0.43145266f ,1f ,-0.21415475f ,0.87617916f ,-0.43179604f ,1f ,-0.21401832f ,0.8769008f ,-0.43039656f ,1f });
  }
}
private class MFVec2f36 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.7712779f ,0.18048693f ,0.7694031f ,0.1694747f ,0.80379283f ,0.18048947f ,0.80596447f ,0.16947779f ,0.77157545f ,0.15846281f ,0.8040891f ,0.1584658f });
  }
}
private class MFInt3237 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,2,3,4,4,3,5,5,6,4,4,6,7,7,8,4,4,8,9,8,10,9,9,10,11,9,11,2,2,11,0,2,4,9,7,6,12,12,6,13,12,13,14,14,13,15,15,16,14,14,16,17,17,18,14,14,18,19,18,10,19,19,10,8,19,8,12,12,8,7,12,14,19,20,21,22,22,21,23,22,23,24,24,23,25,25,1,24,24,1,0,0,11,24,24,11,26,11,10,26,26,10,27,26,27,22,22,27,20,22,24,26,17,16,28,28,16,29,28,29,30,30,29,31,31,21,30,30,21,20,20,27,30,30,27,32,27,10,32,32,10,18,32,18,28,28,18,17,28,30,32,33,34,35,35,34,36,35,36,37,37,36,38,38,39,37,37,39,40,37,40,41,41,40,42,42,43,41,41,43,44,44,33,41,41,33,35,35,37,41,45,46,47,47,46,48,48,49,47,47,49,50,49,34,50,50,34,33,50,33,51,51,33,44,44,43,51,51,43,52,51,52,47,47,52,45,47,50,51,53,54,55,55,54,56,55,56,57,57,56,58,58,39,57,57,39,38,38,36,57,57,36,59,36,34,59,59,34,60,59,60,55,55,60,53,55,57,59,48,46,61,61,46,62,61,62,63,63,62,64,64,54,63,63,54,53,53,60,63,63,60,65,60,34,65,65,34,49,65,49,61,61,49,48,61,63,65,66,67,68,68,67,69,67,70,69,69,70,71,71,70,72,72,70,73,74,75,70,70,75,73,75,74,76,76,74,77,74,67,77,77,67,66,67,74,70,73,78,72,72,78,79,78,80,79,79,80,81,81,80,82,82,80,83,84,85,80,80,85,83,85,84,76,76,84,75,84,78,75,75,78,73,78,84,80,86,87,88,88,87,89,87,90,89,89,90,91,91,90,68,68,90,66,92,77,90,90,77,66,77,92,76,76,92,93,92,87,93,93,87,86,87,92,90,83,94,82,82,94,95,94,96,95,95,96,97,97,96,88,88,96,86,98,93,96,96,93,86,93,98,76,76,98,85,98,94,85,85,94,83,94,98,96,99,100,101,101,100,102,100,103,102,102,103,104,104,103,105,105,103,106,103,107,106,106,107,108,108,107,109,109,107,110,100,99,107,107,99,110,100,107,103,111,112,113,113,112,114,115,116,112,112,116,114,116,115,101,101,115,99,115,117,99,99,117,110,110,117,109,109,117,118,117,112,118,118,112,111,112,117,115,119,120,121,121,120,122,120,123,122,122,123,124,124,123,105,105,123,104,125,102,123,123,102,104,102,125,101,101,125,126,125,120,126,126,120,119,120,125,123,114,127,113,113,127,128,127,129,128,128,129,130,130,129,121,121,129,119,131,126,129,129,126,119,126,131,101,101,131,116,131,127,116,116,127,114,127,131,129});
  }
}
private class MFVec3f38 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.15358692f ,0.9886311f ,0.3885082f ,0.14221495f ,0.9886311f ,0.35902873f ,0.15997005f ,0.9519466f ,0.3845048f ,0.15358692f ,0.9461819f ,0.35902873f ,0.19042051f ,0.92149603f ,0.3845048f ,0.18465579f ,0.9151131f ,0.35902873f ,0.22710505f ,0.903741f ,0.35902873f ,0.22710505f ,0.9151131f ,0.3885082f ,0.22710505f ,0.9461819f ,0.4100843f ,0.19042051f ,0.9519466f ,0.40565154f ,0.22710505f ,0.988631f ,0.41798174f ,0.18465579f ,0.9886311f ,0.4100843f ,0.26378965f ,0.92149603f ,0.3845048f ,0.26955435f ,0.9151131f ,0.35902873f ,0.2942401f ,0.9519466f ,0.3845048f ,0.3006232f ,0.9461819f ,0.35902873f ,0.31199515f ,0.9886311f ,0.35902873f ,0.3006232f ,0.9886311f ,0.3885082f ,0.26955435f ,0.9886311f ,0.4100843f ,0.26378965f ,0.9519466f ,0.40565154f ,0.22710505f ,1.0621493f ,0.3885082f ,0.22710505f ,1.0735214f ,0.35902873f ,0.19042051f ,1.0557662f ,0.3845048f ,0.18465579f ,1.0621493f ,0.35902873f ,0.15997005f ,1.0253155f ,0.3845048f ,0.15358692f ,1.0310805f ,0.35902873f ,0.19042051f ,1.0253155f ,0.40565154f ,0.22710505f ,1.0310805f ,0.4100843f ,0.2942401f ,1.0253155f ,0.3845048f ,0.3006232f ,1.0310805f ,0.35902873f ,0.26378965f ,1.0557662f ,0.3845048f ,0.26955435f ,1.0621493f ,0.35902873f ,0.26378965f ,1.0253155f ,0.40565154f ,0.22710505f ,1.0310805f ,0.3079732f ,0.22710505f ,0.9886311f ,0.30007577f ,0.19042051f ,1.0253155f ,0.312406f ,0.18465579f ,0.9886311f ,0.3079732f ,0.15997005f ,1.0253155f ,0.33355272f ,0.15358692f ,0.9886311f ,0.3295493f ,0.14221495f ,0.9886311f ,0.35902873f ,0.15358692f ,1.0310805f ,0.35902873f ,0.19042051f ,1.0557662f ,0.33355272f ,0.18465579f ,1.0621493f ,0.35902873f ,0.22710505f ,1.0735214f ,0.35902873f ,0.22710505f ,1.0621493f ,0.3295493f ,0.3006232f ,1.0310805f ,0.35902873f ,0.31199515f ,0.9886311f ,0.35902873f ,0.2942401f ,1.0253155f ,0.33355272f ,0.3006232f ,0.9886311f ,0.3295493f ,0.26955435f ,0.9886311f ,0.3079732f ,0.26378965f ,1.0253155f ,0.312406f ,0.26378965f ,1.0557662f ,0.33355272f ,0.26955435f ,1.0621493f ,0.35902873f ,0.22710505f ,0.9151131f ,0.3295493f ,0.22710505f ,0.903741f ,0.35902873f ,0.19042051f ,0.92149603f ,0.33355272f ,0.18465579f ,0.9151131f ,0.35902873f ,0.15997005f ,0.9519466f ,0.33355272f ,0.15358692f ,0.9461819f ,0.35902873f ,0.19042051f ,0.9519466f ,0.312406f ,0.22710505f ,0.9461819f ,0.3079732f ,0.2942401f ,0.9519466f ,0.33355272f ,0.3006232f ,0.9461819f ,0.35902873f ,0.26378965f ,0.92149603f ,0.33355272f ,0.26955435f ,0.9151131f ,0.35902873f ,0.26378965f ,0.9519466f ,0.312406f ,-0.15358692f ,0.9886311f ,0.3885082f ,-0.15997005f ,0.9519466f ,0.3845048f ,-0.14221495f ,0.9886311f ,0.35902873f ,-0.15358692f ,0.9461819f ,0.35902873f ,-0.19042051f ,0.92149603f ,0.3845048f ,-0.18465579f ,0.9151131f ,0.35902873f ,-0.22710505f ,0.903741f ,0.35902873f ,-0.22710505f ,0.9151131f ,0.3885082f ,-0.19042051f ,0.9519466f ,0.40565154f ,-0.22710505f ,0.9461819f ,0.4100843f ,-0.22710505f ,0.988631f ,0.41798174f ,-0.18465579f ,0.9886311f ,0.4100843f ,-0.26378965f ,0.92149603f ,0.3845048f ,-0.26955435f ,0.9151131f ,0.35902873f ,-0.2942401f ,0.9519466f ,0.3845048f ,-0.3006232f ,0.9461819f ,0.35902873f ,-0.31199515f ,0.9886311f ,0.35902873f ,-0.3006232f ,0.9886311f ,0.3885082f ,-0.26378965f ,0.9519466f ,0.40565154f ,-0.26955435f ,0.9886311f ,0.4100843f ,-0.22710505f ,1.0621493f ,0.3885082f ,-0.19042051f ,1.0557662f ,0.3845048f ,-0.22710505f ,1.0735214f ,0.35902873f ,-0.18465579f ,1.0621493f ,0.35902873f ,-0.15997005f ,1.0253155f ,0.3845048f ,-0.15358692f ,1.0310805f ,0.35902873f ,-0.19042051f ,1.0253155f ,0.40565154f ,-0.22710505f ,1.0310805f ,0.4100843f ,-0.2942401f ,1.0253155f ,0.3845048f ,-0.3006232f ,1.0310805f ,0.35902873f ,-0.26378965f ,1.0557662f ,0.3845048f ,-0.26955435f ,1.0621493f ,0.35902873f ,-0.26378965f ,1.0253155f ,0.40565154f ,-0.22710505f ,1.0310805f ,0.3079732f ,-0.19042051f ,1.0253155f ,0.312406f ,-0.22710505f ,0.9886311f ,0.30007577f ,-0.18465579f ,0.9886311f ,0.3079732f ,-0.15997005f ,1.0253155f ,0.33355272f ,-0.15358692f ,0.9886311f ,0.3295493f ,-0.14221495f ,0.9886311f ,0.35902873f ,-0.15358692f ,1.0310805f ,0.35902873f ,-0.19042051f ,1.0557662f ,0.33355272f ,-0.18465579f ,1.0621493f ,0.35902873f ,-0.22710505f ,1.0735214f ,0.35902873f ,-0.22710505f ,1.0621493f ,0.3295493f ,-0.3006232f ,1.0310805f ,0.35902873f ,-0.2942401f ,1.0253155f ,0.33355272f ,-0.31199515f ,0.9886311f ,0.35902873f ,-0.3006232f ,0.9886311f ,0.3295493f ,-0.26378965f ,1.0253155f ,0.312406f ,-0.26955435f ,0.9886311f ,0.3079732f ,-0.26378965f ,1.0557662f ,0.33355272f ,-0.26955435f ,1.0621493f ,0.35902873f ,-0.22710505f ,0.9151131f ,0.3295493f ,-0.19042051f ,0.92149603f ,0.33355272f ,-0.22710505f ,0.903741f ,0.35902873f ,-0.18465579f ,0.9151131f ,0.35902873f ,-0.15997005f ,0.9519466f ,0.33355272f ,-0.15358692f ,0.9461819f ,0.35902873f ,-0.19042051f ,0.9519466f ,0.312406f ,-0.22710505f ,0.9461819f ,0.3079732f ,-0.2942401f ,0.9519466f ,0.33355272f ,-0.3006232f ,0.9461819f ,0.35902873f ,-0.26378965f ,0.92149603f ,0.33355272f ,-0.26955435f ,0.9151131f ,0.35902873f ,-0.26378965f ,0.9519466f ,0.312406f });
  }
}
private class MFVec3f39 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.7716173f ,9.1003066e-8f ,0.636087f ,-1f ,6.1411754e-8f ,-3.1843133e-8f ,-0.72538257f ,-0.3909017f ,0.56658274f ,-0.86058646f ,-0.509303f ,-0.0011711424f ,-0.39195162f ,-0.7253691f ,0.56587434f ,-0.50930405f ,-0.86058587f ,0.001171248f ,2.2745056e-8f ,-1f ,-9.098022e-9f ,3.9566297e-9f ,-0.77161515f ,0.6360897f ,-8.230269e-9f ,-0.38337612f ,0.9235924f ,-0.3369122f ,-0.33691165f ,0.87919325f ,-7.1395206e-8f ,-2.3241418e-7f ,1f ,-0.38337603f ,1.5143712e-7f ,0.9235923f ,0.3909024f ,-0.7253832f ,0.5665814f ,0.5093037f ,-0.86058617f ,-0.0011699785f ,0.72536916f ,-0.39195144f ,0.5658742f ,0.8605866f ,-0.5093028f ,0.0011710858f ,1f ,2.7294103e-8f ,-1.1372543e-8f ,0.7716176f ,-5.5393166e-8f ,0.63608664f ,0.3833763f ,2.2715591e-7f ,0.92359227f ,0.3369124f ,-0.3369118f ,0.8791931f ,-3.9566355e-9f ,0.7716162f ,0.6360885f ,4.0941114e-8f ,1f ,2.9568582e-8f ,-0.39090392f ,0.72538114f ,0.56658304f ,-0.50930464f ,0.8605855f ,-0.0011693861f ,-0.72536886f ,0.39195117f ,0.5658749f ,-0.86058635f ,0.50930333f ,0.0011715037f ,-0.33691165f ,0.33691016f ,0.8791941f ,0f ,0.3833751f ,0.92359275f ,0.7253826f ,0.3909001f ,0.56658375f ,0.86058664f ,0.5093028f ,-0.0011718252f ,0.39195263f ,0.7253677f ,0.56587535f ,0.5093041f ,0.8605859f ,0.0011696579f ,0.33691102f ,0.33690968f ,0.8791945f ,0f ,0.38337496f ,-0.92359287f ,-7.747139e-8f ,5.316664e-8f ,-1f ,-0.3369121f ,0.33691037f ,-0.8791937f ,-0.38337606f ,-3.9505387e-8f ,-0.9235924f ,-0.72538215f ,0.39090076f ,-0.56658405f ,-0.77161634f ,-4.7479915e-8f ,-0.63608825f ,-1f ,6.1411754e-8f ,-3.1843133e-8f ,-0.86058635f ,0.50930333f ,0.0011715037f ,-0.39195278f ,0.7253674f ,-0.56587553f ,-0.50930464f ,0.8605855f ,-0.0011693861f ,4.0941114e-8f ,1f ,2.9568582e-8f ,0f ,0.7716158f ,-0.6360888f ,0.86058664f ,0.5093028f ,-0.0011718252f ,1f ,2.7294103e-8f ,-1.1372543e-8f ,0.7253686f ,0.39195067f ,-0.5658756f ,0.77161676f ,8.7046615e-8f ,-0.63608766f ,0.38337573f ,1.1357801e-7f ,-0.92359245f ,0.33691153f ,0.33690998f ,-0.8791942f ,0.3909036f ,0.72538096f ,-0.56658345f ,0.5093041f ,0.8605859f ,0.0011696579f ,0f ,-0.7716149f ,-0.6360901f ,2.2745056e-8f ,-1f ,-9.098022e-9f ,-0.39090192f ,-0.7253825f ,-0.5665827f ,-0.50930405f ,-0.86058587f ,0.001171248f ,-0.7253683f ,-0.39195168f ,-0.56587523f ,-0.86058646f ,-0.509303f ,-0.0011711424f ,-0.33691198f ,-0.33691144f ,-0.8791934f ,3.292104e-9f ,-0.3833755f ,-0.92359257f ,0.7253824f ,-0.39090106f ,-0.56658345f ,0.8605866f ,-0.5093028f ,0.0011710858f ,0.39195165f ,-0.7253693f ,-0.565874f ,0.5093037f ,-0.86058617f ,-0.0011699785f ,0.33691213f ,-0.3369116f ,-0.87919325f ,0.77161753f ,3.9566537e-9f ,0.63608676f ,0.72538286f ,-0.3909018f ,0.5665823f ,1f ,8.8705846e-8f ,4.5490176e-9f ,0.8605865f ,-0.5093029f ,-0.0011716407f ,0.39195177f ,-0.725369f ,0.5658743f ,0.5093042f ,-0.86058587f ,0.0011707566f ,2.2745061e-8f ,-1f ,-3.63921e-8f ,-1.06829e-7f ,-0.7716152f ,0.6360896f ,0.33691236f ,-0.33691168f ,0.87919325f ,4.27974e-8f ,-0.38337612f ,0.9235923f ,-1.5190473e-9f ,-2.536809e-7f ,1f ,0.3833762f ,1.6460565e-7f ,0.9235923f ,-0.39090234f ,-0.7253829f ,0.5665819f ,-0.5093039f ,-0.86058605f ,-0.001169993f ,-0.7253693f ,-0.39195144f ,0.5658741f ,-0.86058664f ,-0.50930285f ,0.0011714938f ,-1f ,7.0509756e-8f ,4.094115e-8f ,-0.77161777f ,5.539321e-8f ,0.63608646f ,-0.33691236f ,-0.33691186f ,0.8791931f ,-0.38337633f ,1.8435854e-7f ,0.92359227f ,-6.3306175e-8f ,0.77161616f ,0.6360885f ,0.39090422f ,0.7253817f ,0.5665822f ,3.411759e-8f ,1f ,4.5490123e-9f ,0.50930446f ,0.8605857f ,-0.0011703646f ,0.725369f ,0.3919513f ,0.56587464f ,0.8605863f ,0.5093033f ,0.0011713451f ,0.33691156f ,0.3369102f ,0.879194f ,-3.9505135e-8f ,0.3833751f ,0.92359275f ,-0.72538275f ,0.3909002f ,0.56658363f ,-0.8605866f ,0.5093029f ,-0.0011719338f ,-0.39195272f ,0.72536767f ,0.56587535f ,-0.50930405f ,0.8605859f ,0.0011693044f ,-0.33691117f ,0.33690977f ,0.8791943f ,-9.382468e-8f ,0.38337484f ,-0.92359287f ,0.33691195f ,0.3369104f ,-0.87919384f ,-4.101426e-8f ,-1.0633327e-8f ,-1f ,0.38337588f ,-6.584235e-9f ,-0.92359245f ,0.7253822f ,0.3909007f ,-0.566584f ,0.7716165f ,1.9783313e-8f ,-0.636088f ,1f ,8.8705846e-8f ,4.5490176e-9f ,0.8605863f ,0.5093033f ,0.0011713451f ,0.3919527f ,0.7253676f ,-0.5658755f ,0.50930446f ,0.8605857f ,-0.0011703646f ,3.411759e-8f ,1f ,4.5490123e-9f ,-3.16531e-8f ,0.7716158f ,-0.63608885f ,-0.8605866f ,0.5093029f ,-0.0011719338f ,-0.7253686f ,0.3919507f ,-0.5658755f ,-1f ,7.0509756e-8f ,4.094115e-8f ,-0.771617f ,-5.1436626e-8f ,-0.63608754f ,-0.33691162f ,0.33690983f ,-0.8791942f ,-0.38337582f ,-8.8887084e-8f ,-0.9235925f ,-0.39090356f ,0.72538084f ,-0.56658375f ,-0.50930405f ,0.8605859f ,0.0011693044f ,9.89158e-8f ,-0.7716149f ,-0.63609004f ,0.39090183f ,-0.72538227f ,-0.566583f ,2.2745061e-8f ,-1f ,-3.63921e-8f ,0.5093042f ,-0.86058587f ,0.0011707566f ,0.7253683f ,-0.3919517f ,-0.5658752f ,0.8605865f ,-0.5093029f ,-0.0011716407f ,0.33691195f ,-0.33691138f ,-0.8791934f ,4.938156e-8f ,-0.38337547f ,-0.92359257f ,-0.72538245f ,-0.39090127f ,-0.56658316f ,-0.86058664f ,-0.50930285f ,0.0011714938f ,-0.3919514f ,-0.72536904f ,-0.5658744f ,-0.5093039f ,-0.86058605f ,-0.001169993f ,-0.33691207f ,-0.3369116f ,-0.87919337f });
  }
}
private class MFVec4f40 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.4633754f ,0.6850691f ,-0.56210643f ,1f ,6.403541e-8f ,0.6476381f ,-0.7619482f ,1f ,-0.6180812f ,0.7321789f ,-0.2861636f ,1f ,-0.49729678f ,0.8407912f ,-0.21393007f ,1f ,-0.7612359f ,0.6011141f ,0.24327296f ,1f ,-0.81947434f ,0.48538852f ,0.304729f ,1f ,-0.6696714f ,-2.1988425e-8f ,0.74265754f ,1f ,-0.7041151f ,0.4516783f ,0.5479131f ,1f ,-0.7078778f ,0.65236557f ,0.27079195f ,1f ,-0.718698f ,0.6952644f ,-0.008980391f ,1f ,-0.71825117f ,0.695784f ,1.1043035e-7f ,1f ,-0.6724693f ,0.685469f ,-0.2791369f ,1f ,-0.53252584f ,0.32384017f ,0.7820127f ,1f ,-0.123218484f ,-0.07426733f ,0.98959666f ,1f ,-0.37138286f ,0.46932006f ,0.8011326f ,1f ,0.098462865f ,0.16863121f ,0.980749f ,1f ,-9.011304e-9f ,0.64763516f ,0.76195055f ,1f ,-0.46337903f ,0.6850627f ,0.5621112f ,1f ,-0.6724725f ,0.68546534f ,0.27913815f ,1f ,-0.6323571f ,0.6108661f ,0.47641063f ,1f ,-0.7041131f ,0.45167866f ,-0.5479152f ,1f ,-0.6696716f ,4.937643e-8f ,-0.7426574f ,1f ,-0.53252417f ,0.32384264f ,-0.78201276f ,1f ,-0.12322412f ,-0.07427019f ,-0.9895958f ,1f ,-0.37138385f ,0.46931976f ,-0.80113244f ,1f ,0.09845719f ,0.16862221f ,-0.9807512f ,1f ,-0.63235676f ,0.61086786f ,-0.47640902f ,1f ,-0.7078778f ,0.65236586f ,-0.27079123f ,1f ,-0.61808246f ,0.7321759f ,0.28616893f ,1f ,-0.49729595f ,0.84079057f ,0.21393476f ,1f ,-0.76123357f ,0.60111654f ,-0.24327451f ,1f ,-0.81947446f ,0.4853881f ,-0.3047294f ,1f ,-0.71869767f ,0.6952648f ,0.00898063f ,1f ,0.6855361f ,-0.6724113f ,-0.2791118f ,1f ,0.69585025f ,-0.718187f ,-9.209207e-8f ,1f ,0.61093664f ,-0.63228935f ,-0.4764101f ,1f ,0.65243125f ,-0.7078069f ,-0.27081916f ,1f ,0.32389462f ,-0.5324627f ,-0.7820331f ,1f ,0.45172206f ,-0.70404416f ,-0.54796815f ,1f ,-1.7471585e-8f ,-0.6696096f ,-0.7427133f ,1f ,-0.074236654f ,-0.12316377f ,-0.98960584f ,1f ,0.4693878f ,-0.37133434f ,-0.8011155f ,1f ,0.16869049f ,0.09850036f ,-0.98073506f ,1f ,0.64770937f ,-3.990008e-9f ,-0.7618875f ,1f ,0.68513536f ,-0.46333712f ,-0.5620572f ,1f ,0.4853697f ,-0.8194447f ,0.30483887f ,1f ,2.6722768e-8f ,-0.6695999f ,0.74272203f ,1f ,0.6011506f ,-0.7611796f ,0.24335894f ,1f ,0.45172307f ,-0.70404184f ,0.5479702f ,1f ,0.6524288f ,-0.70780957f ,0.27081782f ,1f ,0.6953246f ,-0.7186403f ,-0.008933452f ,1f ,0.7322344f ,-0.6180524f ,-0.28608388f ,1f ,0.8408108f ,-0.49731028f ,-0.21382204f ,1f ,0.685136f ,-0.4633376f ,0.56205595f ,1f ,0.6477114f ,7.800576e-9f ,0.76188576f ,1f ,0.7322342f ,-0.61805135f ,0.28608695f ,1f ,0.84081125f ,-0.49731022f ,0.21382053f ,1f ,0.6011507f ,-0.7611801f ,-0.24335727f ,1f ,0.48536974f ,-0.8194447f ,-0.30483857f ,1f ,0.69532377f ,-0.7186412f ,0.008934985f ,1f ,0.6855324f ,-0.67241436f ,0.27911347f ,1f ,0.3238971f ,-0.53245866f ,0.7820349f ,1f ,-0.07422697f ,-0.12314838f ,0.98960847f ,1f ,0.46938685f ,-0.37133363f ,0.80111635f ,1f ,0.16869543f ,0.09850235f ,0.98073405f ,1f ,0.61093324f ,-0.6322921f ,0.47641098f ,1f ,0.4633754f ,0.6850689f ,-0.5621066f ,-1f ,0.618081f ,0.7321791f ,-0.28616363f ,-1f ,-5.3983225e-8f ,0.64763874f ,-0.7619477f ,-1f ,0.49729678f ,0.84079146f ,-0.21392955f ,-1f ,0.76123595f ,0.6011142f ,0.24327275f ,-1f ,0.81947476f ,0.4853888f ,0.30472782f ,-1f ,0.6696715f ,-1.1795145e-8f ,0.7426575f ,-1f ,0.70411515f ,0.45167816f ,0.5479131f ,-1f ,0.718698f ,0.69526434f ,-0.008980478f ,-1f ,0.70787776f ,0.6523656f ,0.27079192f ,-1f ,0.7182511f ,0.695784f ,1.7759814e-7f ,-1f ,0.67246926f ,0.6854689f ,-0.27913707f ,-1f ,0.53252596f ,0.32384056f ,0.7820124f ,-1f ,0.12321791f ,-0.074267045f ,0.9895968f ,-1f ,0.371383f ,0.46931958f ,0.8011328f ,-1f ,-0.0984625f ,0.16863139f ,0.9807491f ,-1f ,7.685969e-8f ,0.64763415f ,0.7619514f ,-1f ,0.46337894f ,0.6850627f ,0.56211126f ,-1f ,0.63235706f ,0.6108662f ,0.4764107f ,-1f ,0.67247236f ,0.6854654f ,0.27913818f ,-1f ,0.70411307f ,0.45167875f ,-0.5479153f ,-1f ,0.5325243f ,0.3238416f ,-0.7820132f ,-1f ,0.6696724f ,-1.9469255e-8f ,-0.7426566f ,-1f ,0.12322373f ,-0.07427102f ,-0.9895958f ,-1f ,0.37138313f ,0.46932036f ,-0.8011323f ,-1f ,-0.09845731f ,0.16862212f ,-0.9807512f ,-1f ,0.63235676f ,0.6108678f ,-0.4764089f ,-1f ,0.70787776f ,0.65236586f ,-0.2707912f ,-1f ,0.6180823f ,0.732176f ,0.2861688f ,-1f ,0.4972961f ,0.84079057f ,0.21393442f ,-1f ,0.76123327f ,0.6011167f ,-0.24327467f ,-1f ,0.8194742f ,0.48538774f ,-0.3047306f ,-1f ,0.71869767f ,0.69526476f ,0.008980699f ,-1f ,-0.6855357f ,-0.6724116f ,-0.27911183f ,-1f ,-0.61093676f ,-0.6322894f ,-0.47641f ,-1f ,-0.69585025f ,-0.718187f ,3.6176502e-8f ,-1f ,-0.6524312f ,-0.70780694f ,-0.27081907f ,-1f ,-0.3238943f ,-0.5324631f ,-0.782033f ,-1f ,-0.45172194f ,-0.7040441f ,-0.5479683f ,-1f ,6.2776955e-8f ,-0.6696102f ,-0.74271274f ,-1f ,0.07423623f ,-0.1231634f ,-0.98960584f ,-1f ,-0.46938765f ,-0.37133428f ,-0.8011156f ,-1f ,-0.16869101f ,0.098499514f ,-0.980735f ,-1f ,-0.64770937f ,2.5564118e-8f ,-0.76188755f ,-1f ,-0.68513536f ,-0.4633372f ,-0.56205714f ,-1f ,-0.4853696f ,-0.81944424f ,0.30484006f ,-1f ,-0.6011508f ,-0.7611794f ,0.24335933f ,-1f ,-1.6805403e-8f ,-0.6695996f ,0.7427223f ,-1f ,-0.45172295f ,-0.70404184f ,0.54797035f ,-1f ,-0.6953246f ,-0.7186403f ,-0.0089332145f ,-1f ,-0.6524286f ,-0.7078097f ,0.2708179f ,-1f ,-0.732234f ,-0.6180527f ,-0.28608432f ,-1f ,-0.84081066f ,-0.49731028f ,-0.21382274f ,-1f ,-0.68513596f ,-0.4633378f ,0.562056f ,-1f ,-0.7322345f ,-0.61805123f ,0.28608647f ,-1f ,-0.64771163f ,-4.245886e-8f ,0.7618856f ,-1f ,-0.84081113f ,-0.4973104f ,0.21382014f ,-1f ,-0.60115063f ,-0.76118016f ,-0.24335717f ,-1f ,-0.48536968f ,-0.8194444f ,-0.3048398f ,-1f ,-0.6953237f ,-0.7186412f ,0.008934949f ,-1f ,-0.68553245f ,-0.6724143f ,0.27911344f ,-1f ,-0.32389697f ,-0.5324585f ,0.7820351f ,-1f ,0.07422786f ,-0.1231491f ,0.98960835f ,-1f ,-0.4693869f ,-0.37133405f ,0.80111605f ,-1f ,-0.16869529f ,0.09850232f ,0.98073405f ,-1f ,-0.61093324f ,-0.6322921f ,0.47641093f ,-1f });
  }
}
private class MFVec2f41 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.04772228f ,0.047289837f ,0.053583264f ,0.053007428f ,0.040081978f ,0.05351686f ,0.04132372f ,0.060115125f ,0.028460622f ,0.053778745f ,0.027414978f ,0.060116842f ,0.014922023f ,0.053583253f ,0.020639658f ,0.047722366f ,0.026845932f ,0.041318826f ,0.03416103f ,0.046604805f ,0.033964694f ,0.03396472f ,0.041318834f ,0.041083504f ,0.014412463f ,0.04008202f ,0.007814229f ,0.04132368f ,0.014150679f ,0.02846062f ,0.0078125f ,0.027414896f ,0.014346182f ,0.014922034f ,0.020206928f ,0.020639598f ,0.026610494f ,0.026845858f ,0.021324515f ,0.03416092f ,0.04728973f ,0.020206977f ,0.053007424f ,0.014346138f ,0.053516924f ,0.027847325f ,0.06011522f ,0.026605632f ,0.05377865f ,0.03946883f ,0.060116947f ,0.040514406f ,0.04660487f ,0.03376842f ,0.041083455f ,0.026610471f ,0.02784729f ,0.014412455f ,0.026605666f ,0.007814214f ,0.039468765f ,0.014150627f ,0.04051447f ,0.0078125f ,0.033768415f ,0.021324523f ,0.7256549f ,0.1924659f ,0.7330084f ,0.19958544f ,0.7203684f ,0.19978055f ,0.7258891f ,0.20693903f ,0.7134557f ,0.20570086f ,0.7196821f ,0.21334183f ,0.7139639f ,0.21920228f ,0.70685726f ,0.20694205f ,0.71319497f ,0.19407944f ,0.70685697f ,0.19303316f ,0.71339184f ,0.18054084f ,0.71925205f ,0.18625905f ,0.7395607f ,0.1734339f ,0.7520531f ,0.17996876f ,0.7385144f ,0.17977196f ,0.746335f ,0.18582906f ,0.74012804f ,0.19223186f ,0.73281354f ,0.1869453f ,0.726893f ,0.1800326f ,0.72565204f ,0.17343432f ,0.74676484f ,0.21291184f ,0.75262517f ,0.2186301f ,0.73912394f ,0.21913825f ,0.74036497f ,0.22573663f ,0.7275025f ,0.21939899f ,0.7264562f ,0.22573699f ,0.7332034f ,0.21222569f ,0.7403619f ,0.20670499f ,0.7525612f ,0.19347f ,0.7591596f ,0.19222893f ,0.75282204f ,0.20509134f ,0.75916f ,0.20613766f ,0.74564874f ,0.19939034f ,1.0477223f ,0.047289837f ,1.040082f ,0.05351686f ,1.0535833f ,0.053007428f ,1.0413237f ,0.060115125f ,1.0284606f ,0.053778745f ,1.027415f ,0.060116842f ,1.014922f ,0.053583253f ,1.0206397f ,0.047722366f ,1.0341611f ,0.046604805f ,1.0268459f ,0.041318826f ,1.0339646f ,0.03396472f ,1.0413189f ,0.041083504f ,1.0144124f ,0.04008202f ,1.0078142f ,0.04132368f ,1.0141506f ,0.02846062f ,1.0078125f ,0.027414896f ,1.0143461f ,0.014922034f ,1.0202069f ,0.020639598f ,1.0213245f ,0.03416092f ,1.0266105f ,0.026845858f ,1.0472897f ,0.020206977f ,1.0535169f ,0.027847325f ,1.0530074f ,0.014346138f ,1.0601152f ,0.026605632f ,1.0537786f ,0.03946883f ,1.060117f ,0.040514406f ,1.0466049f ,0.03376842f ,1.0410835f ,0.026610471f ,1.0278473f ,0.014412455f ,1.0266056f ,0.007814214f ,1.0394688f ,0.014150627f ,1.0405145f ,0.0078125f ,1.0337684f ,0.021324523f ,1.7256548f ,0.1924659f ,1.7203684f ,0.19978055f ,1.7330084f ,0.19958544f ,1.7258891f ,0.20693903f ,1.7134557f ,0.20570086f ,1.7196821f ,0.21334183f ,1.713964f ,0.21920228f ,1.7068572f ,0.20694205f ,1.713195f ,0.19407944f ,1.706857f ,0.19303316f ,1.7133918f ,0.18054084f ,1.7192521f ,0.18625905f ,1.7395607f ,0.1734339f ,1.7385144f ,0.17977196f ,1.752053f ,0.17996876f ,1.746335f ,0.18582906f ,1.7328136f ,0.1869453f ,1.740128f ,0.19223186f ,1.726893f ,0.1800326f ,1.725652f ,0.17343432f ,1.7467649f ,0.21291184f ,1.739124f ,0.21913825f ,1.7526252f ,0.2186301f ,1.740365f ,0.22573663f ,1.7275026f ,0.21939899f ,1.7264562f ,0.22573699f ,1.7332034f ,0.21222569f ,1.7403619f ,0.20670499f ,1.7525612f ,0.19347f ,1.7591596f ,0.19222893f ,1.752822f ,0.20509134f ,1.75916f ,0.20613766f ,1.7456487f ,0.19939034f });
  }
}
private class MFInt3242 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,3,4,1,1,4,2,5,6,7,8,7,9,7,6,9,10,1,11,11,1,0,12,13,7,7,13,5,14,15,16,16,15,17,15,14,18,18,14,19,20,21,22,22,21,23,24,25,17,17,25,16,24,17,2,2,17,0,4,22,2,2,22,24,15,18,11,11,18,10,15,11,17,17,11,0,12,19,13,13,19,14,23,21,9,9,21,8,5,16,6,6,16,25,14,16,13,13,16,5,25,23,6,6,23,9,22,4,20,20,4,3,22,23,24,24,23,25});
  }
}
private class MFVec3f43 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.2503259f ,-0.5028558f ,0.3497257f ,0.28099728f ,-0.4738712f ,0.24919444f ,0.2362905f ,-0.34192213f ,0.36695337f ,0.26136267f ,-0.2232126f ,0.29049706f ,0.24379389f ,-0.27170902f ,0.3420694f ,-0.2503259f ,-0.5028558f ,0.3497257f ,-0.2362905f ,-0.34192213f ,0.36695337f ,-0.28099728f ,-0.4738712f ,0.24919444f ,-0.26136267f ,-0.2232126f ,0.29049706f ,-0.24379389f ,-0.27170902f ,0.3420694f ,0.2620855f ,-0.5873296f ,0.23635274f ,0.2353104f ,-0.5764445f ,0.32742095f ,-0.2620855f ,-0.5873296f ,0.23635274f ,-0.2353104f ,-0.5764445f ,0.32742095f ,-0.07750287f ,-0.59713626f ,0.37894255f ,0.07750287f ,-0.59713626f ,0.37894255f ,-0.083646715f ,-0.48627812f ,0.40864176f ,0.083646715f ,-0.48627812f ,0.40864176f ,0.056733537f ,-0.6105276f ,0.27615356f ,-0.056733537f ,-0.6105276f ,0.27615356f ,0.06000326f ,-0.21705371f ,0.33381027f ,-0.06000326f ,-0.21705371f ,0.33381027f ,0.07431469f ,-0.27337062f ,0.3949195f ,-0.07431469f ,-0.27337062f ,0.3949195f ,0.08077259f ,-0.36197373f ,0.41312444f ,-0.08077259f ,-0.36197373f ,0.41312444f });
  }
}
private class MFVec3f44 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.6350923f ,-0.14057735f ,0.7595365f ,0.95270777f ,-0.04478691f ,0.30056974f ,0.5914527f ,0.06189371f ,0.80396074f ,0.6549873f ,0.4262403f ,0.6239478f ,0.643339f ,0.35867378f ,0.67636395f ,-0.6350924f ,-0.1405774f ,0.75953645f ,-0.5914528f ,0.06189372f ,0.8039608f ,-0.95270777f ,-0.044786885f ,0.3005697f ,-0.6549873f ,0.42624035f ,0.62394786f ,-0.643339f ,0.35867378f ,0.67636395f ,0.58293134f ,-0.7686882f ,0.26326686f ,0.45693153f ,-0.72484934f ,0.51556474f ,-0.5829314f ,-0.7686882f ,0.26326686f ,-0.4569316f ,-0.72484934f ,0.5155647f ,-0.16024055f ,-0.7015656f ,0.6943549f ,0.15361442f ,-0.71145487f ,0.6857366f ,-0.16815248f ,-0.1419881f ,0.97548145f ,0.16733067f ,-0.14373517f ,0.975367f ,0.08011484f ,-0.9892603f ,0.122252695f ,-0.08804869f ,-0.9886761f ,0.12152037f ,0.10691827f ,0.7364809f ,0.66795546f ,-0.099873915f ,0.7366687f ,0.6688382f ,0.13062362f ,0.48352435f ,0.86552966f ,-0.12558405f ,0.4863577f ,0.86468774f ,0.14247635f ,0.06275189f ,0.98780704f ,-0.14012861f ,0.06360763f ,0.9880881f });
  }
}
private class MFVec4f45 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.020437755f ,-0.98601395f ,-0.16540532f ,1f ,-0.0037231306f ,-0.990726f ,-0.13582373f ,1f ,0.022849109f ,-0.99793583f ,0.06001758f ,1f ,0.18786052f ,-0.89164925f ,0.41191047f ,1f ,0.11064671f ,-0.9177495f ,0.38143563f ,1f ,-0.02988448f ,-0.97809213f ,-0.20601654f ,1f ,-0.07825176f ,-0.99674934f ,0.019167982f ,1f ,-0.02252648f ,-0.9759507f ,-0.21682471f ,1f ,-0.24118704f ,-0.90045696f ,0.36194783f ,1f ,-0.1659085f ,-0.9277867f ,0.33419487f ,1f ,-0.313673f ,-0.51179403f ,-0.7997976f ,1f ,-0.25529417f ,-0.66209286f ,-0.7045977f ,1f ,0.25476408f ,-0.48058957f ,-0.839124f ,1f ,0.18716677f ,-0.6449832f ,-0.74092203f ,1f ,-0.02583944f ,-0.7002223f ,-0.71345705f ,1f ,-0.13214903f ,-0.702531f ,-0.699276f ,1f ,-0.044072933f ,-0.9874996f ,-0.15133466f ,1f ,-0.038836673f ,-0.9895086f ,-0.13915646f ,1f ,-0.18769173f ,-0.13542454f ,-0.97284746f ,1f ,0.22597322f ,-0.13863865f ,-0.96421754f ,1f ,0.1790666f ,-0.67508465f ,0.71567863f ,1f ,-0.15658394f ,-0.67545986f ,0.7205799f ,1f ,0.035460517f ,-0.8747297f ,0.48331222f ,1f ,-0.13169223f ,-0.8720474f ,0.47137082f ,1f ,-0.0252222f ,-0.9974341f ,0.06700138f ,1f ,-0.060841803f ,-0.9966017f ,0.05552723f ,1f });
  }
}
private class MFVec2f46 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.0888682f ,0.48091787f ,0.087035775f ,0.5093542f ,0.0488922f ,0.4769792f ,0.0156136155f ,0.49370646f ,0.030636907f ,0.48195195f ,0.09325868f ,0.35630065f ,0.05304855f ,0.35722524f ,0.09379983f ,0.32783854f ,0.021224976f ,0.33792084f ,0.03521669f ,0.3508702f ,0.12158382f ,0.49812958f ,0.10793853f ,0.47883397f ,0.12729639f ,0.3418232f ,0.11202526f ,0.3597921f ,0.11389619f ,0.4008508f ,0.112593174f ,0.4379029f ,0.08501148f ,0.3985512f ,0.08356559f ,0.4381839f ,0.14060062f ,0.43786326f ,0.14060122f ,0.4028332f ,0.0078125f ,0.43386704f ,0.008219004f ,0.39738894f ,0.029243827f ,0.43555754f ,0.030321717f ,0.39719492f ,0.052318335f ,0.43690777f ,0.053664744f ,0.39750624f });
  }
}
private class MFInt3247 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,6,6,5,7,4,6,8,8,6,9,7,5,10,10,5,11,12,13,14,14,13,15,14,15,16,16,15,17,12,18,13,13,18,19,13,19,0,0,19,1,15,20,17,17,20,21,15,13,2,22,23,24,24,23,25,26,27,28,28,27,29,30,31,32,32,31,33,34,35,36,36,35,37,31,38,33,33,38,39,40,41,42,42,41,43,36,37,43,43,37,42,9,23,8,8,23,22,10,11,28,28,11,26,16,17,30,30,17,31,18,34,19,19,34,36,44,38,21,21,38,17,38,31,17,41,3,43,43,3,1,19,36,1,1,36,43,4,8,12,12,8,18,34,18,22,22,18,8,35,34,24,24,34,22,26,30,27,27,30,32,11,16,26,26,16,30,5,14,11,11,14,16,5,4,14,14,4,12,6,7,45,45,7,46,25,23,47,23,48,47,49,48,9,9,48,23,6,45,9,9,45,49,41,40,44,44,40,50,3,41,21,21,41,44,3,21,2,2,21,20,15,2,20,2,13,0,38,44,39,39,44,50,51,46,10,10,46,7,51,10,52,52,10,28,29,53,28,53,52,28,54,55,56,56,55,57,58,59,60,60,59,61,61,62,60,60,62,63,58,64,59,59,64,65,66,67,68,68,67,69,70,66,71,71,66,68,69,67,72,72,67,73,67,54,73,73,54,56,74,75,70,70,75,66,66,55,67,76,77,78,78,77,79,80,81,82,82,81,83,84,85,86,86,85,87,88,89,90,90,89,91,85,84,92,92,84,93,94,95,96,96,95,97,95,88,97,97,88,90,76,78,62,62,78,63,64,82,65,65,82,83,85,70,87,87,70,71,90,91,73,73,91,72,98,74,92,74,70,92,92,70,85,96,97,57,57,97,56,97,90,56,56,90,73,61,69,62,62,69,72,91,76,72,72,76,62,89,77,91,91,77,76,83,81,87,87,81,86,65,83,71,71,83,87,71,68,65,65,68,59,59,68,61,61,68,69,99,58,100,100,58,60,79,101,78,78,101,102,78,102,63,63,102,103,60,63,100,100,63,103,104,94,98,98,94,96,98,96,74,74,96,57,75,74,55,55,74,57,66,75,55,55,54,67,104,98,93,93,98,92,58,99,64,64,99,105,82,64,106,106,64,105,80,82,107,107,82,106});
  }
}
private class MFVec3f48 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.27781224f ,0.41799453f ,0.24861543f ,0.2835362f ,0.41234934f ,0.21901909f ,0.29243663f ,0.5062906f ,0.23818901f ,0.29824784f ,0.504777f ,0.20863006f ,0.13313803f ,0.3931946f ,0.33331537f ,0.1000846f ,0.59306514f ,0.32376054f ,0.069455f ,0.4150378f ,0.34338465f ,0.044745173f ,0.56717193f ,0.335223f ,0.12784046f ,0.38574174f ,0.30277196f ,0.06046704f ,0.4088773f ,0.30994338f ,0.04332433f ,0.57481045f ,0.30130666f ,0.0949678f ,0.59723955f ,0.29270798f ,0.18656783f ,0.380657f ,0.31548196f ,0.2366939f ,0.38993818f ,0.28637996f ,0.18685278f ,0.59866774f ,0.3054204f ,0.24276644f ,0.5947252f ,0.27719995f ,0.18553409f ,0.60303867f ,0.2742579f ,0.24563555f ,0.59899676f ,0.23993367f ,0.1850521f ,0.37263134f ,0.28496847f ,0.23934804f ,0.38259518f ,0.25680622f ,0.28689367f ,0.5674262f ,0.24207741f ,0.2927921f ,0.5700442f ,0.21255583f ,0.12589297f ,0.34325823f ,0.303378f ,0.06465591f ,0.37271497f ,0.3082504f ,0.1222188f ,0.33598217f ,0.28896368f ,0f ,0.36665478f ,0.29222983f ,0.10642834f ,0.6366276f ,0.2938394f ,0.10190622f ,0.6423987f ,0.27856478f ,0.05245568f ,0.6088982f ,0.30254602f ,0f ,0.6134005f ,0.2867805f ,0.19649437f ,0.64923763f ,0.26818523f ,0.26816356f ,0.64809775f ,0.22702251f ,0.19520089f ,0.65560937f ,0.25351837f ,0.27151534f ,0.65443236f ,0.21257657f ,0.20462672f ,0.3248951f ,0.27411228f ,0.20368753f ,0.31682348f ,0.26009217f ,0.2826529f ,0.33865497f ,0.23283009f ,0.28434652f ,0.33122462f ,0.21924452f ,0.31660467f ,0.6311543f ,0.1874981f ,0.323252f ,0.636738f ,0.17314321f ,0.34200856f ,0.5001007f ,0.15651812f ,0.33556277f ,0.50032127f ,0.17025588f ,0.3268909f ,0.3898842f ,0.18241142f ,0.3210703f ,0.3948136f ,0.19610721f ,0.32923612f ,0.600396f ,0.1770496f ,5.567704e-19f ,0.42828912f ,0.34772435f ,2.0409989e-19f ,0.5694398f ,0.335223f ,-1.5706383e-17f ,0.38176414f ,0.29636452f ,-8.390684e-18f ,0.38717845f ,0.3123851f ,4.5767283e-20f ,0.42212862f ,0.3142831f ,0.33640927f ,0.6046131f ,0.16280979f ,1.1318852e-18f ,0.57707834f ,0.30130666f ,2.7334378e-18f ,0.6065937f ,0.30254602f ,3.7181893e-18f ,0.611096f ,0.2867805f ,-0.27781224f ,0.41799453f ,0.24861543f ,-0.29243663f ,0.5062906f ,0.23818901f ,-0.2835362f ,0.41234934f ,0.21901909f ,-0.29824784f ,0.504777f ,0.20863006f ,-0.044745173f ,0.56717193f ,0.335223f ,-0.1000846f ,0.59306514f ,0.32376054f ,-0.069455f ,0.4150378f ,0.34338465f ,-0.13313803f ,0.3931946f ,0.33331537f ,-0.12784046f ,0.38574174f ,0.30277196f ,-0.06046704f ,0.4088773f ,0.30994338f ,-0.04332433f ,0.57481045f ,0.30130666f ,-0.0949678f ,0.59723955f ,0.29270798f ,-0.24276644f ,0.5947252f ,0.27719995f ,-0.2366939f ,0.38993818f ,0.28637996f ,-0.18685278f ,0.59866774f ,0.3054204f ,-0.18656783f ,0.380657f ,0.31548196f ,-0.24563555f ,0.59899676f ,0.23993367f ,-0.18553409f ,0.60303867f ,0.2742579f ,-0.1850521f ,0.37263134f ,0.28496847f ,-0.23934804f ,0.38259518f ,0.25680622f ,-0.2927921f ,0.5700442f ,0.21255583f ,-0.28689367f ,0.5674262f ,0.24207741f ,-0.12589297f ,0.34325823f ,0.303378f ,-0.1222188f ,0.33598217f ,0.28896368f ,-0.06465591f ,0.37271497f ,0.3082504f ,0f ,0.36665478f ,0.29222983f ,0f ,0.6134005f ,0.2867805f ,-0.10190622f ,0.6423987f ,0.27856478f ,-0.05245568f ,0.6088982f ,0.30254602f ,-0.10642834f ,0.6366276f ,0.2938394f ,-0.27151534f ,0.65443236f ,0.21257657f ,-0.26816356f ,0.64809775f ,0.22702251f ,-0.19520089f ,0.65560937f ,0.25351837f ,-0.19649437f ,0.64923763f ,0.26818523f ,-0.28434652f ,0.33122462f ,0.21924452f ,-0.20368753f ,0.31682348f ,0.26009217f ,-0.2826529f ,0.33865497f ,0.23283009f ,-0.20462672f ,0.3248951f ,0.27411228f ,-0.31660467f ,0.6311543f ,0.1874981f ,-0.323252f ,0.636738f ,0.17314321f ,-0.34200856f ,0.5001007f ,0.15651812f ,-0.3268909f ,0.3898842f ,0.18241142f ,-0.33556277f ,0.50032127f ,0.17025588f ,-0.3210703f ,0.3948136f ,0.19610721f ,-0.32923612f ,0.600396f ,0.1770496f ,2.0409989e-19f ,0.5694398f ,0.335223f ,5.567704e-19f ,0.42828912f ,0.34772435f ,-1.5706383e-17f ,0.38176414f ,0.29636452f ,-8.390684e-18f ,0.38717845f ,0.3123851f ,4.5767283e-20f ,0.42212862f ,0.3142831f ,-0.33640927f ,0.6046131f ,0.16280979f ,1.1318852e-18f ,0.57707834f ,0.30130666f ,2.7334378e-18f ,0.6065937f ,0.30254602f ,3.7181893e-18f ,0.611096f ,0.2867805f });
  }
}
private class MFVec3f49 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.8144971f ,-0.20051706f ,0.54441476f ,0.69170004f ,-0.013734285f ,0.7220543f ,0.7355501f ,0.00022337533f ,0.6774703f ,0.81874114f ,0.013838598f ,0.57399607f ,0.21326996f ,-0.07838815f ,0.9738435f ,0.14999011f ,0.24603912f ,0.9575844f ,0.09273572f ,-0.110947065f ,0.9894902f ,0.07204605f ,0.2267606f ,0.9712821f ,0.0051442827f ,-0.5349692f ,0.84485596f ,-0.112978086f ,-0.65632993f ,0.7459672f ,-0.11637429f ,0.6917393f ,0.71270883f ,0.048890818f ,0.55687064f ,0.829159f ,0.40074295f ,-0.10457948f ,0.9102024f ,0.56405723f ,-0.10215435f ,0.81939244f ,0.31512982f ,0.2039838f ,0.9268678f ,0.5352221f ,0.19502151f ,0.8218905f ,0.29360458f ,0.5236653f ,0.79973185f ,0.59124523f ,0.3169989f ,0.74157995f ,0.34814605f ,-0.40922555f ,0.8434031f ,0.5903546f ,-0.20237039f ,0.7813627f ,0.78692293f ,0.2717886f ,0.5539704f ,0.72536826f ,0.11174502f ,0.6792304f ,0.11293637f ,-0.3202046f ,0.9405926f ,-0.041433096f ,-0.36375326f ,0.93057346f ,-0.15022121f ,-0.8096196f ,0.5674061f ,5.0621423e-8f ,-0.45641f ,0.8897697f ,0.11824784f ,0.29842827f ,0.94707876f ,-0.14499128f ,0.871163f ,0.4690975f ,-0.022335514f ,0.39530626f ,0.91827774f ,5.258378e-8f ,0.65828985f ,0.7527646f ,0.35369247f ,0.3042445f ,0.8844981f ,0.56446135f ,0.1763604f ,0.8063997f ,0.1121833f ,0.9137219f ,0.39054745f ,0.4768703f ,0.7559455f ,0.44848776f ,0.37962392f ,-0.31270808f ,0.87068903f ,0.22279179f ,-0.8501082f ,0.47715825f ,0.6049707f ,-0.15014534f ,0.7819635f ,0.69552064f ,-0.5836827f ,0.41900548f ,0.654561f ,0.16720876f ,0.7372863f ,0.78181976f ,0.3637068f ,0.5064339f ,0.9044559f ,0.0019111604f ,0.42656294f ,0.7783916f ,0.030798074f ,0.6270232f ,0.89434797f ,-0.12912309f ,0.42833266f ,0.7074145f ,0.0022713619f ,0.70679533f ,0.7589417f ,0.026100038f ,0.65063536f ,8.321253e-9f ,-0.11473563f ,0.99339604f ,0f ,0.30185246f ,0.95335466f ,5.3427507e-9f ,-0.6952213f ,0.7187957f ,-6.810394e-8f ,-0.3587483f ,0.93343437f ,8.194302e-8f ,-0.71377754f ,0.7003725f ,0.88336176f ,0.06484082f ,0.46418497f ,0f ,0.64787954f ,0.7617429f ,0f ,0.39681658f ,0.9178979f ,7.626585e-8f ,0.9051442f ,0.42510465f ,-0.81449723f ,-0.20051697f ,0.54441446f ,-0.7355501f ,0.00022344089f ,0.6774703f ,-0.6917001f ,-0.013734307f ,0.7220543f ,-0.8187411f ,0.013838617f ,0.5739961f ,-0.07204605f ,0.22676058f ,0.9712821f ,-0.14999016f ,0.24603912f ,0.9575844f ,-0.09273574f ,-0.110947035f ,0.9894902f ,-0.21326981f ,-0.07838811f ,0.9738436f ,-0.005144164f ,-0.5349692f ,0.8448559f ,0.11297808f ,-0.6563298f ,0.7459673f ,0.11637443f ,0.69173944f ,0.7127086f ,-0.048890784f ,0.5568708f ,0.82915896f ,-0.53522205f ,0.19502147f ,0.8218905f ,-0.56405723f ,-0.10215431f ,0.8193924f ,-0.31512988f ,0.20398381f ,0.9268678f ,-0.4007428f ,-0.10457945f ,0.9102023f ,-0.59124523f ,0.3169988f ,0.74157995f ,-0.29360473f ,0.52366525f ,0.79973185f ,-0.34814605f ,-0.40922567f ,0.84340304f ,-0.59035456f ,-0.20237033f ,0.7813627f ,-0.72536826f ,0.11174501f ,0.6792304f ,-0.78692275f ,0.2717889f ,0.55397063f ,-0.112936236f ,-0.320205f ,0.9405925f ,0.15022132f ,-0.8096201f ,0.5674054f ,0.04143304f ,-0.36375293f ,0.9305735f ,5.0621423e-8f ,-0.45641f ,0.8897697f ,5.258378e-8f ,0.65828985f ,0.7527646f ,0.14499138f ,0.8711633f ,0.469097f ,0.022335697f ,0.39530635f ,0.91827774f ,-0.11824783f ,0.2984285f ,0.94707865f ,-0.47687033f ,0.75594556f ,0.44848734f ,-0.5644613f ,0.17636047f ,0.8063997f ,-0.112183325f ,0.913722f ,0.39054713f ,-0.3536926f ,0.30424458f ,0.884498f ,-0.69552076f ,-0.5836826f ,0.41900545f ,-0.22279185f ,-0.85010815f ,0.47715825f ,-0.6049707f ,-0.15014525f ,0.7819635f ,-0.37962404f ,-0.31270805f ,0.870689f ,-0.6545609f ,0.16720869f ,0.73728645f ,-0.7818197f ,0.36370632f ,0.5064344f ,-0.9044558f ,0.0019114375f ,0.4265632f ,-0.894348f ,-0.1291234f ,0.42833272f ,-0.7783915f ,0.030798135f ,0.6270233f ,-0.70741445f ,0.0022712536f ,0.70679533f ,-0.7589416f ,0.026100032f ,0.6506354f ,0f ,0.30185246f ,0.95335466f ,8.321253e-9f ,-0.11473563f ,0.99339604f ,5.3427507e-9f ,-0.6952213f ,0.7187957f ,-6.810394e-8f ,-0.3587483f ,0.93343437f ,8.194302e-8f ,-0.71377754f ,0.7003725f ,-0.88336176f ,0.06484082f ,0.464185f ,0f ,0.64787954f ,0.7617429f ,0f ,0.39681658f ,0.9178979f ,7.626585e-8f ,0.9051442f ,0.42510465f });
  }
}
private class MFVec4f50 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.5667709f ,-0.07451511f ,0.8204988f ,1f ,-0.722042f ,0.006737736f ,0.6918164f ,1f ,-0.6759798f ,0.06654135f ,0.73390985f ,1f ,-0.5738556f ,0.05242515f ,0.8172768f ,1f ,-0.96878064f ,0.112003796f ,0.22117679f ,1f ,-0.97716975f ,-0.11051669f ,0.18145368f ,1f ,-0.9869453f ,0.12118255f ,0.10608485f ,1f ,-0.99419695f ,-0.061669476f ,0.088143475f ,1f ,-0.9744331f ,0.18709388f ,0.12440255f ,1f ,-0.9860812f ,0.1662366f ,-0.0030825778f ,1f ,-0.9894099f ,-0.14341599f ,-0.022358933f ,1f ,-0.9808188f ,-0.1300617f ,0.14518395f ,1f ,-0.91075623f ,0.06257259f ,0.40817624f ,1f ,-0.8250822f ,-0.030251866f ,0.5642024f ,1f ,-0.9462228f ,-0.0077797663f ,0.32342252f ,1f ,-0.8439488f ,0.082121715f ,0.5301005f ,1f ,-0.92954564f ,-0.038787715f ,0.36666113f ,1f ,-0.7886204f ,0.034743104f ,0.6138981f ,1f ,-0.9035899f ,0.09309542f ,0.41816106f ,1f ,-0.7940464f ,0.028072871f ,0.60720855f ,1f ,-0.6074495f ,0.18345647f ,0.77288353f ,1f ,-0.68748343f ,0.06779252f ,0.7230289f ,1f ,-0.96525824f ,0.18913867f ,0.18028615f ,1f ,-0.98624074f ,0.1640737f ,0.020223366f ,1f ,-0.97887367f ,0.2023223f ,0.029531758f ,1f ,-0.99245423f ,0.109099634f ,0.05596304f ,1f ,-0.9764004f ,-0.138639f ,0.16559449f ,1f ,-0.9849633f ,-0.17209719f ,0.015164408f ,1f ,-0.9906049f ,-0.13270572f ,0.03303329f ,1f ,-0.9971565f ,-0.056727193f ,0.049607795f ,1f ,-0.9193006f ,-0.06141522f ,0.38873458f ,1f ,-0.8186479f ,-0.005638568f ,0.57426804f ,1f ,-0.8990488f ,-0.07406826f ,0.43153805f ,1f ,-0.7143844f ,0.036053635f ,0.6988241f ,1f ,-0.8960138f ,0.110021256f ,0.43017977f ,1f ,-0.8467769f ,0.07377385f ,0.52680784f ,1f ,-0.7890613f ,0.018598614f ,0.61403304f ,1f ,-0.53975105f ,-0.03952096f ,0.8408966f ,1f ,-0.7502974f ,0.024023859f ,0.66066384f ,1f ,-0.5635265f ,0.06459312f ,0.8235688f ,1f ,-0.42593202f ,0.05859806f ,0.9028557f ,1f ,-0.6277708f ,0.043318283f ,0.777192f ,1f ,-0.42839724f ,0.028700326f ,0.90313464f ,1f ,-0.70679605f ,-0.00061667425f ,0.7074172f ,1f ,-0.65083075f ,0.062111694f ,0.7566779f ,1f ,-0.99527127f ,0.09649383f ,0.01114489f ,1f ,-0.9999427f ,0.010209538f ,-0.0032325583f ,1f ,-0.9918055f ,0.091831766f ,0.08881996f ,1f ,-0.9926534f ,0.11293901f ,0.04340595f ,1f ,-0.9949881f ,0.07003336f ,0.07137389f ,1f ,-0.46807137f ,0.07110126f ,0.88082576f ,1f ,-0.99993086f ,-0.0089595625f ,0.0076203104f ,1f ,-0.99954593f ,-0.02766082f ,0.011958053f ,1f ,-0.9994916f ,-0.013554062f ,0.028859844f ,1f ,0.5667706f ,-0.07451482f ,0.8204991f ,-1f ,0.67597985f ,0.06654082f ,0.73390985f ,-1f ,0.722042f ,0.006737396f ,0.69181645f ,-1f ,0.5738557f ,0.052425165f ,0.8172768f ,-1f ,0.994197f ,-0.06166972f ,0.08814352f ,-1f ,0.9771697f ,-0.110516615f ,0.1814537f ,-1f ,0.9869453f ,0.12118246f ,0.10608486f ,-1f ,0.96878076f ,0.11200402f ,0.22117668f ,-1f ,0.97443306f ,0.18709406f ,0.12440252f ,-1f ,0.9860812f ,0.16623658f ,-0.0030826125f ,-1f ,0.9894099f ,-0.14341608f ,-0.022359015f ,-1f ,0.9808188f ,-0.13006176f ,0.14518398f ,-1f ,0.84394884f ,0.08212173f ,0.53010046f ,-1f ,0.8250822f ,-0.030251823f ,0.5642025f ,-1f ,0.9462227f ,-0.007779833f ,0.32342258f ,-1f ,0.91075635f ,0.06257232f ,0.40817606f ,-1f ,0.7886204f ,0.03474314f ,0.61389816f ,-1f ,0.92954564f ,-0.038787656f ,0.3666613f ,-1f ,0.9035899f ,0.09309525f ,0.41816097f ,-1f ,0.79404646f ,0.028073106f ,0.60720855f ,-1f ,0.6874834f ,0.06779221f ,0.7230289f ,-1f ,0.6074499f ,0.18345658f ,0.7728832f ,-1f ,0.96525824f ,0.18913868f ,0.18028612f ,-1f ,0.97887367f ,0.20232251f ,0.029532114f ,-1f ,0.98624074f ,0.1640738f ,0.020223409f ,-1f ,0.99245423f ,0.109099686f ,0.055962954f ,-1f ,0.9971565f ,-0.0567273f ,0.049607754f ,-1f ,0.9849633f ,-0.17209725f ,0.015164532f ,-1f ,0.9906048f ,-0.13270599f ,0.033033215f ,-1f ,0.9764004f ,-0.138639f ,0.16559455f ,-1f ,0.7143841f ,0.036053777f ,0.6988244f ,-1f ,0.818648f ,-0.005638554f ,0.574268f ,-1f ,0.89904886f ,-0.07406813f ,0.4315381f ,-1f ,0.9193006f ,-0.06141518f ,0.38873464f ,-1f ,0.53975093f ,-0.03952086f ,0.8408966f ,-1f ,0.84677696f ,0.07377365f ,0.5268076f ,-1f ,0.7890613f ,0.018598678f ,0.61403304f ,-1f ,0.89601374f ,0.11002124f ,0.43017998f ,-1f ,0.7502976f ,0.024023859f ,0.6606637f ,-1f ,0.5635268f ,0.06459301f ,0.82356864f ,-1f ,0.42593232f ,0.05859812f ,0.9028555f ,-1f ,0.42839724f ,0.028700247f ,0.9031346f ,-1f ,0.6277709f ,0.04331824f ,0.77719194f ,-1f ,0.70679605f ,-0.00061661046f ,0.7074172f ,-1f ,0.6508308f ,0.06211176f ,0.756678f ,-1f ,0.9999427f ,0.0102096f ,-0.0032325778f ,-1f ,0.99527127f ,0.09649396f ,0.011144888f ,-1f ,0.9918055f ,0.09183175f ,0.088819936f ,-1f ,0.9926534f ,0.1129389f ,0.043406058f ,-1f ,0.994988f ,0.07003347f ,0.0713738f ,-1f ,0.4680714f ,0.071101315f ,0.88082564f ,-1f ,0.99993086f ,-0.008959579f ,0.0076203244f ,-1f ,0.9995459f ,-0.027660782f ,0.011958036f ,-1f ,0.99949163f ,-0.013554238f ,0.02885987f ,-1f });
  }
}
private class MFVec2f51 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.2688082f ,0.8070236f ,0.26141545f ,0.8094049f ,0.26452488f ,0.78463495f ,0.25706407f ,0.78460646f ,0.3104757f ,0.8139557f ,0.31867132f ,0.76426816f ,0.32675844f ,0.8098734f ,0.33298397f ,0.76980996f ,0.31035525f ,0.82199603f ,0.3287229f ,0.81871074f ,0.33310756f ,0.76045734f ,0.3189107f ,0.75622827f ,0.29650337f ,0.81609434f ,0.2823561f ,0.8138789f ,0.2966887f ,0.76360255f ,0.28142047f ,0.7644431f ,0.29392734f ,0.7563433f ,0.27488855f ,0.7583283f ,0.29329866f ,0.82303697f ,0.27666977f ,0.81853014f ,0.26752347f ,0.76948625f ,0.26031604f ,0.7668346f ,0.30852246f ,0.8324485f ,0.32596543f ,0.82792073f ,0.3085633f ,0.8366433f ,0.32719982f ,0.8323499f ,0.3145175f ,0.74660814f ,0.31495675f ,0.7423294f ,0.32972303f ,0.75177586f ,0.3309345f ,0.74751914f ,0.28992426f ,0.74503076f ,0.26857665f ,0.74606764f ,0.2886928f ,0.7411642f ,0.26564398f ,0.7432552f ,0.28604287f ,0.8342303f ,0.28441563f ,0.838035f ,0.26361907f ,0.8287172f ,0.26076162f ,0.83148223f ,0.25235555f ,0.7505078f ,0.24855585f ,0.7485719f ,0.23960094f ,0.7848234f ,0.24347413f ,0.78498286f ,0.24633473f ,0.8150442f ,0.25012764f ,0.8137683f ,0.24772473f ,0.7582779f ,0.34441242f ,0.8072792f ,0.34441134f ,0.7691511f ,0.34299415f ,0.8301964f ,0.34318852f ,0.825833f ,0.3443713f ,0.81654555f ,0.24376673f ,0.75684756f ,0.34389105f ,0.7596705f ,0.34338936f ,0.75180084f ,0.34321964f ,0.7475832f ,1.2688081f ,0.8070236f ,1.2645249f ,0.78463495f ,1.2614155f ,0.8094049f ,1.2570641f ,0.78460646f ,1.332984f ,0.76980996f ,1.3186713f ,0.76426816f ,1.3267584f ,0.8098734f ,1.3104757f ,0.8139557f ,1.3103552f ,0.82199603f ,1.328723f ,0.81871074f ,1.3331076f ,0.76045734f ,1.3189107f ,0.75622827f ,1.2814205f ,0.7644431f ,1.2823561f ,0.8138789f ,1.2966887f ,0.76360255f ,1.2965033f ,0.81609434f ,1.2748885f ,0.7583283f ,1.2939273f ,0.7563433f ,1.2932987f ,0.82303697f ,1.2766697f ,0.81853014f ,1.260316f ,0.7668346f ,1.2675235f ,0.76948625f ,1.3085225f ,0.8324485f ,1.3085632f ,0.8366433f ,1.3259654f ,0.82792073f ,1.3271998f ,0.8323499f ,1.3309345f ,0.74751914f ,1.3149568f ,0.7423294f ,1.329723f ,0.75177586f ,1.3145175f ,0.74660814f ,1.265644f ,0.7432552f ,1.2685766f ,0.74606764f ,1.2886928f ,0.7411642f ,1.2899243f ,0.74503076f ,1.2607616f ,0.83148223f ,1.2844156f ,0.838035f ,1.2636191f ,0.8287172f ,1.2860429f ,0.8342303f ,1.2523556f ,0.7505078f ,1.2485559f ,0.7485719f ,1.2396009f ,0.7848234f ,1.2463348f ,0.8150442f ,1.2434741f ,0.78498286f ,1.2501277f ,0.8137683f ,1.2477248f ,0.7582779f ,1.3444114f ,0.7691511f ,1.3444124f ,0.8072792f ,1.3429942f ,0.8301964f ,1.3431885f ,0.825833f ,1.3443713f ,0.81654555f ,1.2437668f ,0.75684756f ,1.343891f ,0.7596705f ,1.3433894f ,0.75180084f ,1.3432196f ,0.7475832f });
  }
}
private class MFInt3252 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,1,4,3,3,4,5,6,7,4,4,7,5,8,9,6,6,9,7,8,10,9,9,10,11,12,13,14,13,15,14,15,16,14,16,17,14,17,12,14,1,0,18,18,0,19,4,1,20,20,1,18,4,20,6,6,20,21,6,21,8,8,21,22,10,8,23,23,8,22,19,24,18,18,24,25,20,18,26,26,18,25,21,20,27,27,20,26,22,21,28,28,21,27,22,28,23,23,28,29,25,24,30,30,24,31,26,25,32,32,25,30,26,32,27,27,32,33,27,33,28,28,33,34,29,28,35,35,28,34,31,36,30,30,36,37,32,30,38,38,30,37,33,32,39,39,32,38,34,33,40,40,33,39,34,40,35,35,40,41,3,42,2,2,42,43,3,5,42,42,5,44,5,7,44,44,7,45,7,9,45,45,9,46,11,47,9,9,47,46,42,48,43,43,48,49,44,50,42,42,50,48,45,51,44,44,51,50,45,46,51,51,46,52,46,47,52,52,47,53,37,36,54,54,36,55,38,37,56,56,37,54,38,56,39,39,56,57,39,57,40,40,57,58,41,40,59,59,40,58,54,55,60,60,55,61,56,54,62,62,54,60,56,62,57,57,62,63,57,63,58,58,63,64,59,58,65,65,58,64});
  }
}
private class MFVec3f53 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.023849428f ,-0.45057404f ,0.40890586f ,-0.031139076f ,-0.43589234f ,0.41163212f ,0.021116346f ,-0.29782796f ,0.38417447f ,-0.035679698f ,-0.29661608f ,0.38858676f ,-0.044366658f ,-0.4272647f ,0.46638f ,-0.04890722f ,-0.28798842f ,0.44333464f ,0.0024468303f ,-0.4366144f ,0.49748966f ,-0.0002862513f ,-0.28386807f ,0.47275826f ,0.044606686f ,-0.45102036f ,0.46196866f ,0.042990685f ,-0.2899493f ,0.43619528f ,0.023849428f ,-0.45057404f ,0.40890586f ,0.021116346f ,-0.29782796f ,0.38417447f ,0.011615545f ,-0.19807947f ,0.3917464f ,-0.012346357f ,-0.1975683f ,0.3936079f ,0.0009544566f ,-0.18621099f ,0.40897468f ,-0.017926991f ,-0.19392836f ,0.41670573f ,0.0025859028f ,-0.19219005f ,0.42911938f ,0.020844221f ,-0.19475567f ,0.41369367f ,-0.0522213f ,-0.52878165f ,0.4211768f ,-0.01114592f ,-0.56821203f ,0.41898906f ,-0.06544888f ,-0.52015424f ,0.47592476f ,-0.032548577f ,-0.5542517f ,0.50757295f ,0.0010125339f ,-0.58395386f ,0.47238472f ,-0.01114592f ,-0.56821203f ,0.41898906f ,-0.10077357f ,-0.6024513f ,0.40272987f ,-0.10317612f ,-0.5462198f ,0.41161364f ,-0.11640382f ,-0.5375917f ,0.46636155f ,-0.12217617f ,-0.58849144f ,0.49131384f ,-0.112516165f ,-0.62857723f ,0.45198736f ,-0.10077357f ,-0.6024513f ,0.40272987f ,-0.17165422f ,-0.5313287f ,0.39272207f ,-0.19121909f ,-0.5827122f ,0.37776685f ,-0.18488169f ,-0.522701f ,0.44747007f ,-0.21262121f ,-0.56875277f ,0.46635073f ,-0.21653843f ,-0.60584164f ,0.4232719f ,-0.19121909f ,-0.5827122f ,0.37776685f ,-0.27139664f ,-0.47291136f ,0.341092f ,-0.24027157f ,-0.4291029f ,0.36003405f ,-0.25349903f ,-0.42047536f ,0.41478193f ,-0.292799f ,-0.45895147f ,0.42967582f ,-0.3038602f ,-0.49135852f ,0.38413292f ,-0.27139664f ,-0.47291136f ,0.341092f ,-0.012831941f ,-0.23631525f ,0.40174615f ,0.011129975f ,-0.2368269f ,0.39988464f ,-0.018412545f ,-0.23267555f ,0.42484397f ,0.0021003336f ,-0.23093724f ,0.43725768f ,0.020358652f ,-0.23350286f ,0.42183188f ,0.011129975f ,-0.2368269f ,0.39988464f ,-0.012346357f ,-0.1975683f ,0.3936079f ,0.011615545f ,-0.19807947f ,0.3917464f ,-0.017926991f ,-0.19392836f ,0.41670573f ,0.0025859028f ,-0.19219005f ,0.42911938f ,0.020844221f ,-0.19475567f ,0.41369367f ,0.011615545f ,-0.19807947f ,0.3917464f ,-0.36048794f ,-0.25441122f ,0.2204125f ,-0.39952564f ,-0.28282f ,0.19015098f ,-0.3877306f ,-0.22398973f ,0.26015055f ,-0.44360447f ,-0.23359704f ,0.25444865f ,-0.45089436f ,-0.26995635f ,0.21118665f ,-0.39952564f ,-0.28282f ,0.19015098f ,-0.39861465f ,-0.18689585f ,0.02853012f ,-0.4278257f ,-0.22318387f ,-0.0042824745f ,-0.4328258f ,-0.14310741f ,0.041136265f ,-0.48318076f ,-0.15233278f ,0.016114712f ,-0.48008895f ,-0.20182276f ,-0.011955261f ,-0.4278257f ,-0.22318387f ,-0.0042824745f });
  }
}
private class MFVec3f54 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.60518974f ,-0.17191404f ,-0.77729726f ,-0.61410385f ,-0.068273745f ,-0.7862666f ,0.5353545f ,-0.02325862f ,-0.8443072f ,-0.65406305f ,0.0014271974f ,-0.7564388f ,-0.9034664f ,0.12046258f ,0.4113846f ,-0.91691554f ,0.16916738f ,0.36145315f ,0.18112493f ,0.10468086f ,0.977873f ,0.099374056f ,0.26110768f ,0.960181f ,0.96387786f ,-0.09679292f ,0.24813417f ,0.96803474f ,0.13240577f ,0.21302028f ,0.60518974f ,-0.17191404f ,-0.77729726f ,0.5353545f ,-0.02325862f ,-0.8443072f ,0.49701765f ,0.1239574f ,-0.8588411f ,-0.61354154f ,0.15055725f ,-0.7751769f ,0.008322874f ,0.9901854f ,-0.1395122f ,-0.8894715f ,0.3444138f ,0.30036607f ,0.0818795f ,0.43956304f ,0.894472f ,0.9409157f ,0.2996912f ,0.15767996f ,-0.35424313f ,0.25283006f ,-0.900327f ,0.5648352f ,-0.45546275f ,-0.68812424f ,-0.69992155f ,0.4783013f ,0.53041273f ,0.164968f ,-0.19464877f ,0.966901f ,0.7107165f ,-0.6479939f ,0.27383566f ,0.5648352f ,-0.45546275f ,-0.68812424f ,0.23363657f ,-0.5953852f ,-0.76872003f ,0.15641479f ,0.6723292f ,-0.7235385f ,-0.1359461f ,0.8630247f ,0.48652562f ,-0.17632297f ,-0.32798886f ,0.92808056f ,0.039807726f ,-0.985503f ,0.16492215f ,0.23363657f ,-0.5953852f ,-0.76872003f ,0.6267741f ,0.46286944f ,-0.62682235f ,-0.073074855f ,-0.5023136f ,-0.86159223f ,0.31213525f ,0.6680916f ,0.6754445f ,-0.48486426f ,-0.2337239f ,0.84278095f ,-0.566482f ,-0.8240444f ,-0.0070072683f ,-0.073074855f ,-0.5023136f ,-0.86159223f ,0.06253387f ,-0.5010204f ,-0.8631733f ,0.86197215f ,0.34989992f ,-0.3668433f ,0.3510686f ,0.668028f ,0.65611696f ,-0.619244f ,0.049653728f ,0.78362715f ,-0.828379f ,-0.5601661f ,0.0015025855f ,0.06253387f ,-0.5010204f ,-0.8631733f ,-0.59937704f ,0.25399166f ,-0.75910175f ,0.6088261f ,0.15689544f ,-0.77763397f ,-0.8062337f ,0.42789534f ,0.40852523f ,0.20367087f ,0.44671103f ,0.8711873f ,0.94152397f ,0.27750146f ,0.19111666f ,0.6088261f ,0.15689544f ,-0.77763397f ,-0.61354154f ,0.15055725f ,-0.7751769f ,0.49701765f ,0.1239574f ,-0.8588411f ,-0.8894715f ,0.3444138f ,0.30036607f ,0.0818795f ,0.43956304f ,0.894472f ,0.9409157f ,0.2996912f ,0.15767996f ,0.49701765f ,0.1239574f ,-0.8588411f ,0.9167133f ,0.27391744f ,-0.2908709f ,0.12564327f ,-0.7780999f ,-0.61544657f ,0.2595181f ,0.80093926f ,0.53958005f ,-0.7172314f ,0.36210656f ,0.59536386f ,-0.86504006f ,-0.5016982f ,-0.002126118f ,0.12564327f ,-0.7780999f ,-0.61544657f ,0.98829603f ,0.06382179f ,-0.13855582f ,0.070334665f ,-0.949963f ,-0.30434087f ,0.12785605f ,0.94659173f ,0.2960015f ,-0.91824406f ,0.3157257f ,0.2390503f ,-0.81755954f ,-0.57185715f ,-0.067644484f ,0.070334665f ,-0.949963f ,-0.30434087f });
  }
}
private class MFVec4f55 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.6654221f ,0.42673135f ,-0.61246544f ,1f ,-0.76791644f ,0.28162822f ,0.5753172f ,1f ,-0.7898206f ,0.34043458f ,-0.51018405f ,1f ,-0.72432065f ,0.28712264f ,0.62683344f ,1f ,0.4197468f ,0.053935822f ,0.9060374f ,1f ,0.3883914f ,0.17003518f ,0.9056711f ,1f ,0.8929262f ,-0.43421635f ,-0.118908145f ,1f ,0.9808843f ,-0.18795049f ,-0.050406266f ,1f ,0.20628993f ,-0.3179944f ,-0.92537785f ,1f ,0.2495154f ,-0.42197615f ,-0.8715953f ,1f ,-0.7925762f ,-0.22163942f ,-0.568066f ,1f ,-0.7390544f ,-0.49682748f ,-0.45492986f ,1f ,0.49200806f ,-0.8555272f ,0.16124956f ,1f ,0.77039206f ,-0.10141967f ,-0.6294524f ,1f ,0.75951695f ,-0.09700958f ,-0.6432132f ,1f ,0.095321156f ,0.78263795f ,-0.61513555f ,1f ,0.8703842f ,0.40567523f ,-0.27903217f ,1f ,0.30805817f ,-0.564123f ,-0.7660715f ,1f ,-0.62655395f ,0.6505449f ,0.42921045f ,1f ,-0.38322392f ,0.59373057f ,-0.7075475f ,1f ,0.33489305f ,-0.43616334f ,0.8352294f ,1f ,0.6285678f ,-0.7347117f ,-0.2551495f ,1f ,0.17339519f ,-0.2158872f ,-0.96089894f ,1f ,-0.51457965f ,0.4574937f ,-0.72519463f ,1f ,0.059528828f ,0.7978765f ,-0.5998746f ,1f ,-0.18884231f ,0.7393982f ,0.6462422f ,1f ,-0.15710442f ,-0.5036502f ,0.8495027f ,1f ,0.16614936f ,-0.93924135f ,-0.30036694f ,1f ,0.25965926f ,-0.1491798f ,-0.9541083f ,1f ,0.100102074f ,0.8011283f ,-0.5900619f ,1f ,0.09863044f ,0.75084364f ,0.6530743f ,1f ,0.41581193f ,0.76989025f ,-0.4841174f ,1f ,-0.44169208f ,-0.5274046f ,0.7257772f ,1f ,-0.23112057f ,-0.89513284f ,-0.38120937f ,1f ,0.3433306f ,-0.22827242f ,-0.91105205f ,1f ,0.5983433f ,0.66907465f ,-0.44082242f ,1f ,0.78455716f ,0.55925506f ,-0.26777562f ,1f ,0.08415263f ,0.6148247f ,0.78416127f ,1f ,-0.62325126f ,-0.356226f ,0.696176f ,1f ,-0.53782827f ,-0.75394666f ,-0.37723383f ,1f ,0.24410687f ,-0.3633992f ,-0.89908457f ,1f ,0.674963f ,0.65832376f ,-0.3332188f ,1f ,-0.660656f ,0.37849325f ,0.6482875f ,1f ,-0.738433f ,0.47030935f ,-0.48324516f ,1f ,0.53640044f ,0.23747368f ,0.8098647f ,1f ,0.9779722f ,-0.13436575f ,-0.15973806f ,1f ,0.30455846f ,-0.4582422f ,-0.83501995f ,1f ,-0.59249115f ,-0.5619099f ,-0.57724476f ,1f ,-0.7078423f ,0.3302858f ,0.6243962f ,1f ,-0.82924974f ,0.35935813f ,-0.42802635f ,1f ,0.39471942f ,0.24778248f ,0.8847602f ,1f ,0.9946034f ,-0.0934172f ,-0.04513823f ,1f ,0.27227816f ,-0.39265698f ,-0.87845623f ,1f ,-0.7052243f ,-0.518986f ,-0.48302427f ,1f ,-0.010977964f ,0.7449975f ,0.6669769f ,1f ,0.98817533f ,0.04320182f ,0.14711632f ,1f ,-0.87951183f ,-0.034757707f ,0.4746062f ,1f ,-0.6913972f ,-0.4763264f ,-0.5432155f ,1f ,0.41391477f ,-0.711274f ,-0.56812316f ,1f ,0.89231086f ,0.35976216f ,-0.27267694f ,1f ,0.03190616f ,0.8017071f ,0.596865f ,1f ,0.8548477f ,-0.09983558f ,0.50918406f ,1f ,-0.99072236f ,0.10803486f ,0.08244864f ,1f ,-0.3930031f ,-0.65220344f ,-0.6482124f ,1f ,0.571501f ,-0.79137546f ,-0.21705166f ,1f ,0.99665433f ,0.079656094f ,-0.018305114f ,1f });
  }
}
private class MFVec2f56 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.9187628f ,0.6528476f ,0.9325875f ,0.6526148f ,0.9229925f ,0.694375f ,0.93571484f ,0.6902126f ,0.9470935f ,0.65214986f ,0.9475871f ,0.6892335f ,0.961253f ,0.65226465f ,0.9591272f ,0.6898795f ,0.9760003f ,0.6540985f ,0.9716067f ,0.69251764f ,0.99053675f ,0.65703255f ,0.98474574f ,0.6968801f ,0.11769256f ,0.014009438f ,0.11242461f ,0.017840005f ,0.11220428f ,0.012073068f ,0.107150406f ,0.014014551f ,0.109160185f ,0.0078125f ,0.11567901f ,0.007813733f ,0.93125224f ,0.6243345f ,0.9165703f ,0.62518656f ,0.94796693f ,0.62404704f ,0.96295774f ,0.6252008f ,0.97760683f ,0.626127f ,0.9921875f ,0.6268925f ,0.91821796f ,0.6052215f ,0.9314807f ,0.6062259f ,0.94806355f ,0.6059788f ,0.9623803f ,0.60486454f ,0.97711533f ,0.6041101f ,0.9911891f ,0.604308f ,0.93142235f ,0.5835749f ,0.9168179f ,0.5836282f ,0.9473129f ,0.5838402f ,0.9623594f ,0.58359665f ,0.9770896f ,0.5826495f ,0.9918011f ,0.5806381f ,0.9192255f ,0.54880536f ,0.9334015f ,0.5486279f ,0.9470559f ,0.5490658f ,0.960613f ,0.5495005f ,0.9753932f ,0.54925525f ,0.98908305f ,0.54852074f ,0.9422026f ,0.70711803f ,0.9357828f ,0.7090184f ,0.9494829f ,0.70589066f ,0.9571387f ,0.7058393f ,0.96457005f ,0.70676565f ,0.9708035f ,0.7091158f ,0.9444144f ,0.7174807f ,0.9383141f ,0.71900076f ,0.95052934f ,0.71625125f ,0.9567751f ,0.7159122f ,0.96291333f ,0.71702564f ,0.969037f ,0.7185893f ,0.9345009f ,0.47521862f ,0.92093784f ,0.47462517f ,0.94790804f ,0.47533187f ,0.96123654f ,0.4748901f ,0.97436196f ,0.4744778f ,0.9882147f ,0.47471976f ,0.93416953f ,0.4175859f ,0.92070067f ,0.41734973f ,0.9491456f ,0.4174699f ,0.9630665f ,0.41719884f ,0.978285f ,0.41713065f ,0.992141f ,0.41738948f });
  }
}
private class MFInt3257 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,3,4,5,6,3,5,7,8,9,10,11,4,4,11,5,12,13,14,14,13,15,16,11,10,17,18,19,14,15,20,20,15,21,6,5,22,22,5,0,23,24,25,25,24,26,8,27,9,9,27,19,2,22,0,19,27,17,18,1,19,19,1,0,24,20,26,26,20,21,8,25,27,27,25,26,17,27,26,17,26,18,21,1,26,26,1,18,2,1,21,21,22,2,6,22,15,15,22,21,3,6,15,15,4,3,10,4,13,13,4,15,16,10,13,8,7,25,12,14,28,28,14,29,23,30,24,24,30,31,32,20,31,31,20,24,14,20,29,29,20,32});
  }
}
private class MFVec3f58 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.08160335f ,-0.10944176f ,0.40812433f ,0.071195364f ,-0.09589672f ,0.41562933f ,0.08691701f ,-0.103275776f ,0.41562927f ,0.07023755f ,-0.21894853f ,0.41562927f ,0.05226876f ,-0.22525328f ,0.41562933f ,0.06628716f ,-0.21213801f ,0.40812433f ,0.07978803f ,-0.20539111f ,0.41562933f ,-0.07023755f ,-0.21894853f ,0.41562927f ,-0.07978803f ,-0.20539111f ,0.41562933f ,-0.06628716f ,-0.21213801f ,0.40812433f ,-0.052669317f ,-0.22525328f ,0.41562933f ,-0.06628716f ,-0.21213801f ,0.40812433f ,-0.059585243f ,-0.20442468f ,0.41670147f ,-0.06628716f ,-0.21213807f ,0.4252786f ,0.05915448f ,-0.20442468f ,0.41670147f ,0.06628716f ,-0.21213807f ,0.4252786f ,-0.07023755f ,-0.21894853f ,0.41562927f ,-0.08691701f ,-0.103275776f ,0.41562927f ,-0.071682036f ,-0.09589672f ,0.41562933f ,-0.08160332f ,-0.10944176f ,0.40812433f ,0.07177767f ,-0.118751526f ,0.41670147f ,0.08160332f ,-0.10944176f ,0.4252786f ,0.09329119f ,-0.12032843f ,0.41562933f ,-0.059585243f ,-0.20442468f ,0.41670147f ,-0.07231024f ,-0.118751526f ,0.41670147f ,-0.06628716f ,-0.21213807f ,0.4252786f ,-0.08160335f ,-0.10944176f ,0.4252786f ,-0.09329119f ,-0.12032843f ,0.41562933f ,-0.06628716f ,-0.21213801f ,0.40812433f ,0.06628716f ,-0.21213801f ,0.40812433f ,-0.06628716f ,-0.21213801f ,0.40812433f ,-0.08160332f ,-0.10944176f ,0.40812433f ,0.08160335f ,-0.10944176f ,0.40812433f });
  }
}
private class MFVec3f59 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.0471304f ,0.018985432f ,-0.9987083f ,0.013547407f ,0.9998521f ,-0.010599076f ,0.72571963f ,0.6878742f ,0.0126567595f ,0.5701527f ,-0.82148814f ,0.009118863f ,0.011852538f ,-0.9998694f ,-0.010991707f ,0.01206211f ,0.022588063f ,-0.99967206f ,0.98302746f ,-0.18324408f ,-0.008870005f ,-0.5756056f ,-0.81767774f ,0.009017251f ,-0.9830275f ,-0.18324353f ,-0.008869576f ,-0.015539139f ,0.037273224f ,-0.9991843f ,-0.014986331f ,-0.99984044f ,-0.009720984f ,-0.015539139f ,0.037273224f ,-0.9991843f ,0.54516566f ,0.83832836f ,0.0000030754181f ,-0.07317219f ,-0.03470402f ,0.9967153f ,-0.50215757f ,0.8647762f ,0.0000029474386f ,0.06524938f ,-0.05329949f ,0.9964445f ,-0.5756056f ,-0.81767774f ,0.009017251f ,-0.7327639f ,0.68036914f ,0.012447731f ,-0.01575579f ,0.9998273f ,-0.009853801f ,-0.051831022f ,0.017448649f ,-0.9985035f ,-0.5807485f ,-0.8140831f ,-5.39529e-7f ,0.094791174f ,0.08211339f ,0.9921048f ,0.9924755f ,-0.12205111f ,-0.00979323f ,0.54516566f ,0.83832836f ,0.0000030754181f ,0.63960755f ,-0.7687016f ,0.0000012925142f ,-0.07317219f ,-0.03470402f ,0.9967153f ,-0.10256414f ,0.078097105f ,0.99165595f ,-0.9924755f ,-0.12205104f ,-0.009793248f ,-0.015539139f ,0.037273224f ,-0.9991843f ,0.01206211f ,0.022588063f ,-0.99967206f ,-0.015539139f ,0.037273224f ,-0.9991843f ,-0.051831022f ,0.017448649f ,-0.9985035f ,0.0471304f ,0.018985432f ,-0.9987083f });
  }
}
private class MFVec4f60 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.714096f ,0.6984698f ,0.04697706f ,1f ,0.006805674f ,0.010507599f ,0.9999217f ,1f ,-0.013007021f ,-0.004675416f ,0.9999045f ,1f ,-0.008750231f ,0.005026772f ,0.9999491f ,1f ,0.011576974f ,-0.010854524f ,0.9998741f ,1f ,0.760551f ,-0.6492549f ,-0.005493363f ,1f ,0.0018314804f ,-0.038544253f ,0.9992553f ,1f ,0.009014531f ,0.004681519f ,0.9999485f ,1f ,-0.0035785732f ,-0.029184697f ,0.9995676f ,1f ,-0.9589902f ,-0.28340596f ,0.0043419693f ,1f ,-0.017257046f ,-0.009461992f ,0.99980634f ,1f ,-0.0866745f ,-0.9955936f ,-0.03579133f ,1f ,-0.0005151501f ,0.00033866664f ,-0.9999998f ,1f ,0.039885562f ,0.9984931f ,0.037694048f ,1f ,-0.000636844f ,-0.00036639688f ,-0.99999976f ,1f ,-0.8585204f ,0.50597143f ,0.083282046f ,1f ,0.009014502f ,0.004681535f ,0.9999485f ,1f ,0.013284211f ,-0.0039865775f ,0.99990386f ,1f ,-0.03617639f ,0.009278542f ,0.99930245f ,1f ,-0.5551445f ,0.83062446f ,0.043331824f ,1f ,0.00022195022f ,-0.00015766144f ,-1f ,1f ,-0.7099449f ,-0.6930405f ,0.12519284f ,1f ,0.011046923f ,0.009599396f ,0.999893f ,1f ,-0.0005152218f ,0.00033871632f ,-0.9999998f ,1f ,-0.0013867933f ,-0.0011555752f ,-0.99999845f ,1f ,0.9862434f ,0.14601299f ,0.07748735f ,1f ,0.43327048f ,-0.8938702f ,0.11520801f ,1f ,-0.011675343f ,0.014714896f ,0.99982363f ,1f ,0.042816006f ,-0.9983636f ,-0.037908476f ,1f ,0.9624933f ,-0.27125016f ,0.0054844823f ,1f ,-0.99803734f ,0.060050335f ,0.017761398f ,1f ,-0.25938496f ,0.96529764f ,0.03033272f ,1f ,0.71604633f ,0.6964666f ,0.047031023f ,1f });
  }
}
private class MFVec2f61 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.879182f ,0.24980494f ,0.88298243f ,0.24645725f ,0.88298243f ,0.24980494f ,0.88298243f ,0.27390206f ,0.88298243f ,0.2783112f ,0.879182f ,0.27390206f ,0.88298243f ,0.27092078f ,0.88298243f ,0.18590638f ,0.88298243f ,0.18850437f ,0.87918204f ,0.18590638f ,0.88298243f ,0.30462962f ,0.87918204f ,0.30839804f ,0.8904397f ,0.30839804f ,0.88724786f ,0.30839804f ,0.8904397f ,0.27390206f ,0.88724786f ,0.27390206f ,0.88298243f ,0.30839804f ,0.88298243f ,0.2112042f ,0.88298243f ,0.2146692f ,0.87918204f ,0.2112042f ,0.8904397f ,0.24980494f ,0.88724786f ,0.24980494f ,0.88298243f ,0.25289923f ,0.8904397f ,0.18590638f ,0.8904397f ,0.2112042f ,0.88724786f ,0.18590638f ,0.88724786f ,0.2112042f ,0.88298243f ,0.20808598f ,0.8936078f ,0.30839804f ,0.8936078f ,0.27390206f ,0.8936078f ,0.18590638f ,0.8936078f ,0.2112042f ,0.8936078f ,0.24980494f });
  }
}
private class MFInt3262 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,1,4,3,3,4,5,6,7,4,4,7,5,8,9,10,10,9,11,12,13,8,8,13,9,14,15,12,12,15,13,16,17,14,14,17,15,16,0,17,17,0,2,18,19,20,21,18,20,22,21,20,23,24,20,25,23,20,26,25,20,27,26,20,19,27,20,28,29,30,30,29,31,32,30,33,33,30,31,34,32,35,35,32,33,36,37,38,38,37,39,40,36,41,41,36,38,42,40,43,43,40,41,42,43,44,44,43,45,44,45,28,28,45,29,46,44,47,47,44,28,48,42,46,46,42,44,48,49,42,42,49,40,49,50,40,40,50,36,50,51,36,36,51,37,52,53,34,34,53,32,53,54,32,32,54,30,47,28,54,54,28,30,55,56,57,57,56,58,56,55,59,59,55,60,57,58,61,61,58,62,61,62,63,63,62,64,65,66,67,67,66,68,66,69,68,68,69,70,69,71,70,70,71,72,72,71,60,60,71,59,1,0,73,73,0,74,4,1,75,75,1,73,6,4,76,76,4,75,10,77,8,8,77,78,8,78,12,12,78,79,12,79,14,14,79,80,16,14,81,81,14,80,0,16,74,74,16,81,56,82,58,58,82,83,58,83,62,62,83,84,64,62,85,85,62,84,66,65,86,86,65,87,69,66,88,88,66,86,71,69,89,89,69,88,71,89,59,59,89,90,59,90,56,56,90,82,29,19,31,31,19,18,33,31,21,21,31,18,35,33,22,22,33,21,38,39,23,23,39,24,41,38,25,25,38,23,41,25,43,43,25,26,43,26,45,45,26,27,45,27,29,29,27,19,91,92,93,93,92,94,92,91,95,95,91,96,96,97,95,95,97,98,97,99,98,98,99,100,99,101,100,100,101,102,101,103,102,102,103,104,105,106,107,107,106,108,108,106,94,94,106,93,92,47,94,94,47,54,94,54,108,108,54,53,108,53,107,107,53,52,104,51,102,102,51,50,100,102,49,49,102,50,98,100,48,48,100,49,95,98,46,46,98,48,95,46,92,92,46,47,90,96,82,82,96,91,89,97,90,90,97,96,89,88,97,97,88,99,88,86,99,99,86,101,86,87,101,101,87,103,85,84,105,105,84,106,83,93,84,84,93,106,82,91,83,83,91,93,73,74,57,57,74,55,75,73,61,61,73,57,76,75,63,63,75,61,77,67,78,78,67,68,78,68,79,79,68,70,80,79,72,72,79,70,74,81,55,55,81,60,81,80,60,60,80,72});
  }
}
private class MFVec3f63 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.16484636f ,-0.33089954f ,-0.5051856f ,-0.107741326f ,-0.2940055f ,-0.5074976f ,0.016296625f ,-0.45901f ,-0.38876343f ,0.04016605f ,-0.42147827f ,-0.40568092f ,-0.07828385f ,-0.2572385f ,-0.4730567f ,0.05169499f ,-0.37851954f ,-0.38876343f ,-0.08960986f ,-0.23276812f ,-0.4158252f ,0.044129908f ,-0.35529828f ,-0.34792066f ,-0.1379996f ,-0.2415564f ,-0.36316204f ,0.021902412f ,-0.36541724f ,-0.30707806f ,-0.08960986f ,-0.23276812f ,-0.4158252f ,0.044129908f ,-0.35529828f ,-0.34792066f ,-0.19408084f ,-0.27612233f ,-0.35314667f ,-0.001967011f ,-0.40294886f ,-0.29016042f ,-0.22589761f ,-0.3182542f ,-0.396043f ,-0.013495952f ,-0.4459077f ,-0.30707806f ,-0.21378833f ,-0.34094363f ,-0.4590196f ,-0.00593096f ,-0.46912897f ,-0.34792066f ,0.15444708f ,0.24053815f ,-1.0896478f ,0.11544132f ,0.28545254f ,-1.1043978f ,0.20047903f ,0.31033775f ,-1.113431f ,0.21296883f ,0.23815161f ,-1.0715971f ,0.2567253f ,0.27969086f ,-1.0608206f ,0.2600851f ,0.34082273f ,-1.063631f ,0.2567253f ,0.27969086f ,-1.0608206f ,0.22107983f ,0.38573706f ,-1.0783811f ,0.16255808f ,0.3881235f ,-1.0964313f ,0.118801594f ,0.34658444f ,-1.1072078f ,0.010252953f ,0.3204131f ,-0.9481487f ,0.0646019f ,0.28120732f ,-1.0694709f ,0.08401871f ,0.2504085f ,-0.9355142f ,0.12639618f ,0.21366054f ,-1.0497899f ,0.1769247f ,0.23950523f ,-0.8933532f ,0.2148161f ,0.20833528f ,-1.0192547f ,0.2500806f ,0.31090742f ,-0.8465121f ,0.28181982f ,0.27241522f ,-0.9957886f ,0.22861576f ,0.40895927f ,-0.8544347f ,0.2500806f ,0.31090742f ,-0.8465121f ,0.28042078f ,0.365021f ,-1.0008707f ,0.28181982f ,0.27241522f ,-0.9957886f ,0.16450453f ,0.46844095f ,-0.8741381f ,0.22095919f ,0.43002504f ,-1.0222597f ,0.081079006f ,0.47533488f ,-0.90374994f ,0.13483f ,0.43438148f ,-1.0497627f ,0.0069026947f ,0.42306226f ,-0.9321692f ,0.06758022f ,0.37492347f ,-1.068778f ,-0.097602844f ,0.40389562f ,-0.6810624f ,-0.08756018f ,0.31357473f ,-0.7075727f ,-0.044046402f ,0.46621013f ,-0.63405025f ,0.04173565f ,0.4640149f ,-0.5940746f ,0.10949421f ,0.3985963f ,-0.5845527f ,0.11953735f ,0.30827487f ,-0.61106247f ,0.11953735f ,0.30827487f ,-0.61106247f ,0.06598091f ,0.24596077f ,-0.65807533f ,-0.019801617f ,0.24815613f ,-0.6980511f ,-0.25650954f ,-0.15300047f ,-0.5775527f ,-0.25031292f ,-0.056934655f ,-0.58592725f ,-0.17508018f ,-0.15368566f ,-0.572719f ,-0.16554618f ,-0.051983416f ,-0.5848681f ,-0.3114214f ,-0.06643751f ,-0.5272542f ,-0.31138217f ,-0.1530183f ,-0.52276516f ,-0.11461842f ,-0.15132529f ,-0.52073f ,-0.10646176f ,-0.053759634f ,-0.5246515f ,-0.11119056f ,-0.14219755f ,-0.4421453f ,-0.10677171f ,-0.057460725f ,-0.44041085f ,-0.10677171f ,-0.057460725f ,-0.44041085f ,-0.16778731f ,-0.06544709f ,-0.38133037f ,-0.11119056f ,-0.14219755f ,-0.4421453f ,-0.1725893f ,-0.1324307f ,-0.38593793f ,-0.25335467f ,-0.07246101f ,-0.38240516f ,-0.25411248f ,-0.13261265f ,-0.38322067f ,-0.31279957f ,-0.073067844f ,-0.44296753f ,-0.30410638f ,-0.14347112f ,-0.44239163f ,-0.14747477f ,-0.23506017f ,-0.54549736f ,-0.22230145f ,-0.25464287f ,-0.5484123f ,-0.1057899f ,-0.21045265f ,-0.50155723f ,-0.10757804f ,-0.19686145f ,-0.43228352f ,-0.10757804f ,-0.19686145f ,-0.43228352f ,-0.15909648f ,-0.1923573f ,-0.37895393f ,-0.24071229f ,-0.20529678f ,-0.3798294f ,-0.28699362f ,-0.22751254f ,-0.43173754f ,-0.27343118f ,-0.25310794f ,-0.5057f ,-0.20030904f ,0.16779315f ,-0.59008825f ,-0.11428547f ,0.14088884f ,-0.59443355f ,-0.051465034f ,0.11795521f ,-0.53384995f ,-0.04864645f ,0.11242652f ,-0.4438262f ,-0.10748148f ,0.12754148f ,-0.37709725f ,-0.04864645f ,0.11242652f ,-0.4438262f ,-0.19350505f ,0.15444583f ,-0.37275183f ,-0.25632548f ,0.17737925f ,-0.43333542f ,-0.25914407f ,0.18290746f ,-0.5233591f ,-0.17288399f ,0.2286681f ,-0.60408705f ,-0.12663603f ,0.28559744f ,-0.6470635f ,-0.092541695f ,0.18516546f ,-0.605304f ,-0.057704926f ,0.22415346f ,-0.64269614f ,-0.15050554f ,0.3597207f ,-0.60255635f ,-0.21552086f ,0.27690017f ,-0.5442889f ,-0.19654846f ,0.30321527f ,-0.46177185f ,-0.11569214f ,0.40551192f ,-0.53619635f ,-0.12443972f ,0.29101175f ,-0.40495133f ,-0.040631294f ,0.39538145f ,-0.4857844f ,-0.043184757f ,0.24696177f ,-0.40795565f ,0.028891087f ,0.3348329f ,-0.48137546f ,-0.0022320747f ,0.19825631f ,-0.46816635f ,0.050812244f ,0.26051098f ,-0.5255633f ,-0.0022320747f ,0.19825631f ,-0.46816635f ,-0.021201134f ,0.17303514f ,-0.5485626f ,0.050812244f ,0.26051098f ,-0.5255633f ,0.016370296f ,0.21426386f ,-0.5919012f });
  }
}
private class MFVec3f64 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.0906199f ,-0.6893647f ,-0.7187242f ,0.43791527f ,-0.23039168f ,-0.86899364f ,-0.12595917f ,-0.75042284f ,-0.648845f ,0.39151543f ,-0.24570182f ,-0.88676167f ,0.77411205f ,0.4030493f ,-0.4881617f ,0.7305222f ,0.39647102f ,-0.5560107f ,0.6225221f ,0.74130476f ,0.2508655f ,0.6496712f ,0.7518209f ,0.11266202f ,0.18509766f ,0.5457249f ,0.8172657f ,0.23609856f ,0.62437856f ,0.74458635f ,0.6225221f ,0.74130476f ,0.2508655f ,0.6496712f ,0.7518209f ,0.11266202f ,-0.4041635f ,-0.053845327f ,0.9131005f ,-0.2685748f ,0.056688476f ,0.9615893f ,-0.68709755f ,-0.5814655f ,0.4356546f ,-0.5658651f ,-0.5619398f ,0.6033411f ,-0.54941994f ,-0.8141645f ,-0.18781383f ,-0.4988656f ,-0.8652839f ,-0.049162332f ,-0.018403033f ,-0.59425014f ,-0.8040697f ,-0.3114697f ,-0.28914097f ,-0.9051984f ,0.29958025f ,-0.061912443f ,-0.9520601f ,0.39299038f ,-0.64931047f ,-0.651118f ,0.76203775f ,-0.3392181f ,-0.55157f ,0.8091682f ,0.15904053f ,-0.5656439f ,0.76203775f ,-0.3392181f ,-0.55157f ,0.4907519f ,0.5398746f ,-0.68388456f ,0.017415537f ,0.52806336f ,-0.8490264f ,-0.30388877f ,0.18435964f ,-0.9346995f ,-0.8680313f ,-0.35690036f ,-0.34517193f ,-0.8176543f ,-0.41452786f ,-0.39950967f ,-0.411833f ,-0.90740323f ,-0.083744474f ,-0.38976005f ,-0.91800404f ,-0.07318229f ,0.27068627f ,-0.94253904f ,0.19582961f ,0.28204247f ,-0.9530555f ,0.110169746f ,0.86127913f ,-0.30911133f ,0.40329704f ,0.88089263f ,-0.44915536f ,0.14929032f ,0.8069348f ,0.49919456f ,0.31569165f ,0.86127913f ,-0.30911133f ,0.40329704f ,0.935546f ,0.35237023f ,0.024271876f ,0.88089263f ,-0.44915536f ,0.14929032f ,0.38373405f ,0.91879636f ,0.09252913f ,0.48303744f ,0.85218775f ,-0.20112428f ,-0.20769845f ,0.9664496f ,-0.15111755f ,-0.16020228f ,0.87860024f ,-0.44988546f ,-0.7869433f ,0.5032741f ,-0.35698107f ,-0.72257704f ,0.37266448f ,-0.5822402f ,-0.8122501f ,0.48978925f ,-0.31679067f ,-0.8502004f ,-0.3107451f ,-0.4249667f ,-0.35251355f ,0.9358067f ,0.0004126035f ,0.28844735f ,0.899381f ,0.3284997f ,0.7809258f ,0.39695093f ,0.48227057f ,0.84210014f ,-0.3352957f ,0.42242652f ,0.84210014f ,-0.3352957f ,0.42242652f ,0.37245715f ,-0.9188053f ,0.13066196f ,-0.34215742f ,-0.90999347f ,-0.23418003f ,-0.35767657f ,-0.2060388f ,-0.91083235f ,-0.42084903f ,0.0469504f ,-0.9059149f ,0.32040223f ,-0.16380593f ,-0.93301135f ,0.32790837f ,-0.11615765f ,-0.9375412f ,-0.9228775f ,0.14750572f ,-0.35572368f ,-0.9069249f ,-0.21027544f ,-0.36506376f ,0.8829149f ,-0.059786133f ,-0.46571115f ,0.88210857f ,-0.22766565f ,-0.41237476f ,0.93819296f ,0.018400252f ,0.34562328f ,0.88503945f ,-0.22444962f ,0.40783274f ,0.88503945f ,-0.22444962f ,0.40783274f ,0.30842158f ,-0.10754441f ,0.945151f ,0.93819296f ,0.018400252f ,0.34562328f ,0.34089902f ,0.032789152f ,0.9395279f ,-0.4482574f ,0.053497907f ,0.8923023f ,-0.42117584f ,-0.033250183f ,0.9063693f ,-0.9274324f ,0.13576575f ,0.34847775f ,-0.91728365f ,-0.1299296f ,0.37644273f ,0.3821915f ,-0.23577833f ,-0.89349777f ,-0.24731074f ,-0.4744863f ,-0.8448078f ,0.9021592f ,0.11294821f ,-0.4163549f ,0.8806492f ,0.32531267f ,0.3444251f ,0.8806492f ,0.32531267f ,0.3444251f ,0.3052911f ,0.29346728f ,0.90591073f ,-0.47177318f ,-0.009096632f ,0.88167304f ,-0.88911533f ,-0.32770053f ,0.31950945f ,-0.7829624f ,-0.519568f ,-0.34208032f ,-0.47161517f ,0.06619978f ,-0.87931615f ,0.26294523f ,-0.18010369f ,-0.94785154f ,0.8329241f ,-0.36344087f ,-0.41731057f ,0.8741424f ,-0.3080753f ,0.37545267f ,0.37750342f ,-0.06619569f ,0.9236392f ,0.8741424f ,-0.3080753f ,0.37545267f ,-0.3254799f ,0.17069341f ,0.9300144f ,-0.8592361f ,0.29097953f ,0.42076632f ,-0.92153233f ,0.25303054f ,-0.29454002f ,-0.55968624f ,-0.052111067f ,-0.82706463f ,-0.6873548f ,-0.18950051f ,-0.70116544f ,0.08005974f ,-0.5319768f ,-0.8429657f ,-0.14423496f ,-0.7672638f ,-0.6249021f ,-0.8412994f ,0.4563915f ,-0.28969312f ,-0.8691674f ,0.40276936f ,-0.28692296f ,-0.66352856f ,0.60415834f ,0.44127375f ,-0.51766235f ,0.8014963f ,0.2993814f ,-0.13516213f ,0.48983404f ,0.86127454f ,0.068955965f ,0.71156794f ,0.6992255f ,0.46937534f ,0.13766195f ,0.87220174f ,0.6061595f ,0.2671453f ,0.74913555f ,0.8454423f ,-0.34109184f ,0.41095462f ,0.8253544f ,-0.38599214f ,0.4120683f ,0.8454423f ,-0.34109184f ,0.41095462f ,0.6821709f ,-0.6649779f ,-0.3040516f ,0.8253544f ,-0.38599214f ,0.4120683f ,0.5018452f ,-0.84951365f ,-0.16272072f });
  }
}
private class MFVec4f65 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.6376337f ,-0.5945329f ,0.48985088f ,1f ,0.6199869f ,-0.62258685f ,0.47749552f ,1f ,0.7331209f ,-0.51104873f ,0.4487348f ,1f ,0.7185129f ,-0.5204093f ,0.46142545f ,1f ,0.62628335f ,-0.60002995f ,0.49772817f ,1f ,0.6763568f ,-0.5324155f ,0.5089943f ,1f ,0.5444238f ,-0.6404868f ,0.5416451f ,1f ,0.6014975f ,-0.59898424f ,0.5286007f ,1f ,0.81120783f ,-0.5542606f ,0.18637902f ,1f ,0.8550516f ,-0.49753878f ,0.14608929f ,1f ,0.75846165f ,-0.6504855f ,0.04005684f ,1f ,0.7505588f ,-0.657882f ,0.06207076f ,1f ,0.76177955f ,-0.5723821f ,0.30343154f ,1f ,0.85894305f ,-0.43773782f ,0.26571128f ,1f ,0.72469825f ,-0.591424f ,0.35359615f ,1f ,0.8222489f ,-0.43862826f ,0.36264595f ,1f ,0.6867129f ,-0.56804836f ,0.45359293f ,1f ,0.7715534f ,-0.46923313f ,0.42956445f ,1f ,-0.99459237f ,-0.071333796f ,0.075483054f ,1f ,-0.9309284f ,0.28399268f ,0.22960944f ,1f ,-0.85847193f ,0.41789332f ,-0.29730687f ,1f ,-0.85002494f ,-0.52660364f ,0.012098643f ,1f ,-0.4611498f ,-0.8822746f ,-0.09451196f ,1f ,-0.1385227f ,0.98717135f ,0.0793999f ,1f ,0.30232325f ,0.9396466f ,-0.16020337f ,1f ,-0.5928427f ,0.78209895f ,0.19198662f ,1f ,-0.8007872f ,0.5158293f ,0.30440095f ,1f ,-0.83716494f ,0.41663766f ,0.3543558f ,1f ,-0.42604148f ,0.17839855f ,0.88694f ,1f ,-0.5672292f ,0.46139437f ,0.68217766f ,1f ,-0.6509576f ,0.22863726f ,0.7238641f ,1f ,-0.8463083f ,0.32571766f ,0.42150962f ,1f ,-0.6911241f ,-0.048662007f ,0.72109604f ,1f ,-0.9024567f ,-0.22457393f ,0.3676118f ,1f ,-0.47853833f ,-0.22651999f ,0.8483453f ,1f ,-0.45994663f ,-0.737878f ,0.4939485f ,1f ,-0.5241526f ,0.35885966f ,0.77232367f ,1f ,-0.14450207f ,0.611918f ,0.77760893f ,1f ,-0.3332995f ,0.85799056f ,0.3908501f ,1f ,0.4013741f ,0.87603545f ,0.26732162f ,1f ,-0.5571018f ,0.15042476f ,0.81670684f ,1f ,-0.6565971f ,0.50449836f ,0.56067973f ,1f ,-0.4770554f ,0.0347927f ,0.8781843f ,1f ,-0.6333942f ,0.25806287f ,0.72953093f ,1f ,-0.388742f ,0.044895347f ,0.9202522f ,1f ,-0.5032087f ,0.29394418f ,0.8126365f ,1f ,-0.48844403f ,-0.27422842f ,0.8283847f ,1f ,-0.38700047f ,-0.17835972f ,0.9046649f ,1f ,-0.5428956f ,-0.2048651f ,0.81442916f ,1f ,-0.49188328f ,-0.1551634f ,0.8567236f ,1f ,-0.47692665f ,-0.119656466f ,0.87076026f ,1f ,-0.49711385f ,-0.1788077f ,0.8490617f ,1f ,-0.5130634f ,-0.25662398f ,0.8190911f ,1f ,-0.59630114f ,-0.1290485f ,0.7923204f ,1f ,-0.48036683f ,-0.044794418f ,0.87592316f ,1f ,0.12251522f ,-0.9772795f ,0.17295904f ,1f ,-0.1611468f ,-0.9866452f ,0.0237275f ,1f ,0.14456092f ,-0.964944f ,0.21905537f ,1f ,-0.119019374f ,-0.9895842f ,0.080978125f ,1f ,-0.18073022f ,-0.981586f ,0.061852258f ,1f ,0.14593506f ,-0.9696859f ,0.1959904f ,1f ,0.09729211f ,-0.94703823f ,0.30602747f ,1f ,-0.1753377f ,-0.9712318f ,0.16113795f ,1f ,-0.09838143f ,-0.9432181f ,0.3172709f ,1f ,-0.31095615f ,-0.9370085f ,0.15912715f ,1f ,-0.11764898f ,-0.9554925f ,-0.27054214f ,1f ,0.06478676f ,-0.9889068f ,-0.1336644f ,1f ,0.12643866f ,-0.94778985f ,-0.29275888f ,1f ,0.33711582f ,-0.9371887f ,-0.08961184f ,1f ,0.04526417f ,-0.99556863f ,0.08242818f ,1f ,0.2860247f ,-0.9532036f ,0.097942956f ,1f ,-0.080638625f ,-0.9824574f ,0.1681519f ,1f ,0.22222318f ,-0.9514204f ,0.21311079f ,1f ,0.40323368f ,-0.8274391f ,0.39082882f ,1f ,0.4011821f ,-0.84378976f ,0.3564716f ,1f ,0.32283238f ,-0.81694275f ,0.47789517f ,1f ,0.14494033f ,-0.8771284f ,0.45786256f ,1f ,0.39913258f ,-0.90110344f ,-0.16942859f ,1f ,0.57781285f ,-0.8132699f ,0.068734124f ,1f ,0.478652f ,-0.8424196f ,0.2474296f ,1f ,0.42294776f ,-0.8550608f ,0.29997724f ,1f ,0.4107723f ,-0.84479046f ,0.3429217f ,1f ,-0.39499125f ,-0.9074025f ,0.14353657f ,1f ,-0.3471925f ,-0.9342713f ,0.08120792f ,1f ,-0.30521956f ,-0.93074197f ,0.20139644f ,1f ,-0.3993894f ,-0.895849f ,0.19478944f ,1f ,-0.23664178f ,-0.9712186f ,0.02711297f ,1f ,-0.33291507f ,-0.9429559f ,0.0013683897f ,1f ,-0.21129611f ,-0.9718284f ,0.10441996f ,1f ,-0.24399175f ,-0.95600265f ,0.1628712f ,1f ,-0.31902963f ,-0.9257841f ,0.20283993f ,1f ,-0.5186651f ,-0.7563531f ,0.39864367f ,1f ,-0.5273896f ,-0.5335478f ,0.66120124f ,1f ,-0.4947847f ,-0.75534934f ,0.42969245f ,1f ,-0.5202677f ,-0.47837794f ,0.7074434f ,1f ,-0.53035533f ,-0.5931858f ,0.6056847f ,1f ,-0.49033833f ,-0.7772028f ,0.39436585f ,1f ,-0.45107865f ,-0.7936175f ,0.4082886f ,1f ,-0.50786966f ,-0.569454f ,0.64636725f ,1f ,-0.42159885f ,-0.81506705f ,0.3973917f ,1f ,-0.5013906f ,-0.5812222f ,0.64092773f ,1f ,-0.43024495f ,-0.82692647f ,0.36205235f ,1f ,-0.5247881f ,-0.5734216f ,0.6291147f ,1f ,-0.49741864f ,-0.78303576f ,0.3734029f ,1f ,-0.5641852f ,-0.592287f ,0.5752314f ,1f ,-0.5049387f ,-0.7611582f ,0.40703216f ,1f ,-0.48123252f ,-0.72138506f ,0.49801496f ,1f ,-0.562027f ,-0.49185798f ,0.66498226f ,1f ,-0.5453705f ,-0.45679075f ,0.70278966f ,1f });
  }
}
private class MFVec2f66 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.7901535f ,0.6120829f ,0.79019874f ,0.5951889f ,0.85207665f ,0.61358315f ,0.84817743f ,0.60024697f ,0.79046464f ,0.58044237f ,0.8452055f ,0.587222f ,0.7905124f ,0.56393653f ,0.84530854f ,0.5744369f ,0.7963195f ,0.67987275f ,0.85223985f ,0.6688421f ,0.8015171f ,0.697744f ,0.85381645f ,0.6814231f ,0.7933642f ,0.6636402f ,0.8531564f ,0.65552264f ,0.79153895f ,0.6467752f ,0.8547052f ,0.6416828f ,0.7904339f ,0.6293145f ,0.8548001f ,0.62748533f ,0.48587725f ,0.6198108f ,0.4914661f ,0.6293789f ,0.46879998f ,0.64099616f ,0.47625446f ,0.61187124f ,0.46235412f ,0.6080756f ,0.4705874f ,0.67101794f ,0.45667264f ,0.6722336f ,0.48155144f ,0.66343796f ,0.48937336f ,0.65261424f ,0.4927535f ,0.64064395f ,0.53692174f ,0.6211617f ,0.50556755f ,0.62431777f ,0.52687246f ,0.5991425f ,0.49625564f ,0.6114382f ,0.51698035f ,0.57674295f ,0.48515573f ,0.59758973f ,0.5099721f ,0.5502682f ,0.46975878f ,0.5830692f ,0.5172898f ,0.70895535f ,0.50457454f ,0.7307287f ,0.47984666f ,0.68857354f ,0.46011794f ,0.6977329f ,0.5279657f ,0.6888571f ,0.49430293f ,0.6752443f ,0.53602195f ,0.66761684f ,0.5041666f ,0.6589092f ,0.5408827f ,0.64483166f ,0.508704f ,0.6407554f ,0.6014236f ,0.6456397f ,0.60307366f ,0.61926734f ,0.59822494f ,0.67130166f ,0.59415734f ,0.695971f ,0.5897015f ,0.71979576f ,0.58546185f ,0.74396867f ,0.589642f ,0.54178464f ,0.593979f ,0.56651497f ,0.6006494f ,0.59206474f ,0.74357265f ,0.6146684f ,0.72176206f ,0.6131976f ,0.74564993f ,0.59564877f ,0.71796983f ,0.5927267f ,0.72854346f ,0.63375664f ,0.7459776f ,0.6328881f ,0.7509932f ,0.57710725f ,0.7204826f ,0.57209474f ,0.7561013f ,0.55766064f ,0.7280911f ,0.55145955f ,0.7443679f ,0.7196309f ,0.74365556f ,0.69704944f ,0.77145493f ,0.71146166f ,0.7625442f ,0.6911197f ,0.7412276f ,0.6752974f ,0.7548696f ,0.6710415f ,0.7355817f ,0.6544326f ,0.7500147f ,0.65197647f ,0.76914394f ,0.5951506f ,0.7674851f ,0.6132245f ,0.77099556f ,0.57950574f ,0.77551126f ,0.56204975f ,0.78824955f ,0.7035852f ,0.7803498f ,0.68583083f ,0.7720851f ,0.66641873f ,0.7676046f ,0.6484619f ,0.7671876f ,0.6291885f ,0.66524553f ,0.6175491f ,0.6611666f ,0.59275615f ,0.6654944f ,0.5682235f ,0.67453986f ,0.5452137f ,0.69175434f ,0.7105244f ,0.6902368f ,0.7340003f ,0.6890432f ,0.6873507f ,0.6822835f ,0.66440123f ,0.6735053f ,0.6411943f ,0.6473954f ,0.6200189f ,0.6243598f ,0.62043965f ,0.64475536f ,0.5928635f ,0.6236963f ,0.5926312f ,0.6243939f ,0.6462835f ,0.6510154f ,0.6447954f ,0.6544034f ,0.6678597f ,0.6248385f ,0.6704463f ,0.65670556f ,0.6921218f ,0.62493616f ,0.69500417f ,0.6576055f ,0.71587694f ,0.6251039f ,0.7194727f ,0.65727395f ,0.7380922f ,0.62479514f ,0.7411533f ,0.64771426f ,0.5429735f ,0.6450806f ,0.5660797f ,0.6217432f ,0.5436843f ,0.6222917f ,0.5663681f });
  }
}
private class MFInt3267 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,0,0,5,1,1,5,6,6,5,7,3,1,8,8,1,6,9,10,6,8,6,10,7,11,6,6,11,9,12,13,14,14,13,15,4,16,5,5,16,17,16,18,17,17,18,19,19,20,17,17,20,21,17,21,5,5,21,7,22,23,18,18,23,19,22,15,23,23,15,13,23,13,24,19,23,20,20,23,24,20,24,25,7,21,11,11,21,26,21,20,26,26,20,25,27,28,29,29,28,30,28,31,30,30,31,32,28,33,31,31,33,34,27,35,28,28,35,33,36,33,37,35,37,33,36,38,33,33,38,34,39,40,41,41,40,42,32,31,43,43,31,44,43,44,45,45,44,46,47,48,44,44,48,46,34,47,31,31,47,44,46,49,45,45,49,50,50,49,42,42,49,41,49,51,41,46,48,49,49,48,51,48,52,51,34,38,47,47,38,53,47,53,48,48,53,52});
  }
}
private class MFVec3f68 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.15785854f ,0.4710843f ,0.26435047f ,0.13927197f ,0.54514986f ,0.26585275f ,0f ,0.46408096f ,0.2833376f ,0f ,0.54491246f ,0.2838626f ,0.26510572f ,0.48294917f ,0.2169046f ,0.25620145f ,0.54559827f ,0.20391636f ,0.13972688f ,0.62975436f ,0.258533f ,0.2562812f ,0.62975436f ,0.19993338f ,0f ,0.6297544f ,0.27456108f ,0f ,0.69031984f ,0.2110414f ,0f ,0.69824886f ,0.2221045f ,0.23351622f ,0.6876524f ,0.16779257f ,3.469447e-18f ,0.69981563f ,-0.2160806f ,0.19350281f ,0.6975826f ,-0.17594004f ,0f ,0.4703604f ,-0.24169645f ,0.21148212f ,0.47726357f ,-0.20387119f ,0.31556714f ,0.4732571f ,0.13161832f ,0.32844594f ,0.54547954f ,0.10683063f ,0.34078118f ,0.4714686f ,0.0053810775f ,0.3533969f ,0.5453477f ,0.004856847f ,0.34002426f ,0.62975436f ,0.0056158104f ,0.32067838f ,0.6297544f ,0.10538394f ,0.31556714f ,0.4732169f ,-0.10981865f ,0.316761f ,0.54547954f ,-0.09166757f ,0.30081722f ,0.69597983f ,-0.07879794f ,0.32309306f ,0.69978553f ,0.005615811f ,0.29948384f ,0.693676f ,0.091180496f ,0f ,0.54491246f ,0.2838626f ,-0.13927197f ,0.54514986f ,0.26585275f ,0f ,0.46408096f ,0.2833376f ,-0.15785854f ,0.4710843f ,0.26435047f ,-0.25620145f ,0.54559827f ,0.20391636f ,-0.26510572f ,0.48294917f ,0.2169046f ,-0.13972688f ,0.62975436f ,0.258533f ,-0.2562812f ,0.62975436f ,0.19993338f ,0f ,0.6297544f ,0.27456108f ,0f ,0.69031984f ,0.2110414f ,0f ,0.69824886f ,0.2221045f ,-0.23351622f ,0.6876524f ,0.16779257f ,3.469447e-18f ,0.69981563f ,-0.2160806f ,0f ,0.4703604f ,-0.24169645f ,-0.19350281f ,0.6975826f ,-0.17594004f ,-0.21148212f ,0.47726357f ,-0.20387119f ,-0.31556714f ,0.4732571f ,0.13161832f ,-0.32844594f ,0.54547954f ,0.10683063f ,-0.34078118f ,0.4714686f ,0.0053810775f ,-0.3533969f ,0.5453477f ,0.004856847f ,-0.32067838f ,0.6297544f ,0.10538394f ,-0.34002426f ,0.62975436f ,0.0056158104f ,-0.316761f ,0.54547954f ,-0.09166757f ,-0.31556714f ,0.4732169f ,-0.10981865f ,-0.30081722f ,0.69597983f ,-0.07879794f ,-0.32309306f ,0.69978553f ,0.005615811f ,-0.29948384f ,0.693676f ,0.091180496f });
  }
}
private class MFVec3f69 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.28336108f ,0.07107309f ,0.9563761f ,0.27338156f ,0.064098515f ,0.95976764f ,-3.3322145e-9f ,-0.0012068183f ,0.99999934f ,2.5785068e-8f ,0.05259534f ,0.998616f ,0.6177744f ,0.24285926f ,0.7479132f ,0.6390946f ,0.10484357f ,0.7619488f ,0.21935803f ,0.49965143f ,0.83799195f ,0.6210611f ,0.2720735f ,0.73502326f ,4.917682e-8f ,0.36336997f ,0.9316449f ,3.147683e-8f ,0.8851998f ,0.46521118f ,9.177925e-8f ,0.7644934f ,0.64463156f ,0.40028846f ,0.6478758f ,0.6480943f ,2.635244e-8f ,0.110948384f ,-0.99382627f ,0.37781388f ,0.1343471f ,-0.91608274f ,3.329218e-8f ,0.12675235f ,-0.9919344f ,0.36803347f ,0.14747865f ,-0.9180421f ,0.90922505f ,0.010691463f ,0.4161676f ,0.9174813f ,0.027135992f ,0.39685234f ,0.9930224f ,-0.11325301f ,-0.03286714f ,0.9982822f ,0.004911444f ,-0.05838321f ,0.98015815f ,0.17352548f ,-0.095806904f ,0.88438064f ,0.21867022f ,0.41237622f ,0.8249504f ,0.124834314f ,-0.5512469f ,0.7856481f ,0.12283335f ,-0.6063572f ,0.7819635f ,0.14336917f ,-0.60661215f ,0.9719578f ,0.23498738f ,0.008887822f ,0.8386785f ,0.34325257f ,0.4228429f ,2.5785068e-8f ,0.05259534f ,0.998616f ,-0.2733816f ,0.064098515f ,0.9597677f ,-3.3322145e-9f ,-0.0012068183f ,0.99999934f ,-0.28336108f ,0.07107311f ,0.9563761f ,-0.63909465f ,0.10484355f ,0.76194876f ,-0.6177745f ,0.24285915f ,0.7479132f ,-0.21935807f ,0.49965134f ,0.837992f ,-0.62106115f ,0.27207342f ,0.7350232f ,4.917682e-8f ,0.36336997f ,0.9316449f ,3.147683e-8f ,0.8851998f ,0.46521118f ,9.177925e-8f ,0.7644934f ,0.64463156f ,-0.40028852f ,0.64787567f ,0.64809436f ,2.635244e-8f ,0.110948384f ,-0.99382627f ,3.329218e-8f ,0.12675235f ,-0.9919344f ,-0.37781388f ,0.1343471f ,-0.91608274f ,-0.36803347f ,0.14747863f ,-0.91804224f ,-0.90922517f ,0.010691424f ,0.4161675f ,-0.91748124f ,0.027136004f ,0.39685228f ,-0.9930224f ,-0.113253f ,-0.032867163f ,-0.9982822f ,0.0049114055f ,-0.05838322f ,-0.8843807f ,0.21867011f ,0.41237622f ,-0.98015815f ,0.17352538f ,-0.09580693f ,-0.785648f ,0.122833304f ,-0.60635734f ,-0.8249504f ,0.12483432f ,-0.5512469f ,-0.78196347f ,0.14336918f ,-0.6066123f ,-0.97195786f ,0.2349873f ,0.008887845f ,-0.83867854f ,0.3432523f ,0.422843f });
  }
}
private class MFVec4f70 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.20866336f ,0.9779274f ,-0.010850601f ,1f ,-0.21655911f ,0.9762633f ,-0.003515189f ,1f ,-0.21589619f ,0.97641563f ,0.0011783565f ,1f ,-0.24107848f ,0.96916246f ,-0.051044066f ,1f ,-0.22451654f ,0.9659974f ,-0.12822458f ,1f ,-0.14118956f ,0.98982304f ,-0.017774293f ,1f ,-0.64242566f ,0.7203988f ,-0.26137128f ,1f ,-0.25674117f ,0.9566936f ,-0.13719165f ,1f ,-0.28739053f ,0.8923421f ,-0.34804067f ,1f ,-0.92238146f ,0.17970192f ,-0.3419352f ,1f ,-0.74796176f ,0.4278691f ,-0.50742626f ,1f ,-0.68238086f ,0.68278146f ,-0.26108608f ,1f ,-0.22861388f ,0.9675069f ,0.108010136f ,1f ,-0.21791813f ,0.9745247f ,0.05304331f ,1f ,-0.23217656f ,0.9648285f ,0.123288654f ,1f ,-0.21734457f ,0.97363335f ,0.069277935f ,1f ,-0.0027469122f ,0.9998025f ,-0.019683873f ,1f ,-0.019084794f ,0.9995245f ,-0.024223477f ,1f ,0.112431206f ,0.9933229f ,-0.025865315f ,1f ,-0.007008331f ,0.99933565f ,-0.03576561f ,1f ,-0.17872837f ,0.98269594f ,-0.048631817f ,1f ,-0.20087476f ,0.97577906f ,-0.08662985f ,1f ,-0.13823375f ,0.99024713f ,0.017380273f ,1f ,-0.14485718f ,0.9893706f ,0.012733316f ,1f ,-0.1980396f ,0.9799077f ,-0.0236909f ,1f ,-0.23439826f ,0.9711666f ,-0.043508787f ,1f ,-0.32401577f ,0.93851256f ,-0.11919747f ,1f ,0.24107848f ,0.96916246f ,-0.05104408f ,-1f ,0.21655911f ,0.9762632f ,-0.0035151883f ,-1f ,0.2158962f ,0.9764157f ,0.0011783578f ,-1f ,0.20866334f ,0.9779274f ,-0.010850605f ,-1f ,0.14118953f ,0.9898231f ,-0.017774295f ,-1f ,0.2245165f ,0.96599734f ,-0.12822446f ,-1f ,0.642425f ,0.7203992f ,-0.26137164f ,-1f ,0.25674105f ,0.95669353f ,-0.13719155f ,-1f ,0.28739056f ,0.8923421f ,-0.34804064f ,-1f ,0.9223815f ,0.17970188f ,-0.34193525f ,-1f ,0.7479612f ,0.42786923f ,-0.5074268f ,-1f ,0.68238056f ,0.68278164f ,-0.26108617f ,-1f ,0.22861388f ,0.96750695f ,0.108010165f ,-1f ,0.23217662f ,0.9648285f ,0.12328867f ,-1f ,0.21791813f ,0.97452456f ,0.053043306f ,-1f ,0.21734463f ,0.9736334f ,0.06927787f ,-1f ,0.0027468796f ,0.99980253f ,-0.019683853f ,-1f ,0.019084817f ,0.9995245f ,-0.024223465f ,-1f ,-0.112431176f ,0.99332285f ,-0.025865251f ,-1f ,0.0070082936f ,0.99933565f ,-0.035765633f ,-1f ,0.20087466f ,0.9757791f ,-0.08662976f ,-1f ,0.17872822f ,0.9826959f ,-0.048631795f ,-1f ,0.1448572f ,0.9893706f ,0.012733258f ,-1f ,0.13823381f ,0.9902472f ,0.017380282f ,-1f ,0.19803964f ,0.9799077f ,-0.02369093f ,-1f ,0.23439817f ,0.9711667f ,-0.043508757f ,-1f ,0.3240156f ,0.9385126f ,-0.11919732f ,-1f });
  }
}
private class MFVec2f71 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.92199165f ,0.27023867f ,0.94137365f ,0.27107903f ,0.9298119f ,0.31044853f ,0.9499952f ,0.3056975f ,0.9194728f ,0.23958881f ,0.9357372f ,0.23757657f ,0.962122f ,0.2661641f ,0.95712936f ,0.23476554f ,0.9713389f ,0.30021232f ,0.9814207f ,0.26134536f ,0.99209327f ,0.29254615f ,0.974487f ,0.23207276f ,0.99209756f ,0.07384466f ,0.98098546f ,0.122841164f ,0.9349638f ,0.060153242f ,0.9249045f ,0.113858335f ,0.9165703f ,0.21370384f ,0.9348908f ,0.20670547f ,0.91670066f ,0.17979316f ,0.9356514f ,0.1804953f ,0.9570069f ,0.18134622f ,0.9562512f ,0.20679641f ,0.9190932f ,0.14920887f ,0.937191f ,0.15467632f ,0.97572494f ,0.1594323f ,0.9750792f ,0.18219608f ,0.9736146f ,0.2054499f ,1.9499953f ,0.3056975f ,1.9413736f ,0.27107903f ,1.929812f ,0.31044853f ,1.9219916f ,0.27023867f ,1.9357371f ,0.23757657f ,1.9194728f ,0.23958881f ,1.962122f ,0.2661641f ,1.9571294f ,0.23476554f ,1.971339f ,0.30021232f ,1.9814208f ,0.26134536f ,1.9920933f ,0.29254615f ,1.9744871f ,0.23207276f ,1.9920976f ,0.07384466f ,1.9349638f ,0.060153242f ,1.9809854f ,0.122841164f ,1.9249046f ,0.113858335f ,1.9165703f ,0.21370384f ,1.9348907f ,0.20670547f ,1.9167006f ,0.17979316f ,1.9356514f ,0.1804953f ,1.9562511f ,0.20679641f ,1.9570069f ,0.18134622f ,1.937191f ,0.15467632f ,1.9190931f ,0.14920887f ,1.9757249f ,0.1594323f ,1.9750792f ,0.18219608f ,1.9736146f ,0.2054499f });
  }
}
private class MFInt3272 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,6,6,5,7,8,9,10,10,9,11,12,13,14,14,13,15,16,17,18,11,9,19,19,9,20,13,12,21,21,12,22,23,0,24,24,0,2,25,26,10,10,26,8,27,28,15,15,28,14,22,17,21,21,17,16,5,4,20,20,4,19,29,30,31,31,30,32,31,32,33,33,32,34,33,34,35,35,34,36,36,37,35,35,37,38,39,40,41,41,40,42,43,44,45,45,44,46,1,47,3,3,47,48,49,50,51,51,50,52,52,53,51,51,53,54,55,56,57,57,56,58,34,49,36,36,49,51,37,36,54,54,36,51,42,40,58,58,40,57,59,60,61,61,60,62,63,64,65,65,64,66,67,68,69,69,68,70,71,72,63,63,72,64,73,74,75,75,74,76,77,69,78,78,69,70,79,80,81,82,83,84,84,83,85,50,86,52,52,86,87,88,53,87,87,53,52,55,89,56,56,89,90,67,91,68,73,75,67,67,75,91,9,92,20,20,92,93,9,8,92,92,8,94,95,96,24,24,96,23,97,65,66,98,63,74,74,63,65,74,65,76,76,65,97,6,7,99,99,7,100,45,46,25,25,46,26,101,28,27,102,18,103,18,104,103,105,106,107,101,107,106,108,43,109,109,43,45,99,108,6,6,108,109,110,12,111,111,12,14,12,110,22,22,110,112,112,113,22,22,113,17,104,17,113,28,106,114,28,114,14,14,114,111,28,101,106,18,17,104,115,116,117,117,116,118,119,120,121,121,120,122,122,123,121,121,123,124,125,126,127,127,126,128,129,130,131,131,130,132,15,13,133,133,13,134,135,136,18,18,136,16,134,13,137,137,13,21,128,126,138,138,126,139,132,140,131,131,140,141,142,27,133,133,27,15,123,125,124,124,125,127,130,129,139,139,129,138,21,16,137,137,16,136,27,142,101,101,142,143,143,144,101,101,144,107,18,102,135,135,102,145,146,147,148,149,150,151,151,150,152,150,153,152,152,153,154,152,155,151,151,155,156,152,154,155,155,154,157,156,155,158,158,155,159,157,160,155,155,160,159,158,159,161,161,159,162,160,163,159,159,163,162,161,162,115,162,163,116,117,118,147,147,118,148,116,115,162,146,148,164,147,146,165,166,167,168,168,167,169,170,171,167,167,171,169,172,173,174,174,173,175,176,177,173,173,177,175,178,179,170,170,179,171,180,181,178,178,181,179,180,182,181,181,182,183,182,172,183,183,172,174,184,185,186,187,188,189,190,191,192,192,191,186,193,194,195,194,189,195,196,197,198,198,197,187,199,200,201,201,200,185,202,203,204,204,203,205,206,207,208,208,207,209,210,211,212,212,211,213,214,215,216,216,215,217,218,219,220,220,219,221,222,223,224,224,223,225,186,226,192,192,226,227,185,228,186,186,228,226,185,200,228,228,200,229,187,230,198,198,230,231,189,232,187,187,232,230,189,194,232,232,194,233,195,234,193,193,234,235,195,236,234,234,236,237,238,239,236,236,239,237,191,190,240,240,190,241,242,243,244,244,243,245,191,240,242,242,240,243,197,196,246,246,196,247,248,249,250,250,249,251,197,246,248,248,246,249,201,252,199,199,252,253,201,254,252,252,254,255,254,256,255,255,256,257,258,259,260,260,259,261,262,259,263,263,259,258,264,262,265,265,262,263,266,267,268,268,267,269,270,271,272,272,271,273,274,275,261,261,275,260,266,268,276,276,268,277,272,276,270,270,276,277,168,169,278,278,169,279,169,171,279,279,171,280,174,175,281,281,175,282,177,283,175,175,283,282,171,179,280,280,179,284,179,181,284,284,181,285,181,183,285,285,183,286,183,174,286,286,174,281,195,287,236,287,288,236,236,288,238,289,248,290,290,248,250,289,188,197,197,188,187});
  }
}
private class MFInt3273 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {291,242,292,292,242,244,291,184,191,191,184,186,201,293,254,293,294,254,254,294,256,295,296,279,279,296,278,297,295,280,280,295,279,297,280,298,298,280,284,298,284,299,299,284,285,299,285,300,300,285,286,281,301,286,286,301,300,301,281,302,302,281,282,303,302,283,283,302,282,304,305,306,306,305,307,273,308,272,272,308,309,309,310,272,272,310,276,310,311,276,276,311,266,312,267,311,311,267,266,313,314,264,264,314,262,314,315,262,262,315,259,261,259,316,316,259,315,317,318,319,319,318,320,321,322,320,320,322,319,321,323,322,322,323,324,325,326,327,327,326,328,304,317,305,305,317,319,322,307,319,319,307,305,322,324,307,307,324,306,328,329,327,327,329,330,331,205,332,332,205,203,331,333,205,205,333,204,333,334,204,204,334,202,230,207,335,335,207,206,232,209,230,230,209,207,232,336,209,209,336,208,234,211,337,337,211,210,234,237,211,211,237,213,237,338,213,213,338,212,339,340,220,220,340,218,341,221,342,342,221,219,339,220,341,341,220,221,246,343,214,214,343,215,249,216,344,344,216,217,246,214,249,249,214,216,345,225,346,346,225,223,345,347,225,225,347,224,347,348,224,224,348,222,226,331,227,227,331,332,226,228,331,331,228,333,228,229,333,333,229,334,231,230,335,233,336,232,235,234,337,239,338,237,240,241,339,339,241,340,243,341,245,245,341,342,240,339,243,243,339,341,247,343,246,251,249,344,252,345,253,253,345,346,252,255,345,345,255,347,255,257,347,347,257,348,349,350,327,349,327,351,351,327,330,329,352,330,330,352,351,353,352,328,328,352,329,328,354,353,309,308,293,293,308,294,310,309,184,184,309,293,311,310,291,291,310,184,312,311,292,292,311,291,314,313,287,287,313,288,315,314,188,188,314,287,315,188,316,316,188,289,60,59,71,71,59,72,8,23,94,94,23,96,0,23,26,26,23,8,1,0,46,46,0,26,44,47,46,46,47,1,38,37,39,39,37,40,40,37,57,57,37,54,53,55,54,54,55,57,89,55,88,88,55,53,355,5,93,93,5,20,5,355,7,7,355,356,357,100,356,356,100,7,358,30,359,359,30,29,30,358,360,360,358,361,360,361,85,85,361,362,85,362,84,84,362,363,80,77,81,81,77,78,100,357,29,29,357,359,99,100,31,31,100,29,33,108,31,31,108,99,108,33,43,43,33,35,35,38,43,43,38,44,38,39,44,44,39,47,47,39,48,48,39,41,364,365,366,366,365,367,368,367,369,369,367,365,370,368,98,98,368,369,73,370,74,74,370,98,365,364,60,60,364,62,369,365,71,71,365,60,369,71,98,98,71,63,371,372,373,373,372,374,374,375,373,373,375,376,377,378,379,379,378,380,372,381,374,374,381,375,371,373,382,382,373,376,379,371,377,377,371,382,380,372,379,379,372,371,378,381,380,380,381,372,383,384,82,82,384,83,30,360,32,32,360,385,386,387,50,50,387,86,32,385,34,34,385,49,386,384,387,387,384,383,50,49,386,386,49,385,184,293,185,185,293,201,191,242,291,388,354,326,326,354,328,318,389,320,320,389,390,391,321,390,390,321,320,391,392,321,321,392,323,327,350,325,325,350,393,289,197,248,287,195,188,188,195,189,120,149,122,122,149,151,156,123,151,151,123,122,123,156,125,125,156,158,161,126,158,158,126,125,126,161,139,139,161,115,117,130,115,115,130,139,130,117,132,132,117,147,147,165,132,132,165,140,133,134,160,160,134,163,142,133,157,157,133,160,142,157,143,143,157,154,144,143,153,153,143,154,135,145,148,148,145,164,118,136,148,148,136,135,136,118,137,137,118,116,134,137,163,163,137,116,394,395,396,396,395,397,398,399,400,400,399,401,402,403,404});
  }
}
private class MFInt3274 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {404,403,405,406,407,408,408,407,409,410,411,412,405,413,404,404,413,414,407,415,409,409,415,416,417,418,394,394,418,395,419,403,420,420,403,402,421,406,422,422,406,408,416,415,412,412,415,410,413,398,414,414,398,400,423,424,425,425,424,426,424,427,426,426,427,428,427,429,428,428,429,430,431,432,429,429,432,430,433,434,435,435,434,436,437,438,439,439,438,440,396,397,441,441,397,442,443,444,445,445,444,446,446,444,447,447,444,448,449,450,451,451,450,452,444,443,430,430,443,428,432,448,430,430,448,444,451,435,449,449,435,436,453,454,455,455,454,456,457,458,459,459,458,460,461,462,463,463,462,464,458,465,460,460,465,466,467,468,469,469,468,470,461,463,471,471,463,472,473,474,475,476,477,478,478,477,479,480,481,446,446,481,445,482,480,447,447,480,446,452,450,483,483,450,484,464,462,485,485,469,464,464,469,470,404,414,486,486,414,487,404,486,402,402,486,488,489,418,490,490,418,417,491,457,459,459,460,468,468,460,492,491,459,467,467,459,468,399,493,401,401,493,494,438,419,440,440,419,420,495,421,422,496,497,411,497,498,411,499,500,501,495,501,500,438,437,502,502,437,503,493,399,503,503,399,502,408,409,504,504,409,505,506,505,416,416,505,409,506,416,507,507,416,412,498,507,412,422,508,501,504,508,408,408,508,422,422,501,495,411,498,412,509,510,511,511,510,512,513,514,515,515,514,516,516,514,517,517,514,518,519,520,521,521,520,522,523,524,525,525,524,526,406,527,407,407,527,528,529,411,530,530,411,410,415,407,531,531,407,528,522,532,521,521,532,533,526,524,534,534,524,535,406,421,527,527,421,536,520,519,518,518,519,517,532,523,533,533,523,525,415,531,410,410,531,530,537,536,495,495,536,421,537,495,538,538,495,500,411,529,496,496,529,539,540,541,542,543,544,545,545,544,546,545,546,547,547,546,548,549,550,544,544,550,546,546,550,548,548,550,551,549,552,550,550,552,553,553,554,550,550,554,551,552,555,553,553,555,556,556,557,553,553,557,554,555,512,556,556,510,557,511,542,509,509,542,541,510,556,512,540,558,541,542,559,540,560,561,562,562,561,563,563,564,562,562,564,565,566,567,568,568,567,569,569,570,568,568,570,571,564,572,565,565,572,573,572,574,573,573,574,575,575,574,576,576,574,577,576,577,566,566,577,567,578,579,580,581,582,583,579,584,585,585,584,586,587,588,589,588,582,589,581,590,591,591,590,592,593,594,595,595,594,580,596,597,598,598,597,599,600,601,602,602,601,603,604,605,606,606,605,607,608,609,610,610,609,611,612,613,614,614,613,615,616,617,618,618,617,619,620,621,585,585,621,579,621,622,579,579,622,580,580,622,595,595,622,623,624,625,591,591,625,581,625,626,581,581,626,582,582,626,589,589,626,627,628,629,587,587,629,588,588,629,630,630,629,631,631,632,630,630,632,633,584,634,586,586,634,635,636,637,638,638,637,639,637,634,639,639,634,584,590,640,592,592,640,641,642,643,644,644,643,645,643,640,645,645,640,590,646,647,593,593,647,594,594,647,648,648,647,649,648,649,650,650,649,651,652,653,654,654,653,655,656,657,653,653,657,655,658,659,656,656,659,657,660,661,662,662,661,663,664,665,666,666,665,667,654,668,652,652,668,669,670,661,671,671,661,660,665,664,671,671,664,670,561,672,563,563,672,673,563,673,564,564,673,674,567,675,569,569,675,676,676,677,569,569,677,570,564,674,572,572,674,678,572,678,574,574,678,679,574,679,577,577,679,680,577,680,567,567,680,675,588,630,681,681,630,682,682,630,633,644,645,683,683,645,684,581,583,590,590,583,684,638,639,685,685,639,686,579,578,584,584,578,686,594,648,687});
  }
}
private class MFInt3275 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {687,648,688,688,648,650,689,673,690,690,673,672,691,674,689,689,674,673,678,674,692,692,674,691,679,678,693,693,678,692,680,679,694,694,679,693,675,680,695,695,680,694,676,675,696,696,675,695,676,696,677,677,696,697,698,699,700,700,699,701,702,703,665,665,703,667,702,665,704,704,665,671,704,671,705,705,671,660,660,662,705,705,662,706,707,658,708,708,658,656,708,656,709,709,656,653,652,710,653,653,710,709,711,712,713,713,712,714,712,715,714,714,715,716,716,715,717,717,715,718,719,720,721,721,720,722,701,699,711,711,699,712,699,698,712,712,698,715,715,698,718,718,698,700,723,724,720,720,724,722,598,599,725,725,599,726,726,599,727,727,599,597,727,597,728,728,597,596,603,601,729,729,601,625,601,600,625,625,600,626,626,600,730,730,600,602,607,605,731,731,605,629,629,605,631,631,605,604,631,604,732,732,604,606,733,614,734,734,614,615,613,612,735,735,612,736,612,614,736,736,614,733,640,608,737,737,608,610,611,609,738,738,609,643,609,608,643,643,608,640,618,619,739,739,619,740,740,619,741,741,619,617,741,617,742,742,617,616,725,726,620,620,726,621,621,726,622,622,726,727,622,727,623,623,727,728,624,729,625,627,626,730,628,731,629,632,631,732,634,733,635,635,733,734,735,736,636,636,736,637,736,733,637,637,733,634,641,640,737,642,738,643,739,740,646,646,740,647,647,740,649,649,740,741,649,741,651,651,741,742,743,720,744,723,720,745,745,720,743,724,723,746,746,723,745,724,746,722,722,746,747,722,747,748,702,687,703,703,687,688,687,702,578,578,702,704,578,704,686,686,704,705,686,705,685,685,705,706,682,707,681,681,707,708,681,708,583,583,708,709,684,583,710,710,583,709,465,453,466,466,453,455,402,488,417,417,488,490,402,417,420,420,417,394,420,394,440,440,394,396,439,440,441,441,440,396,431,433,432,432,433,435,448,432,451,451,432,435,447,448,452,452,448,451,447,452,482,482,452,483,414,400,487,487,400,749,750,749,401,401,749,400,751,750,494,494,750,401,423,425,752,752,425,753,754,753,755,755,753,425,756,754,479,479,754,755,757,756,477,477,756,479,475,474,472,472,474,471,752,751,423,423,751,494,493,424,494,494,424,423,493,503,424,424,503,427,429,427,437,437,427,503,429,437,431,431,437,439,431,439,433,433,439,441,434,433,442,442,433,441,758,759,760,760,759,761,762,763,761,761,763,760,764,492,762,762,492,763,470,468,764,764,468,492,456,758,455,455,758,760,763,466,760,760,466,455,460,466,492,492,466,763,765,766,767,767,766,768,769,770,766,766,770,768,771,772,773,773,772,774,767,768,775,775,768,770,769,766,776,776,766,765,776,765,771,771,765,772,765,767,772,772,767,774,767,775,774,774,775,773,478,777,476,476,777,778,779,755,426,426,755,425,481,780,445,445,780,781,443,779,428,428,779,426,778,777,780,780,777,781,445,781,443,443,781,779,578,580,687,687,580,594,584,686,639,722,748,721,721,748,782,783,784,714,714,784,713,714,716,783,783,716,785,785,716,786,786,716,717,720,719,744,744,719,787,684,645,590,582,588,583,583,588,681,544,543,516,516,543,515,549,544,517,517,544,516,552,549,519,519,549,517,519,521,552,552,521,555,512,555,533,533,555,521,533,525,512,512,525,511,542,511,526,526,511,525,542,526,559,559,526,534,527,554,528,528,554,557,554,527,551,551,527,536,548,551,537,537,551,536,548,537,547,547,537,538,529,541,539,539,541,558,529,530,541,541,530,509,510,509,531,531,509,530,510,531,557,557,531,528});
  }
}
private class MFVec3f76 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.1614961f ,0.40132314f ,-0.30415043f ,0.16780615f ,0.27302876f ,-0.33180705f ,2.566574e-18f ,0.39460763f ,-0.31409672f ,4.9093955e-19f ,0.27050394f ,-0.3322591f ,0.4668863f ,0.33948395f ,0.12036643f ,0.35625243f ,0.3886209f ,0.19852115f ,0.47334534f ,0.23823993f ,0.089609884f ,0.34990582f ,0.25063238f ,0.2613245f ,0.30851325f ,0.5312043f ,-0.199806f ,0.38302693f ,0.54260397f ,-0.013978191f ,0.42714506f ,0.45606822f ,-0.13824788f ,0.4535019f ,0.48935926f ,-0.018363228f ,0.5507023f ,0.43622503f ,-0.05182587f ,0.618168f ,0.3442574f ,-0.08161904f ,0.51105577f ,0.41355297f ,-0.15322292f ,0.572862f ,0.34163973f ,-0.17438734f ,0.55391f ,0.26868618f ,0.062362026f ,0.5215974f ,0.321705f ,0.08644499f ,0.5153615f ,0.22070947f ,0.06299917f ,0.4646129f ,0.4321486f ,0.09314086f ,0.3820956f ,0.47938135f ,0.12283232f ,0.60512316f ,0.3174616f ,0.027707685f ,0.5445431f ,0.3896974f ,0.05193376f ,0.15753968f ,0.54072183f ,-0.2824574f ,-1.26145e-18f ,0.5312043f ,-0.2971877f ,0.42208305f ,0.3649901f ,-0.18018377f ,0.3145079f ,0.39460763f ,-0.24860255f ,0.51557714f ,0.29414773f ,-0.1977038f ,0.4805969f ,0.34699965f ,-0.1870329f ,0.36069658f ,0.02116482f ,0.33104342f ,0.38204452f ,-0.13969883f ,0.35001537f ,0.4692032f ,0.02092577f ,0.15832655f ,0.49454442f ,-0.13969885f ,0.16814826f ,0.48913175f ,0.020925771f ,-0.027935375f ,0.5153267f ,-0.13969885f ,-0.044325396f ,0.4465955f ,0.020697922f ,-0.18565688f ,0.436944f ,-0.13983972f ,-0.18763624f ,0.31543702f ,-0.13357937f ,-0.28399986f ,0.31559438f ,0.029506518f ,-0.26987603f ,0.16865389f ,0.031036168f ,-0.3426844f ,0.16724159f ,-0.13252456f ,-0.35386217f ,1.1314123e-17f ,0.029530888f ,-0.3490214f ,1.6378896e-17f ,-0.13358095f ,-0.36253485f ,0.43337086f ,0.1452488f ,-0.16127299f ,0.3197382f ,0.15640748f ,-0.28591767f ,0.44250497f ,0.24077211f ,-0.13137309f ,0.31681544f ,0.27050394f ,-0.28157964f ,0.16941082f ,0.15771456f ,-0.34000707f ,-1.4389179e-19f ,0.15613389f ,-0.34155023f ,0.5078199f ,-0.27811086f ,-0.051958572f ,0.5596577f ,-0.44896442f ,-0.067007765f ,0.43218607f ,-0.28125808f ,-0.16239744f ,0.49177423f ,-0.46820748f ,-0.22396445f ,0.3524112f ,-0.47215378f ,-0.33752447f ,0.315673f ,-0.27724254f ,-0.3039466f ,0.1774624f ,-0.47194576f ,-0.39196953f ,5.938228e-19f ,-0.47216195f ,-0.40133578f ,0.17122069f ,-0.2766026f ,-0.3714127f ,8.748652e-18f ,-0.27726698f ,-0.38240972f ,0.22195618f ,0.7652553f ,-0.41915947f ,0.11516665f ,0.7788347f ,-0.36176068f ,-6.938894e-18f ,0.7530596f ,-0.45562005f ,1.3391198e-18f ,0.78124505f ,-0.38597497f ,0.44353482f ,0.6717561f ,0.008322695f ,0.5439811f ,0.6527794f ,0.0128774475f ,0.45701677f ,0.54377115f ,0.24470891f ,0.57629544f ,0.48534912f ,0.32141045f ,0.28983387f ,0.37597245f ,0.2670335f ,0.45916414f ,0.32040438f ,0.39524215f ,0.25654748f ,0.24852361f ,0.3327133f ,0.45716363f ,0.28735605f ,0.4068188f ,0.3239348f ,0.76504475f ,-0.2267553f ,0.4252081f ,0.7530243f ,-0.27395338f ,0.33868268f ,0.48953772f ,0.19285679f ,0.3843069f ,0.53223544f ,0.23190807f ,0.3511262f ,0.4526004f ,0.28037134f ,0.40274158f ,0.4946057f ,0.28901356f ,0.23884015f ,0.14919084f ,0.37283516f ,0.3914996f ,0.1676936f ,0.45014378f ,0.21843597f ,-0.13969885f ,0.45619982f ,0.22704643f ,0.029268632f ,0.40914086f ,0.30085614f ,0.047865696f ,0.46344233f ,0.4735311f ,-0.669639f ,0.31094894f ,0.43798766f ,-0.51953995f ,0.34306595f ,0.37639076f ,-0.67034376f ,0.40443307f ,0.40718108f ,-0.43430632f ,0.36547774f ,0.57194626f ,-0.65373135f ,-0.11152658f ,0.5136422f ,-0.66893435f ,-0.24509527f ,0.35072792f ,-0.6993406f ,-0.35374194f ,0.17708956f ,-0.7077226f ,-0.40748692f ,3.0611636e-19f ,-0.70585626f ,-0.4165633f ,0.34772903f ,0.4026886f ,0.3055728f ,0.35075384f ,0.6025786f ,-0.0069178375f ,0.33868268f ,0.48953772f ,0.19285679f ,0.2538836f ,0.6572445f ,-0.19252428f ,-2.730184e-18f ,0.6801354f ,-0.30339327f ,0.11506325f ,0.6700668f ,-0.2793203f ,0.46024278f ,0.5021592f ,0.3030636f ,0.352415f ,0.66696435f ,0.008674513f ,0.4424493f ,0.14572111f ,0.13115017f ,0.34959212f ,0.14683732f ,0.295805f ,0.48476118f ,0.22322194f ,-0.15626359f ,0.489596f ,0.20263177f ,-0.02798692f ,0.48316696f ,0.20269138f ,-0.026558302f ,0.47334534f ,0.23823993f ,0.089609884f ,0.48316696f ,0.20269138f ,-0.026558302f ,0.44250497f ,0.24077211f ,-0.13137309f ,0.489596f ,0.20263177f ,-0.02798692f ,0.46758345f ,0.14583f ,-0.005607973f ,0.48316696f ,0.20269138f ,-0.026558302f ,0.4535019f ,0.48935926f ,-0.018363228f ,0.42714506f ,0.45606822f ,-0.13824788f ,0.4646129f ,0.4321486f ,0.09314086f ,0.4668863f ,0.33948395f ,0.12036643f ,0.42208305f ,0.3649901f ,-0.18018377f ,0.73054266f ,0.08117496f ,-0.022724181f ,0.7022898f ,0.14040999f ,-0.016944353f ,0.6727876f ,0.066365324f ,0.0050953757f ,0.6499008f ,0.106708586f ,0.011438526f ,0.6376868f ,-0.13225959f ,-0.08188033f ,0.6124134f ,-0.066782564f ,-0.0945382f ,0.6472365f ,-0.1271399f ,-0.1847449f ,0.62502617f ,-0.05721008f ,-0.19120838f ,0.6932317f ,-0.03906875f ,-0.22920954f ,0.72049904f ,-0.11300251f ,-0.21781372f ,0.753736f ,-0.013182282f ,-0.20212956f ,0.78325045f ,0.0023737997f ,-0.11699657f ,0.7836025f ,-0.10276243f ,-0.19266511f ,0.8200022f ,-0.09943884f ,-0.106631175f ,0.7523395f ,-0.11561679f ,0.01033444f ,0.7070207f ,-0.011945948f ,0.0073498674f ,0.6727723f ,-0.12923653f ,-0.0017714743f ,0.634535f ,-0.028721653f ,-0.007046262f ,0.62244946f ,0.26320094f ,-0.18934299f ,0.66727704f ,0.26083586f ,-0.09961994f ,0.54901904f ,0.15689056f ,0.029989898f ,0.6012962f ,0.18872546f ,0.037223488f ,0.6530897f ,0.23005953f ,0.005665075f ,0.80622935f ,-0.104620226f ,-0.030535031f ,0.7631125f ,0.0012228601f ,-0.02608538f ,0.6124134f ,-0.066782564f ,-0.0945382f ,0.6376868f ,-0.13225959f ,-0.08188033f ,0.558654f ,0.23163295f ,-0.21513434f ,0.5143921f ,0.17458364f ,-0.1733529f ,0.51475686f ,0.15559103f ,-0.060781382f ,0.51475686f ,0.15559103f ,-0.060781382f ,0.5676529f ,0.04533132f ,-0.09941887f ,0.60565114f ,0.04720565f ,-0.011030745f ,0.58354217f ,0.0914306f ,-0.0038681878f ,0.59332234f ,-0.017322296f ,-0.10409975f ,0.5676529f ,0.04533132f ,-0.09941887f ,0.6082488f ,-0.00438625f ,-0.19609074f ,0.5736758f ,0.06033367f ,-0.1940561f ,0.5405648f ,0.10734066f ,-0.09441914f ,0.54478496f ,0.12469467f ,-0.19088164f ,0.6405053f ,0.09395772f ,-0.24345045f ,0.67263436f ,0.016779602f ,-0.23781772f ,0.60283864f ,0.16751069f ,-0.2330131f ,0.7311755f ,0.054485105f ,-0.20927884f ,0.70503646f ,0.120433405f ,-0.2155422f ,0.6733121f ,0.18274516f ,-0.20468323f ,0.75548875f ,0.079281405f ,-0.12482643f ,0.73973036f ,0.12870283f ,-0.12179285f ,0.7176489f ,0.17526917f ,-0.11808372f ,0.5405648f ,0.10734066f ,-0.09441914f ,0.59332234f ,-0.017322296f ,-0.10409975f ,0.6376868f ,-0.13225959f ,-0.08188033f ,0.6472365f ,-0.1271399f ,-0.1847449f ,0.63401854f ,-0.13796687f ,-0.08102815f ,0.644073f ,-0.13253605f ,-0.18882112f ,0.72049904f ,-0.11300251f ,-0.21781372f ,0.72098756f ,-0.11768459f ,-0.22379762f ,0.7523395f ,-0.11561679f ,0.01033444f ,0.6727723f ,-0.12923653f ,-0.0017714743f ,0.75443006f ,-0.12043041f ,0.015830144f ,0.6708597f ,-0.13473539f ,0.0031151269f ,0.6376868f ,-0.13225959f ,-0.08188033f ,0.63401854f ,-0.13796687f ,-0.08102815f ,0.7836025f ,-0.10276243f ,-0.19266511f ,0.7872662f ,-0.10692928f ,-0.19738257f ,0.8200022f ,-0.09943884f ,-0.106631175f ,0.82549715f ,-0.10343852f ,-0.10702041f ,0.80622935f ,-0.104620226f ,-0.030535031f ,0.81103146f ,-0.10888055f ,-0.02709562f ,0.8116296f ,-0.2327215f ,-0.11363472f ,0.81157184f ,-0.2675646f ,-0.088908f ,0.8061912f ,-0.26694667f ,-0.13359663f ,0.7366142f ,-0.28893712f ,-0.08684167f ,0.71619713f ,-0.24958941f ,-0.100575104f ,0.73127955f ,-0.2886597f ,-0.12043375f ,0.77248335f ,-0.28102565f ,-0.14771661f ,0.79768866f ,-0.26801836f ,-0.15790492f ,0.77316606f ,-0.2813069f ,-0.14358807f ,0.77248335f ,-0.28102565f ,-0.14771661f ,0.77316606f ,-0.2813069f ,-0.14358807f ,0.73468125f ,-0.28526232f ,-0.14954457f ,0.7831163f ,-0.28189868f ,-0.071527235f ,0.7422269f ,-0.2894337f ,-0.0598996f ,0.78264576f ,-0.28208616f ,-0.07568534f ,0.7831163f ,-0.28189868f ,-0.071527235f ,0.78264576f ,-0.28208616f ,-0.07568534f ,0.8132559f ,-0.26840854f ,-0.068944395f ,0.7696058f ,-0.4051412f ,-0.08944522f ,0.7639902f ,-0.40467954f ,-0.12966523f ,0.7947607f ,-0.39935452f ,-0.10028681f ,0.7916126f ,-0.3991235f ,-0.12600634f ,0.7696058f ,-0.4051412f ,-0.08944522f ,0.7551764f ,-0.3931544f ,-0.09570646f ,0.7639902f ,-0.40467954f ,-0.12966523f ,0.7515312f ,-0.3928193f ,-0.119405f ,0.7552528f ,-0.38291728f ,-0.16282646f ,0.7404914f ,-0.37229207f ,-0.16796875f ,0.7518002f ,-0.38264915f ,-0.19593437f ,0.74099374f ,-0.3725295f ,-0.19294675f ,0.75692827f ,-0.38332507f ,-0.056588016f ,0.7712425f ,-0.39273465f ,-0.064208455f ,0.763751f ,-0.38415468f ,-0.032766197f ,0.77682996f ,-0.3932159f ,-0.028901286f ,0.7552528f ,-0.38291728f ,-0.16282646f ,0.7518002f ,-0.38264915f ,-0.19593437f ,0.7761093f ,-0.3756222f ,-0.17574143f ,0.7712667f ,-0.37518173f ,-0.1920736f ,0.77682996f ,-0.3932159f ,-0.028901286f ,0.7712425f ,-0.39273465f ,-0.064208455f ,0.80023426f ,-0.38870427f ,-0.03900202f ,0.7993549f ,-0.38872635f ,-0.06134183f ,0.8099336f ,-0.3271843f ,-0.12973773f ,0.781835f ,-0.33307335f ,-0.13936907f ,0.81340027f ,-0.3276455f ,-0.10000819f ,0.78966224f ,-0.3337157f ,-0.08330424f ,0.75338703f ,-0.34086436f ,-0.09211643f ,0.78966224f ,-0.3337157f ,-0.08330424f ,0.74883634f ,-0.34054157f ,-0.121121004f ,0.781835f ,-0.33307335f ,-0.13936907f ,0.7451812f ,-0.32670027f ,-0.15983084f ,0.77730465f ,-0.32141572f ,-0.15476348f ,0.7348538f ,-0.2836866f ,-0.19589841f ,0.74469376f ,-0.32619917f ,-0.19066876f ,0.7624963f ,-0.2805376f ,-0.2100878f ,0.7696429f ,-0.32079324f ,-0.20798399f ,0.7974821f ,-0.31471837f ,-0.16806269f ,0.77730465f ,-0.32141572f ,-0.15476348f ,0.7864138f ,-0.27121836f ,-0.20027591f ,0.78830415f ,-0.31509775f ,-0.20132402f ,0.7624963f ,-0.2805376f ,-0.2100878f ,0.7696429f ,-0.32079324f ,-0.20798399f ,0.7570326f ,-0.33522558f ,-0.058483817f ,0.79038393f ,-0.32798544f ,-0.06914018f ,0.75143623f ,-0.28892207f ,-0.032028783f ,0.76513314f ,-0.3353914f ,-0.03246036f ,0.78939724f ,-0.28274632f ,-0.017332174f ,0.7963959f ,-0.3285469f ,-0.022830592f ,0.8171146f ,-0.32228073f ,-0.06458017f ,0.79038393f ,-0.32798544f ,-0.06914018f ,0.81236863f ,-0.2735902f ,-0.038816724f ,0.8169731f ,-0.32320106f ,-0.03953396f ,0.78939724f ,-0.28274632f ,-0.017332174f ,0.7963959f ,-0.3285469f ,-0.022830592f ,0.6708181f ,-0.17462848f ,-0.09389657f ,0.6855471f ,-0.18726534f ,-0.09598487f ,0.6979484f ,-0.17261176f ,-0.025315829f ,0.7173386f ,-0.18501255f ,-0.011531908f ,0.68897104f ,-0.18378498f ,-0.1841924f ,0.67617005f ,-0.17082681f ,-0.18137139f ,0.73585844f ,-0.17477535f ,-0.2101813f ,0.72901815f ,-0.16073382f ,-0.20790784f ,0.7777127f ,-0.16812293f ,-0.1868684f ,0.73585844f ,-0.17477535f ,-0.2101813f ,0.7753655f ,-0.15326002f ,-0.18552822f ,0.72901815f ,-0.16073382f ,-0.20790784f ,0.7946325f ,-0.15485334f ,-0.04748309f ,0.75612056f ,-0.1629592f ,-0.013708852f ,0.7977831f ,-0.16978213f ,-0.043066904f ,0.75923324f ,-0.17808977f ,-0.009131547f ,0.75923324f ,-0.17808977f ,-0.009131547f ,0.75612056f ,-0.1629592f ,-0.013708852f ,0.8042023f ,-0.16613823f ,-0.11214408f ,0.80356044f ,-0.1509341f ,-0.11195007f ,0.6402055f ,-0.17296383f ,-0.0822622f ,0.6500033f ,-0.16756406f ,-0.18966646f });
  }
}
private class MFVec3f77 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.72718954f ,-0.15276425f ,-0.22503151f ,0.76062655f ,-0.1555048f ,0.014563449f ,0.67703724f ,-0.16970253f ,0.0018523112f ,0.6402055f ,-0.17296383f ,-0.0822622f ,0.79345673f ,-0.14196296f ,-0.19863895f ,0.83168733f ,-0.138477f ,-0.1082858f ,0.8172225f ,-0.1439242f ,-0.028361194f ,0.71526897f ,-0.24652784f ,-0.1993586f ,0.7534469f ,-0.23946288f ,-0.21537939f ,0.7434283f ,-0.24735746f ,-0.026302256f ,0.7765075f ,-0.24330346f ,-0.012341175f ,0.7917297f ,-0.23372045f ,-0.18359742f ,0.7534469f ,-0.23946288f ,-0.21537939f ,0.81007755f ,-0.23505749f ,-0.043542705f ,0.7765075f ,-0.24330346f ,-0.012341175f ,0.67617005f ,-0.17082681f ,-0.18137139f ,0.6708181f ,-0.17462848f ,-0.09389657f ,0.72901815f ,-0.16073382f ,-0.20790784f ,0.7753655f ,-0.15326002f ,-0.18552822f ,0.80356044f ,-0.1509341f ,-0.11195007f ,0.7946325f ,-0.15485334f ,-0.04748309f ,0.75612056f ,-0.1629592f ,-0.013708852f ,0.6979484f ,-0.17261176f ,-0.025315829f ,0.6708181f ,-0.17462848f ,-0.09389657f ,0.7862024f ,-0.29681695f ,0.036023088f ,0.7764426f ,-0.29018572f ,0.049617626f ,0.75048786f ,-0.30292532f ,0.034434397f ,0.75263155f ,-0.29450125f ,0.049677998f ,0.7774893f ,-0.20502841f ,-0.011825651f ,0.80241585f ,-0.20010112f ,-0.044234127f ,0.80806637f ,-0.19660555f ,-0.11289075f ,0.7825247f ,-0.198457f ,-0.1867525f ,0.7424113f ,-0.20467708f ,-0.21385922f ,0.7424113f ,-0.20467708f ,-0.21385922f ,0.6980549f ,-0.21298777f ,-0.19425869f ,0.6995022f ,-0.21588145f ,-0.09806117f ,0.7127968f ,-0.2173053f ,-0.027049223f ,0.78205925f ,-0.24042228f ,0.025120564f ,0.78033626f ,-0.22728696f ,0.018933844f ,0.76938784f ,-0.23249342f ,0.040207215f ,0.765973f ,-0.2122162f ,0.025707975f ,0.727801f ,-0.21829411f ,0.024828468f ,0.7349777f ,-0.2396367f ,0.039332584f ,0.72402424f ,-0.24220335f ,0.010382105f ,0.72885376f ,-0.2549864f ,0.018978957f ,0.7434283f ,-0.24735746f ,-0.026302256f ,0.7765075f ,-0.24330346f ,-0.012341175f ,0.748277f ,-0.2634821f ,0.0010285974f ,0.77949715f ,-0.25505748f ,0.006243281f ,0.77863663f ,-0.29387373f ,0.018037733f ,0.7605959f ,-0.29732463f ,0.016684014f ,0.80765957f ,-0.3514055f ,-0.12933767f ,0.780941f ,-0.34750918f ,-0.1382833f ,0.8110667f ,-0.35164222f ,-0.10032848f ,0.7884588f ,-0.34812647f ,-0.08443577f ,0.7884588f ,-0.34812647f ,-0.08443577f ,0.780941f ,-0.34750918f ,-0.1382833f ,0.7755855f ,-0.33344698f ,-0.15629786f ,0.76857185f ,-0.33290723f ,-0.20638642f ,0.79426914f ,-0.3349965f ,-0.1700669f ,0.7755855f ,-0.33344698f ,-0.15629786f ,0.7859481f ,-0.33428407f ,-0.19995254f ,0.76857185f ,-0.33290723f ,-0.20638642f ,0.78920746f ,-0.3412434f ,-0.06846457f ,0.79510295f ,-0.3417216f ,-0.024136422f ,0.8148739f ,-0.34439096f ,-0.06355451f ,0.78920746f ,-0.3412434f ,-0.06846457f ,0.81479025f ,-0.34425148f ,-0.039920814f ,0.79510295f ,-0.3417216f ,-0.024136422f ,0.72885376f ,-0.2549864f ,0.018978957f ,0.72402424f ,-0.24220335f ,0.010382105f ,0.75048786f ,-0.30292532f ,0.034434397f ,0.7862024f ,-0.29681695f ,0.036023088f ,0.78205925f ,-0.24042228f ,0.025120564f ,0.78033626f ,-0.22728696f ,0.018933844f ,0.28983387f ,0.37597245f ,0.2670335f ,0.25654748f ,0.24852361f ,0.3327133f ,0.23884015f ,0.14919084f ,0.37283516f ,0.21843597f ,-0.13969885f ,0.45619982f ,0.22704643f ,0.029268632f ,0.40914086f ,0.39446285f ,-0.2642366f ,0.3507205f ,0.22569244f ,-0.28119385f ,0.46645266f ,0.2456787f ,-0.469184f ,0.47205237f ,0.2729618f ,-0.66893435f ,0.4669829f ,1.4552729e-18f ,0.74469006f ,-0.33585602f ,0.11512914f ,0.7460897f ,-0.3158874f ,-2.730184e-18f ,0.6801354f ,-0.30339327f ,0.11506325f ,0.6700668f ,-0.2793203f ,0.2538836f ,0.6572445f ,-0.19252428f ,0.27187997f ,0.7334798f ,-0.20023996f ,0.35075384f ,0.6025786f ,-0.0069178375f ,0.47429386f ,-0.43898702f ,0.37901676f ,0.5922019f ,-0.41711977f ,0.17854846f ,0.44208834f ,-0.2759529f ,0.3661726f ,0.55772996f ,-0.2576688f ,0.18120144f ,0.5197181f ,-0.24416709f ,0.1493106f ,0.39446285f ,-0.2642366f ,0.3507205f ,0.43798766f ,-0.51953995f ,0.34306595f ,0.5412166f ,-0.5089372f ,0.1544475f ,0.48693442f ,-0.5019157f ,0.35660663f ,0.5852374f ,-0.48684672f ,0.18944314f ,0.5495812f ,-0.42937046f ,0.12384523f ,0.40718108f ,-0.43430632f ,0.36547774f ,0.5415759f ,-0.6620198f ,0.18730605f ,0.5412166f ,-0.5089372f ,0.1544475f ,0.5197181f ,-0.24416709f ,0.1493106f ,0.5495812f ,-0.42937046f ,0.12384523f ,0.57607603f ,-0.6604873f ,0.04488512f ,0.7774893f ,-0.20502841f ,-0.011825651f ,0.7774893f ,-0.20502841f ,-0.011825651f ,0.75923324f ,-0.17808977f ,-0.009131547f ,0.7173386f ,-0.18501255f ,-0.011531908f ,0.7127968f ,-0.2173053f ,-0.027049223f ,0.7127968f ,-0.2173053f ,-0.027049223f ,-0.1614961f ,0.40132314f ,-0.30415043f ,2.566574e-18f ,0.39460763f ,-0.31409672f ,-0.16780615f ,0.27302876f ,-0.33180705f ,4.9093955e-19f ,0.27050394f ,-0.3322591f ,-0.43150827f ,0.35267723f ,0.11676757f ,-0.42399883f ,0.250824f ,0.08834983f ,-0.35625243f ,0.3886209f ,0.19852115f ,-0.34990582f ,0.25063238f ,0.2613245f ,-0.30851325f ,0.5312043f ,-0.199806f ,-0.44807217f ,0.46512917f ,-0.14616363f ,-0.38302693f ,0.54260397f ,-0.013978191f ,-0.46359646f ,0.49757016f ,-0.024172312f ,-0.57472897f ,0.32589754f ,-0.1605156f ,-0.6069318f ,0.32389373f ,-0.062411558f ,-0.52436507f ,0.40816745f ,-0.14891408f ,-0.5534447f ,0.42719036f ,-0.043274444f ,-0.51159555f ,0.26581132f ,0.07215471f ,-0.46542796f ,0.22532094f ,0.068002276f ,-0.48625124f ,0.3244626f ,0.09093734f ,-0.4493516f ,0.44329876f ,0.088439286f ,-0.3820956f ,0.47938135f ,0.12283232f ,-0.57481265f ,0.30367684f ,0.04435995f ,-0.525291f ,0.3861598f ,0.059159353f ,-0.15753968f ,0.54072183f ,-0.2824574f ,-1.26145e-18f ,0.5312043f ,-0.2971877f ,-0.4326283f ,0.37488624f ,-0.1873604f ,-0.3145079f ,0.39460763f ,-0.24860255f ,-0.51358974f ,0.28829038f ,-0.19098526f ,-0.4874127f ,0.3467645f ,-0.1858519f ,-0.36069658f ,0.02116482f ,0.33104342f ,-0.4692032f ,0.02092577f ,0.15832655f ,-0.38204452f ,-0.13969883f ,0.35001537f ,-0.49454442f ,-0.13969885f ,0.16814826f ,-0.48913175f ,0.020925771f ,-0.027935375f ,-0.5153267f ,-0.13969885f ,-0.044325396f ,-0.4465955f ,0.020697922f ,-0.18565688f ,-0.47130585f ,-0.13983972f ,-0.21081373f ,-0.32520485f ,0.029506518f ,-0.2862025f ,-0.32934245f ,-0.13357937f ,-0.2997138f ,-0.16865389f ,0.031036168f ,-0.3426844f ,1.1314123e-17f ,0.029530888f ,-0.3490214f ,-0.16724159f ,-0.13252456f ,-0.35386217f ,1.6378896e-17f ,-0.13358095f ,-0.36253485f ,-0.43337086f ,0.1452488f ,-0.16127299f ,-0.42399883f ,0.250824f ,-0.13478918f ,-0.3206547f ,0.15640748f ,-0.2874746f ,-0.31681544f ,0.27050394f ,-0.28157964f ,-0.16941082f ,0.15771456f ,-0.34000707f ,-1.4389179e-19f ,0.15613389f ,-0.34155023f ,-0.5359626f ,-0.27811086f ,-0.051958572f ,-0.48992273f ,-0.28125808f ,-0.22622867f ,-0.5596577f ,-0.44896442f ,-0.067007765f ,-0.50767845f ,-0.46820748f ,-0.24371001f ,-0.3524112f ,-0.47215378f ,-0.33752447f ,-0.34021056f ,-0.27724254f ,-0.31958678f ,8.748652e-18f ,-0.27726698f ,-0.38240972f ,5.938228e-19f ,-0.47216195f ,-0.40133578f ,-0.17122069f ,-0.2766026f ,-0.3714127f ,-0.1774624f ,-0.47194576f ,-0.39196953f ,-0.22195618f ,0.7652553f ,-0.41915947f ,-6.938894e-18f ,0.7530596f ,-0.45562005f ,-0.11516665f ,0.7788347f ,-0.36176068f ,1.3391198e-18f ,0.78124505f ,-0.38597497f ,-0.57629544f ,0.48534912f ,0.32141045f ,-0.5439811f ,0.6527794f ,0.0128774475f ,-0.45701677f ,0.54377115f ,0.24470891f ,-0.44353482f ,0.6717561f ,0.008322695f ,-0.45716363f ,0.28735605f ,0.4068188f ,-0.45916414f ,0.32040438f ,0.39524215f ,-0.25654748f ,0.24852361f ,0.3327133f ,-0.28983387f ,0.37597245f ,0.2670335f ,-0.4252081f ,0.7530243f ,-0.27395338f ,-0.3239348f ,0.76504475f ,-0.2267553f ,-0.40274158f ,0.4946057f ,0.28901356f ,-0.3843069f ,0.53223544f ,0.23190807f ,-0.3511262f ,0.4526004f ,0.28037134f ,-0.33868268f ,0.48953772f ,0.19285679f ,-0.3914996f ,0.1676936f ,0.45014378f ,-0.23884015f ,0.14919084f ,0.37283516f ,-0.21843597f ,-0.13969885f ,0.45619982f ,-0.30085614f ,0.047865696f ,0.46344233f ,-0.22704643f ,0.029268632f ,0.40914086f ,-0.4735311f ,-0.669639f ,0.31094894f ,-0.37639076f ,-0.67034376f ,0.40443307f ,-0.43798766f ,-0.51953995f ,0.34306595f ,-0.40718108f ,-0.43430632f ,0.36547774f ,-0.5136422f ,-0.66893435f ,-0.24509527f ,-0.57194626f ,-0.65373135f ,-0.11152658f ,-0.35072792f ,-0.6993406f ,-0.35374194f ,-0.17708956f ,-0.7077226f ,-0.40748692f ,3.0611636e-19f ,-0.70585626f ,-0.4165633f ,-0.34772903f ,0.4026886f ,0.3055728f ,-0.35075384f ,0.6025786f ,-0.0069178375f ,-0.33868268f ,0.48953772f ,0.19285679f ,-0.2538836f ,0.6572445f ,-0.19252428f ,-2.730184e-18f ,0.6801354f ,-0.30339327f ,-0.11506325f ,0.6700668f ,-0.2793203f ,-0.46024278f ,0.5021592f ,0.3030636f ,-0.352415f ,0.66696435f ,0.008674513f ,-0.4424493f ,0.14572111f ,0.13115017f ,-0.34959212f ,0.14683732f ,0.295805f ,-0.46542796f ,0.22532094f ,-0.15339972f ,-0.44930077f ,0.20877609f ,-0.025460616f ,-0.44285136f ,0.21000329f ,-0.024935044f ,-0.42399883f ,0.250824f ,0.08834983f ,-0.44285136f ,0.21000329f ,-0.024935044f ,-0.44930077f ,0.20877609f ,-0.025460616f ,-0.42399883f ,0.250824f ,-0.13478918f ,-0.44285136f ,0.21000329f ,-0.024935044f ,-0.46758345f ,0.14583f ,-0.005607973f ,-0.44807217f ,0.46512917f ,-0.14616363f ,-0.46359646f ,0.49757016f ,-0.024172312f ,-0.4493516f ,0.44329876f ,0.088439286f ,-0.43150827f ,0.35267723f ,0.11676757f ,-0.4326283f ,0.37488624f ,-0.1873604f ,-0.5833292f ,0.08790542f ,0.036828402f ,-0.6441826f ,0.11095463f ,0.015578088f ,-0.59935f ,0.06462059f ,0.050593145f ,-0.66201425f ,0.04819665f ,0.03908912f ,-0.54160887f ,-0.0967242f ,0.18800682f ,-0.56561524f ,-0.18815063f ,0.14601369f ,-0.5302592f ,-0.083232306f ,0.1189029f ,-0.5572103f ,-0.16704416f ,0.075948566f ,-0.63201886f ,-0.19088075f ,0.05980307f ,-0.64398426f ,-0.20882872f ,0.13644688f ,-0.6919664f ,-0.1525342f ,0.060004726f ,-0.7039539f ,-0.17841509f ,0.15051796f ,-0.7120869f ,-0.06693041f ,0.08506192f ,-0.72850066f ,-0.09655604f ,0.1883908f ,-0.64398426f ,0.00025252998f ,0.23317984f ,-0.56561524f ,-0.020468771f ,0.22359303f ,-0.6185572f ,0.03692138f ,0.12916468f ,-0.54684085f ,0.013207164f ,0.12306151f ,-0.6111914f ,0.23955072f ,-0.16758308f ,-0.64245355f ,0.23261817f ,-0.07250442f ,-0.49136752f ,0.15548992f ,0.040688038f ,-0.5470071f ,0.17798755f ,0.054715768f ,-0.6090573f ,0.20853895f ,0.030151695f ,-0.7039539f ,-0.029834665f ,0.2192599f ,-0.68006194f ,0.0146178305f ,0.116620995f ,-0.5302592f ,-0.083232306f ,0.1189029f ,-0.54160887f ,-0.0967242f ,0.18800682f ,-0.54685605f ,0.21865883f ,-0.20158425f ,-0.48799586f ,0.17169552f ,-0.16567662f ,-0.4698984f ,0.15694185f ,-0.053926867f ,-0.4698984f ,0.15694185f ,-0.053926867f ,-0.5071258f ,-0.018757902f ,-0.048248f ,-0.51797414f ,0.08386326f ,0.012671429f ,-0.53265893f ,0.03864555f ,0.047121584f ,-0.52168584f ,-0.078595325f ,0.019301593f ,-0.5508613f ,-0.13838577f ,-0.047229484f ,-0.5071258f ,-0.018757902f ,-0.048248f ,-0.5283408f ,-0.062420063f ,-0.13107966f ,-0.49102572f ,0.07922454f ,-0.08845881f ,-0.5111441f ,0.07123393f ,-0.18414259f ,-0.62298036f ,-0.1563927f ,-0.07567629f ,-0.6060768f ,-0.06858783f ,-0.1753022f ,-0.5809778f ,0.09365286f ,-0.22413194f ,-0.6829113f ,-0.111109875f ,-0.071095265f ,-0.6699439f ,-0.035138547f ,-0.15417784f ,-0.6485915f ,0.10545701f ,-0.18821217f ,-0.6996882f ,-0.032368965f ,-0.028007042f ,-0.6926691f ,0.02411022f ,-0.076498106f ,-0.67888874f ,0.113667935f ,-0.09582291f ,-0.49102572f ,0.07922454f ,-0.08845881f ,-0.52168584f ,-0.078595325f ,0.019301593f });
  }
}
private class MFVec3f78 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.54160887f ,-0.0967242f ,0.18800682f ,-0.5369073f ,-0.09843744f ,0.1926668f ,-0.56561524f ,-0.18815063f ,0.14601369f ,-0.5621215f ,-0.19421522f ,0.14861287f ,-0.6444335f ,-0.21615724f ,0.13846126f ,-0.64398426f ,-0.20882872f ,0.13644688f ,-0.64398426f ,0.00025252998f ,0.23317984f ,-0.6444335f ,0.0034441054f ,0.24006154f ,-0.56561524f ,-0.020468771f ,0.22359303f ,-0.5621215f ,-0.01831977f ,0.22999242f ,-0.5369073f ,-0.09843744f ,0.1926668f ,-0.54160887f ,-0.0967242f ,0.18800682f ,-0.7074205f ,-0.18421242f ,0.15324074f ,-0.7039539f ,-0.17841509f ,0.15051796f ,-0.7332022f ,-0.09823497f ,0.19301896f ,-0.72850066f ,-0.09655604f ,0.1883908f ,-0.7039539f ,-0.029834665f ,0.2192599f ,-0.7074205f ,-0.028156757f ,0.22544114f ,-0.6957845f ,-0.17033193f ,0.3094802f ,-0.67957175f ,-0.19860703f ,0.3466138f ,-0.6916316f ,-0.15734565f ,0.35997272f ,-0.61595684f ,-0.14005992f ,0.35260922f ,-0.6056564f ,-0.17078367f ,0.34226942f ,-0.6026173f ,-0.14176427f ,0.3176167f ,-0.6682933f ,-0.21945502f ,0.3329746f ,-0.6423991f ,-0.20218801f ,0.34517106f ,-0.6430096f ,-0.20393348f ,0.33827734f ,-0.6430096f ,-0.20393348f ,0.33827734f ,-0.60609776f ,-0.19787997f ,0.3311251f ,-0.6423991f ,-0.20218801f ,0.34517106f ,-0.62972015f ,-0.114820376f ,0.35039964f ,-0.66196024f ,-0.13979252f ,0.3657971f ,-0.6630015f ,-0.13605475f ,0.3678746f ,-0.6630015f ,-0.13605475f ,0.3678746f ,-0.69442374f ,-0.14035767f ,0.37742344f ,-0.66196024f ,-0.13979252f ,0.3657971f ,-0.5560517f ,-0.1485478f ,0.44075906f ,-0.56686527f ,-0.16481969f ,0.46081132f ,-0.5464368f ,-0.18650419f ,0.42997825f ,-0.5607924f ,-0.18916816f ,0.45435166f ,-0.5557814f ,-0.17594635f ,0.4157522f ,-0.5614905f ,-0.15363744f ,0.42243937f ,-0.5464368f ,-0.18650419f ,0.42997825f ,-0.5560517f ,-0.1485478f ,0.44075906f ,-0.5638161f ,-0.23392472f ,0.40094364f ,-0.5695719f ,-0.20975477f ,0.39831764f ,-0.5587053f ,-0.23457631f ,0.4151414f ,-0.5675308f ,-0.20248315f ,0.41564342f ,-0.56650513f ,-0.1101664f ,0.3978361f ,-0.5708306f ,-0.08791655f ,0.4078836f ,-0.55567604f ,-0.11753708f ,0.41124874f ,-0.56281686f ,-0.084083915f ,0.4216381f ,-0.57424563f ,-0.23306042f ,0.42948666f ,-0.5587053f ,-0.23457631f ,0.4151414f ,-0.5796312f ,-0.21721864f ,0.43271565f ,-0.5675308f ,-0.20248315f ,0.41564342f ,-0.56281686f ,-0.084083915f ,0.4216381f ,-0.5650483f ,-0.098100156f ,0.4432877f ,-0.55567604f ,-0.11753708f ,0.41124874f ,-0.5602112f ,-0.11956981f ,0.439354f ,-0.6265707f ,-0.21041134f ,0.40823105f ,-0.6518857f ,-0.20826364f ,0.42470798f ,-0.65913266f ,-0.18044981f ,0.4330723f ,-0.6412927f ,-0.15828902f ,0.4247058f ,-0.6412927f ,-0.15828902f ,0.4247058f ,-0.6092886f ,-0.1575036f ,0.40394908f ,-0.6008981f ,-0.18417564f ,0.3949896f ,-0.6265707f ,-0.21041134f ,0.40823105f ,-0.6367382f ,-0.21151017f ,0.39213604f ,-0.60475534f ,-0.20990749f ,0.37461284f ,-0.5972622f ,-0.24332125f ,0.32826132f ,-0.5983368f ,-0.24006712f ,0.37379616f ,-0.62035394f ,-0.26256353f ,0.3880557f ,-0.6210998f ,-0.2629415f ,0.3329703f ,-0.6536033f ,-0.22844686f ,0.39972353f ,-0.6367382f ,-0.21151017f ,0.39213604f ,-0.62035394f ,-0.26256353f ,0.3880557f ,-0.6395209f ,-0.25959945f ,0.39504713f ,-0.6210998f ,-0.2629415f ,0.3329703f ,-0.6481766f ,-0.25851348f ,0.3314185f ,-0.61104393f ,-0.12113413f ,0.3942766f ,-0.6312241f ,-0.14019313f ,0.4180839f ,-0.6410999f ,-0.09671411f ,0.4319793f ,-0.6197661f ,-0.09805331f ,0.4058558f ,-0.6614285f ,-0.08119123f ,0.3817987f ,-0.6408255f ,-0.09034638f ,0.3622128f ,-0.6312241f ,-0.14019313f ,0.4180839f ,-0.6489169f ,-0.14250779f ,0.439285f ,-0.68854463f ,-0.101389915f ,0.3887008f ,-0.6522029f ,-0.118144214f ,0.444164f ,-0.6614285f ,-0.08119123f ,0.3817987f ,-0.6410999f ,-0.09671411f ,0.4319793f ,-0.62249047f ,-0.05680178f ,0.2684067f ,-0.58452153f ,-0.11547461f ,0.25576052f ,-0.5856369f ,-0.058139145f ,0.25894365f ,-0.56802f ,-0.12303844f ,0.22859254f ,-0.5731151f ,-0.19871382f ,0.22845547f ,-0.5856371f ,-0.20115383f ,0.19278044f ,-0.61561346f ,-0.23106945f ,0.21835497f ,-0.6425097f ,-0.21856321f ,0.18494481f ,-0.6613917f ,-0.21633586f ,0.22353092f ,-0.68602306f ,-0.19267297f ,0.1968213f ,-0.61561346f ,-0.23106945f ,0.21835497f ,-0.6425097f ,-0.21856321f ,0.18494481f ,-0.68602246f ,-0.06616923f ,0.25536183f ,-0.68898076f ,-0.0717438f ,0.28462255f ,-0.65812474f ,-0.046009213f ,0.26528636f ,-0.6573673f ,-0.04527487f ,0.29275748f ,-0.65812474f ,-0.046009213f ,0.26528636f ,-0.6573673f ,-0.04527487f ,0.29275748f ,-0.70406294f ,-0.12302702f ,0.22904122f ,-0.7004006f ,-0.15088184f ,0.24551836f ,-0.5369073f ,-0.1133421f ,0.22495353f ,-0.5621215f ,-0.20927657f ,0.18079655f ,-0.6444335f ,-0.23109421f ,0.17082568f ,-0.6444335f ,-0.011520937f ,0.27240735f ,-0.5621215f ,-0.033239037f ,0.26223922f ,-0.5369073f ,-0.1133421f ,0.22495353f ,-0.7074205f ,-0.19915196f ,0.18555295f ,-0.7332022f ,-0.1131848f ,0.22533181f ,-0.7074205f ,-0.04310888f ,0.25775868f ,-0.5850816f ,-0.23417248f ,0.2872582f ,-0.62053204f ,-0.25572637f ,0.28071442f ,-0.64763665f ,-0.05987361f ,0.35032645f ,-0.59270906f ,-0.09906918f ,0.3143662f ,-0.62053204f ,-0.25572637f ,0.28071442f ,-0.6641621f ,-0.23245022f ,0.28866804f ,-0.69578457f ,-0.08863151f ,0.338265f ,-0.64763665f ,-0.05987361f ,0.35032645f ,-0.5856371f ,-0.20115383f ,0.19278044f ,-0.56802f ,-0.12303844f ,0.22859254f ,-0.6425097f ,-0.21856321f ,0.18494481f ,-0.68602306f ,-0.19267297f ,0.1968213f ,-0.70406294f ,-0.12302702f ,0.22904122f ,-0.68602246f ,-0.06616923f ,0.25536183f ,-0.65812474f ,-0.046009213f ,0.26528636f ,-0.5856369f ,-0.058139145f ,0.25894365f ,-0.56802f ,-0.12303844f ,0.22859254f ,-0.52453715f ,-0.09480736f ,0.31866032f ,-0.5312432f ,-0.09195307f ,0.34173566f ,-0.5330533f ,-0.10950486f ,0.31425604f ,-0.5415018f ,-0.104723334f ,0.34920043f ,-0.6947777f ,-0.07724123f ,0.31221327f ,-0.6548028f ,-0.052963182f ,0.33230036f ,-0.6987283f ,-0.15994239f ,0.2748247f ,-0.6608114f ,-0.22475076f ,0.2530636f ,-0.6161364f ,-0.2433354f ,0.24663681f ,-0.6161364f ,-0.2433354f ,0.24663681f ,-0.5751026f ,-0.21738546f ,0.25461018f ,-0.5927214f ,-0.12749085f ,0.28415626f ,-0.6079165f ,-0.08907518f ,0.2754971f ,-0.5773448f ,-0.06067598f ,0.33963603f ,-0.56588405f ,-0.04593897f ,0.32951146f ,-0.5867917f ,-0.043573007f ,0.3407573f ,-0.59004426f ,-0.032859266f ,0.32194352f ,-0.55657506f ,-0.051323682f ,0.29604208f ,-0.5772698f ,-0.046410292f ,0.2880613f ,-0.5682887f ,-0.07266447f ,0.2930289f ,-0.565333f ,-0.07440603f ,0.28721583f ,-0.59270906f ,-0.09906918f ,0.3143662f ,-0.5802568f ,-0.091282815f ,0.30346733f ,-0.64763665f ,-0.05987361f ,0.35032645f ,-0.5858719f ,-0.08254728f ,0.33453214f ,-0.55285424f ,-0.11363956f ,0.32053754f ,-0.55682796f ,-0.11063713f ,0.33826894f ,-0.6029651f ,-0.20684567f ,0.42540994f ,-0.609354f ,-0.20277168f ,0.45282668f ,-0.6161818f ,-0.17528519f ,0.4599708f ,-0.61583793f ,-0.1560283f ,0.43984348f ,-0.61583793f ,-0.1560283f ,0.43984348f ,-0.6029651f ,-0.20684567f ,0.42540994f ,-0.621015f ,-0.2086478f ,0.41345513f ,-0.6070378f ,-0.25719702f ,0.41101187f ,-0.624232f ,-0.22200781f ,0.43222275f ,-0.621015f ,-0.2086478f ,0.41345513f ,-0.6070378f ,-0.25719702f ,0.41101187f ,-0.6145194f ,-0.25098416f ,0.42684364f ,-0.60504186f ,-0.1351634f ,0.426887f ,-0.61412996f ,-0.0930323f ,0.43881842f ,-0.60504186f ,-0.1351634f ,0.426887f ,-0.60302925f ,-0.13334998f ,0.4530681f ,-0.6082597f ,-0.11051878f ,0.45622247f ,-0.61412996f ,-0.0930323f ,0.43881842f ,-0.565333f ,-0.07440603f ,0.28721583f ,-0.5682887f ,-0.07266447f ,0.2930289f ,-0.5330533f ,-0.10950486f ,0.31425604f ,-0.5415018f ,-0.104723334f ,0.34920043f ,-0.5773448f ,-0.06067598f ,0.33963603f ,-0.5867917f ,-0.043573007f ,0.3407573f ,-0.28983387f ,0.37597245f ,0.2670335f ,-0.25654748f ,0.24852361f ,0.3327133f ,-0.23884015f ,0.14919084f ,0.37283516f ,-0.22704643f ,0.029268632f ,0.40914086f ,-0.21843597f ,-0.13969885f ,0.45619982f ,-0.22569244f ,-0.28119385f ,0.46645266f ,-0.39446285f ,-0.2642366f ,0.3507205f ,-0.2456787f ,-0.469184f ,0.47205237f ,-0.2729618f ,-0.66893435f ,0.4669829f ,1.4552729e-18f ,0.74469006f ,-0.33585602f ,-2.730184e-18f ,0.6801354f ,-0.30339327f ,-0.11512914f ,0.7460897f ,-0.3158874f ,-0.11506325f ,0.6700668f ,-0.2793203f ,-0.2538836f ,0.6572445f ,-0.19252428f ,-0.27187997f ,0.7334798f ,-0.20023996f ,-0.35075384f ,0.6025786f ,-0.0069178375f ,-0.47429386f ,-0.43898702f ,0.37901676f ,-0.44208834f ,-0.2759529f ,0.3661726f ,-0.5922019f ,-0.41711977f ,0.17854846f ,-0.55772996f ,-0.2576688f ,0.18120144f ,-0.39446285f ,-0.2642366f ,0.3507205f ,-0.5197181f ,-0.24416709f ,0.1493106f ,-0.43798766f ,-0.51953995f ,0.34306595f ,-0.48693442f ,-0.5019157f ,0.35660663f ,-0.5412166f ,-0.5089372f ,0.1544475f ,-0.5852374f ,-0.48684672f ,0.18944314f ,-0.5495812f ,-0.42937046f ,0.12384523f ,-0.40718108f ,-0.43430632f ,0.36547774f ,-0.5412166f ,-0.5089372f ,0.1544475f ,-0.5415759f ,-0.6620198f ,0.18730605f ,-0.5197181f ,-0.24416709f ,0.1493106f ,-0.57607603f ,-0.6604873f ,0.04488512f ,-0.5495812f ,-0.42937046f ,0.12384523f ,-0.6548028f ,-0.052963182f ,0.33230036f ,-0.6573673f ,-0.04527487f ,0.29275748f ,-0.6548028f ,-0.052963182f ,0.33230036f ,-0.62249047f ,-0.05680178f ,0.2684067f ,-0.6079165f ,-0.08907518f ,0.2754971f ,-0.6079165f ,-0.08907518f ,0.2754971f });
  }
}
private class MFVec3f79 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.2002858f ,0.18440014f ,-0.96222776f ,0.16640238f ,0.14054683f ,-0.97599024f ,-1.1114785e-8f ,0.14857167f ,-0.9889017f ,1.6152972e-8f ,0.112076506f ,-0.99369967f ,0.6153286f ,-0.01747626f ,0.788077f ,0.8014007f ,0.17036752f ,0.57335144f ,0.8716081f ,0.10306631f ,0.479246f ,0.79424536f ,0.21345215f ,0.5688694f ,0.61400056f ,0.43802208f ,-0.65661246f ,0.6953894f ,0.715802f ,-0.063727245f ,0.51037866f ,0.67540586f ,-0.53229743f ,0.565382f ,0.82172936f ,0.07144344f ,0.765674f ,0.6414273f ,0.048107047f ,0.9100557f ,0.41206357f ,0.044746127f ,0.6013556f ,0.5834607f ,-0.5458435f ,0.7051568f ,0.42065632f ,-0.5707909f ,0.29042673f ,-0.111983806f ,0.9503221f ,0.40378344f ,-0.049394034f ,0.9135202f ,-0.29735807f ,-0.56206685f ,0.7717895f ,0.59175855f ,0.5363141f ,0.6018214f ,0.73273814f ,0.497143f ,0.46469745f ,0.7721392f ,0.24964704f ,0.5843608f ,0.67147297f ,0.44721162f ,0.5908688f ,0.30208915f ,0.17963487f ,-0.93620163f ,-2.9360377e-8f ,0.08331171f ,-0.9965236f ,0.5113012f ,0.040701576f ,-0.8584373f ,0.42490897f ,0.26100782f ,-0.8667915f ,-0.08631648f ,0.06418878f ,-0.9941978f ,0.03541153f ,0.052796118f ,-0.9979773f ,0.70884377f ,0.19825009f ,0.67693245f ,0.71156317f ,0.13384232f ,0.6897566f ,0.91970956f ,0.19554128f ,0.34043813f ,0.9254564f ,0.15849599f ,0.34410676f ,0.9839588f ,0.16856617f ,-0.058400374f ,0.98326814f ,0.16578364f ,-0.07549586f ,0.8190784f ,0.18256405f ,-0.5438574f ,0.7924204f ,0.18970987f ,-0.57972413f ,0.4374572f ,0.12978919f ,-0.88982356f ,0.5148668f ,0.07037875f ,-0.8543764f ,0.1813111f ,0.051226843f ,-0.9820907f ,0.18458231f ,0.096643664f ,-0.97805387f ,0f ,0.068181135f ,-0.99767303f ,4.3059907e-9f ,0.10839605f ,-0.9941078f ,0.856541f ,0.18085249f ,-0.48335275f ,0.57562566f ,0.051317334f ,-0.81610155f ,0.7084927f ,-0.16345383f ,-0.6865282f ,0.550755f ,0.08113299f ,-0.8307144f ,0.16424811f ,0.044555172f ,-0.9854123f ,9.861194e-9f ,0.06115935f ,-0.99812806f ,0.98433864f ,0.15054569f ,-0.09172468f ,0.98591226f ,0.1178826f ,-0.11866227f ,0.78911084f ,0.14888407f ,-0.5959343f ,0.7719923f ,0.093134336f ,-0.6287718f ,0.41485724f ,0.08061497f ,-0.90630835f ,0.41140866f ,0.12938166f ,-0.9022214f ,0.17627977f ,0.08449912f ,-0.98070663f ,3.1704882e-8f ,0.08182034f ,-0.9966471f ,0.18030821f ,0.11628073f ,-0.9767128f ,-1.2762741e-9f ,0.11080725f ,-0.99384195f ,-0.07853667f ,-0.9930886f ,0.087218516f ,0.03003808f ,-0.99902314f ,-0.03241094f ,1.0487422e-8f ,-0.95136374f ,0.3080698f ,1.3164396e-8f ,-0.9999731f ,-0.00733398f ,-0.0799998f ,-0.9172277f ,-0.39024797f ,-0.15156007f ,-0.90834105f ,-0.38980263f ,-0.027202187f ,-0.8740262f ,-0.48511672f ,-0.12104633f ,-0.87136775f ,-0.47546417f ,0.94021744f ,-0.2795682f ,-0.19450663f ,0.4206132f ,-0.421142f ,-0.8035695f ,0.83363736f ,-0.38604307f ,-0.39499295f ,0.38483673f ,-0.44477302f ,-0.8087506f ,-0.04853374f ,-0.979961f ,-0.19318628f ,-0.17786294f ,-0.97215205f ,-0.15259516f ,0.9656581f ,-0.25786093f ,0.031815678f ,0.4907258f ,-0.74705166f ,-0.44844398f ,0.7327274f ,-0.53751624f ,-0.4173571f ,0.39646682f ,-0.7056283f ,-0.58728427f ,0.9793548f ,-0.1938049f ,-0.057478655f ,0.41448393f ,-0.4597895f ,-0.7853641f ,0.61189306f ,0.12540774f ,0.78093517f ,0.90329224f ,0.04941742f ,0.42617044f ,0.539274f ,-0.341044f ,-0.76998216f ,0.819756f ,0.07338879f ,0.56799144f ,0.74580973f ,-0.11198398f ,0.6566791f ,0.5804802f ,0.047208738f ,0.8129048f ,0.4407255f ,0.059489407f ,0.89566857f ,0.9747188f ,0.0728249f ,-0.21123438f ,0.70937663f ,0.03925021f ,-0.70373595f ,0.4156833f ,0.060552508f ,-0.9074915f ,0.17277974f ,0.06424417f ,-0.98286307f ,6.404018e-8f ,0.06502212f ,-0.9978838f ,0.5985893f ,-0.16700114f ,-0.7834548f ,0.9447116f ,0.22094776f ,-0.24228516f ,0.9656581f ,-0.25786093f ,0.031815678f ,0.7462416f ,0.103892125f ,-0.65751797f ,-6.1256166e-8f ,-0.19730188f ,-0.9803428f ,0.35999244f ,-0.09764345f ,-0.9278314f ,0.050269566f ,-0.8118499f ,-0.5816981f ,0.49092236f ,-0.7114255f ,-0.50286084f ,0.9041656f ,0.26203027f ,0.3373791f ,0.74230677f ,0.23378688f ,0.6279525f ,-0.7168244f ,-0.3322791f ,-0.61298734f ,-0.86954314f ,-0.49294803f ,0.029952025f ,0.97637886f ,0.19021985f ,-0.10247378f ,0.8716081f ,0.10306631f ,0.479246f ,0.97637886f ,0.19021985f ,-0.10247378f ,0.7084927f ,-0.16345383f ,-0.6865282f ,-0.86954314f ,-0.49294803f ,0.029952025f ,0.97350717f ,0.22807093f ,-0.016353019f ,0.97637886f ,0.19021985f ,-0.10247378f ,0.565382f ,0.82172936f ,0.07144344f ,0.51037866f ,0.67540586f ,-0.53229743f ,0.59175855f ,0.5363141f ,0.6018214f ,0.6153286f ,-0.01747626f ,0.788077f ,0.5113012f ,0.040701576f ,-0.8584373f ,0.7471629f ,0.18798025f ,0.63750386f ,0.7432881f ,0.1792269f ,0.6445157f ,-0.020479878f ,0.04169109f ,0.9989206f ,0.031093484f ,-0.1274442f ,0.9913582f ,-0.99658203f ,-0.07500993f ,0.034608934f ,-0.9864151f ,-0.16423579f ,0.0034657416f ,-0.75470334f ,-0.112622775f ,-0.6463274f ,-0.7394011f ,-0.18420713f ,-0.6475753f ,0.084399946f ,-0.17171325f ,-0.981525f ,0.15008661f ,-0.07997807f ,-0.98543274f ,0.8456094f ,0.019760348f ,-0.53343624f ,0.9861676f ,0.15729593f ,0.052263968f ,0.85740507f ,0.0995532f ,-0.50492156f ,0.98024315f ,0.1961066f ,0.025799222f ,0.10769505f ,0.14881669f ,0.9829829f ,-0.0006725573f ,0.09083676f ,0.9958656f ,-0.6786768f ,0.026546199f ,0.73395723f ,-0.7746946f ,-0.070374385f ,0.6284072f ,0.7391667f ,0.3712197f ,-0.56198627f ,0.9312422f ,0.35718167f ,0.072174646f ,-0.6478571f ,-0.47871995f ,0.59254396f ,0.17565365f ,-0.16347815f ,0.97078353f ,0.75110453f ,0.18034008f ,0.6350744f ,0.7844362f ,0.22101696f ,0.5794923f ,0.76380986f ,0.1899282f ,0.61686444f ,-0.9864151f ,-0.16423579f ,0.0034657416f ,-0.99658203f ,-0.07500993f ,0.034608934f ,-0.07966971f ,0.12179007f ,-0.9893533f ,-0.7961358f ,-0.21083857f ,-0.56719935f ,-0.9306611f ,-0.36584392f ,-0.0053043575f ,-0.9306611f ,-0.36584392f ,-0.0053043575f ,-0.9699923f ,-0.24247041f ,-0.017976115f ,-0.7911043f ,-0.16521668f ,0.58894616f ,-0.73577875f ,-0.36722103f ,0.5690152f ,-0.981711f ,-0.18579645f ,-0.041512113f ,-0.9699923f ,-0.24247041f ,-0.017976115f ,-0.7125309f ,-0.22859304f ,-0.6633588f ,-0.7559284f ,-0.23695402f ,-0.6102664f ,-0.95232415f ,-0.30158913f ,-0.04607266f ,-0.7449072f ,-0.18139464f ,-0.6420352f ,0.023190126f ,-0.03423466f ,-0.99914473f ,0.07290052f ,-0.14712586f ,-0.98642766f ,0.027252013f ,0.10836246f ,-0.9937379f ,0.83249164f ,0.054442458f ,-0.5513564f ,0.7856791f ,0.17312618f ,-0.5939156f ,0.76637715f ,0.32810602f ,-0.5522795f ,0.9864137f ,0.15517752f ,0.053925596f ,0.97407264f ,0.20848192f ,0.08785192f ,0.94446164f ,0.31932777f ,0.077601545f ,-0.95232415f ,-0.30158913f ,-0.04607266f ,-0.981711f ,-0.18579645f ,-0.041512113f ,-0.99658203f ,-0.07500993f ,0.034608934f ,-0.75470334f ,-0.112622775f ,-0.6463274f ,-0.99499774f ,0.09989532f ,0.00071110536f ,-0.7633549f ,0.10715776f ,-0.63702947f ,0.15008661f ,-0.07997807f ,-0.98543274f ,0.076381154f ,0.11534368f ,-0.99038464f ,0.10769505f ,0.14881669f ,0.9829829f ,-0.6786768f ,0.026546199f ,0.73395723f ,0.073989175f ,0.11549432f ,0.99054873f ,-0.71495605f ,0.110602126f ,0.69036585f ,-0.99658203f ,-0.07500993f ,0.034608934f ,-0.99499774f ,0.09989532f ,0.00071110536f ,0.85740507f ,0.0995532f ,-0.50492156f ,0.8190803f ,0.10338825f ,-0.5642858f ,0.98024315f ,0.1961066f ,0.025799222f ,0.99519604f ,0.097898014f ,0.00093235436f ,0.7844362f ,0.22101696f ,0.5794923f ,0.7774765f ,0.10721816f ,0.6197053f ,0.99229175f ,-0.12167448f ,0.023503903f ,0.9285282f ,-0.24781086f ,0.27645096f ,0.92118526f ,-0.24628854f ,-0.30126345f ,-0.85909873f ,-0.32984528f ,0.3913458f ,-0.9604445f ,-0.27824965f ,-0.011116915f ,-0.8598447f ,-0.27065718f ,-0.43291104f ,0.053629614f ,-0.30351147f ,0.95131737f ,0.94904804f ,-0.31355944f ,0.03143759f ,0.0516545f ,-0.34524632f ,-0.9370896f ,0.053629614f ,-0.30351147f ,0.95131737f ,0.0516545f ,-0.34524632f ,-0.9370896f ,-0.92208964f ,-0.385384f ,0.035071872f ,0.060622513f ,-0.19989716f ,-0.97793967f ,-0.94806176f ,-0.28973868f ,-0.13126463f ,0.0057015177f ,-0.3505828f ,0.93651444f ,0.060622513f ,-0.19989716f ,-0.97793967f ,0.0057015177f ,-0.3505828f ,0.93651444f ,0.94025064f ,-0.2554456f ,-0.22511385f ,-0.22931534f ,-0.6012809f ,0.76542515f ,-0.20219968f ,-0.5332606f ,-0.8214307f ,0.52009517f ,-0.6648385f ,0.5361816f ,0.5579832f ,-0.6160854f ,-0.5559618f ,-0.22931534f ,-0.6012809f ,0.76542515f ,-0.8448384f ,-0.05916683f ,0.53174007f ,-0.20219968f ,-0.5332606f ,-0.8214307f ,-0.835858f ,-0.004384122f ,-0.5489283f ,-0.17699534f ,-0.5986864f ,0.7811833f ,-0.90329736f ,-0.0059753833f ,0.42897347f ,-0.11642294f ,-0.67906225f ,-0.7247898f ,-0.7712739f ,0.026577735f ,-0.6359483f ,-0.82899386f ,-0.012625247f ,-0.5591152f ,-0.15331586f ,-0.491616f ,-0.85720944f ,-0.82618034f ,-0.04245976f ,0.5618036f ,-0.18239406f ,-0.61319745f ,0.76858395f ,-0.17699534f ,-0.5986864f ,0.7811833f ,-0.11642294f ,-0.67906225f ,-0.7247898f ,0.5956901f ,-0.69340837f ,0.40538648f ,0.56193155f ,-0.59896976f ,-0.5704982f ,-0.18239406f ,-0.61319745f ,0.76858395f ,-0.15331586f ,-0.491616f ,-0.85720944f ,0.48956525f ,-0.66591436f ,0.56292456f ,0.52839315f ,-0.59682554f ,-0.6038212f ,0.84672415f ,-0.17030911f ,-0.50403684f ,0.014818336f ,-0.108220495f ,-0.9940165f ,0.8631048f ,-0.17866485f ,0.4723653f ,0.013466231f ,-0.10876846f ,0.99397594f ,-0.75602466f ,-0.045975916f ,0.65292645f ,0.013466231f ,-0.10876846f ,0.99397594f ,-0.77142f ,-0.047312103f ,-0.63456506f ,0.014818336f ,-0.108220495f ,-0.9940165f ,-0.84670466f ,-0.03646427f ,0.5308122f ,0.041429557f ,-0.15064503f ,0.9877195f ,-0.7843446f ,-0.21566465f ,-0.58162916f ,-0.8192348f ,0.05477356f ,-0.57083637f ,0.05318694f ,-0.11974443f ,-0.9913791f ,-0.063409396f ,-0.12421689f ,-0.990227f ,0.9184239f ,-0.22107804f ,0.32805797f ,0.041429557f ,-0.15064503f ,0.9877195f ,0.86127794f ,-0.08125325f ,-0.5015957f ,0.86366796f ,-0.16711852f ,-0.47555152f ,0.05318694f ,-0.11974443f ,-0.9913791f ,-0.063409396f ,-0.12421689f ,-0.990227f ,-0.72987354f ,-0.024508867f ,-0.6831427f ,0.04741734f ,-0.08341886f ,-0.9953859f ,-0.77853775f ,-0.0763039f ,0.6229421f ,-0.7516596f ,0.030855559f ,0.6588292f ,0.015193307f ,-0.056080606f ,0.9983106f ,0.020689342f ,-0.09185265f ,0.9955577f ,0.8268072f ,-0.1641247f ,-0.5380084f ,0.04741734f ,-0.08341886f ,-0.9953859f ,0.8098848f ,-0.045072068f ,0.5848548f ,0.8165485f ,-0.12280424f ,0.5640636f ,0.015193307f ,-0.056080606f ,0.9983106f ,0.020689342f ,-0.09185265f ,0.9955577f ,-0.41852653f ,-0.9081291f ,-0.011711791f ,-0.91933286f ,-0.39254123f ,-0.027176822f ,-0.37447092f ,-0.90205973f ,0.21461515f ,-0.7524427f ,0.3856233f ,0.5339706f ,-0.85106754f ,-0.195669f ,-0.48723495f ,-0.39037284f ,-0.88108003f ,-0.26703396f ,0.17014189f ,0.096546575f ,-0.9806787f ,0.036667757f ,-0.65138906f ,-0.7578574f ,0.8852508f ,-0.019447414f ,-0.4647073f ,0.17014189f ,0.096546575f ,-0.9806787f ,0.53674865f ,-0.7785852f ,-0.32512453f ,0.036667757f ,-0.65138906f ,-0.7578574f ,0.48613045f ,-0.8274837f ,0.28097647f ,0.09801758f ,-0.8165999f ,0.5688208f ,0.86013216f ,0.07606251f ,0.50436825f ,0.27058673f ,0.5217866f ,0.80902517f ,0.27058673f ,0.5217866f ,0.80902517f ,0.09801758f ,-0.8165999f ,0.5688208f ,0.9976524f ,-0.06842721f ,0.0027374001f ,0.5313335f ,-0.8470062f ,-0.016285772f ,-0.86814153f ,-0.49631634f ,0.0005936988f ,-0.71613646f ,-0.38971716f ,-0.57902426f });
  }
}
private class MFVec3f80 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.07532342f ,-0.26549405f ,-0.96116567f ,0.06888198f ,-0.43446854f ,0.8980493f ,-0.6282266f ,-0.4934663f ,0.60151684f ,-0.86814153f ,-0.49631634f ,0.0005936988f ,0.76568633f ,-0.38376838f ,-0.51618433f ,0.8868073f ,-0.46213716f ,0.0014188028f ,0.7016486f ,-0.45082822f ,0.5517638f ,-0.8250938f ,-0.2720138f ,-0.49520585f ,0.27403176f ,-0.04788374f ,-0.96052784f ,-0.8683406f ,-0.4642677f ,0.17447121f ,0.5226657f ,-0.3360059f ,0.78353083f ,0.93438125f ,-0.05322683f ,-0.35227636f ,0.27403176f ,-0.04788374f ,-0.96052784f ,0.88158405f ,-0.01579252f ,0.47176278f ,0.5226657f ,-0.3360059f ,0.78353083f ,-0.39037284f ,-0.88108003f ,-0.26703396f ,-0.41852653f ,-0.9081291f ,-0.011711791f ,0.036667757f ,-0.65138906f ,-0.7578574f ,0.53674865f ,-0.7785852f ,-0.32512453f ,0.5313335f ,-0.8470062f ,-0.016285772f ,0.48613045f ,-0.8274837f ,0.28097647f ,0.09801758f ,-0.8165999f ,0.5688208f ,-0.37447092f ,-0.90205973f ,0.21461515f ,-0.41852653f ,-0.9081291f ,-0.011711791f ,0.782656f ,-0.52002674f ,0.3420844f ,0.2579005f ,-0.09785051f ,0.9612038f ,-0.7531103f ,-0.6462435f ,-0.12326526f ,-0.5601572f ,-0.06889846f ,0.8255162f ,0.7542484f ,0.11962525f ,0.64559996f ,0.91399974f ,0.005802244f ,0.40567338f ,0.99846196f ,-0.053229712f ,0.015499787f ,0.89782894f ,0.003407203f ,-0.44033113f ,0.21833389f ,0.052582398f ,-0.9744565f ,0.21833389f ,0.052582398f ,-0.9744565f ,-0.86826664f ,-0.14690474f ,-0.47384813f ,-0.9605481f ,-0.27131417f ,-0.061123107f ,-0.974587f ,-0.18900704f ,0.12023541f ,0.9227325f ,-0.008990433f ,0.3853362f ,0.9556309f ,0.10408887f ,0.27556327f ,0.16592081f ,0.3124456f ,0.9353332f ,0.240564f ,0.6594386f ,0.7122287f ,-0.5725716f ,0.5704917f ,0.58881325f ,-0.53455174f ,0.2629337f ,0.8031938f ,-0.9684512f ,-0.22435294f ,-0.108480476f ,-0.9675852f ,-0.21718806f ,-0.12887302f ,-0.8683406f ,-0.4642677f ,0.17447121f ,0.5226657f ,-0.3360059f ,0.78353083f ,-0.33632207f ,-0.62144995f ,-0.7075928f ,0.80863315f ,-0.39866772f ,-0.432639f ,0.5566871f ,-0.5430032f ,-0.6286867f ,-0.22632092f ,-0.69278896f ,-0.684706f ,0.79243857f ,-0.379676f ,-0.47737533f ,-0.017773785f ,-0.11217856f ,-0.99352914f ,0.7839008f ,-0.3745427f ,0.49519417f ,-0.019665238f ,-0.11257021f ,0.99344915f ,-0.019665238f ,-0.11257021f ,0.99344915f ,-0.017773785f ,-0.11217856f ,-0.99352914f ,0.024301507f ,-0.23096722f ,0.972658f ,-0.053879872f ,-0.11006865f ,-0.9924625f ,0.8101929f ,-0.48528776f ,0.32876036f ,0.024301507f ,-0.23096722f ,0.972658f ,0.77724195f ,-0.44516274f ,-0.4446629f ,-0.053879872f ,-0.11006865f ,-0.9924625f ,0.044708334f ,-0.084659606f ,-0.9954064f ,0.004674694f ,-0.101060115f ,0.99486935f ,0.77304614f ,-0.37723204f ,-0.5099958f ,0.044708334f ,-0.084659606f ,-0.9954064f ,0.7606796f ,-0.36282593f ,0.5382599f ,0.004674694f ,-0.101060115f ,0.99486935f ,-0.9675852f ,-0.21718806f ,-0.12887302f ,-0.9684512f ,-0.22435294f ,-0.108480476f ,-0.7531103f ,-0.6462435f ,-0.12326526f ,0.782656f ,-0.52002674f ,0.3420844f ,0.9227325f ,-0.008990433f ,0.3853362f ,0.9556309f ,0.10408887f ,0.27556327f ,0.94021744f ,-0.2795682f ,-0.19450663f ,0.83363736f ,-0.38604307f ,-0.39499295f ,0.9793548f ,-0.1938049f ,-0.057478655f ,0.61189306f ,0.12540774f ,0.78093517f ,0.90329224f ,0.04941742f ,0.42617044f ,0.5948287f ,0.20061344f ,0.77841705f ,0.5499972f ,0.092617854f ,0.8300151f ,0.5357073f ,0.072684854f ,0.84126973f ,0.5173559f ,0.048980467f ,0.85436743f ,2.458226e-8f ,-0.64266586f ,-0.76614654f ,0.3220325f ,-0.6220549f ,-0.71368265f ,-6.1256166e-8f ,-0.19730188f ,-0.9803428f ,0.35999244f ,-0.09764345f ,-0.9278314f ,0.7462416f ,0.103892125f ,-0.65751797f ,0.53315467f ,-0.6332149f ,-0.56105715f ,0.9447116f ,0.22094776f ,-0.24228516f ,0.6960103f ,0.10773565f ,0.70990336f ,0.95328516f ,0.14384183f ,0.26562577f ,0.6193081f ,0.4152192f ,0.6663712f ,0.85803765f ,0.42845964f ,0.28318524f ,0.9524406f ,0.26938638f ,0.14243612f ,0.5948287f ,0.20061344f ,0.77841705f ,0.74580973f ,-0.11198398f ,0.6566791f ,0.944657f ,-0.13185179f ,0.30039698f ,0.6880025f ,-0.50811356f ,0.5181441f ,0.8422293f ,-0.49604768f ,0.21115543f ,0.9929886f ,0.10829762f ,-0.047385212f ,0.4407255f ,0.059489407f ,0.89566857f ,0.92169243f ,0.08347822f ,0.37883306f ,0.944657f ,-0.13185179f ,0.30039698f ,0.9524406f ,0.26938638f ,0.14243612f ,0.9929886f ,0.10829762f ,-0.047385212f ,0.99461687f ,0.07311831f ,0.07342317f ,0.7542484f ,0.11962525f ,0.64559996f ,0.7542484f ,0.11962525f ,0.64559996f ,0.27058673f ,0.5217866f ,0.80902517f ,-0.7524427f ,0.3856233f ,0.5339706f ,-0.974587f ,-0.18900704f ,0.12023541f ,-0.974587f ,-0.18900704f ,0.12023541f ,-0.20028584f ,0.18440013f ,-0.96222776f ,-1.1114785e-8f ,0.14857167f ,-0.9889017f ,-0.16640235f ,0.14054683f ,-0.9759902f ,1.6152972e-8f ,0.112076506f ,-0.99369967f ,-0.6153286f ,-0.017476236f ,0.788077f ,-0.87160814f ,0.10306622f ,0.47924602f ,-0.8014007f ,0.17036748f ,0.5733514f ,-0.7942455f ,0.21345203f ,0.5688694f ,-0.6140005f ,0.43802214f ,-0.6566125f ,-0.5103787f ,0.67540586f ,-0.53229743f ,-0.69538933f ,0.7158021f ,-0.06372723f ,-0.565382f ,0.8217294f ,0.07144344f ,-0.70515674f ,0.4206564f ,-0.5707908f ,-0.9100557f ,0.4120637f ,0.044746112f ,-0.6013557f ,0.5834607f ,-0.54584336f ,-0.765674f ,0.6414273f ,0.048107084f ,-0.2904267f ,-0.111983806f ,0.9503221f ,0.297358f ,-0.5620668f ,0.77178955f ,-0.4037834f ,-0.04939404f ,0.9135203f ,-0.59175855f ,0.53631413f ,0.6018214f ,-0.73273814f ,0.49714303f ,0.46469745f ,-0.77213913f ,0.24964699f ,0.5843608f ,-0.67147297f ,0.4472115f ,0.5908688f ,-0.30208915f ,0.17963487f ,-0.93620163f ,-2.9360377e-8f ,0.08331171f ,-0.9965236f ,-0.5113012f ,0.040701453f ,-0.8584373f ,-0.4249089f ,0.2610078f ,-0.8667914f ,0.086316526f ,0.064188674f ,-0.9941978f ,-0.03541152f ,0.052795984f ,-0.9979773f ,-0.7088437f ,0.19825009f ,0.6769324f ,-0.9197095f ,0.1955412f ,0.34043816f ,-0.71156317f ,0.13384235f ,0.6897566f ,-0.9254564f ,0.15849593f ,0.34410676f ,-0.9839588f ,0.16856606f ,-0.058400366f ,-0.98326814f ,0.16578358f ,-0.07549585f ,-0.8190784f ,0.18256405f ,-0.54385746f ,-0.79242045f ,0.18970989f ,-0.5797241f ,-0.5148669f ,0.07037875f ,-0.8543763f ,-0.4374572f ,0.1297892f ,-0.88982356f ,-0.18131109f ,0.051226836f ,-0.98209065f ,0f ,0.068181135f ,-0.99767303f ,-0.18458232f ,0.096643664f ,-0.97805387f ,4.3059907e-9f ,0.10839605f ,-0.9941078f ,-0.856541f ,0.18085253f ,-0.48335275f ,-0.70849264f ,-0.16345395f ,-0.68652827f ,-0.57562566f ,0.05131732f ,-0.81610155f ,-0.5507551f ,0.08113294f ,-0.8307144f ,-0.16424806f ,0.044555172f ,-0.9854123f ,9.861194e-9f ,0.06115935f ,-0.99812806f ,-0.98433864f ,0.1505458f ,-0.09172469f ,-0.78911084f ,0.1488841f ,-0.5959342f ,-0.98591226f ,0.11788266f ,-0.11866227f ,-0.7719923f ,0.09313433f ,-0.6287717f ,-0.41485724f ,0.080614984f ,-0.90630835f ,-0.41140866f ,0.12938167f ,-0.9022214f ,-1.2762741e-9f ,0.11080725f ,-0.99384195f ,3.1704882e-8f ,0.08182034f ,-0.9966471f ,-0.18030816f ,0.11628073f ,-0.9767128f ,-0.1762797f ,0.084499106f ,-0.9807066f ,0.07853668f ,-0.9930886f ,0.08721852f ,1.0487422e-8f ,-0.95136374f ,0.3080698f ,-0.03003804f ,-0.99902314f ,-0.032410964f ,1.3164396e-8f ,-0.9999731f ,-0.00733398f ,0.12104633f ,-0.8713677f ,-0.4754641f ,0.15156007f ,-0.90834105f ,-0.3898027f ,0.027202213f ,-0.87402624f ,-0.48511672f ,0.0799998f ,-0.9172277f ,-0.3902479f ,-0.38483673f ,-0.44477305f ,-0.8087506f ,-0.42061323f ,-0.421142f ,-0.80356956f ,-0.8336375f ,-0.38604307f ,-0.394993f ,-0.9402175f ,-0.27956817f ,-0.19450665f ,0.17786296f ,-0.97215205f ,-0.15259516f ,0.048533734f ,-0.97996104f ,-0.19318625f ,-0.39646688f ,-0.7056283f ,-0.58728427f ,-0.4907258f ,-0.7470517f ,-0.44844404f ,-0.73272735f ,-0.5375162f ,-0.41735712f ,-0.9656581f ,-0.25786105f ,0.031815633f ,-0.41448388f ,-0.4597895f ,-0.7853641f ,-0.97935486f ,-0.19380508f ,-0.05747856f ,-0.611893f ,0.12540774f ,0.7809352f ,-0.5392739f ,-0.3410441f ,-0.76998216f ,-0.9032921f ,0.04941737f ,0.4261704f ,-0.8197559f ,0.07338875f ,0.5679915f ,-0.5804802f ,0.047208708f ,0.8129048f ,-0.74580973f ,-0.11198397f ,0.65667915f ,-0.4407255f ,0.05948941f ,0.89566857f ,-0.7093766f ,0.039250188f ,-0.70373595f ,-0.9747188f ,0.0728249f ,-0.21123438f ,-0.4156833f ,0.060552485f ,-0.9074915f ,-0.17277968f ,0.064244166f ,-0.98286307f ,6.404018e-8f ,0.06502212f ,-0.9978838f ,-0.5985895f ,-0.16700114f ,-0.7834547f ,-0.9447116f ,0.22094779f ,-0.2422853f ,-0.9656581f ,-0.25786105f ,0.031815633f ,-0.7462416f ,0.10389209f ,-0.6575181f ,-6.1256166e-8f ,-0.19730188f ,-0.9803428f ,-0.3599924f ,-0.09764347f ,-0.9278314f ,-0.050269496f ,-0.81185f ,-0.581698f ,-0.49092242f ,-0.7114255f ,-0.5028609f ,-0.9041657f ,0.2620301f ,0.33737913f ,-0.7423068f ,0.23378672f ,0.6279525f ,0.71682435f ,-0.33227912f ,-0.6129874f ,0.869543f ,-0.49294806f ,0.029951995f ,-0.97637874f ,0.19021994f ,-0.10247383f ,-0.87160814f ,0.10306622f ,0.47924602f ,-0.97637874f ,0.19021994f ,-0.10247383f ,0.869543f ,-0.49294806f ,0.029951995f ,-0.70849264f ,-0.16345395f ,-0.68652827f ,-0.97637874f ,0.19021994f ,-0.10247383f ,-0.97350717f ,0.22807094f ,-0.016353011f ,-0.5103787f ,0.67540586f ,-0.53229743f ,-0.565382f ,0.8217294f ,0.07144344f ,-0.59175855f ,0.53631413f ,0.6018214f ,-0.6153286f ,-0.017476236f ,0.788077f ,-0.5113012f ,0.040701453f ,-0.8584373f ,-0.031093484f ,-0.12744421f ,0.9913582f ,-0.74328816f ,0.17922689f ,0.64451575f ,0.020479862f ,0.041691072f ,0.9989207f ,-0.7471629f ,0.18798018f ,0.63750386f ,0.99658203f ,-0.07500962f ,0.03460899f ,0.75470334f ,-0.11262275f ,-0.6463273f ,0.9864151f ,-0.16423564f ,0.0034657416f ,0.7394011f ,-0.18420716f ,-0.6475753f ,-0.084399916f ,-0.17171326f ,-0.981525f ,-0.15008654f ,-0.079978086f ,-0.9854327f ,-0.8456094f ,0.019760346f ,-0.53343624f ,-0.857405f ,0.09955337f ,-0.5049215f ,-0.9861676f ,0.15729608f ,0.052263968f ,-0.980243f ,0.19610706f ,0.025799222f ,-0.10769506f ,0.14881672f ,0.98298293f ,0.6786768f ,0.026546365f ,0.73395723f ,0.00067254604f ,0.09083674f ,0.9958656f ,0.7746946f ,-0.070374355f ,0.6284072f ,-0.73916674f ,0.37121978f ,-0.56198627f ,-0.9312422f ,0.35718173f ,0.072174646f ,0.64785725f ,-0.4787199f ,0.592544f ,-0.17565365f ,-0.16347815f ,0.97078353f ,-0.75110453f ,0.18034005f ,0.6350743f ,-0.7844363f ,0.22101703f ,0.5794922f ,-0.7638099f ,0.1899283f ,0.6168645f ,0.9864151f ,-0.16423564f ,0.0034657416f ,0.99658203f ,-0.07500962f ,0.03460899f ,0.079669714f ,0.12179007f ,-0.9893533f ,0.7961358f ,-0.21083853f ,-0.56719935f ,0.93066114f ,-0.36584383f ,-0.005304338f ,0.93066114f ,-0.36584383f ,-0.005304338f ,0.96999234f ,-0.2424704f ,-0.017976115f ,0.73577887f ,-0.3672209f ,0.56901526f ,0.79110426f ,-0.16521677f ,0.5889461f ,0.98171103f ,-0.18579651f ,-0.041512102f ,0.7125309f ,-0.2285931f ,-0.6633588f ,0.96999234f ,-0.2424704f ,-0.017976115f ,0.7559284f ,-0.23695396f ,-0.6102664f ,0.9523243f ,-0.30158904f ,-0.046072673f ,0.7449073f ,-0.18139452f ,-0.6420352f ,-0.072900504f ,-0.1471259f ,-0.98642766f ,-0.02319017f ,-0.03423466f ,-0.99914473f ,-0.02725206f ,0.108362496f ,-0.9937379f ,-0.83249164f ,0.054442495f ,-0.5513564f ,-0.78567916f ,0.17312624f ,-0.5939156f ,-0.7663771f ,0.32810602f ,-0.5522795f ,-0.9864137f ,0.15517747f ,0.053925585f ,-0.97407264f ,0.20848191f ,0.08785188f ,-0.94446164f ,0.31932792f ,0.07760155f ,0.9523243f ,-0.30158904f ,-0.046072673f ,0.98171103f ,-0.18579651f ,-0.041512102f });
  }
}
private class MFVec3f81 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.99658203f ,-0.07500962f ,0.03460899f ,0.99499774f ,0.09989537f ,0.00071118196f ,0.75470334f ,-0.11262275f ,-0.6463273f ,0.76335496f ,0.10715742f ,-0.6370295f ,-0.07638115f ,0.11534336f ,-0.99038476f ,-0.15008654f ,-0.079978086f ,-0.9854327f ,-0.10769506f ,0.14881672f ,0.98298293f ,-0.07398919f ,0.115494356f ,0.99054873f ,0.6786768f ,0.026546365f ,0.73395723f ,0.714956f ,0.11060221f ,0.6903659f ,0.99499774f ,0.09989537f ,0.00071118196f ,0.99658203f ,-0.07500962f ,0.03460899f ,-0.81908023f ,0.10338852f ,-0.56428576f ,-0.857405f ,0.09955337f ,-0.5049215f ,-0.99519604f ,0.097898245f ,0.00093234354f ,-0.980243f ,0.19610706f ,0.025799222f ,-0.7844363f ,0.22101703f ,0.5794922f ,-0.77747655f ,0.10721816f ,0.6197052f ,-0.99229175f ,-0.12167438f ,0.02350393f ,-0.9211852f ,-0.24628875f ,-0.30126348f ,-0.92852825f ,-0.24781063f ,0.27645105f ,0.85909873f ,-0.329845f ,0.39134586f ,0.8598447f ,-0.2706569f ,-0.43291095f ,0.9604445f ,-0.2782496f ,-0.011116896f ,-0.9490481f ,-0.31355947f ,0.031437613f ,-0.051654533f ,-0.34524626f ,-0.93708956f ,-0.0536296f ,-0.30351153f ,0.95131737f ,-0.0536296f ,-0.30351153f ,0.95131737f ,0.9220895f ,-0.38538417f ,0.03507181f ,-0.051654533f ,-0.34524626f ,-0.93708956f ,0.94806176f ,-0.28973857f ,-0.1312646f ,-0.005701347f ,-0.350583f ,0.9365143f ,-0.060622517f ,-0.19989726f ,-0.97793967f ,-0.060622517f ,-0.19989726f ,-0.97793967f ,-0.9402506f ,-0.25544614f ,-0.22511387f ,-0.005701347f ,-0.350583f ,0.9365143f ,0.22931547f ,-0.6012805f ,0.76542544f ,-0.52009493f ,-0.6648387f ,0.5361818f ,0.20219989f ,-0.5332607f ,-0.8214307f ,-0.55798316f ,-0.61608547f ,-0.55596185f ,0.83585805f ,-0.004384326f ,-0.5489282f ,0.84483826f ,-0.059166793f ,0.53174025f ,0.20219989f ,-0.5332607f ,-0.8214307f ,0.22931547f ,-0.6012805f ,0.76542544f ,0.77127415f ,0.026577674f ,-0.6359479f ,0.90329754f ,-0.005975499f ,0.42897302f ,0.11642353f ,-0.679062f ,-0.7247899f ,0.17699544f ,-0.59868634f ,0.78118324f ,0.82899386f ,-0.012625132f ,-0.5591152f ,0.82618064f ,-0.042459678f ,0.5618032f ,0.15331617f ,-0.4916159f ,-0.85720944f ,0.18239479f ,-0.6131974f ,0.7685839f ,-0.56193143f ,-0.59896976f ,-0.5704983f ,0.11642353f ,-0.679062f ,-0.7247899f ,-0.59569013f ,-0.6934082f ,0.40538678f ,0.17699544f ,-0.59868634f ,0.78118324f ,0.18239479f ,-0.6131974f ,0.7685839f ,-0.48956537f ,-0.6659141f ,0.5629246f ,0.15331617f ,-0.4916159f ,-0.85720944f ,-0.52839327f ,-0.59682536f ,-0.60382134f ,-0.014818535f ,-0.108220495f ,-0.9940165f ,-0.8467241f ,-0.17030911f ,-0.5040368f ,-0.86310476f ,-0.17866501f ,0.4723653f ,-0.013466106f ,-0.108769f ,0.9939758f ,-0.013466106f ,-0.108769f ,0.9939758f ,0.7560248f ,-0.045975946f ,0.65292645f ,0.77141994f ,-0.047312036f ,-0.63456506f ,-0.014818535f ,-0.108220495f ,-0.9940165f ,-0.041429702f ,-0.15064494f ,0.9877195f ,0.8467047f ,-0.036464103f ,0.5308121f ,0.7843446f ,-0.21566468f ,-0.5816291f ,0.8192347f ,0.054774124f ,-0.5708365f ,0.06340955f ,-0.12421711f ,-0.990227f ,-0.053186927f ,-0.11974439f ,-0.991379f ,-0.9184239f ,-0.221078f ,0.328058f ,-0.041429702f ,-0.15064494f ,0.9877195f ,0.06340955f ,-0.12421711f ,-0.990227f ,-0.8636679f ,-0.16711852f ,-0.4755515f ,-0.053186927f ,-0.11974439f ,-0.991379f ,-0.8612779f ,-0.08125325f ,-0.50159574f ,0.72987354f ,-0.024508838f ,-0.6831428f ,-0.047417294f ,-0.08341886f ,-0.9953858f ,-0.020689324f ,-0.09185274f ,0.9955577f ,0.75165945f ,0.030855536f ,0.6588293f ,-0.015193266f ,-0.05608075f ,0.9983106f ,0.77853763f ,-0.07630372f ,0.6229422f ,-0.047417294f ,-0.08341886f ,-0.9953858f ,-0.82680714f ,-0.164125f ,-0.5380083f ,-0.8098848f ,-0.04507225f ,0.5848548f ,-0.81654847f ,-0.12280456f ,0.5640636f ,-0.015193266f ,-0.05608075f ,0.9983106f ,-0.020689324f ,-0.09185274f ,0.9955577f ,0.75244266f ,0.3856233f ,0.5339707f ,0.91933286f ,-0.3925412f ,-0.027176786f ,0.37447098f ,-0.9020598f ,0.21461515f ,0.4185268f ,-0.90812904f ,-0.011711857f ,0.8510676f ,-0.19566855f ,-0.48723495f ,0.39037287f ,-0.88108003f ,-0.2670339f ,-0.17014192f ,0.09654646f ,-0.9806786f ,-0.036667626f ,-0.6513891f ,-0.7578574f ,-0.88525087f ,-0.019447427f ,-0.46470723f ,-0.53674847f ,-0.7785854f ,-0.32512432f ,-0.17014192f ,0.09654646f ,-0.9806786f ,-0.036667626f ,-0.6513891f ,-0.7578574f ,-0.48613054f ,-0.82748365f ,0.28097692f ,-0.8601321f ,0.07606193f ,0.5043683f ,-0.098017566f ,-0.81659997f ,0.5688207f ,-0.27058673f ,0.52178663f ,0.80902505f ,-0.098017566f ,-0.81659997f ,0.5688207f ,-0.27058673f ,0.52178663f ,0.80902505f ,-0.53133327f ,-0.8470064f ,-0.016285768f ,-0.9976524f ,-0.0684278f ,0.0027373808f ,0.86814135f ,-0.49631667f ,0.00059366587f ,0.71613634f ,-0.3897175f ,-0.57902414f ,-0.07532337f ,-0.26549408f ,-0.9611656f ,-0.068882f ,-0.4344685f ,0.89804924f ,0.62822664f ,-0.49346623f ,0.60151684f ,0.86814135f ,-0.49631667f ,0.00059366587f ,-0.7656864f ,-0.38376838f ,-0.5161843f ,-0.8868073f ,-0.46213716f ,0.0014187981f ,-0.7016487f ,-0.45082766f ,0.55176395f ,0.8250937f ,-0.27201378f ,-0.495206f ,-0.27403182f ,-0.047883734f ,-0.9605279f ,-0.5226655f ,-0.3360059f ,0.78353095f ,0.8683405f ,-0.4642677f ,0.17447132f ,-0.27403182f ,-0.047883734f ,-0.9605279f ,-0.9343813f ,-0.05322683f ,-0.35227636f ,-0.88158405f ,-0.015792435f ,0.4717628f ,-0.5226655f ,-0.3360059f ,0.78353095f ,0.39037287f ,-0.88108003f ,-0.2670339f ,0.4185268f ,-0.90812904f ,-0.011711857f ,-0.036667626f ,-0.6513891f ,-0.7578574f ,-0.53674847f ,-0.7785854f ,-0.32512432f ,-0.53133327f ,-0.8470064f ,-0.016285768f ,-0.48613054f ,-0.82748365f ,0.28097692f ,-0.098017566f ,-0.81659997f ,0.5688207f ,0.37447098f ,-0.9020598f ,0.21461515f ,0.4185268f ,-0.90812904f ,-0.011711857f ,0.5601571f ,-0.06889831f ,0.8255162f ,-0.2579005f ,-0.09785053f ,0.9612037f ,0.75311035f ,-0.6462434f ,-0.123265065f ,-0.78265613f ,-0.5200266f ,0.3420843f ,-0.91399974f ,0.0058021075f ,0.40567335f ,-0.7542483f ,0.11962529f ,0.64559984f ,-0.998462f ,-0.05323002f ,0.015499791f ,-0.89782894f ,0.0034070995f ,-0.44033116f ,-0.2183337f ,0.05258242f ,-0.9744565f ,-0.2183337f ,0.05258242f ,-0.9744565f ,0.8682667f ,-0.1469044f ,-0.47384816f ,0.9605481f ,-0.27131414f ,-0.061123088f ,0.974587f ,-0.18900707f ,0.12023547f ,-0.92273235f ,-0.008990415f ,0.38533634f ,-0.16592073f ,0.31244546f ,0.93533325f ,-0.95563096f ,0.10408865f ,0.27556333f ,-0.24056424f ,0.65943843f ,0.7122288f ,0.53455186f ,0.26293367f ,0.8031938f ,0.5725717f ,0.57049155f ,0.58881325f ,0.96845114f ,-0.22435308f ,-0.10848039f ,0.9675852f ,-0.21718803f ,-0.12887286f ,0.8683405f ,-0.4642677f ,0.17447132f ,0.33632216f ,-0.6214501f ,-0.7075925f ,-0.5226655f ,-0.3360059f ,0.78353095f ,-0.80863327f ,-0.39866754f ,-0.43263903f ,0.226321f ,-0.6927888f ,-0.68470615f ,-0.5566872f ,-0.54300296f ,-0.62868696f ,0.017773774f ,-0.112178326f ,-0.99352914f ,-0.7924386f ,-0.3796757f ,-0.47737548f ,-0.783901f ,-0.37454247f ,0.49519414f ,0.01966518f ,-0.11257044f ,0.99344915f ,0.01966518f ,-0.11257044f ,0.99344915f ,0.017773774f ,-0.112178326f ,-0.99352914f ,-0.024301631f ,-0.23096715f ,0.9726581f ,0.05388f ,-0.11006887f ,-0.9924626f ,-0.81019294f ,-0.48528767f ,0.32876045f ,-0.024301631f ,-0.23096715f ,0.9726581f ,0.05388f ,-0.11006887f ,-0.9924626f ,-0.77724195f ,-0.4451627f ,-0.444663f ,-0.044708274f ,-0.084659636f ,-0.99540645f ,-0.0046746135f ,-0.10106023f ,0.99486935f ,-0.044708274f ,-0.084659636f ,-0.99540645f ,-0.7730459f ,-0.37723237f ,-0.50999576f ,-0.7606797f ,-0.36282608f ,0.5382598f ,-0.0046746135f ,-0.10106023f ,0.99486935f ,0.9675852f ,-0.21718803f ,-0.12887286f ,0.96845114f ,-0.22435308f ,-0.10848039f ,0.75311035f ,-0.6462434f ,-0.123265065f ,-0.78265613f ,-0.5200266f ,0.3420843f ,-0.92273235f ,-0.008990415f ,0.38533634f ,-0.95563096f ,0.10408865f ,0.27556333f ,-0.9402175f ,-0.27956817f ,-0.19450665f ,-0.8336375f ,-0.38604307f ,-0.394993f ,-0.97935486f ,-0.19380508f ,-0.05747856f ,-0.9032921f ,0.04941737f ,0.4261704f ,-0.611893f ,0.12540774f ,0.7809352f ,-0.54999715f ,0.09261785f ,0.8300151f ,-0.5948287f ,0.20061344f ,0.778417f ,-0.53570724f ,0.072684854f ,0.8412697f ,-0.517356f ,0.048980467f ,0.8543675f ,2.458226e-8f ,-0.64266586f ,-0.76614654f ,-6.1256166e-8f ,-0.19730188f ,-0.9803428f ,-0.32203233f ,-0.6220549f ,-0.71368265f ,-0.3599924f ,-0.09764347f ,-0.9278314f ,-0.7462416f ,0.10389209f ,-0.6575181f ,-0.53315467f ,-0.63321507f ,-0.561057f ,-0.9447116f ,0.22094779f ,-0.2422853f ,-0.6960103f ,0.1077357f ,0.70990336f ,-0.61930805f ,0.4152192f ,0.66637117f ,-0.95328504f ,0.14384192f ,0.26562577f ,-0.85803753f ,0.42845967f ,0.2831854f ,-0.5948287f ,0.20061344f ,0.778417f ,-0.9524405f ,0.2693864f ,0.14243613f ,-0.74580973f ,-0.11198397f ,0.65667915f ,-0.68800247f ,-0.50811356f ,0.5181441f ,-0.944657f ,-0.13185185f ,0.30039698f ,-0.8422292f ,-0.49604774f ,0.21115525f ,-0.9929886f ,0.10829769f ,-0.047385227f ,-0.4407255f ,0.05948941f ,0.89566857f ,-0.944657f ,-0.13185185f ,0.30039698f ,-0.9216925f ,0.08347823f ,0.3788331f ,-0.9524405f ,0.2693864f ,0.14243613f ,-0.99461687f ,0.07311831f ,0.07342317f ,-0.9929886f ,0.10829769f ,-0.047385227f ,-0.7542483f ,0.11962529f ,0.64559984f ,-0.27058673f ,0.52178663f ,0.80902505f ,-0.7542483f ,0.11962529f ,0.64559984f ,0.75244266f ,0.3856233f ,0.5339707f ,0.974587f ,-0.18900707f ,0.12023547f ,0.974587f ,-0.18900707f ,0.12023547f });
  }
}
private class MFVec4f82 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.08195605f ,-0.9818393f ,-0.17109945f ,1f ,0.044191908f ,-0.9898584f ,-0.13500936f ,1f ,0.07374078f ,-0.9862093f ,-0.14816718f ,1f ,0.03331254f ,-0.9931481f ,-0.11201429f ,1f ,0.3474818f ,-0.8913636f ,-0.29107967f ,1f ,0.3318853f ,-0.92413235f ,-0.18929228f ,1f ,0.19167313f ,-0.97146934f ,-0.13967375f ,1f ,0.33580104f ,-0.9344874f ,-0.118199505f ,1f ,0.34038404f ,-0.89749813f ,-0.28042114f ,1f ,0.6943612f ,-0.6921078f ,-0.1971022f ,1f ,0.55617684f ,-0.73135287f ,-0.39470285f ,1f ,0.8161169f ,-0.54475176f ,-0.19286974f ,1f ,0.6291027f ,-0.73117363f ,-0.26384658f ,1f ,0.41156217f ,-0.885555f ,-0.21542759f ,1f ,0.5995598f ,-0.78109854f ,-0.1743936f ,1f ,0.45347854f ,-0.88639957f ,-0.09302203f ,1f ,0.49827078f ,-0.8301661f ,-0.2501008f ,1f ,0.5967505f ,-0.7426436f ,-0.30392337f ,1f ,0.5003177f ,-0.78021157f ,-0.37543604f ,1f ,0.71360004f ,-0.69578236f ,-0.081620656f ,1f ,0.599084f ,-0.79515296f ,-0.09396859f ,1f ,0.49026346f ,-0.81909144f ,-0.29787734f ,1f ,0.6843164f ,-0.68015f ,-0.2628824f ,1f ,0.13487042f ,-0.98026f ,-0.14456926f ,1f ,0.09146721f ,-0.9923462f ,-0.08296246f ,1f ,-0.031616617f ,-0.9973109f ,-0.06611751f ,1f ,0.13831198f ,-0.96500707f ,-0.22278063f ,1f ,0.5440424f ,-0.83295524f ,-0.10101229f ,1f ,0.6479489f ,-0.7614875f ,-0.0172937f ,1f ,0.35613552f ,-0.9289753f ,-0.100859486f ,1f ,0.3055274f ,-0.9429597f ,-0.132212f ,1f ,0.2608446f ,-0.952425f ,-0.15762873f ,1f ,0.23057516f ,-0.9563302f ,-0.17963247f ,1f ,0.15555495f ,-0.9709682f ,-0.18172364f ,1f ,0.15034002f ,-0.9725505f ,-0.17760463f ,1f ,0.103778034f ,-0.97952473f ,-0.17251517f ,1f ,0.10427467f ,-0.9785467f ,-0.17768896f ,1f ,-0.0024693452f ,-0.9893522f ,-0.14552036f ,1f ,0.010257947f ,-0.9970589f ,-0.07595044f ,1f ,-0.010965518f ,-0.998475f ,-0.05410589f ,1f ,0.008193337f ,-0.9952704f ,-0.0967986f ,1f ,0.004247386f ,-0.99766403f ,-0.06818051f ,1f ,0.00785292f ,-0.9940771f ,-0.108392686f ,1f ,0.08801243f ,-0.97405636f ,-0.20849009f ,1f ,-0.013691978f ,-0.99728405f ,-0.07236772f ,1f ,-0.21489184f ,-0.9765788f ,0.010744264f ,1f ,-0.015668115f ,-0.9940841f ,-0.10747653f ,1f ,0.0013027841f ,-0.9989884f ,-0.044951864f ,1f ,0.0070862514f ,-0.998103f ,-0.06115782f ,1f ,0.13666639f ,-0.9803331f ,-0.1423705f ,1f ,0.09185792f ,-0.97447115f ,-0.20486157f ,1f ,0.088178f ,-0.9875891f ,-0.12997085f ,1f ,-0.004183291f ,-0.9884416f ,-0.15154517f ,1f ,0.028463356f ,-0.9967298f ,-0.07562891f ,1f ,0.023050645f ,-0.99103403f ,-0.13160673f ,1f ,0.0071851984f ,-0.9963926f ,-0.08455913f ,1f ,-0.008854937f ,-0.9966081f ,-0.08181713f ,1f ,0.00031998273f ,-0.99299455f ,-0.11816003f ,1f ,0.00875752f ,-0.9938038f ,-0.110802986f ,1f ,-0.9909825f ,0.08729767f ,0.10165118f ,1f ,-0.9954649f ,-0.032827765f ,0.08928608f ,1f ,-0.98801863f ,0.04754596f ,0.14682879f ,1f ,-0.99341476f ,-0.00084029284f ,0.11457043f ,1f ,-0.99672234f ,0.07833439f ,0.02021049f ,1f ,-0.98844576f ,0.14012583f ,0.057790484f ,1f ,-0.99944216f ,0.033186413f ,-0.0037491529f ,1f ,-0.99258965f ,0.11139441f ,0.04855008f ,1f ,-0.34054214f ,-0.76381034f ,-0.54829264f ,1f ,-0.8668103f ,-0.44801265f ,-0.2189168f ,1f ,-0.5407157f ,-0.7162238f ,-0.44119164f ,1f ,-0.8818649f ,-0.43581104f ,-0.17995289f ,1f ,-0.998416f ,0.042086545f ,0.037340593f ,1f ,-0.9830027f ,0.16835332f ,0.07323127f ,1f ,-0.2019109f ,-0.82185936f ,-0.5327095f ,1f ,-0.869121f ,-0.38318864f ,-0.31272218f ,1f ,-0.6805078f ,-0.5747257f ,-0.4545324f ,1f ,-0.9179132f ,-0.31569305f ,-0.24036084f ,1f ,-0.19836648f ,-0.8666169f ,-0.45784932f ,1f ,-0.8719771f ,-0.44767177f ,-0.19810645f ,1f ,-0.38740343f ,-0.8132859f ,0.43414846f ,-1f ,0.09285251f ,-0.9923191f ,-0.08173985f ,1f ,-0.7927209f ,-0.5141593f ,-0.32746565f ,1f ,0.21010587f ,-0.9611436f ,-0.17904912f ,1f ,0.10740777f ,-0.9526571f ,-0.2844435f ,1f ,0.26563948f ,-0.95467997f ,-0.13424604f ,1f ,0.30576634f ,-0.9480787f ,-0.08748592f ,1f ,0.03473175f ,-0.98328495f ,-0.17873016f ,1f ,-0.03875908f ,-0.9947651f ,-0.09455185f ,1f ,-0.023812128f ,-0.9967147f ,-0.07741327f ,1f ,-0.0179807f ,-0.9974986f ,-0.06836167f ,1f ,-0.016785428f ,-0.9977433f ,-0.06501296f ,1f ,-0.7228877f ,-0.5340082f ,-0.43848458f ,1f ,0.18692945f ,-0.9699611f ,-0.15566908f ,1f ,-0.2425485f ,-0.9385918f ,-0.24538898f ,1f ,0.06436855f ,-0.9943792f ,-0.08406415f ,1f ,0.075403735f ,-0.9775518f ,0.19674018f ,1f ,0.03659583f ,-0.99226475f ,0.11862325f ,1f ,-0.99869746f ,-0.03576239f ,-0.03639413f ,1f ,-0.8711594f ,-0.4066664f ,-0.2751433f ,1f ,0.3151947f ,-0.94229144f ,-0.11286811f ,1f ,0.37302268f ,-0.9226921f ,-0.097434066f ,1f ,0.54140246f ,-0.81923723f ,-0.18903345f ,1f ,0.3928121f ,-0.727117f ,-0.5630271f ,1f ,-0.0028647387f ,-0.46283245f ,-0.8864413f ,-1f ,0.43413183f ,-0.6163335f ,-0.6570104f ,1f ,0.21589352f ,-0.8399588f ,0.49785465f ,-1f ,0.5056321f ,-0.5610677f ,0.65539247f ,1f ,0.49336153f ,-0.86978775f ,0.007979899f ,1f ,0.22110151f ,-0.9571636f ,-0.18695505f ,1f ,0.16148573f ,-0.9575432f ,-0.2388169f ,1f ,0.81347394f ,-0.5411801f ,-0.21303561f ,1f ,0.72262156f ,-0.67239845f ,-0.16030739f ,1f ,0.76674765f ,-0.6049304f ,-0.21484254f ,1f ,0.5420607f ,-0.7164752f ,-0.43912813f ,1f ,0.56917226f ,-0.7644453f ,0.30276448f ,1f ,0.27905333f ,-0.9592579f ,-0.04419851f ,1f ,0.36008155f ,-0.9191564f ,-0.15966527f ,1f ,0.33594325f ,-0.94075096f ,0.04615083f ,1f ,0.41013655f ,-0.9028647f ,-0.12893166f ,1f ,0.07686759f ,-0.9954733f ,0.05589537f ,1f ,0.1642231f ,-0.9853835f ,0.045280762f ,1f ,0.1917681f ,-0.9799996f ,-0.05315843f ,1f ,0.25553742f ,-0.9666532f ,-0.01680152f ,1f ,0.32956976f ,-0.9247895f ,0.19012688f ,1f ,0.32801563f ,-0.93623924f ,0.12594402f ,1f ,0.16144408f ,-0.96198183f ,0.22028787f ,1f ,0.15353602f ,-0.98569447f ,0.06952137f ,1f ,0.20654655f ,-0.9651942f ,0.16043267f ,1f ,0.19400649f ,-0.9786582f ,0.067747116f ,1f ,0.31839225f ,-0.9418209f ,0.107702166f ,1f ,0.30746302f ,-0.94760734f ,0.08664259f ,1f ,0.15471026f ,-0.9717551f ,0.17820476f ,1f ,0.18048085f ,-0.97705704f ,0.113075994f ,1f ,0.37855378f ,-0.919113f ,-0.10921705f ,1f ,0.36436802f ,-0.9100554f ,-0.19757351f ,1f ,0.3399337f ,-0.87779856f ,-0.33751285f ,1f ,0.4465354f ,-0.8656071f ,-0.22656274f ,1f ,0.4190558f ,-0.8735606f ,-0.24755637f ,1f ,0.26873124f ,-0.9632085f ,0.003594385f ,1f ,0.2511635f ,-0.9678574f ,-0.012997608f ,1f ,0.16422272f ,-0.98641616f ,-0.0037594251f ,1f ,0.07552727f ,-0.997047f ,0.01388941f ,1f ,0.49305332f ,-0.8577804f ,-0.14529748f ,1f ,0.39468238f ,-0.89144015f ,-0.22262165f ,1f ,0.3631691f ,-0.9219002f ,-0.13493834f ,1f ,0.33557057f ,-0.84769225f ,-0.41086522f ,1f ,0.2416362f ,-0.9531722f ,-0.18186498f ,1f ,0.20813353f ,-0.97808665f ,0.0051941667f ,1f ,0.2966179f ,-0.9300868f ,-0.21669424f ,1f ,0.18485047f ,-0.9824332f ,0.025603788f ,1f ,0.2426244f ,-0.9700957f ,-0.0069141006f ,1f ,0.308796f ,-0.95112026f ,-0.0039303596f ,1f ,0.35812604f ,-0.9300215f ,-0.082497306f ,1f ,0.3049025f ,-0.9460964f ,-0.10925296f ,1f ,0.37280977f ,-0.9112387f ,-0.1750914f ,1f ,0.4079928f ,-0.91207665f ,0.040720865f ,1f ,0.3462496f ,-0.92380726f ,0.16337511f ,1f ,0.45903987f ,-0.88444924f ,-0.08385644f ,1f ,0.18516526f ,-0.9652771f ,0.18426643f ,1f ,0.25909814f ,-0.96387273f ,0.061787214f ,1f ,0.34857488f ,-0.93454933f ,-0.07150634f ,1f ,0.15388715f ,-0.98771024f ,0.027335342f ,1f ,0.21391286f ,-0.9751495f ,-0.057660628f ,1f ,0.32787263f ,-0.9315944f ,-0.15694481f ,1f ,0.30041376f ,-0.9006459f ,-0.31398806f ,1f ,0.18778856f ,-0.9808974f ,-0.050752383f ,1f ,0.03769146f ,-0.04007621f ,0.9984855f ,1f ,-0.6322789f ,-0.13801499f ,0.76234853f ,1f ,-0.005201236f ,-0.058912463f ,0.99824965f ,1f ,-0.64554286f ,-0.090294994f ,0.7583676f ,1f ,-0.97630596f ,-0.16914563f ,-0.13496862f ,1f ,-0.98375f ,-0.15315117f ,-0.09370599f ,1f ,0.96652263f ,0.215937f ,-0.13858303f ,1f ,0.7310144f ,0.120785736f ,0.6715869f ,1f ,0.9760365f ,0.19543768f ,-0.0956925f ,1f ,0.6989965f ,0.13503209f ,0.70226085f ,1f ,0.034158938f ,0.0072741676f ,0.99938995f ,1f ,0.008841073f ,0.080965795f ,0.99667776f ,1f ,-0.5006044f ,-0.066253684f ,-0.8631371f ,1f ,-0.55724055f ,-0.09039562f ,-0.825416f ,1f ,0.017795183f ,0.042468f ,-0.9989394f ,1f ,-0.0013769125f ,0.023518285f ,-0.99972254f ,1f ,0.5603908f ,0.14777187f ,-0.8149391f ,1f ,0.60621095f ,0.13459024f ,-0.7838327f ,1f ,0.022948802f ,-0.005961728f ,-0.9997189f ,1f ,0.27071536f ,-0.057639975f ,-0.9609324f ,1f ,-0.3030414f ,0.031597666f ,-0.95245343f ,1f ,0.36938184f ,0.12968184f ,0.9201847f ,1f ,0.0107874125f ,-0.077067174f ,0.9969676f ,1f ,-0.35121176f ,-0.30186406f ,0.8863004f ,1f ,0.5203491f ,-0.80462164f ,-0.2860434f ,1f ,-0.05795102f ,-0.27171326f ,-0.96063197f ,1f ,-0.8246114f ,0.51456404f ,-0.2350322f ,1f ,0.47879866f ,0.84384584f ,0.24223158f ,1f ,-0.3675527f ,-0.87905073f ,0.30360305f ,1f ,-0.058419973f ,0.22822225f ,0.97185487f ,1f ,-0.122435935f ,-0.9738324f ,0.1914678f ,1f ,0.035201635f ,-0.50570375f ,0.8619887f ,1f ,0.6650944f ,0.70068264f ,0.25825045f ,1f ,-0.7209727f ,0.6687992f ,-0.18139999f ,1f ,0.61605227f ,-0.7364706f ,-0.27944726f ,1f ,-0.13203406f ,0.33587432f ,-0.9326069f ,1f ,0.38145474f ,-0.7789923f ,-0.4976579f ,1f ,-0.47563547f ,0.7866649f ,-0.39361086f ,1f ,0.3566845f ,-0.40133977f ,-0.84362465f ,1f ,-0.53140754f ,0.2493016f ,-0.80960166f ,1f ,0.7239963f ,0.4202357f ,0.5470204f ,1f ,0.51139873f ,0.20275973f ,0.8350808f ,1f ,-0.5098496f ,-0.65881073f ,0.55319244f ,1f ,-0.54079276f ,-0.16512695f ,0.82478863f ,1f });
  }
}
private class MFVec4f83 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.16110103f ,0.7653865f ,0.62308115f ,1f ,0.2970295f ,0.71277916f ,0.63538915f ,1f ,-0.9639716f ,-0.0984759f ,0.2471057f ,1f ,-0.56081027f ,0.44417977f ,0.6987103f ,1f ,-0.18253937f ,-0.93888396f ,0.2918498f ,1f ,0.5132191f ,-0.7809114f ,0.35606685f ,1f ,0.43449858f ,-0.6828001f ,0.5873629f ,1f ,0.9250811f ,-0.37185246f ,-0.077141546f ,1f ,-0.26449412f ,-0.73558336f ,-0.62366664f ,1f ,-0.89520174f ,0.3878241f ,-0.21955971f ,1f ,-0.23784165f ,-0.6343478f ,-0.7355504f ,1f ,-0.7902565f ,-0.1849648f ,-0.58419406f ,1f ,0.8872237f ,-0.4395426f ,-0.14013043f ,1f ,0.3649156f ,0.7779841f ,-0.5114465f ,1f ,0.7675329f ,0.022742366f ,-0.64060616f ,1f ,-0.017435214f ,0.7034367f ,-0.7105441f ,1f ,-0.47175142f ,0.19768746f ,-0.8592848f ,1f ,-0.9409924f ,0.3346446f ,-0.05046128f ,1f ,0.43760303f ,-0.20231874f ,-0.8761112f ,1f ,0.8933462f ,-0.44523394f ,-0.060823824f ,1f ,0.58911806f ,0.38692522f ,0.7093862f ,1f ,0.82443255f ,0.5637013f ,0.05051523f ,1f ,-0.56635f ,-0.40358984f ,0.71858406f ,1f ,-0.78385055f ,-0.6184512f ,0.05564669f ,1f ,0.27405226f ,0.8252413f ,0.49383408f ,1f ,0.4321762f ,0.89400595f ,0.11822454f ,1f ,-0.61689293f ,0.3696786f ,0.69482434f ,1f ,-0.45028034f ,0.554968f ,0.6994699f ,1f ,-0.9794512f ,0.1871565f ,-0.075152844f ,1f ,-0.9391664f ,0.34303632f ,0.017108275f ,1f ,0.12393925f ,-0.6267209f ,-0.7693245f ,1f ,0.57781565f ,-0.80287695f ,-0.14668949f ,1f ,-0.4800939f ,-0.45350558f ,-0.75089467f ,1f ,-0.49084976f ,-0.493424f ,-0.7180524f ,1f ,-0.9232925f ,-0.38408464f ,-0.0031421913f ,1f ,-0.95352304f ,-0.28533065f ,0.09685174f ,1f ,-0.15468776f ,-0.9675121f ,0.19998038f ,1f ,-0.23200455f ,-0.97017443f ,0.07025396f ,1f ,0.47532654f ,-0.71982634f ,0.5058803f ,1f ,0.35418898f ,-0.8237651f ,0.44267505f ,1f ,0.74057084f ,-0.6701953f ,-0.04891932f ,1f ,0.6483069f ,-0.75680894f ,-0.08329799f ,1f ,-0.26363865f ,0.73184127f ,-0.62841314f ,1f ,-0.6556619f ,0.74917823f ,-0.09401915f ,1f ,0.5041713f ,0.56311643f ,-0.6547605f ,1f ,0.51513535f ,0.5960115f ,-0.61595935f ,1f ,0.7724332f ,0.63464636f ,0.023895906f ,1f ,0.8533743f ,0.5204185f ,0.030280577f ,1f ,0.11873391f ,-0.067496285f ,0.9906294f ,1f ,0.005555639f ,-0.082010075f ,0.996616f ,1f ,0.5973119f ,-0.05764341f ,0.7999348f ,1f ,0.62046725f ,0.14294922f ,0.7710941f ,1f ,-0.47952378f ,-0.08833276f ,0.87307185f ,1f ,-0.39180452f ,-0.1034814f ,0.9142105f ,1f ,-0.968905f ,-0.16504319f ,-0.18434754f ,1f ,-0.876053f ,-0.3858353f ,0.28924444f ,1f ,-0.45876977f ,-0.20096883f ,-0.86552984f ,1f ,-0.9311689f ,-0.30989835f ,-0.19206133f ,1f ,-0.65869606f ,-0.14586528f ,-0.7381347f ,1f ,-0.99293464f ,0.06189511f ,-0.10124132f ,1f ,0.45220655f ,-0.036931686f ,-0.8911484f ,1f ,0.8890626f ,-0.1849747f ,-0.4187507f ,1f ,0.47287083f ,0.25179207f ,-0.8443897f ,1f ,0.7347354f ,0.43108073f ,-0.5237684f ,1f ,0.9619077f ,-0.11254643f ,-0.24913222f ,1f ,0.9780446f ,0.18466741f ,0.09657493f ,1f ,0.0010616872f ,-0.024513366f ,-0.999699f ,1f ,-0.086155824f ,-0.034902018f ,-0.99567014f ,1f ,-0.0004471013f ,0.001978264f ,0.999998f ,1f ,-0.57824874f ,-0.13330151f ,0.804897f ,1f ,-0.9855282f ,-0.16661422f ,-0.031210287f ,1f ,0.9911512f ,0.13218766f ,-0.012071795f ,1f ,0.68379176f ,0.018631326f ,0.7294394f ,1f ,0.08888322f ,-0.15429474f ,0.98401874f ,1f ,-0.58803356f ,-0.092441775f ,-0.8035366f ,1f ,0.008095376f ,0.012464681f ,-0.9998896f ,1f ,0.6561476f ,0.10693088f ,-0.7470182f ,1f ,-0.5361634f ,0.100550234f ,0.83810407f ,1f ,-0.96164495f ,-0.0011092604f ,-0.2742952f ,1f ,0.4279426f ,-0.52353716f ,0.73673207f ,1f ,0.6375373f ,-0.45612684f ,-0.620882f ,1f ,-0.3537189f ,-0.25681975f ,-0.89940345f ,1f ,-0.9045705f ,-0.35199794f ,-0.2405199f ,1f ,0.4469338f ,0.34945348f ,-0.823488f ,1f ,0.83466095f ,0.38889816f ,-0.3899994f ,1f ,-0.6275853f ,0.042451106f ,0.77738965f ,1f ,-0.04983035f ,0.010085215f ,0.9987068f ,1f ,-0.9909954f ,-0.12142814f ,0.056421414f ,1f ,-0.7218745f ,-0.22427109f ,-0.6546753f ,1f ,-0.17470051f ,-0.090739764f ,-0.9804316f ,1f ,0.4376701f ,-0.047752813f ,-0.8978667f ,1f ,0.9653214f ,-0.060955178f ,-0.2538488f ,1f ,0.70311594f ,-0.12535655f ,0.69993836f ,1f ,0.29369137f ,-0.14753275f ,0.94444674f ,1f ,0.13213432f ,0.6758505f ,0.72509766f ,1f ,-0.3169256f ,0.9312452f ,0.17983499f ,1f ,-0.4861933f ,0.4204781f ,0.76603806f ,1f ,-0.16338511f ,0.98614895f ,-0.028560555f ,1f ,0.57868713f ,0.3434366f ,-0.73971117f ,1f ,0.39419922f ,0.22383732f ,-0.89134955f ,1f ,0.0153177f ,-0.0038271295f ,-0.99987537f ,1f ,-0.42814434f ,-0.22699803f ,-0.8747368f ,1f ,-0.9200183f ,-0.32188758f ,-0.22350591f ,1f ,-0.96679467f ,-0.124240704f ,-0.22332132f ,1f ,-0.47272095f ,-0.044750698f ,0.88007516f ,1f ,-0.05067108f ,-0.045370143f ,0.99768436f ,1f ,0.1460719f ,-0.12927549f ,0.980791f ,1f ,0.04454299f ,0.99551713f ,-0.083436586f ,1f ,0.067040145f ,0.8340837f ,-0.54754925f ,1f ,-0.14121154f ,0.9462331f ,-0.29103684f ,1f ,-0.124040596f ,0.7486471f ,-0.65126145f ,1f ,-0.022659987f ,0.7069059f ,-0.7069446f ,1f ,-0.15199493f ,0.9049667f ,-0.39740768f ,1f ,-0.16359253f ,0.9007346f ,-0.40238622f ,1f ,-0.21685645f ,0.97605944f ,-0.016770909f ,1f ,0.3817986f ,-0.40119344f ,0.8326307f ,1f ,-0.7386859f ,-0.63732916f ,0.21944183f ,1f ,0.10018636f ,-0.77070826f ,0.6292627f ,1f ,0.023549527f ,-0.712865f ,0.70090586f ,1f ,-0.0015473533f ,-0.7574718f ,0.6528662f ,1f ,-0.039859317f ,-0.6957696f ,0.7171582f ,1f ,-0.4624669f ,0.13630189f ,-0.87609714f ,1f ,-0.86834884f ,0.49431565f ,-0.04027841f ,1f ,0.43157735f ,-0.24467914f ,-0.86825866f ,1f ,0.82718074f ,-0.55996054f ,-0.047076568f ,1f ,0.8905442f ,0.44969705f ,0.06858453f ,1f ,-0.85537034f ,-0.51281863f ,0.07320411f ,1f ,0.5618121f ,0.80792904f ,0.177814f ,1f ,-0.9324276f ,0.36120272f ,0.010561598f ,1f ,-0.04753409f ,-0.61341536f ,-0.7883287f ,1f ,0.36753348f ,-0.90274334f ,-0.223548f ,1f ,-0.62142223f ,-0.43231386f ,-0.6534059f ,1f ,-0.9971786f ,-0.046094216f ,0.05924797f ,1f ,-0.32723442f ,-0.942672f ,0.06547691f ,1f ,0.68867135f ,-0.7210289f ,-0.076478966f ,1f ,-0.076372474f ,0.74277127f ,-0.66517526f ,1f ,-0.482986f ,0.8703806f ,-0.09571925f ,1f ,0.6484886f ,0.4615388f ,-0.6053466f ,1f ,0.98665f ,0.16242263f ,0.011863029f ,1f ,0.078319125f ,-0.74319583f ,0.66447437f ,1f ,0.04679421f ,-0.59128314f ,0.8051054f ,1f ,0.27821517f ,-0.482626f ,0.8304629f ,1f ,-0.5399953f ,-0.29389247f ,0.78869027f ,1f ,-0.23045042f ,-0.8142301f ,0.5328433f ,1f ,-0.11408239f ,-0.7316986f ,0.6720137f ,1f ,-0.27317345f ,-0.9601217f ,0.059520055f ,1f ,-0.2495733f ,-0.9012795f ,0.3541305f ,1f ,-0.1940462f ,-0.9809915f ,0.001407424f ,1f ,0.33060345f ,-0.9375136f ,-0.108488515f ,1f ,0.13895182f ,-0.9735f ,-0.18163212f ,1f ,0.3640328f ,-0.9305966f ,-0.03834318f ,1f ,0.31544447f ,-0.9432531f ,-0.10377101f ,1f ,0.29762962f ,-0.9486021f ,-0.1075676f ,1f ,0.28623056f ,-0.95076525f ,-0.11881792f ,1f ,-0.975228f ,-0.16947354f ,0.14215928f ,1f ,-0.9217914f ,-0.37790105f ,-0.08655329f ,1f ,-0.9519336f ,-0.30028352f ,0.060434535f ,1f ,-0.820469f ,-0.50654787f ,-0.26502824f ,1f ,-0.39980075f ,-0.7198073f ,-0.56748295f ,1f ,-0.8353475f ,-0.49900973f ,-0.23061652f ,1f ,-0.012208305f ,-0.71468145f ,-0.69934356f ,1f ,0.7180231f ,-0.09956124f ,-0.6888616f ,1f ,0.24799871f ,0.12937298f ,-0.96008295f ,1f ,0.6870294f ,0.12424965f ,-0.7159279f ,1f ,0.2691873f ,0.094399f ,-0.9584504f ,1f ,0.18564165f ,-0.14227638f ,-0.9722626f ,1f ,0.6990966f ,0.34888932f ,-0.6241315f ,1f ,0.65084565f ,-0.087657206f ,-0.7541328f ,1f ,0.32133183f ,0.18738885f ,-0.928241f ,1f ,0.61398387f ,0.02692246f ,-0.78885937f ,1f ,0.26098904f ,0.032437522f ,-0.9647967f ,1f ,-0.05472644f ,0.06585127f ,-0.9963276f ,1f ,0.8614096f ,0.25259706f ,-0.44064522f ,1f ,0.16259551f ,-0.9697821f ,-0.18189378f ,1f ,-0.0520894f ,-0.9643454f ,-0.2594702f ,1f ,0.2918986f ,-0.9407325f ,-0.1726778f ,1f ,0.09700007f ,-0.9755944f ,-0.19699386f ,1f ,0.08626019f ,-0.9768615f ,-0.19570637f ,1f ,-0.29449955f ,-0.81717324f ,0.49547768f ,1f ,0.27323544f ,0.83689433f ,-0.4742892f ,1f ,-0.003949136f ,0.8409694f ,-0.54106843f ,1f ,-0.089565136f ,0.7432609f ,-0.6629791f ,1f ,-0.2239484f ,0.8095542f ,-0.54265016f ,1f ,0.20010526f ,-0.49329954f ,0.8465303f ,1f ,-0.081956044f ,-0.9818393f ,-0.17109945f ,-1f ,-0.073740795f ,-0.9862093f ,-0.14816716f ,-1f ,-0.044191908f ,-0.9898583f ,-0.13500935f ,-1f ,-0.033312555f ,-0.9931481f ,-0.1120143f ,-1f ,-0.2563012f ,-0.94099665f ,-0.2209867f ,-1f ,-0.22424212f ,-0.95319057f ,-0.20283845f ,-1f ,-0.31149298f ,-0.937205f ,-0.15690461f ,-1f ,-0.3401274f ,-0.93201184f ,-0.12516904f ,-1f ,-0.3518853f ,-0.896548f ,-0.26903263f ,-1f ,-0.56595f ,-0.729852f ,-0.38342753f ,-1f ,-0.686303f ,-0.6877877f ,-0.23650846f ,-1f ,-0.80726665f ,-0.5334853f ,-0.2524164f ,-1f ,-0.4451713f ,-0.8892245f ,-0.10536693f ,-1f ,-0.4143819f ,-0.9020898f ,-0.12050614f ,-1f ,-0.60278684f ,-0.77972025f ,-0.1693651f ,-1f ,-0.6407724f ,-0.7540839f ,-0.14411199f ,-1f ,-0.36437023f ,-0.9053687f ,-0.21804132f ,-1f ,-0.47500184f ,-0.78830594f ,-0.39108458f ,-1f ,-0.48001716f ,-0.8386117f ,-0.25751522f ,-1f ,-0.73451465f ,-0.66632795f ,-0.1284338f ,-1f ,-0.59880906f ,-0.7954483f ,-0.09321883f ,-1f ,-0.41821164f ,-0.8920088f ,-0.1715212f ,-1f ,-0.62072927f ,-0.77496296f ,-0.11885991f ,-1f ,-0.13487042f ,-0.9802601f ,-0.14456928f ,-1f ,-0.091467224f ,-0.9923463f ,-0.082962476f ,-1f ,0.09683488f ,-0.98978823f ,-0.10460589f ,-1f });
  }
}
private class MFVec4f84 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.12892048f ,-0.9652186f ,-0.22744817f ,-1f ,-0.40146455f ,-0.91107136f ,-0.09367702f ,-1f ,-0.5191882f ,-0.85424066f ,-0.026769381f ,-1f ,-0.35613555f ,-0.9289753f ,-0.100859426f ,-1f ,-0.26084453f ,-0.952425f ,-0.15762876f ,-1f ,-0.3055274f ,-0.9429598f ,-0.132212f ,-1f ,-0.23057508f ,-0.9563301f ,-0.17963253f ,-1f ,-0.15555485f ,-0.9709682f ,-0.18172364f ,-1f ,-0.14867635f ,-0.969816f ,-0.1932671f ,-1f ,-0.10576192f ,-0.9798172f ,-0.16962548f ,-1f ,-0.09693717f ,-0.9774939f ,-0.18737407f ,-1f ,-0.018239822f ,-0.9972981f ,-0.0711601f ,-1f ,-0.0360162f ,-0.9912642f ,-0.1268789f ,-1f ,0.00091647985f ,-0.9986332f ,-0.052258905f ,-1f ,-0.0042473897f ,-0.997664f ,-0.06818052f ,-1f ,-0.008188135f ,-0.99527025f ,-0.09679956f ,-1f ,-0.007852928f ,-0.99407715f ,-0.10839269f ,-1f ,-0.12292621f ,-0.9811265f ,-0.14926548f ,-1f ,0.18249021f ,-0.9821539f ,0.04551009f ,-1f ,-0.0061696502f ,-0.9982731f ,-0.058420774f ,-1f ,0.03267555f ,-0.9924058f ,-0.11858832f ,-1f ,-0.0022241047f ,-0.9989936f ,-0.04479853f ,-1f ,-0.007086245f ,-0.9981031f ,-0.061157823f ,-1f ,-0.13030481f ,-0.9717845f ,-0.19661045f ,-1f ,-0.059548423f ,-0.9841533f ,-0.16702259f ,-1f ,-0.09437616f ,-0.9777739f ,-0.18722022f ,-1f ,-0.0119944895f ,-0.9911657f ,-0.13208593f ,-1f ,0.018219832f ,-0.9951317f ,-0.09685572f ,-1f ,-0.020522425f ,-0.99093765f ,-0.13274577f ,-1f ,-0.008757529f ,-0.9938038f ,-0.110802986f ,-1f ,0.00885495f ,-0.996608f ,-0.081817135f ,-1f ,-0.010602295f ,-0.9931598f ,-0.11628152f ,-1f ,0.011386333f ,-0.9960669f ,-0.08786925f ,-1f ,0.9909825f ,0.087297685f ,0.10165116f ,-1f ,0.98801863f ,0.04754598f ,0.14682879f ,-1f ,0.9954649f ,-0.03282774f ,0.089286104f ,-1f ,0.9934148f ,-0.00084026664f ,0.11457041f ,-1f ,0.99258965f ,0.11139443f ,0.048550107f ,-1f ,0.98844576f ,0.1401258f ,0.057790495f ,-1f ,0.99944216f ,0.03318642f ,-0.0037491322f ,-1f ,0.9967223f ,0.0783344f ,0.020210484f ,-1f ,0.88186496f ,-0.43581107f ,-0.17995289f ,-1f ,0.8668103f ,-0.44801274f ,-0.21891688f ,-1f ,0.54071563f ,-0.7162238f ,-0.44119167f ,-1f ,0.3405421f ,-0.76381034f ,-0.54829264f ,-1f ,0.9830028f ,0.1683534f ,0.07323121f ,-1f ,0.99841595f ,0.04208655f ,0.037340544f ,-1f ,0.9179132f ,-0.31569314f ,-0.24036087f ,-1f ,0.869121f ,-0.3831886f ,-0.31272215f ,-1f ,0.6805078f ,-0.5747257f ,-0.45453233f ,-1f ,0.20191103f ,-0.8218593f ,-0.53270936f ,-1f ,0.87197703f ,-0.4476717f ,-0.19810644f ,-1f ,0.19836658f ,-0.8666169f ,-0.45784917f ,-1f ,0.3874035f ,-0.81328577f ,0.43414843f ,1f ,0.7927209f ,-0.5141593f ,-0.32746565f ,-1f ,-0.09285244f ,-0.992319f ,-0.0817398f ,-1f ,-0.2101058f ,-0.96114355f ,-0.1790491f ,-1f ,-0.26563948f ,-0.95467997f ,-0.13424605f ,-1f ,-0.10740778f ,-0.9526571f ,-0.28444347f ,-1f ,-0.30576634f ,-0.94807875f ,-0.08748592f ,-1f ,0.03208719f ,-0.9956147f ,-0.08787382f ,-1f ,-0.040559456f ,-0.98735595f ,-0.15324226f ,-1f ,0.023812132f ,-0.9967148f ,-0.07741325f ,-1f ,0.017980704f ,-0.99749863f ,-0.06836167f ,-1f ,0.01678548f ,-0.99774325f ,-0.06501295f ,-1f ,0.7228876f ,-0.53400815f ,-0.43848473f ,-1f ,-0.18692951f ,-0.9699611f ,-0.15566897f ,-1f ,0.24254866f ,-0.93859184f ,-0.24538893f ,-1f ,-0.064368516f ,-0.9943792f ,-0.08406408f ,-1f ,-0.07540372f ,-0.97755194f ,0.19674018f ,-1f ,-0.03659583f ,-0.99226475f ,0.11862327f ,-1f ,0.99869746f ,-0.035762325f ,-0.036394093f ,-1f ,0.8711594f ,-0.4066664f ,-0.27514333f ,-1f ,-0.3240655f ,-0.9353067f ,-0.14206693f ,-1f ,-0.3730226f ,-0.92269224f ,-0.097434185f ,-1f ,-0.45727843f ,-0.88771045f ,-0.053542186f ,-1f ,-0.424812f ,-0.7775263f ,-0.46366775f ,-1f ,-0.04503937f ,-0.6430343f ,-0.7645118f ,1f ,-0.39643607f ,-0.7232529f ,-0.56545895f ,-1f ,-0.21494044f ,-0.8067589f ,0.55040056f ,1f ,-0.49226576f ,-0.8602805f ,0.13263416f ,-1f ,-0.42255446f ,-0.68089694f ,0.59818655f ,-1f ,-0.1729474f ,-0.9723285f ,-0.15705581f ,-1f ,-0.2222979f ,-0.9607606f ,-0.16590025f ,-1f ,-0.7329842f ,-0.66537476f ,-0.1414593f ,-1f ,-0.8244838f ,-0.5605146f ,-0.077780865f ,-1f ,-0.7055666f ,-0.7056641f ,-0.06491537f ,-1f ,-0.43384826f ,-0.827201f ,-0.35709155f ,-1f ,-0.49253616f ,-0.8324335f ,0.25389516f ,-1f ,-0.3103094f ,-0.941597f ,-0.13077986f ,-1f ,-0.14460118f ,-0.98371065f ,0.10678876f ,-1f ,-0.31468397f ,-0.9480802f ,0.04602083f ,-1f ,0.22656801f ,-0.8296833f ,0.51018876f ,-1f ,-0.057440054f ,-0.3281067f ,0.94289273f ,-1f ,0.5137653f ,-0.51120996f ,0.68899184f ,-1f ,-0.043152086f ,-0.23870362f ,0.9701333f ,-1f ,0.51729256f ,-0.46019092f ,0.7215488f ,-1f ,-0.37195256f ,-0.9084087f ,0.19090556f ,-1f ,-0.64610445f ,-0.7465057f ,0.15899174f ,-1f ,-0.5146268f ,-0.2956163f ,0.80484176f ,-1f ,-0.512123f ,-0.26200408f ,0.8179756f ,-1f ,-0.0007305063f ,-0.31943655f ,0.94760746f ,-1f ,-0.03927781f ,-0.32082585f ,0.94632345f ,-1f ,-0.07200794f ,-0.98730415f ,0.14158177f ,-1f ,-0.6424795f ,-0.46272334f ,0.6108252f ,-1f ,-0.29018676f ,-0.9529961f ,0.08712241f ,-1f ,-0.61459404f ,-0.3175543f ,0.72210354f ,-1f ,-0.3317908f ,-0.92682433f ,-0.17581709f ,-1f ,-0.3641667f ,-0.91930646f ,-0.14919277f ,-1f ,-0.33187667f ,-0.87753457f ,-0.3461085f ,-1f ,-0.31414658f ,-0.92525184f ,-0.21265242f ,-1f ,-0.33386946f ,-0.93364763f ,-0.12974365f ,-1f ,0.38886073f ,-0.55262166f ,0.7371544f ,-1f ,0.43391114f ,-0.55642945f ,0.70859534f ,-1f ,-0.04973526f ,-0.27847442f ,0.959155f ,-1f ,-0.060006686f ,-0.3693844f ,0.9273372f ,-1f ,-0.28093815f ,-0.9495317f ,-0.13951114f ,-1f ,-0.29992843f ,-0.9515874f ,-0.06726467f ,-1f ,-0.36512643f ,-0.9277095f ,-0.07770244f ,-1f ,-0.3482294f ,-0.8812173f ,-0.3196755f ,-1f ,-0.19988112f ,-0.8373393f ,0.5088326f ,-1f ,-0.41091573f ,-0.9099575f ,-0.0559077f ,-1f ,-0.53494865f ,-0.6537776f ,0.535168f ,-1f ,-0.018216606f ,-0.3087273f ,0.9509762f ,-1f ,0.36172822f ,-0.6904315f ,0.62646395f ,-1f ,-0.1725153f ,-0.7384663f ,0.6518481f ,-1f ,0.024536332f ,-0.9212867f ,0.38810956f ,-1f ,-0.29077348f ,-0.94294727f ,0.16217665f ,-1f ,-0.11083497f ,-0.9826028f ,0.14902137f ,-1f ,-0.2635531f ,-0.951059f ,0.16132818f ,-1f ,-0.16681874f ,-0.98526925f ,0.037631094f ,-1f ,-0.18813513f ,-0.9768982f ,-0.10136683f ,-1f ,-0.49439412f ,-0.52216315f ,0.69492453f ,-1f ,-0.40342328f ,-0.87120855f ,0.27972364f ,-1f ,-0.3701986f ,-0.9281865f ,-0.037719753f ,-1f ,-0.04259611f ,-0.5586215f ,0.82832825f ,-1f ,-0.15259428f ,-0.89213526f ,0.4252174f ,-1f ,-0.3130581f ,-0.946097f ,0.083037406f ,-1f ,-0.30043018f ,-0.95331746f ,0.030455183f ,-1f ,-0.0408717f ,-0.4186569f ,0.9072244f ,-1f ,0.05453771f ,0.91208357f ,0.40636104f ,-1f ,-0.09056f ,0.89896256f ,0.428562f ,-1f ,0.51253825f ,0.71618974f ,0.4736843f ,-1f ,0.3677643f ,0.7386398f ,0.5649431f ,-1f ,0.9968716f ,0.029082077f ,-0.07349445f ,-1f ,0.96372736f ,-0.234321f ,-0.12776312f ,-1f ,-0.9741972f ,-0.21305656f ,-0.07447724f ,1f ,-0.9935874f ,-0.09369313f ,-0.06329188f ,-1f ,-0.56307626f ,0.66042054f ,0.4967796f ,-1f ,-0.5620218f ,0.67826706f ,0.4733765f ,-1f ,-0.09124322f ,0.9058743f ,0.4136018f ,-1f ,0.052063596f ,0.895582f ,0.44183978f ,-1f ,0.3646208f ,-0.6655698f ,-0.6512055f ,-1f ,0.23484042f ,-0.7973258f ,-0.55598706f ,-1f ,-0.08913586f ,-0.90209997f ,-0.4222211f ,-1f ,-0.18856218f ,-0.88710606f ,-0.4212923f ,-1f ,-0.50079006f ,-0.7769183f ,-0.38158533f ,-1f ,-0.47945103f ,-0.7387372f ,-0.4737026f ,-1f ,0.105414286f ,-0.92847687f ,-0.3561161f ,-1f ,0.37815425f ,-0.74914694f ,-0.543855f ,-1f ,0.14817071f ,-0.9301057f ,-0.3360789f ,-1f ,0.03902656f ,0.804623f ,0.59250206f ,-1f ,0.4222469f ,0.8536414f ,0.30496532f ,-1f ,0.2738726f ,0.9366045f ,0.21855436f ,-1f ,0.29501694f ,-0.9191093f ,-0.26115745f ,-1f ,0.94157964f ,0.29586667f ,-0.1609064f ,-1f ,-0.45193663f ,-0.84215355f ,-0.29416096f ,-1f ,-0.71127886f ,0.6802755f ,0.17693977f ,-1f ,0.32440284f ,0.8192194f ,0.47290838f ,-1f ,0.83849573f ,0.49469507f ,-0.2284773f ,-1f ,0.30641547f ,0.72112834f ,0.6213562f ,-1f ,-0.7797381f ,0.5879104f ,0.21533658f ,-1f ,0.7175745f ,0.6723071f ,-0.18190669f ,-1f ,0.62651265f ,-0.7703314f ,0.11862326f ,1f ,0.33461723f ,-0.5710641f ,-0.7496114f ,-1f ,-0.09023168f ,-0.9325288f ,-0.34964034f ,-1f ,0.4770963f ,-0.61600125f ,-0.6268346f ,-1f ,0.7391632f ,-0.6648993f ,-0.1074556f ,-1f ,-0.48055583f ,-0.78486085f ,0.39122844f ,1f ,0.8297859f ,-0.4226915f ,-0.36439985f ,1f ,-0.025192626f ,0.9986082f ,-0.046337005f ,-1f ,-0.36032644f ,0.6717493f ,0.6472386f ,-1f ,0.11505646f ,0.8458821f ,-0.52081233f ,-1f ,-0.56502247f ,0.55809236f ,0.6076862f ,1f ,-0.5302537f ,0.57950944f ,-0.6188699f ,-1f ,-0.070265956f ,0.9843399f ,0.1616721f ,-1f ,-0.21000679f ,0.6964217f ,-0.6862171f ,-1f ,-0.9543665f ,0.08957919f ,0.2848862f ,1f ,0.3920688f ,0.72604805f ,0.56492156f ,-1f ,-0.27897343f ,0.8355037f ,0.47340006f ,1f ,0.9785634f ,0.19624056f ,0.062475525f ,-1f ,0.50468916f ,0.72924834f ,0.46204522f ,1f ,0.82257605f ,-0.3319357f ,-0.4617224f ,1f ,0.98664343f ,0.162786f ,0.005969579f ,1f ,0.7632529f ,-0.6458819f ,0.016780123f ,-1f ,0.868943f ,-0.27766898f ,-0.40968055f ,-1f ,-0.7614102f ,-0.5826658f ,-0.28417444f ,-1f ,0.8167285f ,-0.57631606f ,0.028538425f ,1f ,-0.39819533f ,-0.82465523f ,0.4017266f ,-1f ,-0.14106832f ,-0.63960946f ,0.7556452f ,1f ,0.9998546f ,0.0067857336f ,-0.015644344f ,-1f ,0.527299f ,-0.3947246f ,-0.75242835f ,-1f ,0.2848776f ,-0.9445581f ,0.16326292f ,-1f ,0.20513749f ,-0.973222f ,-0.10371881f ,-1f ,-0.9996562f ,0.023830805f ,-0.010935301f ,1f ,-0.52717465f ,0.5484856f ,0.6490382f ,-1f ,0.3115195f ,0.8976358f ,0.31177798f ,-1f ,0.84305656f ,0.5331689f ,-0.070615195f ,-1f ,-0.98149556f ,-0.17883463f ,-0.06844412f ,1f ,0.26699963f ,0.8920581f ,-0.36461458f ,-1f });
  }
}
private class MFVec4f85 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.044026043f ,0.9546083f ,-0.29459274f ,-1f ,-0.47622812f ,0.6195295f ,-0.62401134f ,-1f ,0.49205986f ,0.8671258f ,-0.07726568f ,-1f ,0.7360782f ,0.6661828f ,-0.11995553f ,-1f ,0.39454544f ,-0.45144674f ,0.80033106f ,-1f ,0.96861917f ,-0.24853504f ,0.0027224827f ,-1f ,0.9891605f ,-0.1238545f ,0.078877956f ,1f ,0.28715158f ,-0.93850756f ,-0.19169658f ,-1f ,0.984323f ,-0.17347513f ,-0.031855073f ,-1f ,0.13326211f ,-0.9886996f ,-0.068662144f ,-1f ,0.64951396f ,0.3364202f ,0.6818747f ,-1f ,0.98399013f ,0.16749175f ,-0.060911167f ,-1f ,0.98745114f ,0.1540579f ,0.034734637f ,1f ,-0.5024725f ,0.67384624f ,0.5417127f ,1f ,-0.8008309f ,-0.597142f ,-0.045732666f ,-1f ,-0.57693195f ,0.30369416f ,0.75823444f ,-1f ,-0.99705106f ,-0.05624346f ,0.05221013f ,-1f ,0.55703676f ,-0.37172318f ,-0.74265206f ,-1f ,-0.42860833f ,-0.63523275f ,-0.6424752f ,-1f ,-0.34758872f ,-0.6755416f ,-0.65025043f ,-1f ,-0.8222036f ,-0.5674599f ,-0.044390526f ,-1f ,-0.7476836f ,-0.6596458f ,-0.07639872f ,-1f ,-0.6428843f ,0.60633785f ,0.46803236f ,-1f ,0.38189712f ,0.8735025f ,0.30190715f ,-1f ,-0.6883328f ,-0.11535947f ,0.7161636f ,-1f ,0.6210812f ,0.2767794f ,0.73324716f ,-1f ,0.37524286f ,0.87574154f ,0.30375898f ,-1f ,0.9179815f ,0.35040992f ,0.18580356f ,-1f ,0.7940682f ,0.6027479f ,-0.07842641f ,-1f ,0.98659575f ,0.097073294f ,-0.1311706f ,-1f ,0.25841886f ,-0.8512857f ,-0.45665357f ,-1f ,0.8242697f ,-0.56617564f ,-0.004950271f ,-1f ,0.8917939f ,-0.40830234f ,-0.19491774f ,-1f ,0.91058683f ,-0.33419946f ,0.24319202f ,-1f ,-0.017259497f ,-0.31237158f ,-0.9498033f ,-1f ,-0.39216673f ,-0.7308982f ,-0.5585634f ,-1f ,-0.6383123f ,-0.3869273f ,-0.6654658f ,1f ,-0.93678105f ,-0.3363866f ,-0.09636103f ,-1f ,-0.9051546f ,0.31071475f ,0.29008898f ,1f ,-0.9339382f ,-0.34614745f ,-0.08911488f ,-1f ,0.6561843f ,-0.39931816f ,-0.6402868f ,-1f ,0.06287642f ,-0.9310899f ,-0.35933027f ,-1f ,0.4505201f ,0.7885362f ,0.4186195f ,-1f ,0.64579964f ,0.6846622f ,0.3379061f ,-1f ,0.98715484f ,-0.15605149f ,-0.03425538f ,-1f ,-0.9974795f ,0.045361888f ,-0.05456279f ,-1f ,-0.43090814f ,0.4230403f ,0.7970917f ,-1f ,0.41564614f ,0.7276877f ,0.54562706f ,-1f ,0.58537525f ,-0.7483489f ,-0.31194523f ,-1f ,0.40277997f ,-0.7744033f ,-0.487922f ,-1f ,-0.34929425f ,-0.45731583f ,-0.81783617f ,-1f ,0.3622739f ,0.92729425f ,0.094249904f ,-1f ,0.783081f ,0.5686855f ,-0.251756f ,1f ,-0.49210644f ,0.8693939f ,0.0445604f ,1f ,-0.025405832f ,0.3096799f ,0.9505015f ,-1f ,0.8554987f ,-0.46840814f ,-0.22071692f ,-1f ,0.13558859f ,-0.9674986f ,-0.21345335f ,-1f ,-0.3294398f ,-0.6951842f ,-0.6388963f ,-1f ,-0.7027641f ,-0.3504944f ,-0.6190931f ,-1f ,0.91748047f ,0.3482297f ,0.19226484f ,-1f ,0.74579585f ,0.33629638f ,0.5750595f ,-1f ,0.99770963f ,-0.06699884f ,0.009313995f ,1f ,0.8434464f ,-0.4849202f ,-0.23119396f ,-1f ,0.68989044f ,-0.42145652f ,-0.5885794f ,-1f ,-0.0646992f ,-0.28656316f ,-0.9558743f ,-1f ,-0.9644587f ,-0.06298673f ,-0.25661665f ,-1f ,-0.6961144f ,-0.12059637f ,0.7077297f ,-1f ,0.32535625f ,0.13788132f ,0.93548495f ,-1f ,0.02239935f ,0.9974306f ,0.06804726f ,-1f ,-0.10069564f ,0.9921627f ,0.07398453f ,-1f ,0.6274966f ,0.7618869f ,-0.16055024f ,-1f ,-0.45270273f ,0.8527392f ,0.26056895f ,1f ,-0.25582823f ,-0.784302f ,-0.56517464f ,-1f ,-0.609024f ,-0.49489033f ,-0.61981726f ,-1f ,0.04391889f ,-0.9300399f ,-0.36482447f ,-1f ,0.22907834f ,-0.85038954f ,-0.47366738f ,-1f ,0.8722103f ,-0.43735278f ,-0.21902461f ,-1f ,0.8083067f ,0.56923014f ,-0.15039062f ,-1f ,0.30163345f ,0.9146474f ,0.26914227f ,-1f ,0.27733114f ,0.9509038f ,0.13736627f ,-1f ,0.16370444f ,0.967314f ,0.1936613f ,-1f ,-0.13896659f ,0.9402502f ,-0.31083423f ,-1f ,-0.66309077f ,0.66669554f ,-0.34033483f ,-1f ,-0.1630262f ,0.5922654f ,-0.78907806f ,-1f ,-0.9362595f ,0.0358977f ,-0.34947047f ,-1f ,-0.5950065f ,0.792006f ,0.13672511f ,-1f ,-0.7590981f ,0.64021736f ,0.1178635f ,-1f ,0.024440538f ,0.5187194f ,-0.8545951f ,-1f ,0.1945354f ,0.96639055f ,-0.16806392f ,-1f ,0.49594042f ,0.809046f ,-0.31541687f ,-1f ,0.91986215f ,0.055739433f ,0.38826123f ,-1f ,0.7949208f ,-0.52420616f ,0.305465f ,-1f ,0.5515767f ,-0.7695423f ,-0.3218199f ,1f ,0.9514956f ,0.0068376483f ,0.30758658f ,-1f ,0.7338427f ,-0.6761227f ,-0.065826476f ,-1f ,-0.89670837f ,-0.4413303f ,0.033788446f ,1f ,0.6095417f ,-0.5216278f ,-0.5969619f ,-1f ,0.52565676f ,-0.82480645f ,0.20827742f ,-1f ,0.54797184f ,-0.8298952f ,-0.10488474f ,-1f ,-0.99691945f ,0.073251106f ,0.028034158f ,1f ,0.6945174f ,0.71621317f ,-0.06844228f ,-1f ,-0.99231607f ,-0.11249875f ,-0.0515067f ,1f ,0.011009868f ,0.9939113f ,-0.10963183f ,-1f ,0.54209524f ,-0.4069765f ,0.7351891f ,-1f ,0.994361f ,-0.10604793f ,-0.00033824542f ,-1f ,0.9455475f ,-0.31387776f ,0.08614356f ,1f ,0.61039f ,-0.70497745f ,-0.36115226f ,-1f ,0.95201665f ,0.2983653f ,-0.06813551f ,-1f ,0.9368129f ,0.34757f ,0.03970847f ,1f ,-0.9704575f ,-0.23279688f ,0.063387156f ,-1f ,-0.029156411f ,-0.78198665f ,0.6226129f ,1f ,0.027790817f ,-0.84664786f ,-0.5314275f ,-1f ,-0.34523162f ,-0.93354803f ,-0.09645327f ,-1f ,-0.16569112f ,-0.16082922f ,-0.9729751f ,1f ,0.16915692f ,0.9114841f ,-0.3749436f ,-1f ,0.5699981f ,0.54737747f ,0.61276424f ,-1f ,0.61236906f ,-0.5447431f ,0.5729391f ,-1f ,0.21750605f ,-0.83748776f ,0.5013037f ,-1f ,0.07933419f ,-0.80997336f ,0.5810761f ,-1f ,0.2731735f ,-0.96012175f ,0.05951994f ,-1f ,0.24957329f ,-0.90127957f ,0.35413045f ,-1f ,0.19404636f ,-0.9809914f ,0.0014073537f ,-1f ,-0.13895178f ,-0.9735f ,-0.18163215f ,-1f ,-0.33060345f ,-0.9375136f ,-0.10848846f ,-1f ,-0.31544453f ,-0.94325316f ,-0.10377105f ,-1f ,-0.36403278f ,-0.9305966f ,-0.038343165f ,-1f ,-0.29762962f ,-0.94860214f ,-0.10756756f ,-1f ,-0.28623056f ,-0.95076525f ,-0.11881791f ,-1f ,0.97522795f ,-0.16947351f ,0.14215931f ,-1f ,0.95193356f ,-0.30028358f ,0.060434427f ,-1f ,0.9217914f ,-0.37790096f ,-0.08655312f ,-1f ,0.82046884f ,-0.50654805f ,-0.26502815f ,-1f ,0.39980075f ,-0.71980727f ,-0.5674829f ,-1f ,0.83534753f ,-0.49900967f ,-0.2306165f ,-1f ,0.012208375f ,-0.71468145f ,-0.6993436f ,-1f ,-0.7180231f ,-0.099559754f ,-0.68886185f ,-1f ,-0.6870294f ,0.12424948f ,-0.7159279f ,-1f ,-0.24799874f ,0.12937298f ,-0.96008295f ,-1f ,-0.2691875f ,0.094398916f ,-0.95845026f ,-1f ,-0.69909674f ,0.348889f ,-0.6241316f ,-1f ,-0.18564178f ,-0.1422768f ,-0.97226256f ,-1f ,-0.65084594f ,-0.087655425f ,-0.75413275f ,-1f ,-0.6139838f ,0.026922407f ,-0.7888593f ,-1f ,-0.32133186f ,0.1873889f ,-0.928241f ,-1f ,-0.26098892f ,0.032437634f ,-0.96479666f ,-1f ,0.054726377f ,0.06585055f ,-0.9963277f ,-1f ,-0.8614098f ,0.25259647f ,-0.44064528f ,-1f ,0.052089456f ,-0.9643454f ,-0.2594702f ,-1f ,-0.1625955f ,-0.9697822f ,-0.18189372f ,-1f ,-0.29232228f ,-0.9397154f ,-0.17743391f ,-1f ,-0.08626018f ,-0.9768614f ,-0.19570637f ,-1f ,-0.09683006f ,-0.97511137f ,-0.1994538f ,-1f ,0.65278447f ,0.24232008f ,0.7177419f ,-1f ,-0.96182644f ,-0.11082367f ,-0.25021616f ,-1f ,-0.65347075f ,-0.23248397f ,-0.72036606f ,-1f ,-0.626238f ,0.67005795f ,0.39855778f ,1f ,0.023978947f ,-0.44563586f ,-0.8948931f ,-1f ,0.13513918f ,0.9241454f ,0.35734147f ,-1f });
  }
}
private class MFVec2f86 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.16042541f ,0.6897739f ,0.19467498f ,0.6904008f ,0.15967353f ,0.730746f ,0.19310176f ,0.732676f ,0.15950513f ,0.5469686f ,0.14181057f ,0.52323985f ,0.18732867f ,0.5454913f ,0.1728551f ,0.49910063f ,0.12601736f ,0.6428883f ,0.11308824f ,0.5904794f ,0.14915846f ,0.61176527f ,0.13523668f ,0.5876261f ,0.77210826f ,0.78831977f ,0.8001628f ,0.789111f ,0.7748389f ,0.8156284f ,0.79819965f ,0.8154448f ,0.80031437f ,0.74073815f ,0.7824513f ,0.741948f ,0.8056465f ,0.72559893f ,0.14086996f ,0.5603613f ,0.124061f ,0.55009913f ,0.798923f ,0.7607638f ,0.774423f ,0.7605056f ,0.12346352f ,0.68693084f ,0.12337575f ,0.72749424f ,0.16983488f ,0.61879927f ,0.16343766f ,0.6499416f ,0.80074626f ,0.8351003f ,0.783898f ,0.8340908f ,0.22642085f ,0.46885318f ,0.26592225f ,0.45595473f ,0.24177812f ,0.5181094f ,0.28140324f ,0.50783664f ,0.25202867f ,0.56485426f ,0.29281116f ,0.56093067f ,0.25822905f ,0.606556f ,0.29954413f ,0.6042384f ,0.29911962f ,0.64714926f ,0.25730312f ,0.6474708f ,0.2571759f ,0.69044435f ,0.2993977f ,0.6909679f ,0.25673524f ,0.7335052f ,0.299232f ,0.73369324f ,0.22611853f ,0.6057828f ,0.2251391f ,0.6497385f ,0.19890122f ,0.60330385f ,0.19640945f ,0.65130335f ,0.22452003f ,0.69045675f ,0.2235149f ,0.7333642f ,0.32772934f ,0.55580056f ,0.37120864f ,0.55092096f ,0.3354017f ,0.6008238f ,0.38252482f ,0.5963981f ,0.38612208f ,0.64233303f ,0.3362564f ,0.6455997f ,0.3872286f ,0.6888989f ,0.38748527f ,0.73414207f ,0.33678776f ,0.6904855f ,0.33680144f ,0.73410803f ,0.8562628f ,0.40886238f ,0.885091f ,0.3973808f ,0.9100526f ,0.42647353f ,0.9131948f ,0.40796965f ,0.8046193f ,0.29420787f ,0.7787377f ,0.291359f ,0.80018586f ,0.22612613f ,0.7694031f ,0.20218563f ,0.8539252f ,0.19520336f ,0.8162257f ,0.15407246f ,0.8724673f ,0.16271502f ,0.81984f ,0.14592427f ,0.83498305f ,0.35827586f ,0.8082453f ,0.36840203f ,0.8377916f ,0.22811922f ,0.8191063f ,0.22715092f ,0.8306645f ,0.20481163f ,0.8143289f ,0.20973834f ,0.88573897f ,0.1385203f ,0.8458816f ,0.12049973f ,0.9211751f ,0.07059902f ,0.90088874f ,0.11035186f ,0.8789776f ,0.10115659f ,0.40232342f ,0.43910024f ,0.36215097f ,0.43809316f ,0.39217794f ,0.40568298f ,0.33846477f ,0.43521532f ,0.4245425f ,0.55296177f ,0.43294322f ,0.5906657f ,0.44393393f ,0.64106345f ,0.44743198f ,0.6878358f ,0.4474391f ,0.7331365f ,0.83538103f ,0.19137871f ,0.096021175f ,0.5930347f ,0.11500499f ,0.5308353f ,0.09266974f ,0.65215284f ,0.08507531f ,0.7245829f ,0.08967931f ,0.6947831f ,0.7991575f ,0.2079941f ,0.8277617f ,0.2935348f ,0.21147378f ,0.5301556f ,0.19653615f ,0.4839726f ,0.80984956f ,0.8567193f ,0.8184806f ,0.704669f ,0.81718093f ,0.703749f ,0.7925044f ,0.72048783f ,0.8116921f ,0.89098823f ,0.7982043f ,0.8636522f ,0.8132924f ,0.8904784f ,0.21987653f ,0.5649292f ,0.20418808f ,0.572947f ,0.7436488f ,0.78636277f ,0.7510968f ,0.82055193f ,0.750702f ,0.75316525f ,0.7675055f ,0.73320276f ,0.7696334f ,0.8414249f ,0.8686818f ,0.7628495f ,0.85171604f ,0.76155776f ,0.8657812f ,0.7459269f ,0.85281587f ,0.74413985f ,0.91188526f ,0.87977916f ,0.89357793f ,0.8772772f ,0.9113323f ,0.8531086f ,0.89247406f ,0.8523021f ,0.89423794f ,0.83141047f ,0.9140577f ,0.83118904f ,0.8941245f ,0.8128731f ,0.89336294f ,0.789139f ,0.91745f ,0.8129043f ,0.92029905f ,0.78839844f ,0.9180382f ,0.7508203f ,0.88826865f ,0.7480326f ,0.91416115f ,0.7308669f ,0.8857754f ,0.72887355f ,0.82052433f ,0.81439036f ,0.82375926f ,0.7891745f ,0.82772386f ,0.72594744f ,0.8262319f ,0.7424174f ,0.82498443f ,0.7611557f ,0.9203411f ,0.7681552f ,0.89091194f ,0.76513267f ,0.8950119f ,0.7056489f ,0.91269356f ,0.70899105f ,0.8198149f ,0.8337021f ,0.8252861f ,0.8546484f ,0.82778883f ,0.8837764f ,0.83368903f ,0.70223933f ,0.86534f ,0.7024008f ,0.86433333f ,0.72736776f ,0.85036904f ,0.72630495f ,0.8797488f ,0.87538725f ,0.8613619f ,0.8767301f ,0.8782288f ,0.8516928f ,0.85928714f ,0.85297424f ,0.84265804f ,0.8769022f ,0.84111947f ,0.8525242f ,0.8593352f ,0.8316267f ,0.87926656f ,0.83157766f ,0.8393739f ,0.83226794f ,0.87650496f ,0.8128496f ,0.8598831f ,0.8135409f ,0.843423f ,0.8133088f ,0.8730159f ,0.78969836f ,0.8603655f ,0.78911984f ,0.8479625f ,0.7892396f ,0.8492886f ,0.6997472f ,0.8816556f ,0.7031242f ,0.3386479f ,0.86300564f ,0.31333476f ,0.86300564f ,0.3386479f ,0.86118275f ,0.31333476f ,0.86118275f ,0.2920222f ,0.86300564f ,0.2920222f ,0.86118275f ,0.21184117f ,0.86300564f ,0.19214052f ,0.86300564f ,0.21184117f ,0.86118275f ,0.19214052f ,0.86118275f ,0.16969648f ,0.86300564f ,0.16969648f ,0.86118275f ,0.27436155f ,0.86300564f ,0.27436155f ,0.86118275f ,0.2501234f ,0.86300564f ,0.2501234f ,0.86118275f ,0.22947778f ,0.86300564f ,0.22947778f ,0.86118275f ,0.39979285f ,0.85299206f ,0.39196515f ,0.84373206f ,0.4060447f ,0.8441699f ,0.12084323f ,0.8560359f ,0.11416292f ,0.86728466f ,0.109151095f ,0.8557204f ,0.41373795f ,0.8367619f ,0.41409314f ,0.8446144f ,0.41311055f ,0.8368222f ,0.09918779f ,0.84786826f ,0.09975481f ,0.8479854f ,0.09915459f ,0.85682124f ,0.1308437f ,0.84761536f ,0.13006729f ,0.8577707f ,0.13015634f ,0.84769976f ,0.38583872f ,0.8360232f ,0.3864392f ,0.8360487f ,0.38557205f ,0.8447836f ,0.39401436f ,0.8041675f ,0.40661037f ,0.80422616f ,0.3974548f ,0.8101065f ,0.4030433f ,0.8106537f ,0.11991596f ,0.8223411f ,0.11733782f ,0.82681847f ,0.10929048f ,0.82272404f ,0.11206159f ,0.8272443f ,0.07749432f ,0.8369504f ,0.078479975f ,0.841663f ,0.070358574f ,0.84282225f ,0.07396436f ,0.8446216f ,0.15446943f ,0.84620833f ,0.15696624f ,0.8420065f ,0.15808606f ,0.8503149f ,0.16230536f ,0.8504629f ,0.43472204f ,0.81690854f ,0.44299364f ,0.82252586f ,0.43460962f ,0.8233992f ,0.43810827f ,0.825318f ,0.35365555f ,0.8227531f ,0.36226973f ,0.8153264f ,0.3595671f ,0.82483053f ,0.36371338f ,0.82241905f ,0.40362343f ,0.8283223f ,0.41091797f ,0.8248643f ,0.39623252f ,0.82856154f ,0.38927004f ,0.8246904f ,0.11858061f ,0.8406014f ,0.12787041f ,0.83748424f ,0.111344665f ,0.84082675f ,0.10187125f ,0.8378368f ,0.08801746f ,0.8492061f ,0.09216893f ,0.84204996f ,0.08643466f ,0.8627047f ,0.0811362f ,0.85365105f ,0.077873975f ,0.86469126f ,0.074192464f ,0.85749924f ,0.4237442f ,0.83555686f ,0.42107415f ,0.82954955f ,0.42602533f ,0.8483641f ,0.43151316f ,0.83925354f ,0.4334559f ,0.84892696f ,0.43696424f ,0.83966595f ,0.14340794f ,0.8516106f ,0.14051715f ,0.8429588f ,0.13717097f ,0.86315215f ,0.14784408f ,0.85729295f ,0.14560944f ,0.8705281f ,0.15338856f ,0.8642369f ,0.3745737f ,0.8345333f ,0.37761477f ,0.8278836f ,0.37698418f ,0.84746766f ,0.36932114f ,0.8379286f ,0.368194f ,0.8495952f ,0.362467f ,0.84003127f ,0.11397436f ,0.8923377f ,0.113951296f ,0.8871741f ,0.13122213f ,0.89293605f ,0.13594037f ,0.88837683f ,0.09265724f ,0.8889384f ,0.094070226f ,0.89339024f ,0.07873157f ,0.88845426f ,0.07946676f ,0.89224494f ,0.4191815f ,0.8729478f ,0.43136406f ,0.87446594f ,0.4187282f ,0.8768074f ,0.4317761f ,0.87852097f ,0.38451833f ,0.87610996f ,0.37167335f ,0.8785191f ,0.3832671f ,0.87228405f ,0.37033793f ,0.87464035f ,0.14692399f ,0.88918394f ,0.14641047f ,0.89339185f ,0.39986557f ,0.8711806f ,0.399831f ,0.8751679f ,0.3386479f ,0.85161847f ,0.31333476f ,0.85161847f ,0.2920222f ,0.85161847f ,0.21184118f ,0.85161847f ,0.19214052f ,0.85161847f ,0.16969648f ,0.85161847f ,0.27436155f ,0.85161847f ,0.2501234f ,0.85161847f ,0.22947778f ,0.85161847f ,0.08881992f ,0.8717421f ,0.078201175f ,0.87283725f ,0.13350374f ,0.8713766f ,0.14009315f ,0.8770351f ,0.41915083f ,0.8554246f ,0.43204096f ,0.85823476f ,0.38119495f ,0.8554386f ,0.36933425f ,0.85842484f ,0.31333476f ,0.8455095f ,0.3386479f ,0.84556836f ,0.2920222f ,0.8455095f ,0.27436155f ,0.8455095f ,0.2501234f ,0.8455095f ,0.22947778f ,0.8455095f ,0.21184118f ,0.8455095f ,0.19214052f ,0.8455095f ,0.16969648f ,0.8455095f ,0.93128705f ,0.012301844f ,0.9344729f ,0.015494125f ,0.93128854f ,0.023632193f ,0.93490154f ,0.021135716f ,0.37226132f ,0.86659944f ,0.382595f ,0.8644702f ,0.39986908f ,0.86296767f ,0.41955206f ,0.8649826f ,0.43212092f ,0.866874f ,0.07874271f ,0.8809647f ,0.09089103f ,0.88096315f ,0.114005685f ,0.87837803f ,0.13139856f ,0.8802552f ,0.9473519f ,0.009195872f ,0.95193833f ,0.009315308f ,0.9488533f ,0.014419649f ,0.9548705f ,0.01445741f ,0.9546917f ,0.024501631f ,0.9485271f ,0.023378719f ,0.95062125f ,0.030753566f ,0.9458274f ,0.029588208f ,0.075966924f ,0.024530828f ,0.079111636f ,0.016198903f ,0.0844017f ,0.024546042f ,0.08470106f ,0.0152465105f ,0.094046146f ,0.018261954f ,0.0942418f ,0.02233003f ,0.40356848f ,0.82246757f ,0.41081765f ,0.82092017f ,0.396432f ,0.82241744f ,0.38946626f ,0.82071596f ,0.12679136f ,0.83484495f ,0.10286915f ,0.83521754f ,0.08992386f ,0.84098196f ,0.07319507f ,0.85521597f ,0.42706874f ,0.8315032f ,0.4233358f ,0.82686085f ,0.43378282f ,0.8352281f ,0.43844426f ,0.83659977f ,0.14334857f ,0.8422868f ,0.15527171f ,0.8620146f ,0.3709341f ,0.8304334f ,0.37514654f ,0.8249075f ,0.36615598f ,0.8339976f ,0.3602465f ,0.83703446f ,0.08574954f ,0.031698212f ,0.08208153f ,0.033022895f ,0.09832615f ,0.025758967f ,0.09832418f ,0.015347719f ,0.085291415f ,0.009052932f ,0.08194053f ,0.0078125f ,0.13660291f ,0.4995635f ,0.16216804f ,0.47114274f ,0.18311244f ,0.45219895f ,0.249073f ,0.40953135f ,0.2098624f ,0.4330825f ,0.29690188f ,0.4482203f ,0.28393427f ,0.39767465f ,0.33127645f ,0.38578567f ,0.38211337f ,0.37646776f ,0.91601753f ,0.39284673f ,0.8876416f ,0.3830845f ,0.9211127f ,0.3756581f ,0.89499176f ,0.3628853f ,0.86452127f ,0.33631656f ,0.8493752f ,0.3497488f ,0.84301907f ,0.28636312f ,0.5293683f ,0.82065105f ,0.589818f ,0.8206151f ,0.5326154f ,0.86250794f ,0.58776444f ,0.8618523f ,0.59508f ,0.8736416f ,0.52523595f ,0.87363493f ,0.5262156f ,0.79424894f ,0.5905393f ,0.78953624f ,0.53533477f ,0.80487025f ,0.5846139f ,0.80407006f ,0.60852754f ,0.8155602f ,0.5118604f ,0.82317096f ,0.41001958f ,0.47491318f ,0.37411642f ,0.49186143f ,0.30882815f ,0.5075447f ,0.35652667f ,0.5043225f ,0.41854227f ,0.5122722f ,0.07237056f ,0.009040296f ,0.96225625f ,0.0078125f ,0.96751094f ,0.01520574f ,0.9669697f ,0.027056929f ,0.9620306f ,0.03568138f ,0.070358574f ,0.033980668f ,1.1604254f ,0.6897739f ,1.1596736f ,0.730746f ,1.194675f ,0.6904008f ,1.1931018f ,0.732676f ,1.1595051f ,0.5469686f ,1.1873287f ,0.5454913f ,1.1418105f ,0.52323985f ,1.1728551f ,0.49910063f ,1.1260173f ,0.6428883f ,1.1491585f ,0.61176527f ,1.1130883f ,0.5904794f ,1.1352367f ,0.5876261f ,1.7981997f ,0.8154448f ,1.8001628f ,0.789111f ,1.7748389f ,0.8156284f ,1.7721083f ,0.78831977f ,1.8003144f ,0.74073815f ,1.8056464f ,0.72559893f ,1.7824513f ,0.741948f ,1.14087f ,0.5603613f ,1.124061f ,0.55009913f ,1.798923f ,0.7607638f ,1.774423f ,0.7605056f ,1.1234635f ,0.68693084f ,1.1233758f ,0.72749424f ,1.1698349f ,0.61879927f });
  }
}
private class MFVec2f87 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {1.1634376f ,0.6499416f ,1.8007462f ,0.8351003f ,1.783898f ,0.8340908f ,1.2264209f ,0.46885318f ,1.2417781f ,0.5181094f ,1.2659223f ,0.45595473f ,1.2814033f ,0.50783664f ,1.2520287f ,0.56485426f ,1.2928112f ,0.56093067f ,1.258229f ,0.606556f ,1.2995441f ,0.6042384f ,1.2573031f ,0.6474708f ,1.2991196f ,0.64714926f ,1.2571759f ,0.69044435f ,1.2567352f ,0.7335052f ,1.2993977f ,0.6909679f ,1.299232f ,0.73369324f ,1.2261186f ,0.6057828f ,1.1989012f ,0.60330385f ,1.2251391f ,0.6497385f ,1.1964095f ,0.65130335f ,1.22452f ,0.69045675f ,1.2235149f ,0.7333642f ,1.3277293f ,0.55580056f ,1.3354018f ,0.6008238f ,1.3712087f ,0.55092096f ,1.3825248f ,0.5963981f ,1.3861221f ,0.64233303f ,1.3362564f ,0.6455997f ,1.3368014f ,0.73410803f ,1.3874853f ,0.73414207f ,1.3367877f ,0.6904855f ,1.3872286f ,0.6888989f ,1.8562628f ,0.40886238f ,1.9100525f ,0.42647353f ,1.8850911f ,0.3973808f ,1.9131948f ,0.40796965f ,1.7694031f ,0.20218563f ,1.7787378f ,0.291359f ,1.8001859f ,0.22612613f ,1.8046193f ,0.29420787f ,1.81984f ,0.14592427f ,1.8162258f ,0.15407246f ,1.8724673f ,0.16271502f ,1.8539252f ,0.19520336f ,1.8082453f ,0.36840203f ,1.8349831f ,0.35827586f ,1.8143289f ,0.20973834f ,1.8191063f ,0.22715092f ,1.8306645f ,0.20481163f ,1.8377917f ,0.22811922f ,1.8458816f ,0.12049973f ,1.885739f ,0.1385203f ,1.9211751f ,0.07059902f ,1.8789775f ,0.10115659f ,1.9008887f ,0.11035186f ,1.4023235f ,0.43910024f ,1.3921779f ,0.40568298f ,1.3621509f ,0.43809316f ,1.3384647f ,0.43521532f ,1.4329432f ,0.5906657f ,1.4245424f ,0.55296177f ,1.443934f ,0.64106345f ,1.447432f ,0.6878358f ,1.4474391f ,0.7331365f ,1.835381f ,0.19137871f ,1.0960212f ,0.5930347f ,1.115005f ,0.5308353f ,1.0926697f ,0.65215284f ,1.0850753f ,0.7245829f ,1.0896794f ,0.6947831f ,1.7991575f ,0.2079941f ,1.8277617f ,0.2935348f ,1.2114738f ,0.5301556f ,1.1965362f ,0.4839726f ,1.8098495f ,0.8567193f ,1.8184806f ,0.704669f ,1.8171809f ,0.703749f ,1.7925043f ,0.72048783f ,1.8116921f ,0.89098823f ,1.8132924f ,0.8904784f ,1.7982043f ,0.8636522f ,1.2041881f ,0.572947f ,1.2198765f ,0.5649292f ,1.7510967f ,0.82055193f ,1.7436488f ,0.78636277f ,1.750702f ,0.75316525f ,1.7675055f ,0.73320276f ,1.7696334f ,0.8414249f ,1.8528159f ,0.74413985f ,1.851716f ,0.76155776f ,1.8657812f ,0.7459269f ,1.8686818f ,0.7628495f ,1.9118853f ,0.87977916f ,1.9113324f ,0.8531086f ,1.8935779f ,0.8772772f ,1.892474f ,0.8523021f ,1.894238f ,0.83141047f ,1.9140577f ,0.83118904f ,1.8941245f ,0.8128731f ,1.91745f ,0.8129043f ,1.893363f ,0.789139f ,1.920299f ,0.78839844f ,1.9180381f ,0.7508203f ,1.9141612f ,0.7308669f ,1.8882687f ,0.7480326f ,1.8857753f ,0.72887355f ,1.8205243f ,0.81439036f ,1.8237593f ,0.7891745f ,1.8277239f ,0.72594744f ,1.826232f ,0.7424174f ,1.8249844f ,0.7611557f ,1.920341f ,0.7681552f ,1.8909119f ,0.76513267f ,1.8950119f ,0.7056489f ,1.9126935f ,0.70899105f ,1.8198149f ,0.8337021f ,1.8252861f ,0.8546484f ,1.8277888f ,0.8837764f ,1.833689f ,0.70223933f ,1.86534f ,0.7024008f ,1.850369f ,0.72630495f ,1.8643334f ,0.72736776f ,1.8797488f ,0.87538725f ,1.8782288f ,0.8516928f ,1.861362f ,0.8767301f ,1.8592871f ,0.85297424f ,1.842658f ,0.8769022f ,1.8411195f ,0.8525242f ,1.8792665f ,0.83157766f ,1.8593352f ,0.8316267f ,1.8393738f ,0.83226794f ,1.8765049f ,0.8128496f ,1.8598831f ,0.8135409f ,1.843423f ,0.8133088f ,1.8730159f ,0.78969836f ,1.8603655f ,0.78911984f ,1.8479625f ,0.7892396f ,1.8492886f ,0.6997472f ,1.8816556f ,0.7031242f ,1.3386478f ,0.86300564f ,1.3386478f ,0.86118275f ,1.3133347f ,0.86300564f ,1.3133347f ,0.86118275f ,1.2920222f ,0.86118275f ,1.2920222f ,0.86300564f ,1.2118411f ,0.86300564f ,1.2118411f ,0.86118275f ,1.1921406f ,0.86300564f ,1.1921406f ,0.86118275f ,1.1696965f ,0.86118275f ,1.1696965f ,0.86300564f ,1.2743616f ,0.86118275f ,1.2743616f ,0.86300564f ,1.2501234f ,0.86118275f ,1.2501234f ,0.86300564f ,1.2294778f ,0.86300564f ,1.2294778f ,0.86118275f ,1.3997929f ,0.85299206f ,1.4060447f ,0.8441699f ,1.3919652f ,0.84373206f ,1.1208432f ,0.8560359f ,1.1091511f ,0.8557204f ,1.1141629f ,0.86728466f ,1.4140931f ,0.8446144f ,1.4131105f ,0.8368222f ,1.413738f ,0.8367619f ,1.0991879f ,0.84786826f ,1.0991546f ,0.85682124f ,1.0997548f ,0.8479854f ,1.1300673f ,0.8577707f ,1.1301563f ,0.84769976f ,1.1308436f ,0.84761536f ,1.3858387f ,0.8360232f ,1.3855721f ,0.8447836f ,1.3864392f ,0.8360487f ,1.3940144f ,0.8041675f ,1.3974547f ,0.8101065f ,1.4066104f ,0.80422616f ,1.4030433f ,0.8106537f ,1.1120616f ,0.8272443f ,1.1173378f ,0.82681847f ,1.1092905f ,0.82272404f ,1.119916f ,0.8223411f ,1.0739644f ,0.8446216f ,1.07848f ,0.841663f ,1.0703585f ,0.84282225f ,1.0774944f ,0.8369504f ,1.1544695f ,0.84620833f ,1.1580861f ,0.8503149f ,1.1569662f ,0.8420065f ,1.1623054f ,0.8504629f ,1.4381082f ,0.825318f ,1.4429936f ,0.82252586f ,1.4346097f ,0.8233992f ,1.4347221f ,0.81690854f ,1.3536556f ,0.8227531f ,1.3595672f ,0.82483053f ,1.3622698f ,0.8153264f ,1.3637134f ,0.82241905f ,1.410918f ,0.8248643f ,1.4036235f ,0.8283223f ,1.3962325f ,0.82856154f ,1.3892701f ,0.8246904f ,1.1278704f ,0.83748424f ,1.1185806f ,0.8406014f ,1.1113447f ,0.84082675f ,1.1018713f ,0.8378368f ,1.0921689f ,0.84204996f ,1.0880175f ,0.8492061f ,1.0864346f ,0.8627047f ,1.0811362f ,0.85365105f ,1.0741925f ,0.85749924f ,1.077874f ,0.86469126f ,1.4237442f ,0.83555686f ,1.4210742f ,0.82954955f ,1.4369643f ,0.83966595f ,1.4315132f ,0.83925354f ,1.433456f ,0.84892696f ,1.4260254f ,0.8483641f ,1.143408f ,0.8516106f ,1.1405171f ,0.8429588f ,1.1533885f ,0.8642369f ,1.1478441f ,0.85729295f ,1.1456094f ,0.8705281f ,1.137171f ,0.86315215f ,1.3776147f ,0.8278836f ,1.3745737f ,0.8345333f ,1.3769841f ,0.84746766f ,1.3693211f ,0.8379286f ,1.368194f ,0.8495952f ,1.362467f ,0.84003127f ,1.1359403f ,0.88837683f ,1.1139513f ,0.8871741f ,1.1312221f ,0.89293605f ,1.1139743f ,0.8923377f ,1.0926572f ,0.8889384f ,1.0940702f ,0.89339024f ,1.0787315f ,0.88845426f ,1.0794668f ,0.89224494f ,1.4191815f ,0.8729478f ,1.4187282f ,0.8768074f ,1.431364f ,0.87446594f ,1.431776f ,0.87852097f ,1.3845184f ,0.87610996f ,1.3832672f ,0.87228405f ,1.3716733f ,0.8785191f ,1.370338f ,0.87464035f ,1.1464105f ,0.89339185f ,1.146924f ,0.88918394f ,1.399831f ,0.8751679f ,1.3998656f ,0.8711806f ,1.3386478f ,0.85161847f ,1.3133347f ,0.85161847f ,1.2920222f ,0.85161847f ,1.2118412f ,0.85161847f ,1.1921406f ,0.85161847f ,1.1696965f ,0.85161847f ,1.2743616f ,0.85161847f ,1.2501234f ,0.85161847f ,1.2294778f ,0.85161847f ,1.08882f ,0.8717421f ,1.0782012f ,0.87283725f ,1.1400931f ,0.8770351f ,1.1335037f ,0.8713766f ,1.4320409f ,0.85823476f ,1.4191508f ,0.8554246f ,1.381195f ,0.8554386f ,1.3693342f ,0.85842484f ,1.3133347f ,0.8455095f ,1.3386478f ,0.84556836f ,1.2920222f ,0.8455095f ,1.2743616f ,0.8455095f ,1.2501234f ,0.8455095f ,1.2294778f ,0.8455095f ,1.2118412f ,0.8455095f ,1.1921406f ,0.8455095f ,1.1696965f ,0.8455095f ,1.9349015f ,0.021135716f ,1.9344729f ,0.015494125f ,1.9312885f ,0.023632193f ,1.931287f ,0.012301844f ,1.3825951f ,0.8644702f ,1.3722613f ,0.86659944f ,1.3998691f ,0.86296767f ,1.4195521f ,0.8649826f ,1.4321209f ,0.866874f ,1.0787427f ,0.8809647f ,1.090891f ,0.88096315f ,1.1140057f ,0.87837803f ,1.1313986f ,0.8802552f ,1.9473519f ,0.009195872f ,1.9488533f ,0.014419649f ,1.9519384f ,0.009315308f ,1.9548705f ,0.01445741f ,1.9485271f ,0.023378719f ,1.9546916f ,0.024501631f ,1.9506212f ,0.030753566f ,1.9458275f ,0.029588208f ,1.075967f ,0.024530828f ,1.0844017f ,0.024546042f ,1.0791116f ,0.016198903f ,1.0847011f ,0.0152465105f ,1.0942419f ,0.02233003f ,1.0940461f ,0.018261954f ,1.4108176f ,0.82092017f ,1.4035685f ,0.82246757f ,1.396432f ,0.82241744f ,1.3894663f ,0.82071596f ,1.1267914f ,0.83484495f ,1.1028692f ,0.83521754f ,1.0899239f ,0.84098196f ,1.0731951f ,0.85521597f ,1.4270687f ,0.8315032f ,1.4233358f ,0.82686085f ,1.4384443f ,0.83659977f ,1.4337828f ,0.8352281f ,1.1433486f ,0.8422868f ,1.1552718f ,0.8620146f ,1.3751465f ,0.8249075f ,1.3709341f ,0.8304334f ,1.366156f ,0.8339976f ,1.3602465f ,0.83703446f ,1.0857495f ,0.031698212f ,1.0820816f ,0.033022895f ,1.0983262f ,0.025758967f ,1.0983242f ,0.015347719f ,1.0852914f ,0.009052932f ,1.0819405f ,0.0078125f ,1.1366029f ,0.4995635f ,1.162168f ,0.47114274f ,1.1831124f ,0.45219895f ,1.2098624f ,0.4330825f ,1.249073f ,0.40953135f ,1.2839342f ,0.39767465f ,1.296902f ,0.4482203f ,1.3312764f ,0.38578567f ,1.3821133f ,0.37646776f ,1.9160175f ,0.39284673f ,1.9211128f ,0.3756581f ,1.8876417f ,0.3830845f ,1.8949918f ,0.3628853f ,1.8645213f ,0.33631656f ,1.8493752f ,0.3497488f ,1.843019f ,0.28636312f ,1.5293683f ,0.82065105f ,1.5326154f ,0.86250794f ,1.589818f ,0.8206151f ,1.5877645f ,0.8618523f ,1.5252359f ,0.87363493f ,1.59508f ,0.8736416f ,1.5262156f ,0.79424894f ,1.5353348f ,0.80487025f ,1.5905392f ,0.78953624f ,1.5846139f ,0.80407006f ,1.6085275f ,0.8155602f ,1.5118604f ,0.82317096f ,1.3741164f ,0.49186143f ,1.4100196f ,0.47491318f ,1.3088281f ,0.5075447f ,1.4185423f ,0.5122722f ,1.3565266f ,0.5043225f ,1.0723705f ,0.009040296f ,1.9675109f ,0.01520574f ,1.9622562f ,0.0078125f ,1.9669697f ,0.027056929f ,1.9620306f ,0.03568138f ,1.0703585f ,0.033980668f });
  }
}
private class MFInt3288 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,3,0,2});
  }
}
private class MFVec3f89 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.23884015f ,0.14919084f ,0.37283516f ,0.25654748f ,0.24852361f ,0.3327133f ,0.3914996f ,0.1676936f ,0.45014378f ,0.30085614f ,0.047865696f ,0.46344233f });
  }
}
private class MFVec3f90 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.9793549f ,-0.19380493f ,-0.057478663f ,0.8336375f ,-0.38604313f ,-0.394993f ,0.41448393f ,-0.4597895f ,-0.7853641f ,0.53927404f ,-0.34104404f ,-0.7699823f });
  }
}
private class MFVec4f91 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.19034332f ,-0.9798437f ,0.06062896f ,1f ,-0.4250607f ,-0.90507823f ,-0.012524916f ,1f ,-0.6208619f ,-0.77382994f ,0.12537067f ,1f ,-0.539435f ,-0.8420133f ,-0.004856835f ,1f });
  }
}
private class MFVec2f92 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.39829206f ,0.9425593f ,0.3746211f ,0.9567438f ,0.37298515f ,0.9068813f ,0.41131923f ,0.90689325f });
  }
}
private class MFInt3293 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3});
  }
}
private class MFVec3f94 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.2456787f ,-0.469184f ,0.47205237f ,-0.22569244f ,-0.28119385f ,0.46645266f ,-0.40718108f ,-0.43430632f ,0.36547774f ,-0.39446285f ,-0.2642366f ,0.3507205f });
  }
}
private class MFVec3f95 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.53570724f ,0.072684854f ,0.8412697f ,-0.54999715f ,0.09261785f ,0.8300151f ,-0.4407255f ,0.05948941f ,0.89566857f ,-0.5948287f ,0.20061344f ,0.778417f });
  }
}
private class MFVec4f96 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.8370787f ,-0.08523274f ,0.5404025f ,1f ,0.8263845f ,-0.083392926f ,0.556897f ,1f ,0.89102006f ,-0.09198251f ,0.4445475f ,1f ,0.7839565f ,-0.069337584f ,0.61693144f ,1f });
  }
}
private class MFVec2f97 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.23186336f ,0.9006641f ,0.23127036f ,0.9489426f ,0.18189014f ,0.9053493f ,0.17885053f ,0.94894314f });
  }
}
private class MFInt3298 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3});
  }
}
private class MFVec3f99 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.2456787f ,-0.469184f ,0.47205237f ,-0.22569244f ,-0.28119385f ,0.46645266f ,-0.40718108f ,-0.43430632f ,0.36547774f ,-0.39446285f ,-0.2642366f ,0.3507205f });
  }
}
private class MFVec3f100 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.53570724f ,0.072684854f ,0.8412697f ,-0.54999715f ,0.09261785f ,0.8300151f ,-0.4407255f ,0.05948941f ,0.89566857f ,-0.5948287f ,0.20061344f ,0.778417f });
  }
}
private class MFVec4f101 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.83707863f ,-0.085232735f ,0.5404025f ,1f ,0.8263846f ,-0.08339293f ,0.5568969f ,1f ,0.89102006f ,-0.09198252f ,0.44454756f ,1f ,0.7839566f ,-0.06933758f ,0.6169315f ,1f });
  }
}
private class MFVec2f102 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {1.2318634f ,0.9006641f ,1.2312703f ,0.9489426f ,1.1818901f ,0.9053493f ,1.1788505f ,0.94894314f });
  }
}
private class MFInt32103 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,6,6,5,7,3,8,2,2,8,9,1,0,10,10,0,11,8,6,9,9,6,7,12,13,11,11,13,10,14,15,16,16,15,17,5,4,17,17,4,16});
  }
}
private class MFVec3f104 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.59919804f ,0.28509218f ,-0.18267909f ,-0.6728856f ,0.09299235f ,-0.18695582f ,-0.6324146f ,0.28643107f ,-0.071117096f ,-0.7011289f ,0.09418877f ,-0.0907615f ,-0.5153582f ,0.049893733f ,0.018110812f ,-0.47781345f ,0.20191167f ,0.06825617f ,-0.5839254f ,0.06297946f ,0.045829624f ,-0.5355747f ,0.22573578f ,0.07048685f ,-0.6602505f ,0.07801059f ,0.025926296f ,-0.59943163f ,0.25917223f ,0.049428828f ,-0.5913049f ,0.07649584f ,-0.22362186f ,-0.5245756f ,0.25913414f ,-0.20676406f ,-0.4614298f ,0.22607717f ,-0.15923737f ,-0.5132852f ,0.058618594f ,-0.19943719f ,-0.5132852f ,0.058618594f ,-0.19943719f ,-0.4614298f ,0.22607717f ,-0.15923737f ,-0.49069327f ,0.04937575f ,-0.09139723f ,-0.4455236f ,0.20324448f ,-0.023896968f });
  }
}
private class MFVec3f105 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.71451294f ,0.30900145f ,-0.6276857f ,-0.74375194f ,0.2977808f ,-0.5984644f ,-0.9449699f ,0.3246331f ,0.040561326f ,-0.9415944f ,0.3294188f ,0.069879696f ,0.7548392f ,-0.39243907f ,0.52555645f ,0.59707963f ,-0.31795028f ,0.73648053f ,-0.064077415f ,-0.16607411f ,0.98402923f ,-0.2059826f ,-0.08647681f ,0.97472715f ,-0.76362586f ,0.19044508f ,0.616933f ,-0.7909937f ,0.18129028f ,0.5843482f ,-0.07507076f ,0.09214183f ,-0.99291205f ,0.13369213f ,0.0994897f ,-0.9860164f ,0.87840074f ,-0.14271466f ,-0.45611915f ,0.7434848f ,-0.14218721f ,-0.6534625f ,0.7434848f ,-0.14218721f ,-0.6534625f ,0.87840074f ,-0.14271466f ,-0.45611915f ,0.9582183f ,-0.28214473f ,-0.047034852f ,0.95652425f ,-0.28477603f ,0.06295995f });
  }
}
private class MFVec4f106 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.36039147f ,-0.9315476f ,-0.048344538f ,1f ,-0.34349543f ,-0.9383026f ,-0.039990894f ,1f ,-0.32696906f ,-0.9413444f ,-0.083439305f ,1f ,-0.33503357f ,-0.9373252f ,-0.0957812f ,1f ,-0.24053493f ,-0.91106164f ,-0.33482802f ,1f ,-0.22691813f ,-0.9475428f ,-0.22510213f ,1f ,-0.27942666f ,-0.943627f ,-0.17745094f ,1f ,-0.28181773f ,-0.9486434f ,-0.14371735f ,1f ,-0.32435536f ,-0.9393399f ,-0.11150886f ,1f ,-0.30914605f ,-0.94262725f ,-0.12602659f ,1f ,-0.34741628f ,-0.9357527f ,-0.060570475f ,1f ,-0.32462057f ,-0.9356605f ,-0.13842344f ,1f ,-0.27217507f ,-0.933871f ,-0.23196065f ,1f ,-0.3148719f ,-0.93647826f ,-0.15448058f ,1f ,-0.33665767f ,-0.92386883f ,-0.1820112f ,1f ,-0.29966277f ,-0.9079352f ,-0.29301184f ,1f ,-0.28136694f ,-0.9001423f ,-0.3325307f ,1f ,-0.2441362f ,-0.8999071f ,-0.36133745f ,1f });
  }
}
private class MFVec2f107 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.93128705f ,0.770854f ,0.977382f ,0.770854f ,0.93128705f ,0.7989683f ,0.977382f ,0.7989683f ,0.977382f ,0.869494f ,0.93128705f ,0.869494f ,0.977382f ,0.85165465f ,0.93128705f ,0.85165465f ,0.977382f ,0.831674f ,0.93128705f ,0.831674f ,0.977382f ,0.74836123f ,0.93128705f ,0.74836123f ,0.93128705f ,0.7264757f ,0.977382f ,0.7264757f ,0.977382f ,0.9286231f ,0.93128705f ,0.9286231f ,0.977382f ,0.8965675f ,0.93128705f ,0.8965675f });
  }
}
private class MFInt32108 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,6,6,5,7});
  }
}
private class MFVec3f109 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.07118398f ,0.07931895f ,0.33753812f ,0.036928207f ,0.07932194f ,0.3342475f ,0.0574252f ,-0.10682629f ,0.4206f ,0.022800982f ,-0.10559147f ,0.42088187f ,-0.022800982f ,-0.10559147f ,0.42088187f ,-0.036928207f ,0.07932194f ,0.3342475f ,-0.0574252f ,-0.10682629f ,0.4206f ,-0.07118398f ,0.07931895f ,0.33753812f });
  }
}
private class MFVec3f110 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.087122455f ,0.4113063f ,0.90732396f ,-0.07552881f ,0.41275898f ,0.90770346f ,0.01113494f ,0.42179948f ,0.90662086f ,0.022450874f ,0.42274407f ,0.90597105f ,-0.022450872f ,0.422744f ,0.905971f ,0.0755288f ,0.41275895f ,0.9077034f ,-0.011134942f ,0.42179948f ,0.90662086f ,0.08712246f ,0.41130632f ,0.90732396f });
  }
}
private class MFVec4f111 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.06764415f ,0.9111275f ,-0.40653524f ,1f ,0.06740028f ,0.910335f ,-0.40834737f ,1f ,0.06786618f ,0.90426755f ,-0.42153817f ,1f ,0.06824133f ,0.90343785f ,-0.4232531f ,1f ,-0.06824134f ,0.903438f ,-0.42325312f ,-1f ,-0.06740028f ,0.910335f ,-0.4083473f ,-1f ,-0.06786618f ,0.90426755f ,-0.42153817f ,-1f ,-0.06764414f ,0.91112757f ,-0.40653533f ,-1f });
  }
}
private class MFVec2f112 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.9614652f ,0.04315801f ,0.96121705f ,0.05189778f ,0.90955913f ,0.04314243f ,0.909212f ,0.051938254f ,0.909212f ,0.051938254f ,0.96121705f ,0.05189778f ,0.90955913f ,0.04314243f ,0.9614652f ,0.04315801f });
  }
}
private class MFInt32113 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,1,1,5,3,5,6,3,3,6,7,2,3,8,8,3,7,9,10,11,11,10,12,13,14,15,15,14,16,15,16,17,17,16,18,12,19,11,11,19,20,21,22,23,23,22,24,21,25,22,22,25,26,27,28,29,29,28,30,29,30,31,31,30,32,33,34,35,35,34,36,37,18,36,36,18,16,36,16,38,38,16,14,36,38,35,35,38,39,40,41,20,20,41,11,42,43,44,44,43,41,41,43,45,45,43,46,11,41,9,9,41,45,32,30,47,47,30,48,30,28,48,48,28,49,49,50,48,48,50,51,47,48,52,52,48,51,53,54,55,55,54,56,57,58,53,53,58,54,58,6,54,54,6,5,54,5,56,56,5,4,57,59,58,58,59,60,61,62,59,59,62,60,62,8,60,60,8,7,58,60,6,6,60,7,61,63,62,62,63,64,63,65,64,64,65,66,64,66,2,2,66,0,62,64,8,8,64,2,46,67,68,68,67,69,39,70,71,71,70,72,72,70,73,73,70,74,69,75,68,68,75,76,39,38,70,70,38,77,38,14,77,77,14,78,77,78,79,79,78,80,77,79,70,70,79,74,14,13,78,78,13,81,10,9,82,82,9,83,82,83,84,84,83,85,81,86,78,78,86,80,9,45,83,83,45,87,46,68,45,45,68,87,87,68,88,88,68,76,87,88,83,83,88,85,34,37,36,89,90,91,91,90,92,93,89,94,94,89,91,40,44,41,20,95,40,40,95,96,93,24,89,89,24,22,19,97,20,20,97,95,89,22,90,90,22,26,37,98,18,18,98,99,18,99,17,17,99,100,92,27,91,91,27,29,101,102,33,33,102,34,91,29,94,94,29,31,44,103,42,42,103,104,65,105,66,66,105,106,56,107,55,55,107,108,1,109,4,4,109,110,4,110,56,56,110,107,66,106,0,0,106,111,0,111,1,1,111,109,112,113,114,114,113,115,115,116,114,114,116,117,118,119,115,115,119,116,113,120,115,115,120,118,121,122,123,123,122,124,125,126,127,127,126,128,126,129,128,128,129,130,131,132,122,122,132,124,133,134,135,135,134,136,136,134,137,137,134,138,139,140,141,141,140,142,140,143,142,142,143,144,145,146,147,147,146,148,149,148,130,130,148,128,148,150,128,128,150,127,151,150,146,146,150,148,122,152,131,131,152,153,152,154,155,155,154,156,152,157,154,154,157,158,122,121,152,152,121,157,144,159,142,142,159,160,142,160,141,141,160,161,162,163,160,160,163,161,159,164,160,160,164,162,165,166,167,167,166,168,166,169,168,168,169,170,116,119,166,166,119,169,117,116,165,165,116,166,170,169,171,171,169,172,172,173,171,171,173,174,118,120,172,172,120,173,169,119,172,172,119,118,174,173,175,175,173,176,175,176,177,177,176,178,176,113,178,178,113,112,173,120,176,176,120,113,158,179,180,180,179,181,182,183,184,184,183,151,182,185,183,183,185,186,187,188,179,179,188,181,151,183,150,150,183,189,150,189,127,127,189,190,189,191,190,190,191,192,186,191,183,183,191,189,127,190,125,125,190,193,123,194,121,121,194,195,194,196,195,195,196,197,192,198,190,190,198,193,121,195,157,157,195,199,199,179,157,157,179,158,199,200,179,179,200,187,197,200,195,195,200,199,147,148,149,201,202,203,203,202,204,205,206,201,201,206,202,153,152,155,131,153,207,207,153,208,205,201,133,133,201,134,132,131,209,209,131,207,201,203,134,134,203,138,149,130,210,210,130,211,130,129,211,211,129,212,204,202,139,139,202,140,147,213,145,145,213,214,202,206,140,140,206,143,155,156,215,215,156,216,177,178,217,217,178,218,165,167,219,219,167,220,114,117,221,221,117,222,117,165,222,222,165,219});
  }
}
private class MFInt32114 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {178,112,218,218,112,223,112,114,223,223,114,221});
  }
}
private class MFVec3f115 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.21282697f ,-0.82992643f ,0.39064753f ,0.32288206f ,-0.82992667f ,0.42188776f ,0.21315306f ,-0.78224f ,0.38841206f ,0.32288206f ,-0.78224f ,0.4238702f ,0.43293726f ,-0.82992643f ,0.39064753f ,0.4326111f ,-0.78224f ,0.38841206f ,0.40416288f ,-0.730706f ,0.36083364f ,0.32288206f ,-0.712669f ,0.38841206f ,0.24160135f ,-0.730706f ,0.36083364f ,0.21315306f ,-0.6921954f ,-0.11582866f ,0.32288206f ,-0.6921954f ,-0.152405f ,0.21315306f ,-0.78224f ,-0.11582866f ,0.32288206f ,-0.78224f ,-0.152405f ,0.32288206f ,-0.6921954f ,-0.152405f ,0.4326111f ,-0.6921954f ,-0.11582866f ,0.32288206f ,-0.78224f ,-0.152405f ,0.4326111f ,-0.78224f ,-0.11582866f ,0.32288206f ,-0.82992667f ,-0.14930436f ,0.43293726f ,-0.82992643f ,-0.11707884f ,0.32288206f ,-0.82992667f ,-0.14930436f ,0.21282697f ,-0.82992643f ,-0.11707884f ,0.32288206f ,-0.86596465f ,-0.14930436f ,0.32288206f ,-0.865965f ,0.019037403f ,0.21282697f ,-0.8659644f ,-0.11707884f ,0.17430776f ,-0.86596465f ,0.019037403f ,0.43293726f ,-0.8659644f ,-0.11707884f ,0.4714566f ,-0.86596465f ,0.019037403f ,0.4714564f ,-0.86083466f ,0.09909853f ,0.4714566f ,-0.86596465f ,0.13945863f ,0.32288206f ,-0.86083496f ,0.09909859f ,0.32288206f ,-0.865965f ,0.13945866f ,0.17430776f ,-0.86083466f ,0.09909862f ,0.17430776f ,-0.86596465f ,0.13945863f ,0.4714566f ,-0.82992667f ,0.13945863f ,0.4714564f ,-0.82992667f ,0.067610785f ,0.46918744f ,-0.78224f ,0.13908747f ,0.46918744f ,-0.78224f ,-0.0060996315f ,0.4714566f ,-0.82992667f ,0.019037403f ,0.46918744f ,-0.6921954f ,-0.0060996315f ,0.4457786f ,-0.6912174f ,0.13949004f ,0.17430776f ,-0.82992667f ,0.019037403f ,0.17657673f ,-0.78224f ,-0.0060996315f ,0.17430776f ,-0.82992667f ,0.13945863f ,0.17657673f ,-0.78224f ,0.13908747f ,0.17430776f ,-0.82992667f ,0.067610875f ,0.17657673f ,-0.6921954f ,-0.0060996315f ,0.19998562f ,-0.6912174f ,0.13949004f ,0.17430776f ,-0.86596465f ,0.30138963f ,0.32288206f ,-0.865965f ,0.30138963f ,0.4714566f ,-0.86596465f ,0.30138963f ,0.43293726f ,-0.8659644f ,0.39064753f ,0.32288206f ,-0.86596465f ,0.42188776f ,0.21282697f ,-0.8659644f ,0.39064753f ,0.46918744f ,-0.78224f ,0.13908747f ,0.46918744f ,-0.78224f ,0.2820379f ,0.4714566f ,-0.82992667f ,0.13945863f ,0.4714566f ,-0.82992667f ,0.30138963f ,0.4457786f ,-0.6912174f ,0.13949004f ,0.4326111f ,-0.712669f ,0.2820379f ,0.32288206f ,-0.6690049f ,0.17566377f ,0.32288206f ,-0.68947864f ,0.2820379f ,0.19998562f ,-0.6912174f ,0.13949004f ,0.21315306f ,-0.712669f ,0.2820379f ,0.17657673f ,-0.78224f ,0.13908747f ,0.17657673f ,-0.78224f ,0.2820379f ,0.17430776f ,-0.82992667f ,0.13945863f ,0.17430776f ,-0.82992667f ,0.30138963f ,0.32288206f ,-0.6690049f ,0.17566377f ,0.21315306f ,-0.60758436f ,0.10362938f ,0.32288206f ,-0.60758436f ,0.14020571f ,0.4326111f ,-0.60758436f ,0.10362938f ,0.32288206f ,-0.6690049f ,0.17566377f ,0.32288206f ,-0.60758436f ,0.14020571f ,0.32288206f ,-0.5438888f ,0.14699122f ,0.43628275f ,-0.54388905f ,0.107301f ,0.32288206f ,-0.5438888f ,0.14699122f ,0.20948148f ,-0.54388905f ,0.107301f ,0.46918744f ,-0.60758436f ,-0.0060996315f ,0.4326111f ,-0.60758436f ,-0.11582866f ,0.47597295f ,-0.5438888f ,-0.0060996315f ,0.43628275f ,-0.54388905f ,-0.11950031f ,0.32288206f ,-0.60758436f ,-0.152405f ,0.32288206f ,-0.60758436f ,-0.152405f ,0.21315306f ,-0.60758436f ,-0.11582866f ,0.32288206f ,-0.5438888f ,-0.1591905f ,0.20948148f ,-0.54388905f ,-0.11950031f ,0.32288206f ,-0.5438888f ,-0.1591905f ,0.17657673f ,-0.60758436f ,-0.0060996315f ,0.16979122f ,-0.5438888f ,-0.0060996315f ,0.32288206f ,-0.82992667f ,0.019037403f ,0.4714566f ,-0.82992667f ,0.019037403f ,0.32288206f ,-0.82992667f ,0.067610845f ,0.4714564f ,-0.82992667f ,0.067610785f ,0.17430776f ,-0.82992667f ,0.019037403f ,0.17430776f ,-0.82992667f ,0.067610875f ,0.21282697f ,-0.8659644f ,-0.11707884f ,0.17430776f ,-0.86596465f ,0.019037403f ,0.32288206f ,-0.86596465f ,-0.14930436f ,0.4714566f ,-0.86596465f ,0.019037403f ,0.43293726f ,-0.8659644f ,-0.11707884f ,0.32288206f ,-0.86596465f ,-0.14930436f ,0.4714566f ,-0.86596465f ,0.13945863f ,0.4714564f ,-0.86083466f ,0.09909853f ,0.17430776f ,-0.86083466f ,0.09909862f ,0.17430776f ,-0.86596465f ,0.13945863f ,0.17430776f ,-0.86596465f ,0.13945863f ,0.17430776f ,-0.86596465f ,0.30138963f ,0.4714566f ,-0.86596465f ,0.30138963f ,0.4714566f ,-0.86596465f ,0.13945863f ,0.32288206f ,-0.86596465f ,0.42188776f ,0.43293726f ,-0.8659644f ,0.39064753f ,0.21282697f ,-0.8659644f ,0.39064753f ,-0.21282697f ,-0.82992643f ,0.39064753f ,-0.21315306f ,-0.78224f ,0.38841206f ,-0.32288206f ,-0.82992667f ,0.42188776f ,-0.32288206f ,-0.78224f ,0.4238702f ,-0.4326111f ,-0.78224f ,0.38841206f ,-0.43293726f ,-0.82992643f ,0.39064753f ,-0.32288206f ,-0.712669f ,0.38841206f ,-0.40416288f ,-0.730706f ,0.36083364f ,-0.24160135f ,-0.730706f ,0.36083364f ,-0.21315306f ,-0.6921954f ,-0.11582866f ,-0.21315306f ,-0.78224f ,-0.11582866f ,-0.32288206f ,-0.6921954f ,-0.152405f ,-0.32288206f ,-0.78224f ,-0.152405f ,-0.32288206f ,-0.6921954f ,-0.152405f ,-0.32288206f ,-0.78224f ,-0.152405f ,-0.4326111f ,-0.6921954f ,-0.11582866f ,-0.4326111f ,-0.78224f ,-0.11582866f ,-0.32288206f ,-0.82992667f ,-0.14930436f ,-0.43293726f ,-0.82992643f ,-0.11707884f ,-0.21282697f ,-0.82992643f ,-0.11707884f ,-0.32288206f ,-0.82992667f ,-0.14930436f ,-0.17430776f ,-0.86596465f ,0.019037403f ,-0.32288206f ,-0.865965f ,0.019037403f ,-0.21282697f ,-0.8659644f ,-0.11707884f ,-0.32288206f ,-0.86596465f ,-0.14930436f ,-0.43293726f ,-0.8659644f ,-0.11707884f ,-0.4714566f ,-0.86596465f ,0.019037403f ,-0.4714564f ,-0.86083466f ,0.09909853f ,-0.32288206f ,-0.86083496f ,0.09909859f ,-0.4714566f ,-0.86596465f ,0.13945863f ,-0.32288206f ,-0.865965f ,0.13945866f ,-0.17430776f ,-0.86083466f ,0.09909862f ,-0.17430776f ,-0.86596465f ,0.13945863f ,-0.4714566f ,-0.82992667f ,0.13945863f ,-0.46918744f ,-0.78224f ,0.13908747f ,-0.4714564f ,-0.82992667f ,0.067610785f ,-0.46918744f ,-0.78224f ,-0.0060996315f ,-0.4714566f ,-0.82992667f ,0.019037403f ,-0.46918744f ,-0.6921954f ,-0.0060996315f ,-0.4457786f ,-0.6912174f ,0.13949004f ,-0.17657673f ,-0.78224f ,-0.0060996315f ,-0.17430776f ,-0.82992667f ,0.019037403f ,-0.17657673f ,-0.78224f ,0.13908747f ,-0.17430776f ,-0.82992667f ,0.067610875f ,-0.17430776f ,-0.82992667f ,0.13945863f ,-0.17657673f ,-0.6921954f ,-0.0060996315f ,-0.19998562f ,-0.6912174f ,0.13949004f ,-0.17430776f ,-0.86596465f ,0.30138963f ,-0.32288206f ,-0.865965f ,0.30138963f ,-0.4714566f ,-0.86596465f ,0.30138963f ,-0.32288206f ,-0.86596465f ,0.42188776f ,-0.43293726f ,-0.8659644f ,0.39064753f ,-0.21282697f ,-0.8659644f ,0.39064753f ,-0.4714566f ,-0.82992667f ,0.30138963f ,-0.46918744f ,-0.78224f ,0.2820379f ,-0.4714566f ,-0.82992667f ,0.13945863f ,-0.46918744f ,-0.78224f ,0.13908747f ,-0.4326111f ,-0.712669f ,0.2820379f ,-0.4457786f ,-0.6912174f ,0.13949004f ,-0.32288206f ,-0.6690049f ,0.17566377f ,-0.32288206f ,-0.68947864f ,0.2820379f ,-0.21315306f ,-0.712669f ,0.2820379f ,-0.19998562f ,-0.6912174f ,0.13949004f ,-0.17657673f ,-0.78224f ,0.13908747f ,-0.17657673f ,-0.78224f ,0.2820379f ,-0.17430776f ,-0.82992667f ,0.13945863f ,-0.17430776f ,-0.82992667f ,0.30138963f ,-0.21315306f ,-0.60758436f ,0.10362938f ,-0.32288206f ,-0.6690049f ,0.17566377f ,-0.32288206f ,-0.60758436f ,0.14020571f ,-0.32288206f ,-0.60758436f ,0.14020571f ,-0.4326111f ,-0.60758436f ,0.10362938f ,-0.32288206f ,-0.6690049f ,0.17566377f ,-0.32288206f ,-0.5438888f ,0.14699122f ,-0.43628275f ,-0.54388905f ,0.107301f ,-0.20948148f ,-0.54388905f ,0.107301f ,-0.32288206f ,-0.5438888f ,0.14699122f ,-0.46918744f ,-0.60758436f ,-0.0060996315f ,-0.4326111f ,-0.60758436f ,-0.11582866f ,-0.47597295f ,-0.5438888f ,-0.0060996315f ,-0.43628275f ,-0.54388905f ,-0.11950031f ,-0.32288206f ,-0.60758436f ,-0.152405f ,-0.32288206f ,-0.60758436f ,-0.152405f ,-0.21315306f ,-0.60758436f ,-0.11582866f ,-0.32288206f ,-0.5438888f ,-0.1591905f ,-0.20948148f ,-0.54388905f ,-0.11950031f ,-0.32288206f ,-0.5438888f ,-0.1591905f ,-0.17657673f ,-0.60758436f ,-0.0060996315f ,-0.16979122f ,-0.5438888f ,-0.0060996315f ,-0.32288206f ,-0.82992667f ,0.019037403f ,-0.32288206f ,-0.82992667f ,0.067610845f ,-0.4714566f ,-0.82992667f ,0.019037403f ,-0.4714564f ,-0.82992667f ,0.067610785f ,-0.17430776f ,-0.82992667f ,0.019037403f ,-0.17430776f ,-0.82992667f ,0.067610875f ,-0.21282697f ,-0.8659644f ,-0.11707884f ,-0.17430776f ,-0.86596465f ,0.019037403f ,-0.32288206f ,-0.86596465f ,-0.14930436f ,-0.4714566f ,-0.86596465f ,0.019037403f ,-0.43293726f ,-0.8659644f ,-0.11707884f ,-0.32288206f ,-0.86596465f ,-0.14930436f ,-0.4714564f ,-0.86083466f ,0.09909853f ,-0.4714566f ,-0.86596465f ,0.13945863f ,-0.17430776f ,-0.86083466f ,0.09909862f ,-0.17430776f ,-0.86596465f ,0.13945863f ,-0.17430776f ,-0.86596465f ,0.13945863f ,-0.17430776f ,-0.86596465f ,0.30138963f ,-0.4714566f ,-0.86596465f ,0.30138963f ,-0.4714566f ,-0.86596465f ,0.13945863f ,-0.32288206f ,-0.86596465f ,0.42188776f ,-0.43293726f ,-0.8659644f ,0.39064753f ,-0.21282697f ,-0.8659644f ,0.39064753f });
  }
}
private class MFVec3f116 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.6266283f ,0.023187071f ,0.7789733f ,-4.0077146e-9f ,-0.010855237f ,0.9999411f ,-0.6297729f ,0.36876753f ,0.6836641f ,-6.894249e-9f ,0.2644447f ,0.9644009f ,0.6266281f ,0.023187635f ,0.77897346f ,0.62977254f ,0.36876777f ,0.68366426f ,0.45415348f ,0.7558497f ,0.47163108f ,7.266828e-8f ,0.81601477f ,0.5780311f ,-0.45415348f ,0.7558495f ,0.47163144f ,-0.70710707f ,0f ,-0.7071066f ,0f ,0f ,-1f ,-0.7050583f ,0.0037956957f ,-0.7091392f ,-1.4774679e-8f ,-0.022313543f ,-0.9997511f ,0f ,0f ,-1f ,0.7071068f ,0f ,-0.70710677f ,-1.4774679e-8f ,-0.022313543f ,-0.9997511f ,0.705058f ,0.0037960955f ,-0.7091395f ,3.9967536e-9f ,-0.023946367f ,-0.9997133f ,0.72711676f ,0.0024898075f ,-0.6865093f ,3.9967536e-9f ,-0.023946367f ,-0.9997133f ,-0.727117f ,0.002489171f ,-0.686509f ,-9.454791e-9f ,-0.9674686f ,-0.2529911f ,0f ,-0.96427083f ,0.26491836f ,-0.22146556f ,-0.9553788f ,-0.19545971f ,-0.27517694f ,-0.935295f ,0.22248816f ,0.22146527f ,-0.95537883f ,-0.19545995f ,0.27517673f ,-0.93529505f ,0.22248799f ,0.25447243f ,-0.86443233f ,-0.43359023f ,0.23207508f ,-0.9723853f ,-0.024659576f ,2.723322e-7f ,-0.8938571f ,-0.44835192f ,2.9538008e-8f ,-0.9996787f ,-0.025351508f ,-0.25447398f ,-0.8644324f ,-0.43358937f ,-0.23207526f ,-0.9723852f ,-0.02465852f ,0.9996213f ,0.02752068f ,-8.1025047e-7f ,0.6976111f ,-0.6644107f ,-0.2681367f ,0.98147064f ,0.17916805f ,0.06792764f ,0.986596f ,-0.014913032f ,-0.16249941f ,0.84145445f ,-0.5088886f ,0.18162277f ,0.9961244f ,0.055194043f ,-0.06848308f ,0.79760736f ,0.51253754f ,0.31800592f ,-0.84145355f ,-0.5088908f ,0.18162055f ,-0.98659605f ,-0.014913664f ,-0.16249906f ,-0.9996214f ,0.027518399f ,0f ,-0.9814707f ,0.17916754f ,0.06792786f ,-0.69761086f ,-0.6644106f ,-0.26813754f ,-0.9961243f ,0.055194132f ,-0.06848287f ,-0.7976073f ,0.5125376f ,0.31800595f ,-0.25792822f ,-0.96535414f ,0.039553214f ,1.8180977e-13f ,-1f ,0.0000011714073f ,0.25792795f ,-0.96535426f ,0.03955349f ,0.21449074f ,-0.94023955f ,0.26446795f ,6.375826e-9f ,-0.9399879f ,0.34120798f ,-0.21449116f ,-0.94023955f ,0.26446784f ,0.98147064f ,0.17916805f ,0.06792764f ,0.94205153f ,0.31488582f ,0.11569705f ,0.9996213f ,0.02752068f ,-8.1025047e-7f ,0.9843072f ,0.05608212f ,0.16731441f ,0.79760736f ,0.51253754f ,0.31800592f ,0.58026004f ,0.7859161f ,0.21362153f ,1.5363012e-8f ,0.8852256f ,0.4651621f ,2.1302576e-8f ,0.9764988f ,0.2155233f ,-0.7976073f ,0.5125376f ,0.31800595f ,-0.5802602f ,0.785916f ,0.21362162f ,-0.9814707f ,0.17916754f ,0.06792786f ,-0.94205195f ,0.31488457f ,0.11569701f ,-0.9996214f ,0.027518399f ,0f ,-0.9843074f ,0.056080133f ,0.1673142f ,1.5363012e-8f ,0.8852256f ,0.4651621f ,-0.7688428f ,0.15992354f ,0.6191165f ,0f ,0.23522788f ,0.97194034f ,0.76884246f ,0.1599235f ,0.61911684f ,1.5363012e-8f ,0.8852256f ,0.4651621f ,0f ,0.23522788f ,0.97194034f ,6.9405985e-8f ,-0.0965884f ,0.99532443f ,0.7047689f ,-0.081251256f ,0.70476884f ,6.9405985e-8f ,-0.0965884f ,0.99532443f ,-0.7047691f ,-0.08125022f ,0.7047688f ,0.9989297f ,-0.046255335f ,-1.8031955e-8f ,0.7065336f ,-0.04025483f ,-0.7065337f ,0.99532443f ,-0.09658847f ,-6.406709e-8f ,0.70476884f ,-0.08125101f ,-0.7047689f ,0f ,-0.04625547f ,-0.9989296f ,0f ,-0.04625547f ,-0.9989296f ,-0.7065338f ,-0.040254664f ,-0.7065335f ,-7.474491e-8f ,-0.096588515f ,-0.99532443f ,-0.704769f ,-0.08125059f ,-0.70476884f ,-7.474491e-8f ,-0.096588515f ,-0.99532443f ,-0.9989297f ,-0.046255447f ,3.1555917e-8f ,-0.9953245f ,-0.09658826f ,2.1355698e-8f ,0f ,-0.8030989f ,0.5958457f ,0.84145445f ,-0.5088886f ,0.18162277f ,1.8852725e-7f ,-0.932894f ,-0.36015126f ,0.6976111f ,-0.6644107f ,-0.2681367f ,-0.84145355f ,-0.5088908f ,0.18162055f ,-0.69761086f ,-0.6644106f ,-0.26813754f ,-0.22146556f ,-0.9553788f ,-0.19545971f ,-0.27517694f ,-0.935295f ,0.22248816f ,-9.454791e-9f ,-0.9674686f ,-0.2529911f ,0.27517673f ,-0.93529505f ,0.22248799f ,0.22146527f ,-0.95537883f ,-0.19545995f ,-9.454791e-9f ,-0.9674686f ,-0.2529911f ,0.23207508f ,-0.9723853f ,-0.024659576f ,0.25447243f ,-0.86443233f ,-0.43359023f ,-0.25447398f ,-0.8644324f ,-0.43358937f ,-0.23207526f ,-0.9723852f ,-0.02465852f ,-0.23207526f ,-0.9723852f ,-0.02465852f ,-0.25792822f ,-0.96535414f ,0.039553214f ,0.25792795f ,-0.96535426f ,0.03955349f ,0.23207508f ,-0.9723853f ,-0.024659576f ,6.375826e-9f ,-0.9399879f ,0.34120798f ,0.21449074f ,-0.94023955f ,0.26446795f ,-0.21449116f ,-0.94023955f ,0.26446784f ,0.6266283f ,0.023187082f ,0.7789733f ,0.62977284f ,0.36876756f ,0.6836641f ,2.8054002e-8f ,-0.010855207f ,0.9999411f ,3.4471245e-8f ,0.26444465f ,0.9644009f ,-0.62977254f ,0.36876777f ,0.6836643f ,-0.62662804f ,0.023187632f ,0.77897346f ,1.2111379e-8f ,0.8160147f ,0.5780311f ,-0.4541534f ,0.7558497f ,0.47163126f ,0.45415348f ,0.75584954f ,0.4716314f ,0.70710707f ,0f ,-0.7071066f ,0.7050583f ,0.0037956957f ,-0.7091392f ,0f ,0f ,-1f ,9.849786e-9f ,-0.022313528f ,-0.9997511f ,0f ,0f ,-1f ,9.849786e-9f ,-0.022313528f ,-0.9997511f ,-0.7071068f ,0f ,-0.70710677f ,-0.705058f ,0.003796231f ,-0.7091396f ,-2.7977272e-8f ,-0.023946341f ,-0.99971324f ,-0.72711676f ,0.00249002f ,-0.6865093f ,0.727117f ,0.0024891698f ,-0.6865091f ,-2.7977272e-8f ,-0.023946341f ,-0.99971324f ,0.27517694f ,-0.935295f ,0.22248816f ,8.3561436e-11f ,-0.96427083f ,0.26491836f ,0.22146553f ,-0.9553788f ,-0.19545971f ,0f ,-0.9674686f ,-0.25299114f ,-0.22146526f ,-0.95537883f ,-0.19545995f ,-0.27517673f ,-0.93529505f ,0.22248799f ,-0.25447252f ,-0.86443275f ,-0.4335895f ,-2.6765494e-7f ,-0.8938572f ,-0.4483518f ,-0.23207508f ,-0.97238535f ,-0.024659293f ,-2.865235e-8f ,-0.9996787f ,-0.025351506f ,0.25447398f ,-0.8644324f ,-0.43358937f ,0.23207526f ,-0.9723852f ,-0.02465852f ,-0.9996213f ,0.027520727f ,-8.0726596e-7f ,-0.9814707f ,0.17916808f ,0.06792766f ,-0.69761115f ,-0.66441065f ,-0.26813662f ,-0.986596f ,-0.014912897f ,-0.16249943f ,-0.84145457f ,-0.50888836f ,0.18162288f ,-0.9961244f ,0.05519404f ,-0.06848306f ,-0.79760736f ,0.5125375f ,0.31800598f ,0.98659605f ,-0.014913659f ,-0.16249906f ,0.8414536f ,-0.50889075f ,0.18162055f ,0.9814708f ,0.17916752f ,0.06792787f ,0.69761086f ,-0.6644106f ,-0.26813754f ,0.9996214f ,0.027518366f ,0f ,0.9961243f ,0.055194143f ,-0.06848286f ,0.7976073f ,0.51253766f ,0.31800592f ,0.25792822f ,-0.96535414f ,0.039553538f ,-1.2120653e-13f ,-1f ,0.0000012580134f ,-0.25792795f ,-0.96535426f ,0.039553497f ,-6.375826e-9f ,-0.9399879f ,0.34120798f ,-0.21449074f ,-0.94023955f ,0.26446798f ,0.21449114f ,-0.94023937f ,0.26446843f ,-0.9843072f ,0.05608212f ,0.16731443f ,-0.94205153f ,0.31488585f ,0.11569704f ,-0.9996213f ,0.027520727f ,-8.0726596e-7f ,-0.9814707f ,0.17916808f ,0.06792766f ,-0.58026004f ,0.78591603f ,0.21362175f ,-0.79760736f ,0.5125375f ,0.31800598f ,1.5363012e-8f ,0.8852255f ,0.46516216f ,7.100858e-9f ,0.97649866f ,0.21552333f ,0.5802603f ,0.78591603f ,0.21362163f ,0.7976073f ,0.51253766f ,0.31800592f ,0.9814708f ,0.17916752f ,0.06792787f ,0.942052f ,0.31488466f ,0.11569703f ,0.9996214f ,0.027518366f ,0f ,0.9843074f ,0.056080267f ,0.16731429f ,0.7688427f ,0.15992351f ,0.6191166f ,1.5363012e-8f ,0.8852255f ,0.46516216f ,0f ,0.23522784f ,0.97194034f ,0f ,0.23522784f ,0.97194034f ,-0.76884246f ,0.15992351f ,0.6191169f ,1.5363012e-8f ,0.8852255f ,0.46516216f ,0f ,-0.096588425f ,0.99532443f ,-0.70476884f ,-0.081251204f ,0.70476884f ,0.70476884f ,-0.08125028f ,0.704769f ,0f ,-0.096588425f ,0.99532443f ,-0.9989297f ,-0.04625534f ,4.5079886e-9f ,-0.7065337f ,-0.040254846f ,-0.7065336f ,-0.99532443f ,-0.096588485f ,-2.1355692e-8f ,-0.7047689f ,-0.081251055f ,-0.70476884f ,0f ,-0.0462555f ,-0.9989296f ,0f ,-0.0462555f ,-0.9989296f ,0.7065338f ,-0.040254653f ,-0.7065335f ,-1.0677844e-8f ,-0.09658854f ,-0.99532443f ,0.704769f ,-0.08125053f ,-0.70476884f ,-1.0677844e-8f ,-0.09658854f ,-0.99532443f ,0.9989297f ,-0.046255454f ,0f ,0.9953245f ,-0.09658828f ,0f ,1.8794212e-10f ,-0.8030989f ,0.5958457f ,-1.8623435e-7f ,-0.932894f ,-0.36015126f ,-0.84145457f ,-0.50888836f ,0.18162288f ,-0.69761115f ,-0.66441065f ,-0.26813662f ,0.8414536f ,-0.50889075f ,0.18162055f ,0.69761086f ,-0.6644106f ,-0.26813754f ,0.22146553f ,-0.9553788f ,-0.19545971f ,0.27517694f ,-0.935295f ,0.22248816f ,0f ,-0.9674686f ,-0.25299114f ,-0.27517673f ,-0.93529505f ,0.22248799f ,-0.22146526f ,-0.95537883f ,-0.19545995f ,0f ,-0.9674686f ,-0.25299114f ,-0.25447252f ,-0.86443275f ,-0.4335895f ,-0.23207508f ,-0.97238535f ,-0.024659293f ,0.25447398f ,-0.8644324f ,-0.43358937f ,0.23207526f ,-0.9723852f ,-0.02465852f ,0.23207526f ,-0.9723852f ,-0.02465852f ,0.25792822f ,-0.96535414f ,0.039553538f ,-0.25792795f ,-0.96535426f ,0.039553497f ,-0.23207508f ,-0.97238535f ,-0.024659293f ,-6.375826e-9f ,-0.9399879f ,0.34120798f ,-0.21449074f ,-0.94023955f ,0.26446798f ,0.21449114f ,-0.94023937f ,0.26446843f });
  }
}
private class MFVec4f117 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.75971425f ,0.20461233f ,-0.61722624f ,1f ,-0.7661218f ,0.6426575f ,0.0069766063f ,1f ,-0.67100465f ,0.18512852f ,-0.7179695f ,1f ,-0.79538465f ,0.58452827f ,-0.16028127f ,1f ,-0.34465f ,0.90474254f ,0.25031474f ,1f ,-0.5464492f ,0.8358438f ,0.052520607f ,1f ,-0.7514884f ,0.6093442f ,-0.25291288f ,1f ,-0.80337644f ,0.34420118f ,-0.48591357f ,1f ,-0.6565088f ,0.07394469f ,-0.75068533f ,1f ,0.7070802f ,-0.008641263f ,-0.70708066f ,1f ,0.9999559f ,-0.009395918f ,0f ,1f ,0.70901436f ,-0.015744787f ,-0.7050183f ,1f ,0.9999617f ,-0.00875614f ,0.0001954144f ,1f ,0.009352745f ,-0.99995625f ,0f ,1f ,0.012418439f ,-0.99984586f ,0.01241844f ,1f ,0.018038392f ,-0.9995884f ,0.022309912f ,1f ,0.024749262f ,-0.99950826f ,0.019256346f ,1f ,0.027617656f ,-0.99933195f ,0.02393723f ,1f ,0.014087022f ,-0.9998371f ,0.011294105f ,1f ,0.9999484f ,-0.010157278f ,0.0002433037f ,1f ,0.6863106f ,-0.02168188f ,-0.7269854f ,1f ,1f ,-0.000040703435f ,0.00015561747f ,1f ,1f ,0.000029205672f ,0.00010630511f ,1f ,0.9751682f ,-0.21700494f ,-0.044225197f ,1f ,0.9613936f ,-0.26768783f ,0.06376206f ,1f ,0.97516835f ,0.21693781f ,0.044552002f ,1f ,0.9613937f ,0.26773086f ,-0.063580476f ,1f ,0.96708006f ,0.2273886f ,0.114239566f ,1f ,0.972698f ,0.23199612f ,0.0060560005f ,1f ,1f ,-0.00007045507f ,0.00014107021f ,1f ,1f ,-0.000004181858f ,0.00016606716f ,1f ,0.96707964f ,-0.22753641f ,-0.11394829f ,1f ,0.97269785f ,-0.23200499f ,-0.0057130517f ,1f ,0.027483394f ,-0.99826545f ,0.052066386f ,1f ,-0.59002787f ,-0.745051f ,0.3110726f ,1f ,0.17535998f ,-0.9827681f ,0.0584441f ,1f ,-0.007784328f ,-0.9989827f ,0.044417858f ,1f ,-0.5074892f ,-0.8597256f ,-0.057676867f ,1f ,0.058927804f ,-0.996814f ,0.05375381f ,1f ,0.45416275f ,-0.8572632f ,0.24256158f ,1f ,-0.08121752f ,-0.21318978f ,-0.9736293f ,1f ,0.16291733f ,-0.03332916f ,-0.9860767f ,1f ,-0.0014552888f ,-0.052864186f ,-0.99860066f ,1f ,-0.07732443f ,-0.045986366f ,-0.9959449f ,1f ,0.22114854f ,0.15629326f ,-0.96263486f ,1f ,0.06697007f ,-0.028809568f ,-0.997339f ,1f ,-0.38740408f ,-0.031200413f ,-0.9213819f ,1f ,0.9661641f ,-0.257705f ,0.010730454f ,1f ,1f ,1.9628907e-10f ,0.00016741168f ,1f ,0.9661641f ,0.2577188f ,-0.01038618f ,1f ,0.976726f ,0.20652351f ,-0.05791679f ,1f ,1f ,0.00005401368f ,0.00014878264f ,1f ,0.976726f ,-0.2064345f ,0.058234688f ,1f ,-0.17517063f ,0.9826541f ,-0.06087953f ,1f ,-0.31835887f ,0.9478893f ,0.012390451f ,1f ,-0.027463824f ,0.9975579f ,0.06421915f ,1f ,-0.09022111f ,0.9747993f ,0.20402598f ,1f ,-0.42017284f ,0.8503791f ,-0.31671807f ,1f ,-0.71126354f ,0.61678696f ,-0.33716178f ,1f ,-0.7457152f ,0.30992115f ,-0.58979464f ,1f ,-0.76602346f ,0.1385411f ,-0.6277057f ,1f ,-0.416633f ,-0.0869056f ,-0.90491134f ,1f ,-0.46298593f ,-0.10252541f ,-0.8804162f ,1f ,-0.115538225f ,-0.27056077f ,-0.9557446f ,1f ,-0.18847823f ,-0.21150333f ,-0.95903206f ,1f ,-0.007497376f ,-0.27234644f ,-0.96217006f ,1f ,-0.17452283f ,-0.16917916f ,-0.97001046f ,1f ,-0.9076708f ,0.19522065f ,-0.37151414f ,1f ,-0.61848897f ,0.05981292f ,-0.7835138f ,1f ,-0.97138375f ,0.23085077f ,-0.055870242f ,1f ,0.13138099f ,-0.9870709f ,0.09181554f ,1f ,0.42753685f ,-0.42050555f ,0.800242f ,1f ,0.19768238f ,-0.9527602f ,0.23058592f ,1f ,0.041139547f ,-0.9944818f ,-0.096506625f ,1f ,-0.016341886f ,-0.9950157f ,-0.0983713f ,1f ,-0.993576f ,0.11263849f ,0.010930747f ,1f ,-0.7094123f ,0.07244523f ,-0.7010606f ,1f ,-0.046252597f ,-0.99887055f ,0.01088649f ,1f ,-0.033474848f ,-0.9991644f ,0.023452647f ,1f ,-0.09657336f ,-0.9951689f ,-0.017675823f ,1f ,-0.064037554f ,-0.9966505f ,0.05086375f ,1f ,-0.02429917f ,-0.99863476f ,0.046241816f ,1f ,0.9998662f ,0.016343134f ,-0.0007567694f ,1f ,0.7071658f ,-0.002134539f ,-0.7070446f ,1f ,0.9991533f ,0.04095026f ,-0.0039739804f ,1f ,0.7073265f ,-0.003906213f ,-0.7068763f ,1f ,-0.057749193f ,-0.99366343f ,0.09642733f ,1f ,0.00039184434f ,-0.008462928f ,-0.9999642f ,1f ,0.00053909904f ,-0.005555541f ,-0.9999845f ,1f ,1f ,0.00006872282f ,0.00009262669f ,1f ,0.54032815f ,0.79255956f ,-0.28265706f ,1f ,1f ,-0.000055213575f ,0.00014354229f ,1f ,0.71647674f ,0.64683527f ,0.2612764f ,1f ,0.5403294f ,-0.7924285f ,0.2830219f ,1f ,0.7164769f ,-0.64699554f ,-0.2608788f ,1f ,0.57613665f ,0.033526797f ,-0.8166656f ,1f ,0.2060608f ,-0.28342342f ,-0.936595f ,1f ,0.96330845f ,0.06790204f ,-0.25966567f ,1f ,-0.75733554f ,-0.353441f ,-0.54911065f ,1f ,-0.656923f ,-0.2942957f ,0.6941486f ,1f ,0.103446096f ,-0.25163382f ,0.96227825f ,1f ,-0.9218314f ,-0.22795911f ,0.31346694f ,1f ,-0.39198145f ,-0.50206536f ,0.7708963f ,1f ,0.13866971f ,0.41109997f ,-0.9009814f ,1f ,0.01751519f ,0.021168947f ,-0.9996226f ,1f ,0.0681862f ,0.00902502f ,-0.9976318f ,1f ,-0.22831735f ,0.021121843f ,-0.9733576f ,1f ,0.83880734f ,0.24405651f ,0.48666078f ,1f ,0.9726959f ,0.232051f ,0.003872015f ,1f ,-0.8979192f ,0.15018626f ,0.41374552f ,1f ,-0.022833249f ,0.26586896f ,0.9637388f ,1f ,-0.8919431f ,0.078211874f ,-0.44533202f ,1f ,0.7597141f ,0.2046129f ,-0.61722624f ,-1f ,0.67100465f ,0.18512866f ,-0.71796954f ,-1f ,0.76612234f ,0.642657f ,0.0069765635f ,-1f ,0.7953846f ,0.5845283f ,-0.16028132f ,-1f ,0.54644936f ,0.8358438f ,0.052520763f ,-1f ,0.34464964f ,0.9047428f ,0.25031447f ,-1f ,0.8033765f ,0.3442011f ,-0.48591357f ,-1f ,0.75148845f ,0.6093442f ,-0.25291288f ,-1f ,0.65650886f ,0.07394463f ,-0.7506852f ,-1f ,-0.70708007f ,-0.008641261f ,-0.70708066f ,-1f ,-0.7090143f ,-0.015744796f ,-0.70501834f ,-1f ,-0.9999559f ,-0.009395932f ,0f ,-1f ,-0.99996173f ,-0.008756169f ,0.0001954198f ,-1f ,-0.009352733f ,-0.9999563f ,0f ,-1f ,-0.018038362f ,-0.9995884f ,0.022309894f ,-1f ,-0.012418422f ,-0.9998458f ,0.012418422f ,-1f ,-0.024749367f ,-0.9995082f ,0.019256257f ,-1f ,-0.027617605f ,-0.999332f ,0.023937209f ,-1f ,-0.014087174f ,-0.9998371f ,0.011293957f ,-1f ,-0.6863106f ,-0.021681879f ,-0.72698534f ,-1f ,-0.9999484f ,-0.01015728f ,0.00024332746f ,-1f ,-0.9613936f ,-0.26768783f ,0.06376207f ,-1f ,-1f ,0.00002920875f ,0.00010631663f ,-1f ,-0.9751683f ,-0.21700497f ,-0.04422518f ,-1f ,-1f ,-0.000040694285f ,0.00015561985f ,-1f ,-0.97516835f ,0.21693783f ,0.044552036f ,-1f ,-0.9613937f ,0.2677308f ,-0.063580446f ,-1f ,-0.96708f ,0.22738874f ,0.11423939f ,-1f ,-1f ,-0.000070460745f ,0.00014107113f ,-1f ,-0.972698f ,0.2319961f ,0.0060559344f ,-1f ,-1f ,-0.0000041826584f ,0.0001660638f ,-1f ,-0.96707964f ,-0.22753641f ,-0.1139483f ,-1f ,-0.9726978f ,-0.23200497f ,-0.0057130554f ,-1f ,-0.027483445f ,-0.99826545f ,0.052066416f ,-1f ,-0.17536001f ,-0.9827681f ,0.05844413f ,-1f ,0.59002775f ,-0.74505115f ,0.3110726f ,-1f ,0.0077841934f ,-0.9989828f ,0.044417836f ,-1f ,0.5074891f ,-0.8597258f ,-0.057676885f ,-1f ,-0.0589278f ,-0.996814f ,0.053753797f ,-1f ,-0.45416275f ,-0.8572632f ,0.24256147f ,-1f ,-0.16291732f ,-0.033329144f ,-0.9860767f ,-1f ,0.08121751f ,-0.21318981f ,-0.97362924f ,-1f ,0.07732442f ,-0.045986347f ,-0.99594486f ,-1f ,-0.22114855f ,0.15629326f ,-0.96263486f ,-1f ,0.0014552868f ,-0.05286418f ,-0.99860066f ,-1f ,-0.066970065f ,-0.028809525f ,-0.997339f ,-1f ,0.3874042f ,-0.031200735f ,-0.92138183f ,-1f ,-0.9661641f ,-0.25770494f ,0.010730529f ,-1f ,-1f ,2.1073075e-10f ,0.00016741439f ,-1f ,-0.9661642f ,0.2577188f ,-0.010386185f ,-1f ,-1f ,0.000054021984f ,0.00014880553f ,-1f ,-0.97672606f ,0.2065235f ,-0.05791679f ,-1f ,-0.97672594f ,-0.20643446f ,0.058234837f ,-1f ,0.09022119f ,0.9747992f ,0.20402643f ,-1f ,0.31835887f ,0.94788927f ,0.012390319f ,-1f ,0.02746387f ,0.99755794f ,0.06421883f ,-1f ,0.17517062f ,0.98265415f ,-0.0608793f ,-1f ,0.7112635f ,0.61678714f ,-0.3371615f ,-1f ,0.4201727f ,0.85037905f ,-0.31671816f ,-1f ,0.7457153f ,0.30992115f ,-0.5897946f ,-1f ,0.76602346f ,0.13854115f ,-0.62770575f ,-1f ,0.46298602f ,-0.10252555f ,-0.88041615f ,-1f ,0.41663298f ,-0.08690557f ,-0.9049113f ,-1f ,0.11553821f ,-0.2705607f ,-0.9557446f ,-1f ,0.18847823f ,-0.21150333f ,-0.959032f ,-1f ,0.007497368f ,-0.27234644f ,-0.96217006f ,-1f ,0.17452295f ,-0.16917938f ,-0.97001046f ,-1f ,0.6184891f ,0.05981295f ,-0.78351367f ,-1f ,0.90767074f ,0.19522063f ,-0.3715141f ,-1f ,0.9713838f ,0.23085077f ,-0.05587023f ,-1f ,-0.19768299f ,-0.9527601f ,0.23058586f ,-1f ,-0.13138095f ,-0.98707086f ,0.09181563f ,-1f ,-0.4275367f ,-0.4205057f ,0.80024207f ,-1f ,-0.041139517f ,-0.99448186f ,-0.09650666f ,-1f ,0.016341837f ,-0.9950157f ,-0.09837127f ,-1f ,0.70941246f ,0.07244526f ,-0.7010605f ,-1f ,0.99357593f ,0.11263847f ,0.01093068f ,-1f ,0.0462526f ,-0.9988705f ,0.010886516f ,-1f ,0.033474803f ,-0.99916434f ,0.02345271f ,-1f ,0.096573405f ,-0.995169f ,-0.017675895f ,-1f ,0.064037584f ,-0.99665046f ,0.050863776f ,-1f ,0.02429919f ,-0.99863476f ,0.046241846f ,-1f ,-0.9998662f ,0.016343148f ,-0.0007567705f ,-1f ,-0.70716584f ,-0.0021345492f ,-0.70704454f ,-1f ,-0.9991533f ,0.040950257f ,-0.0039738957f ,-1f ,-0.7073264f ,-0.0039062412f ,-0.7068763f ,-1f ,0.057749186f ,-0.9936633f ,0.09642732f ,-1f ,-0.0003918759f ,-0.008462924f ,-0.9999641f ,-1f ,-0.00053911895f ,-0.0055555217f ,-0.99998444f ,-1f ,-1f ,0.00006872213f ,0.00009262607f ,-1f ,-1f ,-0.00005521597f ,0.0001435421f ,-1f ,-0.54032785f ,0.79255956f ,-0.28265733f ,-1f ,-0.7164766f ,0.6468353f ,0.2612764f ,-1f ,-0.5403293f ,-0.7924285f ,0.28302193f ,-1f ,-0.71647686f ,-0.64699554f ,-0.2608788f ,-1f ,-0.5761373f ,0.033526547f ,-0.816665f ,-1f ,-0.20606078f ,-0.2834234f ,-0.93659496f ,-1f ,-0.96330845f ,0.06790205f ,-0.25966567f ,-1f });
  }
}
private class MFVec4f118 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.75733536f ,-0.353441f ,-0.5491107f ,-1f ,0.6569231f ,-0.2942957f ,0.6941484f ,-1f ,-0.10344546f ,-0.25163388f ,0.96227825f ,-1f ,0.39198214f ,-0.50206476f ,0.7708964f ,-1f ,0.9218318f ,-0.22795904f ,0.31346592f ,-1f ,-0.1386697f ,0.41109994f ,-0.9009814f ,-1f ,-0.017515182f ,0.021168947f ,-0.9996226f ,-1f ,-0.0681862f ,0.009025016f ,-0.9976318f ,-1f ,0.22831722f ,0.021121485f ,-0.9733577f ,-1f ,-0.8388078f ,0.24405658f ,0.4866599f ,-1f ,-0.97269595f ,0.23205099f ,0.0038730488f ,-1f ,0.8979185f ,0.15018669f ,0.41374668f ,-1f ,0.022835393f ,0.2658685f ,0.96373886f ,-1f ,0.89194304f ,0.07821158f ,-0.4453321f ,-1f });
  }
}
private class MFVec2f119 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.8369275f ,0.5204001f ,0.8087344f ,0.50739586f ,0.8404069f ,0.5098157f ,0.8163583f ,0.4981918f ,0.7905026f ,0.48235044f ,0.8002531f ,0.47694433f ,0.81453633f ,0.47061366f ,0.8278707f ,0.48418224f ,0.8438387f ,0.494567f ,0.19982252f ,0.7784847f ,0.22929427f ,0.77831924f ,0.20036092f ,0.8014158f ,0.22978377f ,0.80096763f ,0.04863429f ,0.82706064f ,0.048811495f ,0.7976026f ,0.07120681f ,0.8275327f ,0.07170224f ,0.7982081f ,0.08325702f ,0.8276536f ,0.08383381f ,0.79870206f ,0.22983654f ,0.8130354f ,0.20080931f ,0.81354314f ,0.04555309f ,0.509951f ,0.04556012f ,0.552721f ,0.017593205f ,0.5181431f ,0.0078125f ,0.5527273f ,0.07351577f ,0.5181338f ,0.08330792f ,0.55271477f ,0.083313406f ,0.5854216f ,0.08331519f ,0.59575826f ,0.045565605f ,0.585428f ,0.045567334f ,0.59576464f ,0.007817984f ,0.5854342f ,0.007819653f ,0.5957709f ,0.086607516f ,0.733149f ,0.085546136f ,0.7512007f ,0.07450825f ,0.7327142f ,0.07236135f ,0.7690314f ,0.084828496f ,0.76326007f ,0.049211204f ,0.7680326f ,0.050958037f ,0.73099875f ,0.16529474f ,0.8143562f ,0.17113054f ,0.8019149f ,0.13516486f ,0.8159935f ,0.13479549f ,0.80390257f ,0.15322495f ,0.81502056f ,0.17023799f ,0.77881265f ,0.13319546f ,0.7803717f ,0.0078264475f ,0.6369121f ,0.045574248f ,0.63690585f ,0.08332199f ,0.63689953f ,0.07353926f ,0.6595785f ,0.045579314f ,0.66752034f ,0.01761669f ,0.6595879f ,0.8020466f ,0.41413632f ,0.79826325f ,0.4501964f ,0.78862345f ,0.4140292f ,0.78585166f ,0.45643857f ,0.8296289f ,0.41756532f ,0.8187007f ,0.4509545f ,0.86124605f ,0.44293088f ,0.84378743f ,0.46462888f ,0.8925192f ,0.46858403f ,0.8622654f ,0.4864619f ,0.9016647f ,0.49497098f ,0.8671064f ,0.5063411f ,0.9045602f ,0.50812596f ,0.86343807f ,0.5197897f ,0.10347122f ,0.7693611f ,0.13920483f ,0.75746f ,0.10932076f ,0.7528755f ,0.028000474f ,0.7368966f ,0.04008895f ,0.7012224f ,0.023569286f ,0.70699024f ,0.0078125f ,0.7083373f ,0.011380672f ,0.7379111f ,0.110744685f ,0.73712826f ,0.14029336f ,0.740847f ,0.027690351f ,0.7674706f ,0.027339816f ,0.797402f ,0.011627972f ,0.7674923f ,0.011027932f ,0.79756814f ,0.02750194f ,0.8270668f ,0.22919017f ,0.757125f ,0.19964297f ,0.757002f ,0.23003292f ,0.7410286f ,0.19980669f ,0.7406857f ,0.011402965f ,0.8279052f ,0.16978091f ,0.75731164f ,0.1698356f ,0.74125075f ,0.04556167f ,0.5618771f ,0.08330941f ,0.5618709f ,0.045563757f ,0.574218f ,0.0833115f ,0.57421166f ,0.00781405f ,0.56188333f ,0.007816076f ,0.57422423f ,0.20103091f ,0.82270783f ,0.16549176f ,0.82352144f ,0.2300493f ,0.82218397f ,0.09399152f ,0.76350784f ,0.09299904f ,0.7989661f ,0.09240234f ,0.82791054f ,0.09575039f ,0.7336285f ,0.09386158f ,0.74375284f ,0.14572921f ,0.8233011f ,0.13559377f ,0.8251365f ,0.9063477f ,0.5175682f ,0.8638783f ,0.5290844f ,0.7767614f ,0.457802f ,0.7791676f ,0.41427037f ,0.8029209f ,0.51428896f ,0.7824816f ,0.4864421f ,0.8342756f ,0.5290883f ,1.8369274f ,0.5204001f ,1.8404069f ,0.5098157f ,1.8087344f ,0.50739586f ,1.8163583f ,0.4981918f ,1.8002532f ,0.47694433f ,1.7905025f ,0.48235044f ,1.8278707f ,0.48418224f ,1.8145363f ,0.47061366f ,1.8438387f ,0.494567f ,1.1998225f ,0.7784847f ,1.2003609f ,0.8014158f ,1.2292943f ,0.77831924f ,1.2297838f ,0.80096763f ,1.0486343f ,0.82706064f ,1.0712068f ,0.8275327f ,1.0488114f ,0.7976026f ,1.0717022f ,0.7982081f ,1.083257f ,0.8276536f ,1.0838338f ,0.79870206f ,1.2008094f ,0.81354314f ,1.2298366f ,0.8130354f ,1.0078125f ,0.5527273f ,1.0455601f ,0.552721f ,1.0175931f ,0.5181431f ,1.0455531f ,0.509951f ,1.0735158f ,0.5181338f ,1.083308f ,0.55271477f ,1.0833135f ,0.5854216f ,1.0455656f ,0.585428f ,1.0833151f ,0.59575826f ,1.0455673f ,0.59576464f ,1.007818f ,0.5854342f ,1.0078197f ,0.5957709f ,1.0866075f ,0.733149f ,1.0745082f ,0.7327142f ,1.0855461f ,0.7512007f ,1.0723614f ,0.7690314f ,1.0848285f ,0.76326007f ,1.0492113f ,0.7680326f ,1.050958f ,0.73099875f ,1.1711305f ,0.8019149f ,1.1652948f ,0.8143562f ,1.1347954f ,0.80390257f ,1.153225f ,0.81502056f ,1.1351649f ,0.8159935f ,1.170238f ,0.77881265f ,1.1331954f ,0.7803717f ,1.0078264f ,0.6369121f ,1.0455742f ,0.63690585f ,1.083322f ,0.63689953f ,1.0455793f ,0.66752034f ,1.0735393f ,0.6595785f ,1.0176167f ,0.6595879f ,1.7858517f ,0.45643857f ,1.7982633f ,0.4501964f ,1.7886235f ,0.4140292f ,1.8020465f ,0.41413632f ,1.8187007f ,0.4509545f ,1.829629f ,0.41756532f ,1.8612461f ,0.44293088f ,1.8437874f ,0.46462888f ,1.8622653f ,0.4864619f ,1.8925192f ,0.46858403f ,1.9016647f ,0.49497098f ,1.8671064f ,0.5063411f ,1.9045602f ,0.50812596f ,1.8634381f ,0.5197897f ,1.1392049f ,0.75746f ,1.1034713f ,0.7693611f ,1.1093208f ,0.7528755f ,1.0235693f ,0.70699024f ,1.0280005f ,0.7368966f ,1.0400889f ,0.7012224f ,1.0078125f ,0.7083373f ,1.0113807f ,0.7379111f ,1.1402934f ,0.740847f ,1.1107447f ,0.73712826f ,1.0276904f ,0.7674706f ,1.0273398f ,0.797402f ,1.0116279f ,0.7674923f ,1.0110279f ,0.79756814f ,1.027502f ,0.8270668f ,1.2291901f ,0.757125f ,1.199643f ,0.757002f ,1.2300329f ,0.7410286f ,1.1998067f ,0.7406857f ,1.011403f ,0.8279052f ,1.169781f ,0.75731164f ,1.1698356f ,0.74125075f ,1.0455617f ,0.5618771f ,1.0455637f ,0.574218f ,1.0833094f ,0.5618709f ,1.0833116f ,0.57421166f ,1.007814f ,0.56188333f ,1.0078161f ,0.57422423f ,1.201031f ,0.82270783f ,1.1654918f ,0.82352144f ,1.2300493f ,0.82218397f ,1.0939915f ,0.76350784f ,1.092999f ,0.7989661f ,1.0924023f ,0.82791054f ,1.0938616f ,0.74375284f ,1.0957503f ,0.7336285f ,1.1457292f ,0.8233011f ,1.1355938f ,0.8251365f ,1.9063478f ,0.5175682f ,1.8638783f ,0.5290844f ,1.7767614f ,0.457802f ,1.7791677f ,0.41427037f ,1.8029208f ,0.51428896f ,1.7824817f ,0.4864421f ,1.8342756f ,0.5290883f });
  }
}
private class MFInt32120 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,0,3,4,2,5,0,0,5,3,6,7,8,6,9,10,7,6,11,6,10,11});
  }
}
private class MFVec3f121 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.2951628f ,1.4974742f ,0.016685754f ,0.42775396f ,1.3835262f ,0.06550884f ,0.46539152f ,1.433484f ,0.07029331f ,0.46651363f ,1.5514774f ,0.04889053f ,0.41906083f ,1.5846504f ,0.019267738f ,0.47863758f ,1.4881172f ,0.066628635f ,-0.29516315f ,1.4974742f ,0.016685724f ,-0.46539164f ,1.4334838f ,0.07029247f ,-0.42775393f ,1.3835261f ,0.06550884f ,-0.4190607f ,1.5846504f ,0.019267797f ,-0.46651363f ,1.5514774f ,0.04889083f ,-0.4786377f ,1.4881172f ,0.066628456f });
  }
}
private class MFVec3f122 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.2623266f ,0.20534201f ,0.9428783f ,-0.26230326f ,0.10575569f ,0.959173f ,-0.25835946f ,0.11613761f ,0.9590425f ,-0.2592251f ,0.26941252f ,0.92748004f ,-0.2848782f ,0.37879947f ,0.88054276f ,-0.25047874f ,0.17285016f ,0.95256674f ,0.2623253f ,0.2053405f ,0.942879f ,0.25835574f ,0.11613699f ,0.9590435f ,0.26229525f ,0.10576659f ,0.9591739f ,0.28487954f ,0.37879932f ,0.8805423f ,0.25922647f ,0.2694082f ,0.927481f ,0.25047958f ,0.17284077f ,0.9525682f });
  }
}
private class MFVec4f123 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.66587406f ,0.74571407f ,0.022855595f ,1f ,0.6636692f ,0.741345f ,0.09975378f ,1f ,0.66439176f ,0.74205184f ,0.08912198f ,1f ,0.6611584f ,0.74952334f ,-0.03293024f ,1f ,0.6633718f ,0.7410059f ,-0.10415448f ,1f ,0.6665735f ,0.74435425f ,0.04020794f ,1f ,-0.6658732f ,0.7457147f ,0.022855502f ,-1f ,-0.664392f ,0.7420519f ,0.089119844f ,-1f ,-0.6636715f ,0.74134475f ,0.09974039f ,-1f ,-0.6633696f ,0.7410078f ,-0.104154974f ,-1f ,-0.6611564f ,0.74952525f ,-0.032926835f ,-1f ,-0.666572f ,0.74435514f ,0.040215235f ,-1f });
  }
}
private class MFVec2f124 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.45941955f ,0.87465525f ,0.45942533f ,0.83091825f ,0.47426558f ,0.8322393f ,0.4957124f ,0.85172313f ,0.4943387f ,0.8661064f ,0.48616827f ,0.8388881f ,0.45941955f ,0.87465525f ,0.47426558f ,0.8322393f ,0.45942533f ,0.83091825f ,0.4943387f ,0.8661064f ,0.4957124f ,0.85172313f ,0.48616827f ,0.8388881f });
  }
}
private class MFString125 {
  private org.web3d.x3d.jsail.fields.MFString getArray() {
    return new org.web3d.x3d.jsail.fields.MFString(new java.lang.String[] {"textures/lambert3_baseColor.png","https://www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/GltfSampleModels/textures/lambert3_baseColor.png"});
  }
}
private class MFString126 {
  private org.web3d.x3d.jsail.fields.MFString getArray() {
    return new org.web3d.x3d.jsail.fields.MFString(new java.lang.String[] {"textures/lambert3_metallicRoughness.png","https://www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/GltfSampleModels/textures/lambert3_metallicRoughness.png"});
  }
}
private class MFString127 {
  private org.web3d.x3d.jsail.fields.MFString getArray() {
    return new org.web3d.x3d.jsail.fields.MFString(new java.lang.String[] {"textures/lambert3_normal.png","https://www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/GltfSampleModels/textures/lambert3_normal.png"});
  }
}
private class MFInt32128 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,1,5,5,1,0});
  }
}
private class MFVec3f129 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.9857759f ,-0.032739162f ,0.028195571f ,0.9857759f ,-0.032739162f ,0.003670575f ,1.0484614f ,-0.075913906f ,0.028195571f ,1.0484614f ,-0.075913906f ,0.003670575f ,0.9462003f ,0.025724888f ,0.003670575f ,0.9462003f ,0.025724888f ,0.028195571f });
  }
}
private class MFVec3f130 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.70494515f ,-0.7092619f ,0f ,-0.70494527f ,-0.7092617f ,0f ,-0.56722885f ,-0.8235603f ,0f ,-0.5672291f ,-0.8235602f ,0f ,-0.82811004f ,-0.56056553f ,0f ,-0.82811004f ,-0.56056553f ,0f });
  }
}
private class MFVec4f131 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.0000943347f ,0.000093760566f ,-1f ,1f ,-0.00009924301f ,0.00009863903f ,-1f ,1f ,-0.00011842128f ,0.000081562896f ,-1f ,1f ,-0.00012538691f ,0.00008636054f ,-1f ,1f ,-0.000082185f ,0.00012140992f ,-1f ,1f ,-0.00007903791f ,0.00011676079f ,-1f ,1f });
  }
}
private class MFVec2f132 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.9753288f ,0.68992686f ,0.9858991f ,0.6899283f ,0.97532386f ,0.7227324f ,0.98589426f ,0.72273403f ,0.98590356f ,0.6594999f ,0.9753332f ,0.65949833f });
  }
}
private class MFInt32133 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,3,1,4,4,1,5,4,5,6,6,5,7,6,7,8,8,7,9,8,9,10,10,9,11});
  }
}
private class MFVec3f134 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.5871084f ,-0.13193989f ,0.004584414f ,0.66744f ,-0.15063715f ,0.004584414f ,0.5871084f ,-0.13193989f ,0.027281731f ,0.66744f ,-0.15063715f ,0.027281731f ,0.73500156f ,-0.14412308f ,0.027281731f ,0.73500156f ,-0.14412308f ,0.004584414f ,0.8044436f ,-0.109401226f ,0.027281731f ,0.8044436f ,-0.109401226f ,0.004584414f ,0.8578186f ,-0.05176878f ,0.027281731f ,0.8578186f ,-0.05176878f ,0.004584414f ,0.88542813f ,-0.0066428185f ,0.027281731f ,0.88542813f ,-0.0066428185f ,0.004584414f });
  }
}
private class MFVec3f135 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.22669172f ,-0.9739666f ,0f ,-0.08210023f ,-0.9966242f ,0f ,-0.22669172f ,-0.9739666f ,0f ,-0.08210024f ,-0.99662405f ,0f ,0.28821218f ,-0.95756656f ,0f ,0.288212f ,-0.9575667f ,0f ,0.6010056f ,-0.7992448f ,0f ,0.6010056f ,-0.7992448f ,0f ,0.7854048f ,-0.61898255f ,0f ,0.78540486f ,-0.6189824f ,0f ,0.85300803f ,-0.52189773f ,0f ,0.8530084f ,-0.5218972f ,0f });
  }
}
private class MFVec4f136 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.00010681967f ,0.00002486239f ,1f ,1f ,-0.00009886993f ,0.00000814474f ,1f ,1f ,-0.00010087747f ,0.000023479333f ,1f ,1f ,-0.00009586305f ,0.000007897039f ,1f ,1f ,-0.00009170248f ,-0.000027600978f ,1f ,1f ,-0.00009184422f ,-0.000027643617f ,1f ,1f ,-0.00007665307f ,-0.000057640573f ,1f ,1f ,-0.00007985759f ,-0.000060050264f ,1f ,1f ,-0.000065078755f ,-0.00008257611f ,1f ,1f ,-0.000065001754f ,-0.00008247842f ,1f ,1f ,-0.00005405916f ,-0.0000883562f ,1f ,1f ,-0.00005087904f ,-0.00008315861f ,1f ,1f });
  }
}
private class MFVec2f137 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.9786224f ,0.63964725f ,0.97861886f ,0.6040994f ,0.98840475f ,0.6396462f ,0.9884012f ,0.60409844f ,0.9883984f ,0.57484496f ,0.978616f ,0.5748459f ,0.988395f ,0.54138315f ,0.9786127f ,0.5413841f ,0.9883918f ,0.5075277f ,0.9786094f ,0.5075288f ,0.98838943f ,0.4847273f ,0.97860706f ,0.48472825f });
  }
}
private class MFInt32138 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,3,1,4,1,5,4,6,7,8,8,7,9,10,11,12,12,11,13,14,15,16,16,15,17,18,19,20,19,21,20,21,22,20,22,23,20,17,7,16,16,7,6,8,9,13,13,9,12});
  }
}
private class MFVec3f139 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.53423834f ,0.056382656f ,0.052789032f ,0.6111729f ,0.056382656f ,0.052789032f ,0.53423834f ,0.101891994f ,0.052789032f ,0.5516558f ,0.11252594f ,0.052789032f ,0.58744407f ,0.11252594f ,0.052789032f ,0.61117285f ,0.09827614f ,0.052789032f ,0.5516558f ,0.11252594f ,-0.020922886f ,0.5516558f ,0.11252594f ,0.052789032f ,0.58744407f ,0.11252594f ,-0.020922886f ,0.58744407f ,0.11252594f ,0.052789032f ,0.6111729f ,0.056382656f ,0.052789032f ,0.6111729f ,0.056382656f ,-0.020922886f ,0.61117285f ,0.09827614f ,0.052789032f ,0.61117285f ,0.09827614f ,-0.020922886f ,0.53423834f ,0.056382656f ,-0.020922886f ,0.53423834f ,0.056382656f ,0.052789032f ,0.53423834f ,0.101891994f ,-0.020922886f ,0.53423834f ,0.101891994f ,0.052789032f ,0.53423834f ,0.056382656f ,-0.020922886f ,0.53423834f ,0.101891994f ,-0.020922886f ,0.6111729f ,0.056382656f ,-0.020922886f ,0.5516558f ,0.11252594f ,-0.020922886f ,0.58744407f ,0.11252594f ,-0.020922886f ,0.61117285f ,0.09827614f ,-0.020922886f });
  }
}
private class MFVec3f140 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.6918219f ,0f ,0.72206825f ,0.814218f ,0f ,0.58055925f ,-0.7496667f ,0.23257123f ,0.6196051f ,-0.15958504f ,0.798465f ,0.5805052f ,0.19547676f ,0.8164457f ,0.54332805f ,0.882884f ,0.37314796f ,0.28509042f ,-0.15958494f ,0.7984651f ,-0.58050513f ,-0.15958504f ,0.798465f ,0.5805052f ,0.19547658f ,0.81644595f ,-0.54332757f ,0.19547676f ,0.8164457f ,0.54332805f ,0.814218f ,0f ,0.58055925f ,0.814218f ,0.000001318134f ,-0.5805593f ,0.882884f ,0.37314796f ,0.28509042f ,0.88288325f ,0.37314993f ,-0.28509012f ,-0.69182193f ,0f ,-0.7220682f ,-0.6918219f ,0f ,0.72206825f ,-0.7496667f ,0.23257121f ,-0.6196051f ,-0.7496667f ,0.23257123f ,0.6196051f ,-0.69182193f ,0f ,-0.7220682f ,-0.7496667f ,0.23257121f ,-0.6196051f ,0.814218f ,0.000001318134f ,-0.5805593f ,-0.15958494f ,0.7984651f ,-0.58050513f ,0.19547658f ,0.81644595f ,-0.54332757f ,0.88288325f ,0.37314993f ,-0.28509012f });
  }
}
private class MFVec4f141 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.72206825f ,0.00024895094f ,0.69182175f ,1f ,0.58055925f ,0.00030621246f ,-0.814218f ,1f ,0.6618156f ,0.263677f ,0.70176536f ,1f ,0.9871842f ,0.12913877f ,0.09375807f ,1f ,0.98070836f ,-0.16267952f ,-0.10838144f ,1f ,0.46959126f ,-0.70141816f ,-0.53618723f ,1f ,-0.11366823f ,0.5692677f ,0.8142566f ,1f ,0.11387652f ,-0.5692262f ,0.81425655f ,1f ,0.12661085f ,0.52836967f ,0.83952075f ,1f ,-0.12640949f ,-0.5284184f ,0.8395206f ,1f ,-0.58055925f ,-0.00011290838f ,0.81421804f ,1f ,0.5805594f ,-0.00011196853f ,0.81421804f ,1f ,-0.26256648f ,-0.111064814f ,0.9585006f ,1f ,0.26263034f ,0.11091303f ,0.9585008f ,1f ,-0.72206813f ,0.00013559662f ,0.69182193f ,1f ,0.72206825f ,0.00013288432f ,0.69182193f ,1f ,-0.59175205f ,0.18368456f ,0.78491366f ,1f ,0.59181046f ,-0.18349658f ,0.7849137f ,1f ,-0.7220682f ,-0.0002041348f ,0.69182193f ,1f ,-0.6618156f ,-0.2636443f ,0.70177764f ,1f ,-0.5805593f ,-0.00025894557f ,-0.81421804f ,1f ,-0.98718417f ,-0.12913366f ,0.09376487f ,1f ,-0.9807084f ,0.16268826f ,-0.10836808f ,1f ,-0.46959263f ,0.70145416f ,-0.53613883f ,1f });
  }
}
private class MFVec2f142 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.86036366f ,0.7551047f ,0.8935219f ,0.75509876f ,0.8603671f ,0.77471876f ,0.8678748f ,0.77930063f ,0.88329923f ,0.7792979f ,0.89352506f ,0.7731545f ,0.69537014f ,0.6609587f ,0.7271394f ,0.66095585f ,0.69537157f ,0.67638326f ,0.7271408f ,0.6763804f ,0.72714365f ,0.7063655f ,0.6953742f ,0.70636845f ,0.72714204f ,0.68830967f ,0.69537264f ,0.6883126f ,0.6953674f ,0.6325493f ,0.72713685f ,0.6325463f ,0.6953694f ,0.65216345f ,0.72713864f ,0.6521606f ,0.8929916f ,0.7223816f ,0.89298844f ,0.7419961f ,0.8598332f ,0.7223767f ,0.8854812f ,0.7465781f ,0.8700565f ,0.74657553f ,0.8598305f ,0.74043256f });
  }
}
private class MFInt32143 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,6,6,5,7,6,7,8,8,7,9,8,9,0,0,9,1});
  }
}
private class MFVec3f144 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.59579664f ,-0.100040436f ,0.041618243f ,0.783798f ,-0.100040436f ,0.041618243f ,0.59579664f ,-0.08560896f ,0.041618243f ,0.783798f ,-0.08560896f ,0.041618243f ,0.59579664f ,-0.08560896f ,0.041618243f ,0.783798f ,-0.08560896f ,0.041618243f ,0.59579664f ,-0.08560896f ,-0.009752097f ,0.783798f ,-0.08560896f ,-0.009752097f ,0.59579664f ,-0.100040436f ,-0.009752097f ,0.783798f ,-0.100040436f ,-0.009752097f });
  }
}
private class MFVec3f145 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0f ,-0.9627312f ,0.27046037f ,0f ,-0.9627312f ,0.27045998f ,0f ,0.9627312f ,0.2704603f ,0f ,0.9627312f ,0.27046016f ,0f ,0.9627312f ,0.2704603f ,0f ,0.9627312f ,0.27046016f ,0f ,0.9627312f ,-0.27046037f ,0f ,0.9627312f ,-0.27045998f ,0f ,-0.9627312f ,-0.2704603f ,0f ,-0.9627312f ,-0.27046016f });
  }
}
private class MFVec4f146 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-1f ,0.000032020504f ,0.00011398023f ,1f ,-1f ,0.000021874355f ,0.00007786411f ,1f ,-1f ,0.00001183801f ,-0.000042138614f ,1f ,-1f ,0.000011891696f ,-0.000042329728f ,1f ,-1f ,0.00004194762f ,-0.00014931684f ,1f ,-1f ,0.000042426167f ,-0.00015102036f ,1f ,-1f ,-0.000032301858f ,-0.00011498175f ,1f ,-1f ,-0.000022283271f ,-0.00007931968f ,1f ,-1f ,-0.000022091739f ,0.0000786378f ,1f ,-1f ,-0.000032056392f ,0.000114108065f ,1f });
  }
}
private class MFVec2f147 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.5859454f ,0.76878023f ,0.5049183f ,0.7687672f ,0.5859463f ,0.7625604f ,0.5049193f ,0.76254725f ,0.5859369f ,0.81928045f ,0.50491005f ,0.8192674f ,0.5859407f ,0.7971405f ,0.50491345f ,0.7971271f ,0.58594173f ,0.79092056f ,0.5049146f ,0.7909074f });
  }
}
private class MFInt32148 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,6,6,5,7,7,5,0,0,5,1,1,5,8,8,5,9});
  }
}
private class MFVec3f149 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.7913419f ,-0.015319347f ,0.031905256f ,0.9448885f ,-0.015319347f ,0.031905256f ,0.7913419f ,0.018470764f ,0.031905256f ,0.9545908f ,0.018470764f ,0.031905256f ,0.9545908f ,0.018470764f ,-0.000039113685f ,0.9448885f ,-0.015319347f ,-0.000039113685f ,0.7913419f ,0.018470764f ,-0.000039113685f ,0.7913419f ,-0.015319347f ,-0.000039113685f ,0.9545908f ,0.018470764f ,0.031905256f ,0.9545908f ,0.018470764f ,-0.000039113685f });
  }
}
private class MFVec3f150 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0f ,-0.6869813f ,0.72667503f ,0.12901324f ,-0.6232971f ,0.7712693f ,0f ,0f ,1f ,0.2310725f ,-0.06634902f ,0.97067165f ,0.23107252f ,-0.06634866f ,-0.97067165f ,0.12901327f ,-0.6232969f ,-0.7712695f ,0f ,0f ,-1f ,0f ,-0.6869813f ,-0.72667503f ,0.2310725f ,-0.06634902f ,0.97067165f ,0.23107252f ,-0.06634866f ,-0.97067165f });
  }
}
private class MFVec4f151 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.00019778742f ,0.72667503f ,0.6869813f ,1f ,-0.013736398f ,0.77657133f ,0.62987965f ,1f ,-0.0001472827f ,1f ,0f ,1f ,0.015228449f ,0.99779654f ,0.06457792f ,1f ,-0.015497166f ,-0.99779654f ,0.06451357f ,1f ,0.05802541f ,-0.7716918f ,0.6333443f ,1f ,-0.00013787657f ,-1f ,0f ,1f ,-0.00019546741f ,-0.7266751f ,0.68698126f ,1f ,-0.933125f ,0.26735964f ,0.24040942f ,1f ,0.9328129f ,-0.26844645f ,0.24040931f ,1f });
  }
}
private class MFVec2f152 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.9761913f ,0.96659887f ,0.97618306f ,0.9071251f ,0.98927927f ,0.9665969f ,0.9892706f ,0.9033652f ,0.9507215f ,0.90337044f ,0.96380997f ,0.90712667f ,0.9507301f ,0.9666024f ,0.9638182f ,0.9666006f ,0.97618127f ,0.8935081f ,0.9638082f ,0.8935098f });
  }
}
private class MFInt32153 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,6,6,5,7,6,7,8,8,7,9,10,11,12,12,11,13,14,15,16,16,15,17,18,19,20,20,19,21,12,13,0,0,13,1,10,22,11,11,22,23,2,3,24,24,3,25,9,23,8,8,23,22,16,17,26,26,17,27,28,29,30,30,29,31,14,32,15,15,32,33,18,20,28,28,20,29});
  }
}
private class MFVec3f154 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.7766712f ,-0.08447695f ,0.07307734f ,0.804953f ,-0.08447695f ,0.07307734f ,0.7766712f ,0.015702248f ,0.07307734f ,0.82545185f ,0.015702248f ,0.07307734f ,0.7766712f ,0.0883646f ,0.07307734f ,0.82545185f ,0.0883646f ,0.07307734f ,0.7766712f ,0.0883646f ,-0.04121141f ,0.82545185f ,0.0883646f ,-0.04121141f ,0.7766712f ,0.015702248f ,-0.04121141f ,0.82545185f ,0.015702248f ,-0.04121141f ,0.7766712f ,-0.11052418f ,-0.011494078f ,0.79952043f ,-0.11052418f ,-0.011494078f ,0.7766712f ,-0.11052418f ,0.04336006f ,0.79952043f ,-0.11052418f ,0.04336006f ,0.804953f ,-0.08447695f ,0.07307734f ,0.804953f ,-0.08447695f ,-0.04121141f ,0.82545185f ,0.015702248f ,0.07307734f ,0.82545185f ,0.015702248f ,-0.04121141f ,0.7766712f ,-0.08447695f ,-0.04121141f ,0.7766712f ,-0.11052418f ,-0.011494078f ,0.7766712f ,-0.08447695f ,0.07307734f ,0.7766712f ,-0.11052418f ,0.04336006f ,0.7766712f ,-0.08447695f ,-0.04121141f ,0.804953f ,-0.08447695f ,-0.04121141f ,0.7766712f ,0.0883646f ,0.07307734f ,0.82545185f ,0.0883646f ,0.07307734f ,0.82545185f ,0.0883646f ,0.07307734f ,0.82545185f ,0.0883646f ,-0.04121141f ,0.7766712f ,0.015702248f ,-0.04121141f ,0.7766712f ,0.015702248f ,0.07307734f ,0.7766712f ,0.0883646f ,-0.04121141f ,0.7766712f ,0.0883646f ,0.07307734f ,0.79952043f ,-0.11052418f ,0.04336006f ,0.79952043f ,-0.11052418f ,-0.011494078f });
  }
}
private class MFVec3f155 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.9601409f ,-0.06091298f ,0.27279857f ,0.9156445f ,-0.24250148f ,0.32060584f ,-0.9257029f ,0f ,0.37825122f ,0.92445433f ,-0.109639555f ,0.36518943f ,-0.782573f ,0.5253683f ,0.3340175f ,0.7825731f ,0.52536803f ,0.3340176f ,-0.78257334f ,0.52536756f ,-0.3340177f ,0.7825736f ,0.52536726f ,-0.33401775f ,-0.9257029f ,0f ,-0.37825125f ,0.92445433f ,-0.109639555f ,-0.36518946f ,-0.904771f ,-0.40703088f ,-0.1253614f ,0.6427682f ,-0.7375558f ,-0.20702794f ,-0.7367246f ,-0.6462368f ,0.19903502f ,0.8152076f ,-0.5632417f ,0.13489f ,0.9156445f ,-0.24250148f ,0.32060584f ,0.9120456f ,-0.24328128f ,-0.3301318f ,0.92445433f ,-0.109639555f ,0.36518943f ,0.92445433f ,-0.109639555f ,-0.36518946f ,-0.96253914f ,-0.059088077f ,-0.2646261f ,-0.904771f ,-0.40703088f ,-0.1253614f ,-0.9601409f ,-0.06091298f ,0.27279857f ,-0.7367246f ,-0.6462368f ,0.19903502f ,-0.96253914f ,-0.059088077f ,-0.2646261f ,0.9120456f ,-0.24328128f ,-0.3301318f ,-0.782573f ,0.5253683f ,0.3340175f ,0.7825731f ,0.52536803f ,0.3340176f ,0.7825731f ,0.52536803f ,0.3340176f ,0.7825736f ,0.52536726f ,-0.33401775f ,-0.9257029f ,0f ,-0.37825125f ,-0.9257029f ,0f ,0.37825122f ,-0.78257334f ,0.52536756f ,-0.3340177f ,-0.782573f ,0.5253683f ,0.3340175f ,0.8152076f ,-0.5632417f ,0.13489f ,0.6427682f ,-0.7375558f ,-0.20702794f });
  }
}
private class MFVec4f156 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.0939407f ,0.84887564f ,0.5201782f ,1f ,0.13523485f ,0.9368871f ,0.3224191f ,1f ,0.000004873308f ,1f ,0.0000119265615f ,1f ,0.101976186f ,0.9939714f ,0.040270217f ,1f ,-0.2773101f ,0.18619026f ,-0.94256693f ,1f ,0.2773312f ,0.18615904f ,-0.9425669f ,1f ,0.050049875f ,-0.48169544f ,-0.8749083f ,1f ,0.2648211f ,-0.7664828f ,-0.5851273f ,1f ,0.0000048778393f ,-1f ,-0.000011937648f ,1f ,-0.10196674f ,-0.9939714f ,0.040294155f ,1f ,0.023532517f ,-0.34167334f ,0.9395241f ,1f ,-0.042457648f ,-0.30413342f ,0.9516829f ,1f ,0.03175082f ,0.26096126f ,0.964827f ,1f ,0.11781876f ,0.3893078f ,0.9135415f ,1f ,-0.2504353f ,-0.9679853f ,-0.01693094f ,1f ,-0.25173795f ,-0.96763545f ,0.017602379f ,1f ,-0.11991209f ,-0.99276936f ,0.005494255f ,1f ,-0.11107143f ,-0.9936644f ,0.017153962f ,1f ,0.0570101f ,-0.99825287f ,0.015532811f ,1f ,0.40320054f ,-0.9134145f ,0.055709228f ,1f ,0.058556393f ,-0.99814314f ,-0.016779767f ,1f ,0.6238226f ,-0.763137f ,-0.1687227f ,1f ,-0.091324046f ,-0.8482932f ,0.5215925f ,1f ,-0.13295783f ,-0.9369617f ,0.3231486f ,1f ,0.4832018f ,0.85087496f ,-0.2062228f ,1f ,-0.48318917f ,0.85087514f ,-0.2062518f ,1f ,0.48326883f ,-0.8508751f ,0.20606512f ,1f ,0.48312122f ,-0.8508756f ,-0.20640914f ,1f ,0.00004968703f ,-1f ,-0.00012160021f ,1f ,-0.00004985891f ,-1f ,-0.00012202085f ,1f ,-0.4831348f ,-0.85087544f ,-0.20637812f ,1f ,-0.48325542f ,-0.850875f ,0.20609726f ,1f ,-0.56119126f ,-0.82575905f ,-0.056449544f ,1f ,-0.7237609f ,-0.67323995f ,0.15138786f ,1f });
  }
}
private class MFVec2f157 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.51461416f ,0.7468349f ,0.5146146f ,0.7346455f ,0.55779094f ,0.7468363f ,0.5577916f ,0.7258121f ,0.33315736f ,0.7468289f ,0.33315808f ,0.72580457f ,0.38241524f ,0.74683046f ,0.38241595f ,0.7258062f ,0.4137324f ,0.74683154f ,0.41373307f ,0.7258073f ,0.47394073f ,0.74683356f ,0.47394103f ,0.7369855f ,0.49758255f ,0.7468344f ,0.4975829f ,0.7369863f ,0.3748795f ,0.78324324f ,0.37488827f ,0.8325008f ,0.3308085f ,0.78325105f ,0.3308172f ,0.8325087f ,0.18691756f ,0.78343713f ,0.198142f ,0.79624665f ,0.18691073f ,0.83269465f ,0.1981387f ,0.81988835f ,0.45690918f ,0.7468329f ,0.4569096f ,0.7346437f ,0.5891081f ,0.7468374f ,0.58910865f ,0.72581315f ,0.29949152f ,0.7832565f ,0.2995003f ,0.8325141f ,0.1437412f ,0.7834311f ,0.14373432f ,0.83268845f ,0.11242433f ,0.78342664f ,0.112417445f ,0.83268404f ,0.38634953f ,0.79604906f ,0.3863537f ,0.8196908f });
  }
}
private class MFInt32158 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,3,4,5,6,7,8,8,7,9,10,11,12,12,11,13,14,15,16,16,15,17,18,4,19,19,4,20,11,10,7,7,10,9,1,21,22,22,21,23,24,25,8,8,25,6,21,1,0,5,4,18,25,24,26,26,24,27,26,27,14,14,27,15,2,28,0,0,28,29,3,5,30,30,5,31,28,2,32,16,17,33,33,17,34,3,30,35});
  }
}
private class MFVec3f159 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.52089846f ,-0.10003424f ,0.051194638f ,0.5966454f ,-0.12286663f ,0.051194638f ,0.5966454f ,-0.032993793f ,0.051194638f ,0.5966454f ,-0.032993793f ,-0.019328492f ,0.5966454f ,-0.12286663f ,-0.019328492f ,0.52089846f ,-0.10003424f ,-0.019328492f ,0.52089846f ,-0.1511879f ,-0.000021411106f ,0.5966454f ,-0.1511879f ,-0.000021411106f ,0.52089846f ,-0.1511879f ,0.0318876f ,0.5966454f ,-0.1511879f ,0.0318876f ,0.5966454f ,-0.12286663f ,0.051194638f ,0.5966454f ,-0.12286663f ,-0.019328492f ,0.5966454f ,-0.032993793f ,0.051194638f ,0.5966454f ,-0.032993793f ,-0.019328492f ,0.4248701f ,-0.10003424f ,-0.019328492f ,0.4248701f ,-0.10003424f ,0.051194638f ,0.40469718f ,-0.072892666f ,-0.019328492f ,0.40469718f ,-0.072892666f ,0.051194638f ,0.52089846f ,-0.12286663f ,-0.019328492f ,0.52089846f ,-0.1511879f ,-0.000021411106f ,0.5966454f ,-0.1511879f ,-0.000021411106f ,0.52089846f ,-0.12286663f ,0.051194638f ,0.5966454f ,-0.1511879f ,0.0318876f ,0.52089846f ,-0.1511879f ,0.0318876f ,0.52089846f ,-0.12286663f ,0.051194638f ,0.52089846f ,-0.12286663f ,-0.019328492f ,0.52089846f ,-0.10003424f ,-0.019328492f ,0.52089846f ,-0.10003424f ,0.051194638f ,0.40469718f ,-0.072892666f ,0.051194638f ,0.4248701f ,-0.10003424f ,0.051194638f ,0.40469718f ,-0.072892666f ,-0.019328492f ,0.4248701f ,-0.10003424f ,-0.019328492f ,0.39278468f ,-0.032993793f ,0.051194638f ,0.39278468f ,-0.032993793f ,-0.019328492f ,0.39278468f ,-0.032993793f ,0.051194638f ,0.39278468f ,-0.032993793f ,-0.019328492f });
  }
}
private class MFVec3f160 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.07634614f ,-0.32109615f ,0.9439643f ,0.66511804f ,-0.1341791f ,0.7345843f ,0.6216767f ,0f ,0.78327405f ,0.6216767f ,0f ,-0.783274f ,0.6812767f ,-0.13153575f ,-0.7201114f ,-0.076346144f ,-0.32109615f ,-0.9439643f ,-0.27097356f ,-0.8423736f ,-0.4658113f ,0.47707886f ,-0.76910245f ,-0.42529663f ,-0.4770779f ,-0.76910347f ,0.42529598f ,0.2709742f ,-0.8423726f ,0.46581253f ,0.66511804f ,-0.1341791f ,0.7345843f ,0.6812767f ,-0.13153575f ,-0.7201114f ,0.6216767f ,0f ,0.78327405f ,0.6216767f ,0f ,-0.783274f ,-0.20851645f ,-0.89272195f ,-0.39946008f ,-0.20851645f ,-0.8927221f ,0.39946002f ,-0.34968823f ,-0.16736002f ,-0.92179644f ,-0.34968826f ,-0.16736025f ,0.9217965f ,-0.52000904f ,-0.30162027f ,-0.79913443f ,-0.27097356f ,-0.8423736f ,-0.4658113f ,0.47707886f ,-0.76910245f ,-0.42529663f ,-0.56644726f ,-0.29100356f ,0.7710088f ,0.2709742f ,-0.8423726f ,0.46581253f ,-0.4770779f ,-0.76910347f ,0.42529598f ,-0.56644726f ,-0.29100356f ,0.7710088f ,-0.52000904f ,-0.30162027f ,-0.79913443f ,-0.076346144f ,-0.32109615f ,-0.9439643f ,-0.07634614f ,-0.32109615f ,0.9439643f ,-0.34968826f ,-0.16736025f ,0.9217965f ,-0.20851645f ,-0.8927221f ,0.39946002f ,-0.34968823f ,-0.16736002f ,-0.92179644f ,-0.20851645f ,-0.89272195f ,-0.39946008f ,-0.38797513f ,-0.11583698f ,0.9143616f ,-0.38797516f ,-0.11583663f ,-0.9143616f ,-0.38797513f ,-0.11583698f ,0.9143616f ,-0.38797516f ,-0.11583663f ,-0.9143616f });
  }
}
private class MFVec4f161 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.9970814f ,-0.024551833f ,0.07229065f ,1f ,0.7467384f ,0.11955874f ,-0.65428406f ,1f ,0.783274f ,0.00004941615f ,-0.6216767f ,1f ,0.783274f ,-0.000137645f ,0.6216767f ,1f ,0.73202604f ,0.12227994f ,0.67021304f ,1f ,0.9970814f ,-0.024682984f ,-0.07224606f ,1f ,-0.1427838f ,-0.44338804f ,0.8848841f ,1f ,0.22405536f ,-0.361492f ,0.9050541f ,1f ,0.22405289f ,0.36149263f ,0.90505445f ,1f ,-0.14277878f ,0.44339094f ,0.88488346f ,1f ,-0.7201339f ,0.14498721f ,0.6785174f ,1f ,0.7070015f ,-0.13678229f ,0.6938584f ,1f ,-0.78327394f ,-0.00031070606f ,0.62167656f ,1f ,0.783274f ,-0.00030597375f ,0.62167656f ,1f ,-0.09104471f ,-0.38894635f ,0.91675055f ,1f ,0.09068714f ,0.38902974f ,0.9167506f ,1f ,-0.8316869f ,-0.39749932f ,0.38767406f ,1f ,0.8312609f ,0.39838925f ,0.38767424f ,1f ,0.85416085f ,-0.18373756f ,-0.48646685f ,1f ,0.9625868f ,-0.23718101f ,-0.13104144f ,1f ,0.8788606f ,0.41744554f ,0.23096211f ,1f ,0.82409805f ,-0.19998139f ,0.5299716f ,1f ,0.96258664f ,0.2371504f ,-0.13109805f ,1f ,0.87886107f ,-0.4174777f ,0.2309019f ,1f ,0.68567485f ,0.35256845f ,0.6368246f ,1f ,-0.6914139f ,-0.40070286f ,0.6011524f ,1f ,-0.21863751f ,-0.9182954f ,0.33004764f ,1f ,0.21793723f ,0.91846174f ,0.33004767f ,1f ,0.9368661f ,-0.06242605f ,0.34407103f ,1f ,0.97801894f ,-0.19032405f ,0.08518139f ,1f ,0.93686616f ,-0.062579475f ,-0.3440431f ,1f ,0.97801894f ,-0.19034936f ,-0.08512488f ,1f ,0.92166984f ,-0.048718624f ,0.38490418f ,1f ,-0.8762821f ,-0.26112613f ,0.40489858f ,1f ,0.8760055f ,0.26205269f ,0.4048986f ,1f ,0.9216699f ,-0.04887712f ,-0.38488412f ,1f });
  }
}
private class MFVec2f162 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.6928414f ,0.7534127f ,0.7254874f ,0.743571f ,0.72548896f ,0.7823055f ,0.3867671f ,0.22047031f ,0.38677132f ,0.2592049f ,0.35412383f ,0.24936777f ,0.9292088f ,0.4194153f ,0.9292025f ,0.38676882f ,0.94296134f ,0.41941243f ,0.94295496f ,0.38676608f ,0.95127386f ,0.37455833f ,0.9208789f ,0.3745643f ,0.9512661f ,0.33582383f ,0.9208712f ,0.33582962f ,0.9209004f ,0.48285127f ,0.95129514f ,0.48284543f ,0.9209031f ,0.49742636f ,0.95129824f ,0.49742046f ,0.35412496f ,0.2592084f ,0.35412657f ,0.27398124f ,0.3867729f ,0.27397776f ,0.69284105f ,0.7435722f ,0.7254868f ,0.72879803f ,0.6928403f ,0.72879934f ,0.95128495f ,0.43161717f ,0.92089003f ,0.43162325f ,0.9208922f ,0.44146374f ,0.951287f ,0.4414577f ,0.64275986f ,0.76511264f ,0.6514538f ,0.7534144f ,0.30404067f ,0.23767537f ,0.31273627f ,0.24937224f ,0.63762635f ,0.782309f ,0.9209067f ,0.5153725f ,0.9513014f ,0.51536655f ,0.29890466f ,0.22047985f });
  }
}
private class MFInt32163 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,18,19,20,20,19,21,19,0,21,21,0,2,22,23,24,25,22,24,26,25,24,27,26,24,28,27,24,29,28,24,30,31,24,23,30,24,32,33,34,33,35,34,35,36,34,36,37,34,37,38,34,39,40,34,40,41,34,41,32,34,42,43,22,22,43,23,44,42,25,25,42,22,45,44,26,26,44,25,46,45,27,27,45,26,47,46,28,28,46,27,48,47,29,29,47,28,49,48,24,24,48,29,50,49,31,31,49,24,51,50,30,30,50,31,43,51,23,23,51,30,52,53,32,32,53,33,53,54,33,33,54,35,54,55,35,35,55,36,55,56,36,36,56,37,56,57,37,37,57,38,57,58,38,38,58,34,58,59,34,34,59,39,59,60,39,39,60,40,60,61,40,40,61,41,61,52,41,41,52,32});
  }
}
private class MFVec3f164 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.75190103f ,-0.031245232f ,0.07127539f ,0.71940804f ,-0.054852962f ,0.07127539f ,0.75190103f ,-0.031245232f ,-0.04011124f ,0.71940804f ,-0.054852962f ,-0.04011124f ,0.67924464f ,-0.054852962f ,0.07127539f ,0.67924464f ,-0.054852962f ,-0.04011124f ,0.6467517f ,-0.031245232f ,0.07127539f ,0.6467517f ,-0.031245232f ,-0.04011124f ,0.6343405f ,0.0069522858f ,0.07127539f ,0.6343405f ,0.0069522858f ,-0.04011124f ,0.6467517f ,0.045149803f ,0.07127539f ,0.6467517f ,0.045149803f ,-0.04011124f ,0.67924464f ,0.068757534f ,0.07127539f ,0.67924464f ,0.068757534f ,-0.04011124f ,0.71940804f ,0.068757534f ,0.07127539f ,0.71940804f ,0.068757534f ,-0.04011124f ,0.75190103f ,0.045149803f ,0.07127539f ,0.75190103f ,0.045149803f ,-0.04011124f ,0.75190103f ,0.045149803f ,0.07127539f ,0.76431227f ,0.0069522858f ,0.07127539f ,0.75190103f ,0.045149803f ,-0.04011124f ,0.76431227f ,0.0069522858f ,-0.04011124f ,0.7150456f ,-0.04142618f ,0.0848145f ,0.7404796f ,-0.022947311f ,0.0848145f ,0.7150456f ,0.055330753f ,0.084814504f ,0.6836072f ,-0.04142618f ,0.0848145f ,0.65817314f ,-0.022947311f ,0.0848145f ,0.6484581f ,0.0069522858f ,0.0848145f ,0.65817314f ,0.036851883f ,0.0848145f ,0.6836072f ,0.055330753f ,0.0848145f ,0.75019467f ,0.0069522858f ,0.0848145f ,0.7404796f ,0.036851883f ,0.0848145f ,0.7404796f ,-0.022947311f ,-0.053650334f ,0.7150456f ,-0.04142618f ,-0.053650334f ,0.6836072f ,0.055330753f ,-0.05365035f ,0.6836072f ,-0.04142618f ,-0.053650334f ,0.65817314f ,-0.022947311f ,-0.053650334f ,0.6484581f ,0.0069522858f ,-0.053650334f ,0.65817314f ,0.036851883f ,-0.053650334f ,0.7150456f ,0.055330753f ,-0.053650334f ,0.7404796f ,0.036851883f ,-0.053650334f ,0.75019467f ,0.0069522858f ,-0.053650334f ,0.71940804f ,-0.054852962f ,0.07127539f ,0.75190103f ,-0.031245232f ,0.07127539f ,0.67924464f ,-0.054852962f ,0.07127539f ,0.6467517f ,-0.031245232f ,0.07127539f ,0.6343405f ,0.0069522858f ,0.07127539f ,0.6467517f ,0.045149803f ,0.07127539f ,0.67924464f ,0.068757534f ,0.07127539f ,0.71940804f ,0.068757534f ,0.07127539f ,0.75190103f ,0.045149803f ,0.07127539f ,0.76431227f ,0.0069522858f ,0.07127539f ,0.75190103f ,-0.031245232f ,-0.04011124f ,0.71940804f ,-0.054852962f ,-0.04011124f ,0.67924464f ,-0.054852962f ,-0.04011124f ,0.6467517f ,-0.031245232f ,-0.04011124f ,0.6343405f ,0.0069522858f ,-0.04011124f ,0.6467517f ,0.045149803f ,-0.04011124f ,0.67924464f ,0.068757534f ,-0.04011124f ,0.71940804f ,0.068757534f ,-0.04011124f ,0.75190103f ,0.045149803f ,-0.04011124f ,0.76431227f ,0.0069522858f ,-0.04011124f });
  }
}
private class MFVec3f165 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.8068488f ,-0.58358717f ,0.09176571f ,0.30973446f ,-0.9463845f ,0.09176656f ,0.80435336f ,-0.587022f ,-0.0917658f ,0.30569544f ,-0.94769686f ,-0.09176619f ,-0.3056963f ,-0.94769657f ,0.09176651f ,-0.3097346f ,-0.94638443f ,-0.09176674f ,-0.8043533f ,-0.587022f ,0.09176572f ,-0.80684996f ,-0.5835856f ,-0.09176586f ,-0.9957784f ,-0.0021258201f ,0.09176606f ,-0.9957783f ,0.0021259352f ,-0.09176606f ,-0.80684996f ,0.58358556f ,0.09176588f ,-0.80435336f ,0.5870219f ,-0.091765694f ,-0.3097346f ,0.9463844f ,0.09176669f ,-0.30569625f ,0.9476965f ,-0.09176652f ,0.3056955f ,0.94769686f ,0.091766216f ,0.30973443f ,0.9463845f ,-0.09176654f ,0.80435336f ,0.58702195f ,0.09176578f ,0.8068488f ,0.5835873f ,-0.09176571f ,0.80435336f ,0.58702195f ,0.09176578f ,0.9957783f ,0.0021233372f ,0.09176602f ,0.8068488f ,0.5835873f ,-0.09176571f ,0.9957783f ,-0.0021233363f ,-0.091766015f ,0.060593024f ,-0.16916734f ,0.98372304f ,0.17786968f ,-0.12130578f ,0.9765487f ,0.0676295f ,0.23137127f ,0.97051203f ,-0.047537733f ,-0.16263461f ,0.9855405f ,-0.14216392f ,-0.109902754f ,0.983723f ,-0.21520069f ,-0.0064113173f ,0.9765488f ,-0.2433077f ,0.16593473f ,0.95565003f ,-0.15361905f ,0.428884f ,0.89020205f ,0.29437357f ,0.008770023f ,0.9556502f ,0.36042544f ,0.27863434f ,0.89020026f ,0.14216363f ,-0.10990276f ,-0.983723f ,0.04753778f ,-0.16263473f ,-0.98554057f ,-0.0676291f ,0.23137082f ,-0.97051215f ,-0.060592495f ,-0.16916668f ,-0.9837231f ,-0.1778692f ,-0.121306166f ,-0.9765487f ,-0.29437363f ,0.008770447f ,-0.95565015f ,-0.36042464f ,0.27863303f ,-0.89020103f ,0.15361966f ,0.4288847f ,-0.8902016f ,0.24330741f ,0.1659343f ,-0.95565027f ,0.21520084f ,-0.0064113396f ,-0.9765488f ,0.30973446f ,-0.9463845f ,0.09176656f ,0.8068488f ,-0.58358717f ,0.09176571f ,-0.3056963f ,-0.94769657f ,0.09176651f ,-0.8043533f ,-0.587022f ,0.09176572f ,-0.9957784f ,-0.0021258201f ,0.09176606f ,-0.80684996f ,0.58358556f ,0.09176588f ,-0.3097346f ,0.9463844f ,0.09176669f ,0.3056955f ,0.94769686f ,0.091766216f ,0.80435336f ,0.58702195f ,0.09176578f ,0.9957783f ,0.0021233372f ,0.09176602f ,0.80435336f ,-0.587022f ,-0.0917658f ,0.30569544f ,-0.94769686f ,-0.09176619f ,-0.3097346f ,-0.94638443f ,-0.09176674f ,-0.80684996f ,-0.5835856f ,-0.09176586f ,-0.9957783f ,0.0021259352f ,-0.09176606f ,-0.80435336f ,0.5870219f ,-0.091765694f ,-0.30569625f ,0.9476965f ,-0.09176652f ,0.30973443f ,0.9463845f ,-0.09176654f ,0.8068488f ,0.5835873f ,-0.09176571f ,0.9957783f ,-0.0021233363f ,-0.091766015f });
  }
}
private class MFVec4f166 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.5853029f ,0.81075597f ,0.009761566f ,1f ,0.95006895f ,0.3118872f ,0.009765181f ,1f ,0.59020776f ,0.8071924f ,0.009762649f ,1f ,0.9519431f ,0.30611938f ,0.009766509f ,1f ,0.9519427f ,-0.30612066f ,0.009763057f ,1f ,0.9500691f ,-0.31188703f ,0.009760457f ,1f ,0.59020764f ,-0.8071926f ,0.009760139f ,1f ,0.5853015f ,-0.8107569f ,0.009760325f ,1f ,0.0030342732f ,-0.99994785f ,0.009761282f ,1f ,-0.003034624f ,-0.9999478f ,0.009763836f ,1f ,-0.58530074f ,-0.8107575f ,0.009768767f ,1f ,-0.5902081f ,-0.80719215f ,0.009768417f ,1f ,-0.95006895f ,-0.31188726f ,0.009764103f ,1f ,-0.9519427f ,-0.30612057f ,0.009763075f ,1f ,-0.95194304f ,0.3061198f ,0.009762884f ,1f ,-0.9500692f ,0.31188688f ,0.0097615365f ,1f ,-0.5914479f ,0.8058027f ,0.029523017f ,1f ,-0.5880249f ,0.80829227f ,-0.029838419f ,1f ,-0.58702445f ,0.8090196f ,-0.029827984f ,1f ,-0.0030320396f ,0.9999477f ,0.009764108f ,1f ,-0.5835974f ,0.8115061f ,0.029528672f ,1f ,0.0030320268f ,0.99994785f ,0.009763972f ,1f ,-0.3670428f ,-0.9202608f ,-0.13564572f ,1f ,-0.3376578f ,-0.93964785f ,-0.055220634f ,1f ,-0.3157688f ,-0.91777146f ,0.24080203f ,1f ,-0.3330614f ,-0.92761075f ,-0.16914026f ,1f ,-0.27919316f ,-0.94901335f ,-0.1463729f ,1f ,-0.28610662f ,-0.9556868f ,-0.06932327f ,1f ,-0.34029233f ,-0.9372354f ,0.07609914f ,1f ,-0.37203225f ,-0.85970783f ,0.34999213f ,1f ,-0.28677386f ,-0.95306647f ,0.09708266f ,1f ,-0.24998397f ,-0.8905802f ,0.37996712f ,1f ,0.33244762f ,0.94138986f ,-0.05712927f ,1f ,0.3334076f ,0.9326541f ,-0.13782535f ,1f ,0.32631987f ,0.92436874f ,0.19763097f ,1f ,0.27573493f ,0.9443481f ,-0.17937943f ,1f ,0.24361652f ,0.95605373f ,-0.16313277f ,1f ,0.27519926f ,0.9583805f ,-0.07597549f ,1f ,0.33078885f ,0.9305f ,0.15731679f ,1f ,0.24345186f ,0.8566969f ,0.45475453f ,1f ,0.23779656f ,0.9449849f ,0.22462516f ,1f ,0.27971452f ,0.9584866f ,0.055347584f ,1f ,-0.56301993f ,-0.26032317f ,-0.7843727f ,1f ,-0.530353f ,-0.78398246f ,-0.3226412f ,1f ,0.035772476f ,-0.10774413f ,-0.99353486f ,1f ,0.37361467f ,-0.6198163f ,-0.69010127f ,1f ,-0.014435717f ,-0.9836643f ,-0.17943309f ,1f ,-0.5302116f ,-0.7838697f ,0.3231469f ,1f ,-0.56244445f ,-0.26017973f ,0.78483295f ,1f ,0.03524629f ,-0.10757759f ,0.9935718f ,1f ,0.37334314f ,-0.61951035f ,0.6905229f ,1f ,-0.0144752385f ,-0.98359054f ,0.17983373f ,1f ,0.56653583f ,0.80430436f ,-0.17925343f ,1f ,0.66696614f ,0.28192443f ,-0.68969184f ,1f ,0.093241036f ,0.06581591f ,-0.99346584f ,1f ,-0.3022014f ,0.54120725f ,-0.78470963f ,1f ,0.031757355f ,0.945971f ,-0.32269245f ,1f ,0.5664445f ,0.80425733f ,0.17975207f ,1f ,0.66693604f ,0.28191864f ,0.6897234f ,1f ,0.09470014f ,0.06532791f ,0.99336004f ,1f ,-0.30188107f ,0.54082304f ,0.78509766f ,1f ,0.03178675f ,0.945851f ,0.32304117f ,1f });
  }
}
private class MFVec2f167 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.2813487f ,0.67748076f ,0.26403844f ,0.6774818f ,0.28134573f ,0.6294739f ,0.2640355f ,0.629475f ,0.24672835f ,0.67748296f ,0.24672537f ,0.6294761f ,0.22941808f ,0.67748386f ,0.22941513f ,0.62947714f ,0.21210788f ,0.6774849f ,0.21210502f ,0.62947804f ,0.19479787f ,0.67748606f ,0.19479495f ,0.6294792f ,0.17748767f ,0.6774872f ,0.17748466f ,0.62948036f ,0.16017747f ,0.67748815f ,0.16017464f ,0.62948143f ,0.1428673f ,0.6774893f ,0.14286432f ,0.6294823f ,0.31596896f ,0.6774787f ,0.29865885f ,0.67747974f ,0.31596598f ,0.6294717f ,0.29865593f ,0.62947285f ,0.6092234f ,0.26211378f ,0.59830844f ,0.26996315f ,0.5699641f ,0.24913871f ,0.61344f ,0.24934691f ,0.60934687f ,0.2365399f ,0.59850794f ,0.22858602f ,0.58506644f ,0.22852486f ,0.57416326f ,0.23637676f ,0.584867f ,0.26989543f ,0.57403964f ,0.26193872f ,0.2385702f ,0.83280456f ,0.22772793f ,0.82485384f ,0.26301217f ,0.7994532f ,0.22362967f ,0.81204844f ,0.22784103f ,0.79928094f ,0.23875196f ,0.7914305f ,0.2521882f ,0.7914978f ,0.2671216f ,0.8122442f ,0.2629212f ,0.825007f ,0.25201416f ,0.8328628f ,0.61613f ,0.26699075f ,0.6010292f ,0.27796844f ,0.6218942f ,0.249237f ,0.6161242f ,0.23148382f ,0.6010175f ,0.22051084f ,0.58234257f ,0.22051948f ,0.56725043f ,0.23151124f ,0.5615091f ,0.24924487f ,0.5672551f ,0.2669878f ,0.5823562f ,0.2779698f ,0.23606245f ,0.84087944f ,0.22095491f ,0.8299148f ,0.21517567f ,0.81216574f ,0.2209325f ,0.79440653f ,0.23603387f ,0.7834234f ,0.25470585f ,0.78342426f ,0.26978797f ,0.79439485f ,0.27557415f ,0.812114f ,0.26983237f ,0.8298797f ,0.25473362f ,0.84086955f });
  }
}
private class MFInt32168 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,2,3,4,4,3,5,6,7,8,8,7,9,8,9,0,0,9,1,10,11,12,12,11,13,14,15,16,16,15,17});
  }
}
private class MFVec3f169 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.956467f ,-0.09037161f ,0.082330436f ,-0.8340616f ,-0.09037161f ,0.082330436f ,-0.956467f ,0.104473114f ,0.082330436f ,-0.8340616f ,0.104473114f ,0.082330436f ,-0.956467f ,0.104473114f ,-0.05046428f ,-0.8340616f ,0.104473114f ,-0.05046428f ,-0.956467f ,0.104473114f ,-0.05046428f ,-0.8340616f ,0.104473114f ,-0.05046428f ,-0.956467f ,-0.09037161f ,-0.05046428f ,-0.8340616f ,-0.09037161f ,-0.05046428f ,-0.8340616f ,-0.09037161f ,0.082330436f ,-0.8340616f ,-0.09037161f ,-0.05046428f ,-0.8340616f ,0.104473114f ,0.082330436f ,-0.8340616f ,0.104473114f ,-0.05046428f ,-0.956467f ,-0.09037161f ,-0.05046428f ,-0.956467f ,-0.09037161f ,0.082330436f ,-0.956467f ,0.104473114f ,-0.05046428f ,-0.956467f ,0.104473114f ,0.082330436f });
  }
}
private class MFVec3f170 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.6675114f ,-0.41934416f ,0.6152878f ,0.66751146f ,-0.419344f ,0.6152878f ,-0.6675114f ,0.41934437f ,0.6152877f ,0.6675114f ,0.41934416f ,0.6152878f ,-0.6675114f ,0.41934416f ,-0.6152878f ,0.66751146f ,0.419344f ,-0.6152878f ,-0.6675114f ,0.41934416f ,-0.6152878f ,0.66751146f ,0.419344f ,-0.6152878f ,-0.6675114f ,-0.41934437f ,-0.6152877f ,0.6675114f ,-0.41934416f ,-0.6152878f ,0.66751146f ,-0.419344f ,0.6152878f ,0.6675114f ,-0.41934416f ,-0.6152878f ,0.6675114f ,0.41934416f ,0.6152878f ,0.66751146f ,0.419344f ,-0.6152878f ,-0.6675114f ,-0.41934437f ,-0.6152877f ,-0.6675114f ,-0.41934416f ,0.6152878f ,-0.6675114f ,0.41934416f ,-0.6152878f ,-0.6675114f ,0.41934437f ,0.6152877f });
  }
}
private class MFVec4f171 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.74459964f ,0.37584752f ,-0.5516432f ,1f ,-0.7445995f ,-0.37602192f ,0.5515243f ,1f ,-0.74459964f ,-0.376022f ,-0.55152416f ,1f ,-0.7445996f ,0.37584788f ,0.55164284f ,1f ,-0.7445996f ,-0.37585858f ,0.55163556f ,1f ,-0.7445995f ,0.3760012f ,-0.55153847f ,1f ,-0.7445996f ,-0.37582806f ,0.5516565f ,1f ,-0.7445996f ,0.3760331f ,-0.5515167f ,1f ,-0.74459964f ,0.37602276f ,0.5515236f ,1f ,-0.74459964f ,-0.37584683f ,-0.5516436f ,1f ,0.30840573f ,0.90782744f ,0.28413954f ,1f ,0.30826828f ,0.9078273f ,-0.2842889f ,1f ,-0.30826828f ,0.9078273f ,-0.2842889f ,1f ,-0.3084065f ,0.9078274f ,0.28413874f ,1f ,-0.30807713f ,0.9078272f ,-0.2844965f ,1f ,-0.30859756f ,0.90782726f ,0.2839317f ,1f ,0.30859756f ,0.90782726f ,0.2839317f ,1f ,0.30807716f ,0.90782726f ,-0.2844965f ,1f });
  }
}
private class MFVec2f172 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.9035264f ,0.5616324f ,0.8507707f ,0.56163836f ,0.90351695f ,0.47765565f ,0.8507611f ,0.47766158f ,0.90351045f ,0.42042202f ,0.8507545f ,0.42042807f ,0.9035428f ,0.70284283f ,0.85078686f ,0.7028487f ,0.90353316f ,0.61886597f ,0.8507773f ,0.61887205f ,0.40215182f ,0.81977737f ,0.40215883f ,0.7625439f ,0.48612857f ,0.81978786f ,0.4861359f ,0.7625545f ,0.009686351f ,0.802696f ,0.009659231f ,0.7454624f ,0.09366298f ,0.8026562f ,0.09363598f ,0.7454226f });
  }
}
private class MFInt32173 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,3,2,4,2,1,4,5,6,7,7,6,8,9,10,8,8,10,7,11,12,13,13,12,14,15,16,17,18,19,16,19,17,16,14,6,13,13,6,5});
  }
}
private class MFVec3f174 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.71768105f ,0.10348606f ,0.052789032f ,0.66756606f ,0.11773586f ,0.052789032f ,0.7222786f ,0.056382656f ,0.052789032f ,0.65155464f ,0.056382656f ,0.052789032f ,0.6515547f ,0.107102394f ,0.052789032f ,0.66756606f ,0.11773586f ,-0.020922886f ,0.66756606f ,0.11773586f ,0.052789032f ,0.71768105f ,0.10348606f ,-0.020922886f ,0.71768105f ,0.10348606f ,0.052789032f ,0.7222786f ,0.056382656f ,0.052789032f ,0.7222786f ,0.056382656f ,-0.020922886f ,0.65155464f ,0.056382656f ,-0.020922886f ,0.65155464f ,0.056382656f ,0.052789032f ,0.6515547f ,0.107102394f ,-0.020922886f ,0.6515547f ,0.107102394f ,0.052789032f ,0.71768105f ,0.10348606f ,-0.020922886f ,0.7222786f ,0.056382656f ,-0.020922886f ,0.66756606f ,0.11773586f ,-0.020922886f ,0.65155464f ,0.056382656f ,-0.020922886f ,0.6515547f ,0.107102394f ,-0.020922886f });
  }
}
private class MFVec3f175 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.67571384f ,0.60257727f ,0.4246311f ,0.048474826f ,0.88638365f ,0.4604065f ,0.8021752f ,0.078297354f ,0.59193295f ,-0.7215808f ,0.0000011034643f ,0.6923303f ,-0.7848859f ,0.20483115f ,0.58480626f ,0.04847481f ,0.8863837f ,-0.46040642f ,0.048474826f ,0.88638365f ,0.4604065f ,0.6757141f ,0.60257685f ,-0.42463127f ,0.67571384f ,0.60257727f ,0.4246311f ,0.8021752f ,0.078297354f ,0.59193295f ,0.8021751f ,0.078297354f ,-0.591933f ,-0.72158074f ,0.0000028760096f ,-0.6923303f ,-0.7215808f ,0.0000011034643f ,0.6923303f ,-0.78488547f ,0.20483372f ,-0.584806f ,-0.7848859f ,0.20483115f ,0.58480626f ,0.6757141f ,0.60257685f ,-0.42463127f ,0.8021751f ,0.078297354f ,-0.591933f ,0.04847481f ,0.8863837f ,-0.46040642f ,-0.72158074f ,0.0000028760096f ,-0.6923303f ,-0.78488547f ,0.20483372f ,-0.584806f });
  }
}
private class MFVec4f176 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.737164f ,-0.5521576f ,-0.38950133f ,1f ,0.9988244f ,-0.042929176f ,-0.022515139f ,1f ,0.5970887f ,-0.10450247f ,-0.7953392f ,1f ,0.6923301f ,0.0006083988f ,0.7215807f ,1f ,0.61964023f ,0.26005575f ,0.7405519f ,1f ,0.02590058f ,0.45967788f ,0.88770807f ,1f ,-0.024384154f ,-0.4597609f ,0.887708f ,1f ,0.31738386f ,0.28209868f ,0.9053662f ,1f ,-0.3164643f ,-0.28312942f ,0.90536636f ,1f ,-0.5890416f ,-0.05843907f ,0.8059869f ,1f ,0.5892243f ,0.056568287f ,0.8059868f ,1f ,-0.69232994f ,0.0010531967f ,0.7215804f ,1f ,0.69232994f ,0.0010467756f ,0.7215803f ,1f ,-0.56565213f ,0.14844553f ,0.81117296f ,1f ,0.5660558f ,-0.14690015f ,0.81117284f ,1f ,0.7371638f ,-0.5523461f ,0.38923433f ,1f ,0.5970889f ,-0.10519799f ,0.7952474f ,1f ,0.9988244f ,-0.043018647f ,0.022342857f ,1f ,0.6923303f ,-0.0000054756742f ,-0.72158074f ,1f ,0.6196409f ,0.25944853f ,-0.7407642f ,1f });
  }
}
private class MFVec2f177 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.9501402f ,0.30848193f ,0.9285435f ,0.3146326f ,0.9521131f ,0.2881797f ,0.9216315f ,0.2881925f ,0.9216407f ,0.31005245f ,0.6973992f ,0.46232235f ,0.72916853f ,0.4622982f ,0.6974163f ,0.48477772f ,0.72918534f ,0.4847537f ,0.72920084f ,0.5051514f ,0.6974317f ,0.5051755f ,0.69737655f ,0.43217856f ,0.72914565f ,0.43215448f ,0.69739294f ,0.45403832f ,0.7291623f ,0.45401436f ,0.3945815f ,0.2991345f ,0.39656326f ,0.31943583f ,0.37298194f ,0.2929929f ,0.36608136f ,0.319436f ,0.36608112f ,0.29757595f });
  }
}
private class MFInt32178 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,1,4,3,3,4,5,6,7,8,8,7,9,10,11,12,12,11,13,12,13,14,14,13,15,16,17,18,18,17,19,18,19,20,20,19,21,9,7,10,10,7,11,8,5,6,6,5,4,14,15,16,16,15,17});
  }
}
private class MFVec3f179 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.8356279f ,0.1176438f ,-0.04545726f ,0.6600081f ,0.2939374f ,-0.043627143f ,0.80984443f ,0.111581974f ,-0.0036421104f ,0.6147046f ,0.29247925f ,-0.013733499f ,0.5155826f ,0.45636302f ,-0.04005475f ,0.49043727f ,0.44343072f ,-0.008689114f ,0.36573938f ,0.6316225f ,-0.055669136f ,0.25569877f ,0.71999687f ,-0.05153866f ,0.3686132f ,0.63444763f ,-0.006356516f ,0.2290514f ,0.75223804f ,-0.00596313f ,0.109274894f ,0.73133993f ,-0.04262408f ,0.12042537f ,0.6857488f ,-0.07915785f ,-0.08308982f ,0.6187663f ,-0.028114773f ,-0.10108081f ,0.5869783f ,-0.082173765f ,-0.24774024f ,0.5084317f ,-0.022148628f ,-0.23196146f ,0.49049246f ,-0.07232481f ,-0.380723f ,0.39182308f ,0.0061356938f ,-0.38653737f ,0.3890115f ,-0.046222143f ,-0.5329559f ,0.24231386f ,0.017634999f ,-0.57088757f ,0.2533635f ,-0.02450131f ,-0.72882265f ,0.08392763f ,0.031373322f ,-0.7894444f ,0.0897069f ,-0.0044286624f });
  }
}
private class MFVec3f180 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.770786f ,0.25421748f ,0.5841767f ,0.53784037f ,0.29725087f ,0.7889042f ,0.7371197f ,0.25398415f ,0.6262161f ,0.5148867f ,0.34646165f ,0.7841276f ,0.5303554f ,0.5287467f ,0.66268396f ,0.5303841f ,0.5526502f ,0.6428611f ,0.5014721f ,0.6540145f ,0.56638396f ,0.22772513f ,0.6219863f ,0.74918246f ,0.4771763f ,0.6613325f ,0.57874185f ,0.22074085f ,0.612875f ,0.7587212f ,0.010545989f ,0.6405257f ,0.76786435f ,-0.0061430573f ,0.63278353f ,0.7743044f ,-0.14895867f ,0.5416932f ,0.8272725f ,-0.1690869f ,0.52700555f ,0.8328714f ,-0.2695971f ,0.46650508f ,0.84243125f ,-0.2749765f ,0.45904824f ,0.84478563f ,-0.32631934f ,0.374394f ,0.86795443f ,-0.3167246f ,0.36947623f ,0.8735976f ,-0.3309235f ,0.24035561f ,0.91253424f ,-0.3435727f ,0.23862867f ,0.90830296f ,-0.47529042f ,0.18287395f ,0.8606139f ,-0.4868597f ,0.18347628f ,0.85399306f });
  }
}
private class MFVec4f181 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.45929638f ,0.85718226f ,0.23299205f ,1f ,-0.61918926f ,0.7743436f ,0.13037156f ,1f ,-0.4846597f ,0.8444678f ,0.22798964f ,1f ,-0.633565f ,0.76996577f ,0.07581745f ,1f ,-0.679173f ,0.7328234f ,-0.04115824f ,1f ,-0.671067f ,0.7370697f ,-0.079983756f ,1f ,-0.7357447f ,0.666803f ,-0.118547425f ,1f ,-0.9360388f ,0.35181588f ,-0.0075617665f ,1f ,-0.76808375f ,0.6338486f ,-0.09101351f ,1f ,-0.91807055f ,0.39318684f ,-0.050504316f ,1f ,-0.9771179f ,-0.15653984f ,0.144f ,-1f ,-0.95041895f ,-0.2444443f ,0.19222653f ,-1f ,-0.89633083f ,-0.42728734f ,0.11839195f ,1f ,-0.8844965f ,-0.45395195f ,0.10767382f ,1f ,-0.7895734f ,-0.60788774f ,0.08394276f ,1f ,-0.77950555f ,-0.6207911f ,0.08360392f ,1f ,-0.73253167f ,-0.6804917f ,0.018126272f ,1f ,-0.7553764f ,-0.6552831f ,0.0032798531f ,1f ,-0.7217844f ,-0.6873979f ,-0.080693424f ,1f ,-0.73992574f ,-0.6643904f ,-0.10533455f ,1f ,-0.6717437f ,-0.7071367f ,-0.22072205f ,1f ,-0.6724443f ,-0.70272106f ,-0.23238288f ,1f });
  }
}
private class MFVec2f182 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.038016558f ,0.94736993f ,0.12585914f ,0.94737005f ,0.038016737f ,0.9676097f ,0.12585914f ,0.96760976f ,0.19438194f ,0.94736993f ,0.1943817f ,0.96760976f ,0.2799152f ,0.94737f ,0.38375133f ,0.94737005f ,0.27991503f ,0.9676098f ,0.38375136f ,0.96760976f ,0.47383636f ,0.96760976f ,0.473836f ,0.94736993f ,0.56388444f ,0.9676097f ,0.56388456f ,0.94737005f ,0.6595467f ,0.96760976f ,0.6595468f ,0.94737005f ,0.7333398f ,0.9676098f ,0.73334f ,0.94736993f ,0.8220904f ,0.96760976f ,0.82209057f ,0.94737f ,0.92903656f ,0.96760976f ,0.9290367f ,0.94737f });
  }
}
private class MFInt32183 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,2,3,4,4,3,5,5,6,4,4,6,7,8,9,0,0,9,1,10,11,12,12,11,13,14,15,16,16,15,17,1,9,18,18,9,19,5,20,6,6,20,21,5,3,20,20,3,22,3,1,22,22,1,18});
  }
}
private class MFVec3f184 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {1.0401572f ,-0.115915775f ,0.05396404f ,1.0664175f ,-0.14296293f ,0.06407674f ,1.0401572f ,0.1174078f ,0.05396404f ,1.0664175f ,0.14580774f ,0.06407674f ,1.0401572f ,0.1174078f ,-0.022097899f ,1.0664175f ,0.14580774f ,-0.03221059f ,1.0664175f ,-0.14296293f ,-0.03221059f ,1.0401572f ,-0.115915775f ,-0.022097899f ,1.0401572f ,-0.115915775f ,-0.022097899f ,1.0664175f ,-0.14296293f ,-0.03221059f ,1.0963138f ,-0.14296293f ,0.06047163f ,1.0963138f ,-0.14296293f ,-0.028605485f ,1.0963138f ,0.13951778f ,0.06047163f ,1.0963138f ,0.13951778f ,-0.028605485f ,1.0401572f ,-0.115915775f ,-0.022097899f ,1.0401572f ,-0.115915775f ,0.05396404f ,1.0401572f ,0.1174078f ,-0.022097899f ,1.0401572f ,0.1174078f ,0.05396404f ,1.0963138f ,-0.14296293f ,0.06047163f ,1.0963138f ,-0.14296293f ,-0.028605485f ,1.0963138f ,0.13951778f ,-0.028605485f ,1.0963138f ,-0.14296293f ,-0.028605485f ,1.0963138f ,0.13951778f ,0.06047163f });
  }
}
private class MFVec3f185 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.93010885f ,-0.10825387f ,0.35096812f ,-0.18649285f ,-0.37063223f ,0.90986377f ,-0.90548986f ,0.08545772f ,0.41567442f ,-0.16203633f ,0.35335085f ,0.92135096f ,-0.90736514f ,0.10103796f ,-0.40801948f ,-0.18277761f ,0.38388184f ,-0.9051117f ,-0.16501693f ,-0.34069166f ,-0.92558014f ,-0.9292343f ,-0.0915466f ,-0.35797048f ,-0.9292343f ,-0.0915466f ,-0.35797048f ,-0.16501693f ,-0.34069166f ,-0.92558014f ,0.9458943f ,-0.11040086f ,0.30511585f ,0.9465867f ,-0.10364169f ,-0.30533925f ,0.93563324f ,0.09940338f ,0.33868784f ,0.9351791f ,0.105724275f ,-0.33802727f ,-0.9292343f ,-0.0915466f ,-0.35797048f ,-0.93010885f ,-0.10825387f ,0.35096812f ,-0.90736514f ,0.10103796f ,-0.40801948f ,-0.90548986f ,0.08545772f ,0.41567442f ,0.9458943f ,-0.11040086f ,0.30511585f ,0.9465867f ,-0.10364169f ,-0.30533925f ,0.9351791f ,0.105724275f ,-0.33802727f ,0.9465867f ,-0.10364169f ,-0.30533925f ,0.93563324f ,0.09940338f ,0.33868784f });
  }
}
private class MFVec4f186 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.24670155f ,0.5237823f ,0.81534696f ,1f ,0.018115537f ,0.92465657f ,0.38037112f ,1f ,-0.048562042f ,0.9522131f ,-0.30154943f ,1f ,-0.14942539f ,0.9141368f ,-0.37686327f ,1f ,0.2135827f ,-0.72521603f ,-0.6545565f ,1f ,0.09912649f ,-0.90873325f ,-0.4054354f ,1f ,0.059797626f ,-0.9401752f ,0.33540288f ,1f ,0.08542721f ,-0.99580085f ,0.03290854f ,1f ,-0.35624582f ,-0.035096742f ,0.9337329f ,1f ,-0.4034773f ,-0.8330095f ,0.37855175f ,1f ,0.3030719f ,-0.035257548f ,-0.9523153f ,1f ,-0.30351278f ,0.033347346f ,-0.95224375f ,1f ,0.3367801f ,0.03589729f ,-0.94089884f ,1f ,-0.3359007f ,-0.037857268f ,-0.9411363f ,1f ,0.08548748f ,-0.99580085f ,0.03275213f ,1f ,0.10122343f ,-0.99412334f ,-0.038376395f ,1f ,-0.09208237f ,-0.9948826f ,-0.041587662f ,1f ,-0.07773354f ,-0.9963418f ,0.035504125f ,1f ,-0.21669339f ,0.48497725f ,0.84725493f ,1f ,0.3035253f ,-0.03323331f ,0.95224375f ,1f ,-0.18825682f ,-0.660034f ,-0.7272651f ,1f ,-0.09863698f ,-0.9946147f ,0.031817414f ,1f ,0.07373681f ,0.88331306f ,-0.46294808f ,1f });
  }
}
private class MFVec2f187 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.65011835f ,0.8273468f ,0.64257175f ,0.8130406f ,0.7452151f ,0.8273467f ,0.7561429f ,0.8130406f ,0.78976357f ,0.8273468f ,0.7878075f ,0.8130406f ,0.909309f ,0.8130406f ,0.9029975f ,0.8273469f ,0.60917765f ,0.8273468f ,0.60615885f ,0.8130406f ,0.9192601f ,0.011823654f ,0.95765156f ,0.011819422f ,0.91927314f ,0.13357073f ,0.9576648f ,0.1335665f ,0.43372402f ,0.62948984f ,0.4337182f ,0.662272f ,0.33316332f ,0.6294718f ,0.33315736f ,0.6622539f ,0.6425716f ,0.80016065f ,0.6041463f ,0.80016077f ,0.78780764f ,0.8001606f ,0.909309f ,0.80016065f ,0.7561429f ,0.80016065f });
  }
}
private class MFInt32188 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,0,0,5,1,6,7,5,5,8,1,1,8,3,3,8,9,9,10,3,3,10,11,7,12,5,5,12,13,13,14,5,5,14,8,14,15,8,8,15,9,9,15,10,10,15,16,12,17,13,13,18,14,18,19,14,14,19,15,15,19,16,16,19,20,21,13,22,22,13,17,18,13,23,23,13,21,4,24,5,5,24,6,25,2,11,11,2,3,24,4,26,4,0,27,0,2,27,27,2,28,25,29,2,2,29,28,26,4,30,30,4,31,27,32,4,4,32,31,28,33,27,27,33,32,28,29,33,33,29,34,30,31,35,31,32,36,33,37,32,32,37,36,33,34,37,37,34,38,23,39,18,18,39,19,39,40,19,19,40,20});
  }
}
private class MFVec3f189 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.8066281f ,0.10047531f ,-0.0024074018f ,0.81140983f ,0.08956671f ,-0.0010883808f ,0.806945f ,0.1029768f ,0.003203988f ,0.8129506f ,0.08927584f ,0.00486055f ,0.8112306f ,0.10447264f ,-0.0033171475f ,0.81752425f ,0.09011459f ,-0.0015811026f ,0.81777835f ,0.09295797f ,0.003865689f ,0.8242562f ,0.086799145f ,-0.00024709105f ,0.81788784f ,0.08340883f ,-0.005201012f ,0.82147706f ,0.081357956f ,-0.0006811023f ,0.8242562f ,0.086799145f ,-0.00024709105f ,0.81777835f ,0.09295797f ,0.003865689f ,0.84950465f ,0.09339523f ,-0.03721857f ,0.8454094f ,0.09767008f ,-0.042599052f ,0.8431355f ,0.090004444f ,-0.042173088f ,0.848865f ,0.08838558f ,-0.040699273f ,0.84950465f ,0.09339523f ,-0.03721857f ,0.8501872f ,0.10142279f ,-0.043597847f ,0.8438244f ,0.098035336f ,-0.048547417f ,0.849922f ,0.098556995f ,-0.04901901f ,0.8501872f ,0.10142279f ,-0.043597847f ,0.83932763f ,0.11154461f ,-0.044276714f ,0.84540504f ,0.11233282f ,-0.04491687f ,0.83904207f ,0.10894537f ,-0.049866527f ,0.812997f ,0.10386562f ,0.0025467575f ,0.812997f ,0.10386562f ,0.0025467575f ,0.81329936f ,0.1117959f ,-0.0032694638f ,0.8069309f ,0.10840511f ,-0.008223474f ,0.8074908f ,0.11326599f ,-0.0045390725f ,0.81329936f ,0.1117959f ,-0.0032694638f ,0.8385474f ,0.11839247f ,-0.040241063f ,0.83932763f ,0.11154461f ,-0.044276714f ,0.8321781f ,0.115002155f ,-0.04519552f ,0.8347781f ,0.12052345f ,-0.04458496f ,0.8385474f ,0.11839247f ,-0.040241063f ,0.84540504f ,0.11233282f ,-0.04491687f ,0.83904207f ,0.10894537f ,-0.049866527f ,0.8436179f ,0.11293888f ,-0.050757945f ,0.84540504f ,0.11233282f ,-0.04491687f ,0.8436179f ,0.11293888f ,-0.050757945f ,0.84540504f ,0.11233282f ,-0.04491687f });
  }
}
private class MFVec3f190 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.76254684f ,-0.31193137f ,-0.5667638f ,-0.7719181f ,-0.4796769f ,-0.41719598f ,-0.6532022f ,0.13950987f ,0.7442204f ,-0.4233087f ,-0.39568287f ,0.8150122f ,0.59764385f ,-0.7630101f ,-0.24624662f ,-0.15185313f ,0.89567703f ,-0.4179752f ,0.65882736f ,0.2818818f ,0.6974877f ,0.7258994f ,0.2990929f ,0.6193654f ,-0.7221952f ,-0.470533f ,-0.506984f ,0.29196167f ,-0.92168105f ,0.25546506f ,0.7258994f ,0.2990929f ,0.6193654f ,0.65882736f ,0.2818818f ,0.6974877f ,0.75508463f ,0.39419663f ,0.5238857f ,-0.58181745f ,0.7857462f ,0.20997924f ,-0.69897425f ,-0.37843922f ,-0.60681045f ,0.49139917f ,-0.8701829f ,-0.03617622f ,0.75508463f ,0.39419663f ,0.5238857f ,0.82222676f ,0.3149618f ,0.47406974f ,-0.5721193f ,-0.42888638f ,-0.6990966f ,0.62370235f ,-0.17731094f ,-0.7612859f ,0.82222676f ,0.3149618f ,0.47406974f ,0.1331388f ,-0.88942707f ,0.43725684f ,0.75265276f ,0.4746533f ,0.45630917f ,-0.7379251f ,-0.3000509f ,-0.60451305f ,0.68670374f ,0.46027225f ,0.5626611f ,0.68670374f ,0.46027225f ,0.5626611f ,0.6575917f ,0.45483366f ,0.6005828f ,-0.7895571f ,-0.31692913f ,-0.525505f ,-0.4930397f ,0.8691351f ,0.038935862f ,0.6575917f ,0.45483366f ,0.6005828f ,0.75509816f ,0.39424276f ,0.5238314f ,0.1331388f ,-0.88942707f ,0.43725684f ,-0.69793886f ,-0.38071153f ,-0.60658073f ,-0.29401278f ,0.9217613f ,-0.25280982f ,0.75509816f ,0.39424276f ,0.5238314f ,0.75265276f ,0.4746533f ,0.45630917f ,-0.7379251f ,-0.3000509f ,-0.60451305f ,0.42972618f ,0.45259485f ,-0.78134084f ,0.75265276f ,0.4746533f ,0.45630917f ,0.42972618f ,0.45259485f ,-0.78134084f ,0.75265276f ,0.4746533f ,0.45630917f });
  }
}
private class MFVec4f191 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.14422657f ,-0.9359987f ,0.32110006f ,1f ,0.56947136f ,-0.813439f ,-0.11840331f ,1f ,0.23479922f ,-0.8971086f ,0.37425327f ,1f ,0.5078111f ,-0.848617f ,-0.14824606f ,1f ,-0.32847658f ,-0.5131893f ,0.79293126f ,1f ,0.65586966f ,-0.22505262f ,-0.72054595f ,1f ,0.57368183f ,-0.7880198f ,-0.22341445f ,1f ,0.6871805f ,-0.27714035f ,-0.6715476f ,1f ,0.6681824f ,-0.285128f ,-0.68719316f ,1f ,0.60020536f ,-0.031397235f ,-0.79922956f ,1f ,0.68779415f ,-0.31963748f ,-0.6517446f ,1f ,0.44707865f ,-0.8923671f ,-0.061657816f ,1f ,0.37252477f ,0.39958307f ,-0.8375911f ,1f ,0.37809774f ,0.48988846f ,-0.78552634f ,1f ,0.36606833f ,0.53958637f ,-0.75818247f ,1f ,0.4975982f ,0.31460306f ,-0.80834466f ,1f ,0.1736017f ,0.6503271f ,-0.739552f ,1f ,-0.10221558f ,0.901101f ,-0.42138943f ,1f ,-0.21013343f ,0.9005795f ,-0.3805266f ,1f ,-0.15902467f ,0.92478096f ,-0.34567538f ,1f ,-0.16243596f ,0.92814344f ,-0.33490965f ,1f ,-0.63606596f ,0.26165926f ,0.7259163f ,1f ,-0.4507685f ,0.8766221f ,-0.16834953f ,1f ,-0.33179992f ,0.9412978f ,-0.06218848f ,1f ,0.2815731f ,-0.88200843f ,0.37785932f ,1f ,0.27074635f ,-0.88026726f ,0.38964856f ,1f ,-0.31983504f ,-0.55324066f ,0.7691751f ,1f ,-0.3152459f ,-0.5252315f ,0.79041255f ,1f ,-0.4436265f ,-0.28965294f ,0.8481136f ,1f ,-0.2753964f ,-0.5968918f ,0.75357616f ,1f ,-0.5834409f ,0.039644867f ,0.8111874f ,1f ,-0.7248951f ,0.213473f ,0.65494764f ,1f ,-0.69485587f ,0.15494862f ,0.702258f ,1f ,-0.6634655f ,-0.0064227353f ,0.7481794f ,1f ,-0.65538603f ,0.474876f ,0.58733475f ,1f ,-0.65503365f ,0.46962357f ,0.5919331f ,1f ,-0.6637203f ,0.4848916f ,0.56952226f ,1f ,-0.66307586f ,0.7455324f ,0.06717054f ,1f ,-0.64216995f ,0.68220866f ,0.3495841f ,1f ,-0.5553145f ,0.8147913f ,0.16655621f ,1f ,-0.4657732f ,0.87367374f ,-0.14053342f ,1f });
  }
}
private class MFVec2f192 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.038510025f ,0.41632533f ,0.043827593f ,0.41635233f ,0.038553774f ,0.41893357f ,0.043698728f ,0.41906983f ,0.036810964f ,0.41379112f ,0.0455029f ,0.41368866f ,0.04373932f ,0.41124177f ,0.04738617f ,0.41050643f ,0.04767981f ,0.4167922f ,0.047495037f ,0.41943175f ,0.04775226f ,0.42206186f ,0.043534458f ,0.42174548f ,0.06733291f ,0.4105147f ,0.06928845f ,0.41361064f ,0.06701593f ,0.4166246f ,0.06719865f ,0.41921204f ,0.06713365f ,0.42176944f ,0.070969984f ,0.4111299f ,0.07106291f ,0.41626674f ,0.07120542f ,0.41884547f ,0.071550116f ,0.42132938f ,0.076798305f ,0.41378093f ,0.076205775f ,0.4113859f ,0.07628541f ,0.41613066f ,0.038300335f ,0.41152096f ,0.038547218f ,0.42151815f ,0.034820497f ,0.410635f ,0.034603477f ,0.41685456f ,0.0347414f ,0.41945034f ,0.03441274f ,0.42206186f ,0.014723152f ,0.41059905f ,0.013593674f ,0.41382205f ,0.015167177f ,0.41688222f ,0.014751017f ,0.41940707f ,0.014695734f ,0.42187887f ,0.010956913f ,0.41302967f ,0.010995597f ,0.41555232f ,0.009659171f ,0.41820914f ,0.009883374f ,0.42103386f ,0.07748227f ,0.41864365f ,0.0767649f ,0.4213661f });
  }
}
private class MFInt32193 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,0,0,5,1,6,7,5,5,8,1,1,8,3,3,8,9,9,10,3,3,10,11,7,12,5,5,12,13,13,14,5,5,14,8,14,15,8,8,15,9,9,15,10,10,15,16,12,17,13,13,18,14,18,19,14,14,19,15,15,19,16,16,19,20,21,13,22,22,13,17,23,18,21,21,18,13,4,24,5,5,24,6,25,2,11,11,2,3,24,4,26,4,0,27,0,2,27,27,2,28,25,29,2,2,29,28,26,4,30,30,4,31,27,32,4,4,32,31,28,33,27,27,33,32,28,29,33,33,29,34,30,31,35,31,32,36,33,37,32,32,37,36,33,34,37,37,34,38,23,39,18,18,39,19,39,40,19,19,40,20});
  }
}
private class MFVec3f194 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.8087711f ,0.08920288f ,-0.034675747f ,0.8087711f ,0.07447815f ,-0.034675747f ,0.8027854f ,0.09147358f ,-0.02819699f ,0.8027854f ,0.07220745f ,-0.02819699f ,0.8158772f ,0.09354067f ,-0.02819699f ,0.8158772f ,0.07014084f ,-0.02819699f ,0.8087711f ,0.07447815f ,-0.021718234f ,0.81776726f ,0.06302214f ,-0.021718442f ,0.81776726f ,0.06302214f ,-0.03467551f ,0.8148223f ,0.05740261f ,-0.02819699f ,0.81776726f ,0.06302214f ,-0.021718442f ,0.8087711f ,0.07447815f ,-0.021718234f ,0.86062104f ,0.06302166f ,-0.021717787f ,0.86331236f ,0.07060003f ,-0.02819699f ,0.86062104f ,0.06302166f ,-0.034676194f ,0.86322165f ,0.057215214f ,-0.02819699f ,0.86062104f ,0.06302166f ,-0.021717787f ,0.87063324f ,0.07447672f ,-0.021724045f ,0.87063324f ,0.07447672f ,-0.034669966f ,0.8763529f ,0.071653366f ,-0.02819699f ,0.87063324f ,0.07447672f ,-0.021724045f ,0.86331236f ,0.093081f ,-0.02819699f ,0.87063324f ,0.08920431f ,-0.021724045f ,0.87063324f ,0.08920431f ,-0.034669966f ,0.8087711f ,0.08920288f ,-0.021718234f ,0.8087711f ,0.08920288f ,-0.021718234f ,0.81776726f ,0.10065889f ,-0.021718442f ,0.81776726f ,0.10065889f ,-0.03467551f ,0.8148223f ,0.1062789f ,-0.02819699f ,0.81776726f ,0.10065889f ,-0.021718442f ,0.86062104f ,0.10065985f ,-0.021717787f ,0.86331236f ,0.093081f ,-0.02819699f ,0.86062104f ,0.10065985f ,-0.034676194f ,0.86322165f ,0.10646582f ,-0.02819699f ,0.86062104f ,0.10065985f ,-0.021717787f ,0.87063324f ,0.08920431f ,-0.021724045f ,0.87063324f ,0.08920431f ,-0.034669966f ,0.8763529f ,0.09202719f ,-0.02819699f ,0.87063324f ,0.08920431f ,-0.021724045f ,0.8763529f ,0.09202719f ,-0.02819699f ,0.87063324f ,0.08920431f ,-0.021724045f });
  }
}
private class MFVec3f195 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.037727017f ,0.092625916f ,-0.994986f ,-0.16567394f ,-0.100159936f ,-0.98108107f ,-0.94333726f ,0.33183563f ,1.9184048e-7f ,-0.9523777f ,-0.3049208f ,2.7701503e-7f ,0.51619667f ,-0.8564701f ,-6.0556846e-7f ,0.46393445f ,0.8858695f ,1.332675e-8f ,-0.1656745f ,-0.100160286f ,0.981081f ,-0.08442456f ,-0.144355f ,0.9859179f ,-0.084424436f ,-0.14435415f ,-0.9859181f ,-0.24769475f ,-0.9688381f ,3.4505462e-7f ,-0.08442456f ,-0.144355f ,0.9859179f ,-0.1656745f ,-0.100160286f ,0.981081f ,0.07697655f ,-0.04362304f ,0.99607813f ,-0.48557982f ,0.8735f ,-0.034785222f ,0.07697633f ,-0.04362436f ,-0.99607813f ,0.24715997f ,-0.96897477f ,-4.4910482e-7f ,0.07697655f ,-0.04362304f ,0.99607813f ,0.119845144f ,-0.1135138f ,0.9862818f ,0.06792804f ,-0.093093365f ,-0.9933376f ,0.93480736f ,-0.35217443f ,-0.045917667f ,0.119845144f ,-0.1135138f ,0.9862818f ,-0.4855922f ,-0.87349313f ,0.03478504f ,0.067925595f ,0.093094125f ,0.9933376f ,0.119845845f ,0.11351816f ,-0.98628116f ,0.037726503f ,0.09262487f ,0.9949862f ,0.037726503f ,0.09262487f ,0.9949862f ,-0.08442123f ,0.14434774f ,0.9859193f ,-0.08442091f ,0.14434707f ,-0.9859194f ,-0.24768823f ,0.96883976f ,-5.7509432e-8f ,-0.08442123f ,0.14434774f ,0.9859193f ,0.076973155f ,0.043631505f ,0.9960781f ,-0.4855922f ,-0.87349313f ,0.03478504f ,0.076972835f ,0.0436325f ,-0.9960781f ,0.24716538f ,0.96897334f ,-8.9820674e-8f ,0.076973155f ,0.043631505f ,0.9960781f ,0.067925595f ,0.093094125f ,0.9933376f ,0.119845845f ,0.11351816f ,-0.98628116f ,0.9348136f ,0.35215795f ,0.045917787f ,0.067925595f ,0.093094125f ,0.9933376f ,0.9348136f ,0.35215795f ,0.045917787f ,0.067925595f ,0.093094125f ,0.9933376f });
  }
}
private class MFVec4f196 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.2914656f ,-0.95138013f ,-0.09961806f ,1f ,0.2799491f ,-0.9586805f ,0.050598368f ,1f ,-0.33182716f ,-0.9433132f ,0.0071400297f ,1f ,0.30490112f ,-0.95231634f ,-0.011351035f ,1f ,-0.856467f ,-0.5161948f ,-0.0026965337f ,1f ,0.8858232f ,-0.46391016f ,-0.010239147f ,1f ,0.38118812f ,-0.92401195f ,-0.02996302f ,1f ,0.88308704f ,-0.4691583f ,0.006926422f ,1f ,0.8831896f ,-0.46896443f ,-0.00696388f ,1f ,0.9688359f ,-0.24769418f ,0.0021665231f ,1f ,0.8872789f ,-0.4611557f ,0.008457098f ,1f ,0.18042834f ,-0.9811159f ,-0.06969503f ,1f ,0.94245934f ,0.32917762f ,-0.058416635f ,1f ,0.873478f ,0.48640704f ,0.021079784f ,1f ,0.89063275f ,0.45207253f ,0.04902853f ,1f ,0.9689156f ,0.24714486f ,0.011045611f ,1f ,0.8133523f ,0.5805663f ,-0.03742979f ,1f ,0.40269956f ,0.9136044f ,0.05621631f ,1f ,0.2479134f ,0.96598417f ,-0.073576644f ,1f ,0.35259613f ,0.93577486f ,0.0011643859f ,1f ,0.37468976f ,0.92514485f ,0.060948055f ,1f ,-0.87052035f ,0.48681322f ,0.072160624f ,1f ,0.0133220395f ,0.9954638f ,-0.09420435f ,1f ,-0.021363618f ,0.9935063f ,0.1117538f ,1f ,-0.25242466f ,-0.96252084f ,0.09917371f ,1f ,-0.31814906f ,-0.94277024f ,0.09982714f ,1f ,-0.8779703f ,-0.4786882f ,-0.005093479f ,1f ,-0.89037406f ,-0.45512825f ,0.009604992f ,1f ,-0.9687062f ,-0.24765407f ,0.016612273f ,1f ,-0.87304324f ,-0.4876312f ,-0.003362248f ,1f ,-0.9796027f ,0.18930063f ,0.06740801f ,1f ,-0.87194455f ,0.48111644f ,-0.090773694f ,1f ,-0.9332341f ,0.35478634f ,-0.056575347f ,1f ,-0.9676152f ,0.24681897f ,-0.05292784f ,1f ,-0.78197354f ,0.62242883f ,0.033163525f ,1f ,-0.79362f ,0.60840774f ,-0.0027504077f ,1f ,-0.7504714f ,0.66072947f ,-0.015143836f ,1f ,-0.343887f ,0.92988586f ,-0.13059077f ,1f ,-0.57149714f ,0.81973565f ,-0.03774476f ,1f ,-0.35135064f ,0.93591356f ,-0.024871668f ,1f ,0.019195482f ,0.99533087f ,-0.09459353f ,1f });
  }
}
private class MFVec2f197 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.042135686f ,0.8266542f ,0.048590183f ,0.8267492f ,0.042082876f ,0.83047664f ,0.048513383f ,0.83069694f ,0.038811356f ,0.82273114f ,0.051869035f ,0.82257545f ,0.048444808f ,0.81855637f ,0.054052442f ,0.81839776f ,0.05434537f ,0.8267617f ,0.054249883f ,0.83076143f ,0.054591626f ,0.8347416f ,0.048310697f ,0.8346131f ,0.07307756f ,0.8185667f ,0.075391024f ,0.8225676f ,0.07270017f ,0.8265635f ,0.072834015f ,0.83042336f ,0.07279211f ,0.8342532f ,0.078602195f ,0.8184415f ,0.078808784f ,0.8265977f ,0.07891482f ,0.8303468f ,0.07928491f ,0.83401704f ,0.086477816f ,0.8226181f ,0.084953845f ,0.8187437f ,0.08531436f ,0.8266659f ,0.04177633f ,0.81900364f ,0.042039394f ,0.83425367f ,0.03646356f ,0.81858563f ,0.0363234f ,0.82687783f ,0.036334515f ,0.8307986f ,0.035870284f ,0.8347373f ,0.0172458f ,0.81876063f ,0.016206771f ,0.8230194f ,0.01790005f ,0.8270062f ,0.017339855f ,0.83071625f ,0.017147899f ,0.83436406f ,0.011549354f ,0.82227975f ,0.011541665f ,0.82530504f ,0.009659201f ,0.8292022f ,0.010042816f ,0.8333458f ,0.0870159f ,0.8304312f ,0.08576164f ,0.83442247f });
  }
}
private class MFInt32198 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,2,3,4,4,3,5,4,5,6,6,5,7,6,7,8,8,7,9});
  }
}
private class MFVec3f199 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.78616863f ,0.01611805f ,0.04418695f ,1.0577837f ,0.01611805f ,0.04418695f ,0.78616863f ,0.07589054f ,0.04418695f ,1.0577837f ,0.07589054f ,0.04418695f ,0.78616863f ,0.07589054f ,-0.012320805f ,1.0577837f ,0.07589054f ,-0.012320805f ,0.78616863f ,0.01611805f ,-0.012320805f ,1.0577837f ,0.01611805f ,-0.012320805f ,0.78616863f ,0.01611805f ,0.04418695f ,1.0577837f ,0.01611805f ,0.04418695f });
  }
}
private class MFVec3f200 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0f ,-0.68698317f ,0.72667336f ,0f ,-0.6869829f ,0.72667354f ,0f ,0.6869833f ,0.7266732f ,0f ,0.6869829f ,0.7266736f ,0f ,0.68698317f ,-0.72667336f ,0f ,0.6869829f ,-0.72667354f ,0f ,-0.6869833f ,-0.7266732f ,0f ,-0.6869829f ,-0.7266736f ,0f ,-0.68698317f ,0.72667336f ,0f ,-0.6869829f ,0.72667354f });
  }
}
private class MFVec4f201 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-1f ,-0.000044631677f ,-0.00004219394f ,1f ,-1f ,-0.000044362736f ,-0.00004193966f ,1f ,-1f ,-0.000043470296f ,0.00004109601f ,1f ,-1f ,-0.00004265777f ,0.000040327825f ,1f ,-1f ,0.00004283701f ,0.000040497293f ,1f ,-1f ,0.000043819018f ,0.000041425636f ,1f ,-1f ,0.00004381892f ,-0.000041425596f ,1f ,-1f ,0.00004317592f ,-0.000040817667f ,1f ,-1f ,-0.00004244814f ,-0.000040129664f ,1f ,-1f ,-0.00004270242f ,-0.000040370032f ,1f });
  }
}
private class MFVec2f202 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.12673193f ,0.7297038f ,0.009667814f ,0.7297137f ,0.12672979f ,0.7039423f ,0.009665489f ,0.7039521f ,0.12672776f ,0.67958784f ,0.009663522f ,0.67959774f ,0.1267255f ,0.65382624f ,0.009661317f ,0.65383613f ,0.12672347f ,0.6294718f ,0.009659231f ,0.6294818f });
  }
}
private class MFInt32203 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,6,6,5,7,8,9,10,10,9,11,12,13,14,14,13,15,16,17,18,19,20,21,22,23,20,17,21,18,23,18,20,21,20,18,24,25,26,27,28,29,30,31,28,25,29,26,31,26,28,29,28,26,0,14,1,1,14,15,4,2,5,5,2,3,8,6,9,9,6,7,32,10,33,33,10,11});
  }
}
private class MFVec3f204 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.87290126f ,-0.03740692f ,0.070360586f ,0.78838485f ,-0.03740692f ,0.070360586f ,-0.87290126f ,0.05493641f ,0.070360586f ,0.78838485f ,0.05493641f ,0.070360586f ,-0.87290126f ,0.08214712f ,0.043149527f ,0.78838485f ,0.08214712f ,0.043149527f ,-0.87290126f ,0.08214712f ,-0.011283591f ,0.78838485f ,0.08214712f ,-0.011283591f ,-0.87290126f ,0.05493641f ,-0.038494647f ,0.78838485f ,0.05493641f ,-0.038494647f ,-0.87290126f ,-0.03740692f ,-0.038494647f ,0.78838485f ,-0.03740692f ,-0.038494647f ,-0.87290126f ,-0.064617634f ,-0.011283591f ,0.78838485f ,-0.064617634f ,-0.011283591f ,-0.87290126f ,-0.064617634f ,0.043149527f ,0.78838485f ,-0.064617634f ,0.043149527f ,0.78838485f ,-0.03740692f ,0.070360586f ,0.78838485f ,-0.064617634f ,0.043149527f ,0.78838485f ,0.05493641f ,0.070360586f ,0.78838485f ,-0.03740692f ,-0.038494647f ,0.78838485f ,0.05493641f ,-0.038494647f ,0.78838485f ,-0.064617634f ,-0.011283591f ,0.78838485f ,0.08214712f ,-0.011283591f ,0.78838485f ,0.08214712f ,0.043149527f ,-0.87290126f ,-0.03740692f ,-0.038494647f ,-0.87290126f ,-0.064617634f ,-0.011283591f ,-0.87290126f ,0.05493641f ,-0.038494647f ,-0.87290126f ,-0.03740692f ,0.070360586f ,-0.87290126f ,0.05493641f ,0.070360586f ,-0.87290126f ,-0.064617634f ,0.043149527f ,-0.87290126f ,0.08214712f ,0.043149527f ,-0.87290126f ,0.08214712f ,-0.011283591f ,-0.87290126f ,-0.064617634f ,-0.011283591f ,0.78838485f ,-0.064617634f ,-0.011283591f });
  }
}
private class MFVec3f205 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.018500796f ,-0.22189088f ,0.97489595f ,0.0185008f ,-0.22189121f ,0.9748959f ,-0.061553415f ,0.22150843f ,0.97321385f ,0.05609482f ,0.22157945f ,0.97352755f ,-0.015538215f ,0.9485828f ,0.3161476f ,0.028943555f ,0.9482997f ,0.3160538f ,-0.028943557f ,0.94829965f ,-0.31605378f ,0.015538213f ,0.94858277f ,-0.3161476f ,-0.056094833f ,0.22157942f ,-0.9735276f ,0.061553415f ,0.22150835f ,-0.97321385f ,-0.018500809f ,-0.22189118f ,-0.9748959f ,0.018500803f ,-0.22189085f ,-0.97489595f ,-0.058188338f ,-0.94708985f ,-0.31565005f ,0.081854075f ,-0.94551367f ,-0.31512523f ,-0.08185406f ,-0.9455136f ,0.3151252f ,0.058188345f ,-0.9470899f ,0.31565008f ,0.0185008f ,-0.22189121f ,0.9748959f ,0.058188345f ,-0.9470899f ,0.31565008f ,0.05609482f ,0.22157945f ,0.97352755f ,0.018500803f ,-0.22189085f ,-0.97489595f ,0.061553415f ,0.22150835f ,-0.97321385f ,0.081854075f ,-0.94551367f ,-0.31512523f ,0.015538213f ,0.94858277f ,-0.3161476f ,0.028943555f ,0.9482997f ,0.3160538f ,-0.018500809f ,-0.22189118f ,-0.9748959f ,-0.058188338f ,-0.94708985f ,-0.31565005f ,-0.056094833f ,0.22157942f ,-0.9735276f ,-0.018500796f ,-0.22189088f ,0.97489595f ,-0.061553415f ,0.22150843f ,0.97321385f ,-0.08185406f ,-0.9455136f ,0.3151252f ,-0.015538215f ,0.9485828f ,0.3161476f ,-0.028943557f ,0.94829965f ,-0.31605378f ,-0.058188338f ,-0.94708985f ,-0.31565005f ,0.081854075f ,-0.94551367f ,-0.31512523f });
  }
}
private class MFVec4f206 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.9998289f ,0.0042748074f ,-0.018000988f ,1f ,-0.9998289f ,-0.0039369385f ,0.018077891f ,1f ,-0.99810386f ,-0.013491284f ,-0.060056966f ,1f ,-0.9984254f ,0.0126182465f ,0.054657478f ,1f ,-0.99987936f ,-0.014685653f ,-0.0050792126f ,1f ,-0.9995811f ,0.027514104f ,0.008985219f ,1f ,-0.9995811f ,-0.027514122f ,0.008985177f ,1f ,-0.99987936f ,0.014685629f ,-0.0050792843f ,1f ,-0.9984254f ,-0.0126183545f ,0.054657448f ,1f ,-0.99810386f ,0.013491206f ,-0.06005699f ,1f ,-0.9998289f ,0.003936901f ,0.018077906f ,1f ,-0.9998289f ,-0.004274809f ,-0.018000994f ,1f ,-0.9983056f ,0.05514594f ,0.018569853f ,1f ,-0.9966444f ,-0.07771197f ,-0.025709372f ,1f ,-0.9966443f ,0.07771031f ,-0.025714288f ,1f ,-0.9983056f ,-0.055147614f ,0.018564837f ,1f ,0.99982893f ,0.004105868f ,-0.018039443f ,1f ,0.019356754f ,-0.31505597f ,-0.94887567f ,1f ,0.9984254f ,-0.0124490615f ,-0.054695975f ,1f ,-0.9998289f ,-0.004105862f ,-0.018039448f ,1f ,-0.9981038f ,0.0136605f ,-0.060018443f ,1f ,-0.027179053f ,0.31395096f ,-0.9490501f ,1f ,0.005177945f ,0.3161052f ,0.94871f ,1f ,-0.009641956f ,-0.3159067f ,0.9487414f ,1f ,-0.99982893f ,0.004105869f ,0.018039452f ,1f ,0.01935675f ,0.31505594f ,-0.94887567f ,1f ,-0.9984255f ,-0.0124490615f ,0.05469599f ,1f ,0.99982893f ,-0.004105861f ,0.01803944f ,1f ,0.99810386f ,0.013660504f ,0.060018443f ,1f ,-0.027179047f ,-0.31395093f ,-0.9490501f ,1f ,0.0051779454f ,-0.3161052f ,0.94871f ,1f ,-0.009641956f ,0.31590667f ,0.9487413f ,1f ,-0.9983057f ,0.05514924f ,0.018559968f ,1f ,-0.9966444f ,-0.07770869f ,-0.025719205f ,1f });
  }
}
private class MFVec2f207 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.7256693f ,0.16477096f ,0.009666782f ,0.16463476f ,0.7256769f ,0.12497162f ,0.009674322f ,0.124835424f ,0.72568005f ,0.10838615f ,0.009677511f ,0.108250014f ,0.72568446f ,0.08492585f ,0.009681921f ,0.084789656f ,0.7256877f ,0.06834041f ,0.0096850805f ,0.06820413f ,0.7256953f ,0.02854111f ,0.00969271f ,0.028404914f ,0.7256617f ,0.20481673f ,0.009659182f ,0.2046805f ,0.7256662f ,0.18135643f ,0.009663653f ,0.1812203f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0f ,0.7256984f ,0.011955583f ,0.009695839f ,0.011819416f });
  }
}
private class MFInt32208 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,12,0,13,13,0,2,14,15,16,17,14,16,18,17,16,15,19,16,20,21,22,21,23,22,23,24,22,24,25,22,26,27,28,28,27,29,30,26,31,31,26,28,30,31,32,32,31,33,34,32,35,35,32,33,36,34,37,37,34,35,38,39,27,27,39,29,28,29,40,40,29,41,31,28,42,42,28,40,33,31,43,43,31,42,35,33,44,44,33,43,37,35,45,45,35,44,29,39,41,41,39,46,47,48,49,49,48,50,51,52,48,48,52,50,51,53,52,52,53,54,53,55,54,54,55,56,57,58,55,55,58,56,59,47,60,60,47,49,49,50,61,61,50,62,50,52,62,62,52,63,52,54,63,63,54,64,54,56,64,64,56,65,56,58,65,65,58,66,60,49,67,67,49,61});
  }
}
private class MFVec3f209 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.017081f ,-0.7883744f ,-3.3004756f ,-0.017081227f ,-0.78837425f ,-3.3004756f ,0.017080968f ,1.0092541f ,-3.3004756f ,-0.017081195f ,1.0092541f ,-3.3004756f ,-0.034162294f ,-0.78837425f ,-3.2708902f ,-0.034162425f ,1.0092541f ,-3.2708902f ,-0.017081227f ,-0.78837425f ,-3.2413049f ,-0.017081195f ,1.0092541f ,-3.2413049f ,0.017081f ,-0.7883744f ,-3.2413049f ,0.017080968f ,1.0092541f ,-3.2413049f ,0.034162227f ,-0.78837425f ,-3.2708902f ,0.034162164f ,1.0092541f ,-3.2708902f ,0.034162227f ,-0.78837425f ,-3.2708902f ,0.034162164f ,1.0092541f ,-3.2708902f ,-0.02153236f ,-0.9132133f ,-3.311163f ,0.021532133f ,-0.91321325f ,-3.311163f ,0.021532169f ,-0.91321325f ,-3.2306175f ,-0.044783916f ,-0.9132132f ,-3.2708902f ,-0.02153236f ,-0.9132133f ,-3.2306175f ,0.044783626f ,-0.9132132f ,-3.2708902f ,-0.02139608f ,1.0364554f ,-3.315423f ,-0.04710724f ,1.0364553f ,-3.2708902f ,0.021395715f ,1.0364553f ,-3.315423f ,-0.02139608f ,1.0364554f ,-3.2263575f ,0.02139572f ,1.0364553f ,-3.2263575f ,0.047106914f ,1.0364554f ,-3.2708902f ,-0.017081227f ,-0.78837425f ,-3.3004756f ,0.017081f ,-0.7883744f ,-3.3004756f ,-0.021532426f ,-0.80292654f ,-3.311163f ,0.021532068f ,-0.8029265f ,-3.311163f ,-0.034162294f ,-0.78837425f ,-3.2708902f ,-0.044783916f ,-0.8029266f ,-3.2708902f ,-0.017081227f ,-0.78837425f ,-3.2413049f ,-0.021532426f ,-0.80292654f ,-3.2306175f ,0.017081f ,-0.7883744f ,-3.2413049f ,0.021532068f ,-0.8029265f ,-3.2306175f ,0.034162227f ,-0.78837425f ,-3.2708902f ,0.044783656f ,-0.8029265f ,-3.2708902f ,0.034162227f ,-0.78837425f ,-3.2708902f ,0.044783656f ,-0.8029265f ,-3.2708902f ,-0.02153236f ,-0.9132133f ,-3.311163f ,0.021532133f ,-0.91321325f ,-3.311163f ,-0.044783916f ,-0.9132132f ,-3.2708902f ,-0.02153236f ,-0.9132133f ,-3.2306175f ,0.021532169f ,-0.91321325f ,-3.2306175f ,0.044783626f ,-0.9132132f ,-3.2708902f ,0.044783626f ,-0.9132132f ,-3.2708902f ,0.017080968f ,1.0092541f ,-3.3004756f ,-0.017081195f ,1.0092541f ,-3.3004756f ,0.02139572f ,1.0162613f ,-3.315423f ,-0.02139608f ,1.0162615f ,-3.315423f ,-0.034162425f ,1.0092541f ,-3.2708902f ,-0.04710724f ,1.0162613f ,-3.2708902f ,-0.017081195f ,1.0092541f ,-3.2413049f ,-0.02139608f ,1.0162615f ,-3.2263575f ,0.017080968f ,1.0092541f ,-3.2413049f ,0.02139572f ,1.0162613f ,-3.2263575f ,0.034162164f ,1.0092541f ,-3.2708902f ,0.047106914f ,1.0162615f ,-3.2708902f ,0.034162164f ,1.0092541f ,-3.2708902f ,0.047106914f ,1.0162615f ,-3.2708902f ,0.021395715f ,1.0364553f ,-3.315423f ,-0.02139608f ,1.0364554f ,-3.315423f ,-0.04710724f ,1.0364553f ,-3.2708902f ,-0.02139608f ,1.0364554f ,-3.2263575f ,0.02139572f ,1.0364553f ,-3.2263575f ,0.047106914f ,1.0364554f ,-3.2708902f ,0.047106914f ,1.0364554f ,-3.2708902f });
  }
}
private class MFVec3f210 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.5004195f ,0.009364833f ,-0.8657325f ,-0.5008799f ,0.0085990615f ,-0.86547416f ,0.5008275f ,-0.012916463f ,-0.86545074f ,-0.5005979f ,-0.014000395f ,-0.8655668f ,-0.9999758f ,0.0069668787f ,4.1957622e-7f ,-0.9999573f ,-0.009241348f ,-4.8674445e-7f ,-0.5004189f ,0.009364784f ,0.86573285f ,-0.5008274f ,-0.012916502f ,0.8654508f ,0.5008785f ,0.0085990615f ,0.86547494f ,0.5005981f ,-0.014000283f ,0.8655667f ,0.99997574f ,0.0069667953f ,-4.0508294e-7f ,0.9999573f ,-0.009241249f ,4.4367664e-7f ,0.99997574f ,0.0069667953f ,-4.0508294e-7f ,0.9999573f ,-0.009241249f ,4.4367664e-7f ,-0.4546349f ,-0.48255384f ,-0.74863136f ,0.46825215f ,-0.4315035f ,-0.77106714f ,0.47969168f ,-0.38204533f ,0.789897f ,-0.9035851f ,-0.4284089f ,-2.1108329e-7f ,-0.5010907f ,-0.26088735f ,0.82513386f ,0.9626877f ,-0.27061495f ,0.0000022489012f ,-0.29683438f ,0.8386869f ,-0.45661092f ,-0.34409374f ,0.9389353f ,-0.0000016996662f ,0.20743464f ,0.9247429f ,-0.31909472f ,-0.16146868f ,0.9551094f ,0.2483824f ,0.18492556f ,0.9406825f ,0.28446272f ,0.5075461f ,0.86162466f ,-3.1893984e-7f ,-0.5008799f ,0.0085990615f ,-0.86547416f ,0.5004195f ,0.009364833f ,-0.8657325f ,-0.51851666f ,0.0698306f ,-0.8522113f ,0.51487964f ,0.07503439f ,-0.8539724f ,-0.9999758f ,0.0069668787f ,4.1957622e-7f ,-0.99827516f ,0.058709312f ,8.4233385e-8f ,-0.5004189f ,0.009364784f ,0.86573285f ,-0.5148746f ,0.07503447f ,0.8539754f ,0.5008785f ,0.0085990615f ,0.86547494f ,0.51852584f ,0.06982987f ,0.8522058f ,0.99997574f ,0.0069667953f ,-4.0508294e-7f ,0.99827516f ,0.05870891f ,4.0585238e-7f ,0.99997574f ,0.0069667953f ,-4.0508294e-7f ,0.99827516f ,0.05870891f ,4.0585238e-7f ,-0.4546349f ,-0.48255384f ,-0.74863136f ,0.46825215f ,-0.4315035f ,-0.77106714f ,-0.9035851f ,-0.4284089f ,-2.1108329e-7f ,-0.5010907f ,-0.26088735f ,0.82513386f ,0.47969168f ,-0.38204533f ,0.789897f ,0.9626877f ,-0.27061495f ,0.0000022489012f ,0.9626877f ,-0.27061495f ,0.0000022489012f ,0.5008275f ,-0.012916463f ,-0.86545074f ,-0.5005979f ,-0.014000395f ,-0.8655668f ,0.49773157f ,-0.3638464f ,-0.7873241f ,-0.48524362f ,-0.3884304f ,-0.78336483f ,-0.9999573f ,-0.009241348f ,-4.8674445e-7f ,-0.9601522f ,-0.2794776f ,3.3330065e-7f ,-0.5008274f ,-0.012916502f ,0.8654508f ,-0.49774137f ,-0.36384553f ,0.7873182f ,0.5005981f ,-0.014000283f ,0.8655667f ,0.4852433f ,-0.38843068f ,0.78336483f ,0.9999573f ,-0.009241249f ,4.4367664e-7f ,0.96015286f ,-0.27947533f ,-4.9995045e-8f ,0.9999573f ,-0.009241249f ,4.4367664e-7f ,0.96015286f ,-0.27947533f ,-4.9995045e-8f ,0.20743464f ,0.9247429f ,-0.31909472f ,-0.29683438f ,0.8386869f ,-0.45661092f ,-0.34409374f ,0.9389353f ,-0.0000016996662f ,-0.16146868f ,0.9551094f ,0.2483824f ,0.18492556f ,0.9406825f ,0.28446272f ,0.5075461f ,0.86162466f ,-3.1893984e-7f ,0.5075461f ,0.86162466f ,-3.1893984e-7f });
  }
}
private class MFVec4f211 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.8657601f ,-0.0018875347f ,-0.50045586f ,1f ,-0.8655124f ,-0.0017656973f ,0.5008845f ,1f ,-0.8655368f ,-0.0025921187f ,-0.50083864f ,1f ,-0.8656287f ,-0.002793049f ,0.50067884f ,1f ,-0.000009638184f ,-0.0014436198f ,0.999999f ,1f ,0.000016834189f ,-0.0018742087f ,0.9999983f ,1f ,0.8657603f ,-0.0018926612f ,0.50045526f ,1f ,0.86553705f ,-0.0026000298f ,0.50083834f ,1f ,0.86551315f ,-0.0017677265f ,-0.50088316f ,1f ,0.8656286f ,-0.002780843f ,-0.5006789f ,1f ,0.000028247516f ,-0.004112638f ,-0.99999154f ,1f ,0.000048928596f ,0.00524635f ,-0.99998623f ,1f ,-0.000027668904f ,0.0039132987f ,-0.99999243f ,1f ,-0.000049732265f ,-0.0054293317f ,-0.9999853f ,1f ,-0.8070065f ,0.5788416f ,0.11697489f ,1f ,-0.85682607f ,-0.008572409f ,-0.51553434f ,1f ,-0.8145679f ,-0.5285227f ,0.23904616f ,1f ,-0.25523356f ,0.5383301f ,-0.8031541f ,1f ,-0.855498f ,0.0055474066f ,-0.5177764f ,1f ,-0.114821374f ,-0.4084739f ,-0.9055193f ,1f ,-0.8256476f ,-0.46565062f ,-0.3185523f ,1f ,-0.7997342f ,-0.29308137f ,-0.52395475f ,1f ,-0.86195403f ,0.018524537f ,-0.506648f ,1f ,-0.8635224f ,-0.014893168f ,-0.5040906f ,1f ,-0.84980184f ,0.29844475f ,-0.43447408f ,1f ,-0.7156949f ,0.42158496f ,-0.55681866f ,1f ,0.12514617f ,0.99016225f ,-0.0625885f ,1f ,0.41824412f ,0.87290925f ,0.25120014f ,1f ,-0.082869604f ,0.9878641f ,0.13136697f ,1f ,-0.00063306995f ,0.9961951f ,0.08714913f ,1f ,0.0069668796f ,0.9999758f ,-0.000012085577f ,1f ,0.05870931f ,0.9982752f ,-0.0000034367513f ,1f ,-0.039569564f ,0.99864924f ,-0.033674926f ,1f ,0.0006305117f ,0.99619496f ,-0.08715044f ,1f ,0.44448692f ,0.85546154f ,-0.26573864f ,1f ,0.0828726f ,0.9878635f ,-0.13136964f ,1f ,-0.002813346f ,0.4037591f ,-0.9148611f ,1f ,-0.04181046f ,0.71094203f ,-0.7020067f ,1f ,-0.003049174f ,0.43771398f ,0.8991091f ,1f ,-0.048563246f ,0.82575643f ,0.5619324f ,1f ,-0.25047952f ,0.87586635f ,-0.41245395f ,1f ,0.22397672f ,0.90211123f ,-0.36882204f ,1f ,-0.42840892f ,0.9035851f ,0.0000023776004f ,1f ,-0.1354165f ,0.9653693f ,0.22299008f ,1f ,0.19830517f ,0.9241437f ,0.32654816f ,1f ,0.27061495f ,0.96268773f ,0.00000337127f ,1f ,0.27061498f ,0.9626877f ,0.0000017312803f ,1f ,0.15322995f ,0.98541856f ,0.07396569f ,1f ,0.21242349f ,0.96731275f ,-0.13850063f ,1f ,-0.027047457f ,0.90080196f ,-0.43338683f ,1f ,-0.09727044f ,0.9143294f ,-0.39311627f ,1f ,-0.009241347f ,0.9999573f ,8.7966976e-7f ,1f ,-0.27947763f ,0.96015227f ,0.000004125468f ,1f ,-0.15319395f ,0.9854257f ,-0.07394469f ,1f ,0.027050763f ,0.9008001f ,0.43339074f ,1f ,-0.21241477f ,0.96731544f ,0.13849553f ,1f ,0.09726245f ,0.91432816f ,0.393121f ,1f ,0.00924125f ,0.9999574f ,0.00001293687f ,1f ,0.26675203f ,0.9164412f ,0.29829326f ,1f ,0.00924125f ,0.9999574f ,-0.000014430939f ,1f ,0.2546503f ,0.8748652f ,-0.41202453f ,1f ,-0.5040429f ,0.38059238f ,0.7753001f ,1f ,0.45711142f ,0.54461384f ,0.7031678f ,1f ,0.9389353f ,0.3440938f ,0.000011046375f ,1f ,0.52055216f ,0.2962532f ,-0.8007868f ,1f ,-0.51271397f ,0.33928823f ,-0.7886748f ,1f ,-0.8616246f ,0.5075461f ,-0.00001396364f ,1f ,-0.86162466f ,0.50754607f ,-0.000020885469f ,1f });
  }
}
private class MFVec2f212 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.7589789f ,0.011820734f ,0.7737025f ,0.011821866f ,0.75891423f ,0.78658587f ,0.7736378f ,0.78658736f ,0.7884261f ,0.011823207f ,0.78836143f ,0.7865887f ,0.80315f ,0.011824429f ,0.8030852f ,0.7865898f ,0.81787354f ,0.011825711f ,0.81780875f ,0.78659123f ,0.83259726f ,0.011826962f ,0.8325325f ,0.78659236f ,0.7442551f ,0.011819422f ,0.74419034f ,0.78658485f ,0.04309325f ,0.5749972f ,0.027020678f ,0.5842798f ,0.009659186f ,0.55421835f ,0.043090597f ,0.55495465f ,0.025731847f ,0.5449359f ,0.009661987f ,0.5742609f ,0.04482943f ,0.36165008f ,0.044825435f ,0.38381302f ,0.02885878f ,0.35242563f ,0.025629878f ,0.39489087f ,0.009659171f ,0.38566643f ,0.009663165f ,0.36350355f ,0.67359036f ,0.69891566f ,0.67359036f ,0.7172477f ,0.6668681f ,0.69891566f ,0.6668681f ,0.71724766f ,0.67359036f ,0.67938733f ,0.6668681f ,0.67938745f ,0.67359036f ,0.65998274f ,0.6668681f ,0.6599828f ,0.67359036f ,0.64152706f ,0.6668681f ,0.641527f ,0.67359036f ,0.63176996f ,0.6668681f ,0.6209393f ,0.67359036f ,0.7274368f ,0.6668681f ,0.73769855f ,0.618597f ,0.69891566f ,0.6185969f ,0.7172476f ,0.618597f ,0.6793873f ,0.618597f ,0.65998274f ,0.61859703f ,0.6415271f ,0.61859703f ,0.6209395f ,0.618597f ,0.7376986f ,0.97429883f ,0.8306122f ,0.97429883f ,0.81214523f ,0.980983f ,0.8306119f ,0.98098314f ,0.81214523f ,0.9742987f ,0.79270035f ,0.98098314f ,0.79270035f ,0.9742988f ,0.7719871f ,0.980983f ,0.7719871f ,0.9742987f ,0.75362664f ,0.980983f ,0.7536267f ,0.9742986f ,0.7356162f ,0.980983f ,0.73561615f ,0.97429883f ,0.8487674f ,0.98098314f ,0.84876746f ,0.9897552f ,0.83061206f ,0.9897552f ,0.81214523f ,0.9897553f ,0.7927004f ,0.9897552f ,0.771987f ,0.9897553f ,0.75362664f ,0.98975515f ,0.7356162f ,0.98975515f ,0.84876746f });
  }
}
private class MFInt32213 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,16,17,18,18,17,19,17,20,19,19,20,21,20,0,21,21,0,2,22,23,24,25,22,24,26,25,24,27,26,24,28,27,24,29,28,24,30,31,24,23,30,24,32,33,34,33,35,34,35,36,34,36,37,34,37,38,34,38,39,34,40,41,34,41,32,34,42,43,22,22,43,23,44,42,25,25,42,22,45,44,26,26,44,25,46,45,27,27,45,26,47,46,28,28,46,27,48,47,29,29,47,28,49,48,24,24,48,29,50,49,31,31,49,24,51,50,30,30,50,31,43,51,23,23,51,30,52,53,32,32,53,33,53,54,33,33,54,35,54,55,35,35,55,36,55,56,36,36,56,37,56,57,37,37,57,38,57,58,38,38,58,39,58,59,39,39,59,34,59,60,34,34,60,40,60,61,40,40,61,41,61,52,41,41,52,32});
  }
}
private class MFVec3f214 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.07573181f ,1.2195805f ,-3.245657f ,0.028926969f ,1.1855747f ,-3.245657f ,0.07573181f ,1.2195805f ,-3.3037345f ,0.028926969f ,1.1855747f ,-3.3037345f ,-0.028926989f ,1.1855747f ,-3.245657f ,-0.028926989f ,1.1855747f ,-3.3037345f ,-0.07573182f ,1.2195805f ,-3.245657f ,-0.07573182f ,1.2195805f ,-3.3037345f ,-0.09360966f ,1.2746029f ,-3.245657f ,-0.09360966f ,1.2746029f ,-3.3037345f ,-0.07573181f ,1.3296251f ,-3.245657f ,-0.07573181f ,1.3296251f ,-3.3037345f ,-0.028926972f ,1.363631f ,-3.245657f ,-0.028926972f ,1.363631f ,-3.3037345f ,0.028926978f ,1.363631f ,-3.245657f ,0.028926978f ,1.363631f ,-3.3037345f ,0.028926978f ,1.363631f ,-3.245657f ,0.0757318f ,1.3296251f ,-3.245657f ,0.028926978f ,1.363631f ,-3.3037345f ,0.0757318f ,1.3296251f ,-3.3037345f ,0.09360965f ,1.2746029f ,-3.245657f ,0.09360965f ,1.2746029f ,-3.3037345f ,0.022414073f ,1.2056193f ,-3.217935f ,0.058680817f ,1.2319688f ,-3.217935f ,0.022414098f ,1.3435863f ,-3.217935f ,-0.02241409f ,1.2056193f ,-3.217935f ,-0.05868083f ,1.2319688f ,-3.217935f ,-0.07253349f ,1.2746029f ,-3.217935f ,-0.058680817f ,1.3172369f ,-3.217935f ,-0.022414077f ,1.3435863f ,-3.217935f ,0.07253347f ,1.2746029f ,-3.217935f ,0.058680817f ,1.3172369f ,-3.217935f ,0.058680817f ,1.2319688f ,-3.3314567f ,0.022414073f ,1.2056193f ,-3.3314567f ,0.022414096f ,1.3435863f ,-3.3314567f ,-0.02241409f ,1.2056193f ,-3.3314567f ,-0.05868083f ,1.2319688f ,-3.3314567f ,-0.07253349f ,1.2746029f ,-3.3314567f ,-0.058680817f ,1.3172369f ,-3.3314567f ,-0.022414077f ,1.3435863f ,-3.3314567f ,0.058680817f ,1.3172369f ,-3.3314567f ,0.07253347f ,1.2746029f ,-3.3314567f ,0.028926969f ,1.1855747f ,-3.245657f ,0.07573181f ,1.2195805f ,-3.245657f ,-0.028926989f ,1.1855747f ,-3.245657f ,-0.07573182f ,1.2195805f ,-3.245657f ,-0.09360966f ,1.2746029f ,-3.245657f ,-0.07573181f ,1.3296251f ,-3.245657f ,-0.028926972f ,1.363631f ,-3.245657f ,0.028926978f ,1.363631f ,-3.245657f ,0.0757318f ,1.3296251f ,-3.245657f ,0.09360965f ,1.2746029f ,-3.245657f ,0.07573181f ,1.2195805f ,-3.3037345f ,0.028926969f ,1.1855747f ,-3.3037345f ,-0.028926989f ,1.1855747f ,-3.3037345f ,-0.07573182f ,1.2195805f ,-3.3037345f ,-0.09360966f ,1.2746029f ,-3.3037345f ,-0.07573181f ,1.3296251f ,-3.3037345f ,-0.028926972f ,1.363631f ,-3.3037345f ,0.028926978f ,1.363631f ,-3.3037345f ,0.0757318f ,1.3296251f ,-3.3037345f ,0.09360965f ,1.2746029f ,-3.3037345f });
  }
}
private class MFVec3f215 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.79465824f ,-0.5696863f ,0.20970443f ,0.30804038f ,-0.9279736f ,0.20970492f ,0.78736734f ,-0.57972157f ,-0.20970392f ,0.29624176f ,-0.9318074f ,-0.20970383f ,-0.2962436f ,-0.931807f ,0.20970358f ,-0.30803853f ,-0.9279739f ,-0.2097062f ,-0.7873683f ,-0.57971996f ,0.20970462f ,-0.7946572f ,-0.5696876f ,-0.20970432f ,-0.9777454f ,-0.0062016384f ,0.20970361f ,-0.9777453f ,0.006201886f ,-0.20970418f ,-0.7946581f ,0.5696864f ,0.20970401f ,-0.78736687f ,0.5797223f ,-0.20970348f ,-0.3080406f ,0.9279741f ,0.20970272f ,-0.29624173f ,0.9318072f ,-0.20970471f ,0.29624358f ,0.9318067f ,0.20970494f ,0.30803868f ,0.9279744f ,-0.20970373f ,0.29624358f ,0.9318067f ,0.20970494f ,0.7873684f ,0.57972f ,0.20970383f ,0.30803868f ,0.9279744f ,-0.20970373f ,0.79465735f ,0.56968784f ,-0.20970371f ,0.97774535f ,0.006201764f ,0.2097037f ,0.9777453f ,-0.006201743f ,-0.20970373f ,0.08301891f ,-0.23261577f ,0.969019f ,0.24253492f ,-0.16581503f ,0.9558673f ,0.09210788f ,0.3137993f ,0.94501126f ,-0.065713905f ,-0.2238892f ,0.97239673f ,-0.19557276f ,-0.15083998f ,0.9690194f ,-0.29368776f ,-0.008416776f ,0.9558644f ,-0.32533512f ,0.22241893f ,0.91906846f ,-0.19439046f ,0.5446545f ,0.815821f ,0.39393863f ,0.01129012f ,0.9190674f ,0.45792165f ,0.35318333f ,0.81582433f ,0.23265143f ,-0.17943437f ,-0.9558643f ,0.069562905f ,-0.23699072f ,-0.9690183f ,0.109929174f ,0.30801165f ,-0.9450103f ,-0.078432366f ,-0.2197592f ,-0.97239614f ,-0.20389739f ,-0.13939269f ,-0.9690178f ,-0.29369414f ,0.008416917f ,-0.9558624f ,-0.31207013f ,0.2406881f ,-0.9190656f ,-0.16287595f ,0.55489486f ,-0.81582063f ,0.47740355f ,0.32637918f ,-0.8158202f ,0.39394587f ,-0.011290155f ,-0.9190643f ,0.30804038f ,-0.9279736f ,0.20970492f ,0.79465824f ,-0.5696863f ,0.20970443f ,-0.2962436f ,-0.931807f ,0.20970358f ,-0.7873683f ,-0.57971996f ,0.20970462f ,-0.9777454f ,-0.0062016384f ,0.20970361f ,-0.7946581f ,0.5696864f ,0.20970401f ,-0.3080406f ,0.9279741f ,0.20970272f ,0.29624358f ,0.9318067f ,0.20970494f ,0.7873684f ,0.57972f ,0.20970383f ,0.97774535f ,0.006201764f ,0.2097037f ,0.78736734f ,-0.57972157f ,-0.20970392f ,0.29624176f ,-0.9318074f ,-0.20970383f ,-0.30803853f ,-0.9279739f ,-0.2097062f ,-0.7946572f ,-0.5696876f ,-0.20970432f ,-0.9777453f ,0.006201886f ,-0.20970418f ,-0.78736687f ,0.5797223f ,-0.20970348f ,-0.29624173f ,0.9318072f ,-0.20970471f ,0.30803868f ,0.9279744f ,-0.20970373f ,0.79465735f ,0.56968784f ,-0.20970371f ,0.9777453f ,-0.006201743f ,-0.20970373f });
  }
}
private class MFVec4f216 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.17033887f ,-0.12231371f ,-0.9777649f ,1f ,0.06591554f ,-0.19907619f ,-0.9777648f ,1f ,-0.16896409f ,0.12420504f ,-0.9777649f ,1f ,-0.0636845f ,0.19979994f ,-0.97776496f ,1f ,-0.063683316f ,-0.19980001f ,-0.9777651f ,1f ,0.06591849f ,0.19907655f ,-0.9777645f ,1f ,-0.16896395f ,-0.1242064f ,-0.97776484f ,1f ,0.17033815f ,0.12231458f ,-0.97776484f ,1f ,-0.2097004f ,-0.0011678436f ,-0.977765f ,1f ,0.20970097f ,-0.0011686974f ,-0.97776484f ,1f ,-0.17033897f ,0.12231286f ,-0.97776496f ,1f ,0.16896316f ,-0.124205574f ,-0.9777651f ,1f ,-0.0659141f ,0.19907428f ,-0.9777652f ,1f ,0.06368845f ,-0.1997996f ,-0.9777648f ,1f ,0.06368911f ,0.19979964f ,-0.9777648f ,1f ,-0.06591446f ,-0.19907525f ,-0.97776496f ,1f ,0.06368407f ,0.1998012f ,-0.9777648f ,1f ,0.16896197f ,0.12420781f ,-0.97776496f ,1f ,-0.06591718f ,-0.19907436f ,-0.97776496f ,1f ,-0.17033984f ,-0.12231106f ,-0.97776496f ,1f ,0.20970052f ,0.0011709586f ,-0.977765f ,1f ,-0.20970055f ,0.0011694069f ,-0.977765f ,1f ,0.5705063f ,-0.7861735f ,-0.23760027f ,1f ,0.49843585f ,-0.8240025f ,-0.2694099f ,1f ,0.61100966f ,-0.7671806f ,0.19519545f ,1f ,0.6185996f ,-0.7737841f ,-0.13635516f ,1f ,0.58344495f ,-0.81210655f ,-0.008660515f ,1f ,0.51441866f ,-0.8442078f ,0.15062068f ,1f ,0.4777612f ,-0.80009913f ,0.36274737f ,1f ,0.49975544f ,-0.66066444f ,0.5601492f ,1f ,0.49946955f ,-0.84203273f ,-0.20374316f ,1f ,0.5729803f ,-0.8189084f ,0.03290499f ,1f ,0.045757107f ,0.98376423f ,-0.17353474f ,1f ,0.0020302143f ,0.97140306f ,-0.23742822f ,1f ,-0.05955173f ,0.9511055f ,0.30307084f ,1f ,-0.079182886f ,0.9736926f ,-0.21366537f ,1f ,-0.07706465f ,0.9890254f ,-0.1260551f ,1f ,-0.0054085795f ,0.9999306f ,0.01046678f ,1f ,0.04954683f ,0.970184f ,0.23725148f ,1f ,0.014478949f ,0.8281173f ,0.560368f ,1f ,-0.12334331f ,0.94415575f ,0.3055431f ,1f ,-0.007949366f ,0.9998453f ,-0.015689904f ,1f ,0.41747832f ,-0.066218816f ,-0.906271f ,1f ,0.02841313f ,-0.3101616f ,-0.95025927f ,1f ,0.7755756f ,-0.36282706f ,-0.51656455f ,1f ,0.6042829f ,-0.79310054f ,0.07637894f ,1f ,0.14139311f ,-0.75792646f ,0.63683236f ,1f ,0.02905569f ,-0.3093543f ,0.95050293f ,1f ,0.41941276f ,-0.06538612f ,0.9054379f ,1f ,0.77553576f ,-0.3628285f ,0.5166236f ,1f ,0.6041286f ,-0.7933353f ,-0.07515075f ,1f ,0.14129257f ,-0.75834996f ,-0.63635045f ,1f ,0.41533145f ,0.75020206f ,-0.51448685f ,1f ,0.30009645f ,0.29924798f ,-0.9057554f ,1f ,-0.15809777f ,0.26729006f ,-0.9505583f ,1f ,-0.3300153f ,0.6953448f ,-0.63842434f ,1f ,0.023178715f ,0.99663705f ,-0.07859569f ,1f ,0.41500083f ,0.7499701f ,0.5150915f ,1f ,0.29919717f ,0.29904497f ,0.9061198f ,1f ,-0.15916224f ,0.26758203f ,0.9502985f ,1f ,-0.32958898f ,0.6949775f ,0.63904417f ,1f ,0.023406666f ,0.9965471f ,0.079662025f ,1f });
  }
}
private class MFVec2f217 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.9217891f ,0.70467377f ,0.92179304f ,0.6797389f ,0.9468202f ,0.70467794f ,0.9468244f ,0.67974293f ,0.92179716f ,0.6548042f ,0.9468283f ,0.65480816f ,0.92180127f ,0.6298691f ,0.9468325f ,0.6298733f ,0.9218053f ,0.6049344f ,0.94683635f ,0.60493857f ,0.92180926f ,0.57999957f ,0.94684047f ,0.5800037f ,0.92181337f ,0.5550646f ,0.94684476f ,0.55506873f ,0.92181736f ,0.53012985f ,0.9468487f ,0.53013396f ,0.92177707f ,0.77947843f ,0.921781f ,0.7545435f ,0.94680816f ,0.7794824f ,0.9468122f ,0.75454754f ,0.9217852f ,0.72960865f ,0.94681615f ,0.72961277f ,0.0824666f ,0.47735342f ,0.08226308f ,0.49636522f ,0.034810007f ,0.5111809f ,0.07145414f ,0.46185118f ,0.053433508f ,0.45578274f ,0.035290986f ,0.4614663f ,0.023963451f ,0.47672644f ,0.023780733f ,0.49571788f ,0.07092321f ,0.5116173f ,0.05279234f ,0.5172746f ,0.66281563f ,0.29096234f ,0.65176964f ,0.2754884f ,0.7102127f ,0.2759526f ,0.65193087f ,0.25647414f ,0.66323763f ,0.24118534f ,0.68136936f ,0.23546392f ,0.69939226f ,0.24149588f ,0.71040946f ,0.25696692f ,0.69894844f ,0.29124528f ,0.6808428f ,0.29698026f ,0.09658559f ,0.47246203f ,0.09656112f ,0.5007071f ,0.08001077f ,0.4496006f ,0.053162903f ,0.44084078f ,0.026283443f ,0.44953975f ,0.009659171f ,0.47239408f ,0.009676009f ,0.500641f ,0.026241452f ,0.52342916f ,0.053037584f ,0.5322217f ,0.07992527f ,0.5235468f ,0.6542832f ,0.30323356f ,0.6376531f ,0.28039384f ,0.6376263f ,0.25215325f ,0.65419644f ,0.22928876f ,0.68104726f ,0.22052467f ,0.7079292f ,0.22922921f ,0.7245386f ,0.25208366f ,0.72451895f ,0.2802853f ,0.7080154f ,0.30311835f ,0.6811758f ,0.31192255f });
  }
}
private class MFInt32218 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,0,0,5,1,5,4,6,6,4,7,6,7,8,8,7,9,9,10,8,8,10,11,10,12,11,11,12,13,13,12,14,14,12,15,14,15,16,16,15,17,16,17,18,18,17,19,18,19,20,20,19,21,20,21,22,22,21,23,23,24,22,22,24,25,25,24,26,26,24,27});
  }
}
private class MFVec3f219 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.08237132f ,1.0345799f ,-3.2795503f ,-0.069010794f ,1.0633221f ,-3.2788215f ,-0.140779f ,1.1716099f ,-3.262058f ,-0.1285832f ,1.2051774f ,-3.2741456f ,-0.017629886f ,0.9418436f ,-3.2583728f ,-0.00548739f ,0.9647995f ,-3.2755218f ,0.09033978f ,0.8326411f ,-3.2202988f ,0.07284212f ,0.8222177f ,-3.2137334f ,0.16056958f ,0.7418448f ,-3.1294854f ,0.1430723f ,0.73142153f ,-3.1229205f ,0.17523925f ,0.6402918f ,-3.0187848f ,0.1846369f ,0.6542618f ,-3.0035572f ,0.13404736f ,0.56996f ,-2.9226146f ,0.14418362f ,0.5644304f ,-2.9004798f ,0.013136035f ,0.58787143f ,-2.8743694f ,0.0013277496f ,0.54343927f ,-2.8769906f ,-0.10755207f ,0.62823814f ,-2.9785008f ,-0.11808875f ,0.6136103f ,-2.9734275f ,-0.13660748f ,0.5943546f ,-3.1233964f ,-0.14721823f ,0.5789367f ,-3.123559f ,-0.115944386f ,0.42881596f ,-3.2891626f ,-0.13424961f ,0.42698118f ,-3.276762f ,-0.10264953f ,0.19161361f ,-3.400983f ,-0.12319843f ,0.19264388f ,-3.3960063f ,-0.10151536f ,-0.05179401f ,-3.4381304f ,-0.08096657f ,-0.052824754f ,-3.443107f ,0.16533154f ,-1.4171549f ,-3.2310538f ,0.14793941f ,-1.4444913f ,-3.2191153f });
  }
}
private class MFVec3f220 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.40551203f ,-0.10912155f ,0.9075531f ,0.41513476f ,-0.12974085f ,0.90046126f ,0.47981027f ,-0.2822604f ,0.83072925f ,0.4798095f ,-0.2822611f ,0.83072954f ,0.15074733f ,0.33313376f ,0.93075085f ,0.16212878f ,0.31647688f ,0.9346425f ,-0.071453325f ,0.614709f ,0.7855109f ,-0.09246033f ,0.6371589f ,0.7651665f ,-0.32011133f ,0.80457604f ,0.5001861f ,-0.31526583f ,0.82482177f ,0.46933636f ,-0.8617304f ,0.49443552f ,0.113816544f ,-0.8626838f ,0.5033209f ,0.04944648f ,-0.62839794f ,0.55975485f ,-0.54017633f ,-0.66671866f ,0.5454181f ,-0.50794244f ,0.17425533f ,0.24642305f ,-0.9533682f ,0.37818855f ,0.07869689f ,-0.92237747f ,0.65274f ,-0.6006133f ,-0.4617296f ,0.6403517f ,-0.6179978f ,-0.4561014f ,0.80683565f ,-0.5588269f ,0.1916472f ,0.7609054f ,-0.5397314f ,0.36015713f ,0.48006764f ,-0.4357143f ,0.7613725f ,0.4643056f ,-0.41824272f ,0.7807006f ,0.22081573f ,-0.2612951f ,0.9396623f ,0.21279126f ,-0.27903587f ,0.9364074f ,0.23706433f ,0.039029997f ,0.9707096f ,0.23705596f ,0.03877986f ,0.9707217f ,0.24008943f ,0.19496897f ,0.9509702f ,0.24008892f ,0.19496897f ,0.95097023f });
  }
}
private class MFVec4f221 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.39771035f ,-0.87288666f ,-0.28265795f ,1f ,0.35074863f ,-0.8904356f ,-0.29000008f ,1f ,0.22084999f ,-0.8774953f ,-0.4257082f ,1f ,0.20415042f ,-0.8849322f ,-0.41859016f ,1f ,0.5569719f ,-0.80647516f ,0.19844417f ,1f ,0.5572259f ,-0.8110642f ,0.17797257f ,1f ,0.5429869f ,-0.63663435f ,0.5475966f ,1f ,0.5160275f ,-0.62654686f ,0.5840846f ,1f ,0.24586968f ,-0.4393231f ,0.86402744f ,1f ,0.2531654f ,-0.40353647f ,0.8792416f ,1f ,-0.174568f ,-0.49956813f ,0.8485032f ,1f ,-0.26340002f ,-0.5306108f ,0.80565053f ,1f ,-0.76591444f ,-0.3238307f ,0.5554357f ,1f ,-0.7268913f ,-0.32527414f ,0.60483545f ,1f ,-0.98221874f ,0.11219366f ,-0.15052918f ,1f ,-0.9150198f ,0.18289424f ,-0.35956728f ,1f ,-0.5197119f ,0.08844073f ,-0.84975165f ,1f ,-0.5149648f ,0.09514716f ,-0.85191447f ,1f ,-0.08852244f ,-0.4350957f ,-0.896022f ,1f ,-0.021965599f ,-0.5761669f ,-0.8170368f ,1f ,0.12934828f ,-0.8232807f ,-0.5527007f ,1f ,0.08269478f ,-0.8571524f ,-0.50838107f ,1f ,0.07362569f ,-0.9562296f ,-0.28320372f ,1f ,0.069216006f ,-0.9516437f ,-0.2993048f ,1f ,0.13917309f ,-0.990251f ,0.005827195f ,1f ,0.13980411f ,-0.99016446f ,0.0054155965f ,1f ,0.17564447f ,-0.97217923f ,0.15497269f ,1f ,0.17479995f ,-0.9722937f ,0.15520944f ,1f });
  }
}
private class MFVec2f222 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.101994395f ,0.98004514f ,0.10199463f ,0.98813176f ,0.019879162f ,0.98004514f ,0.019879103f ,0.98813176f ,0.15134168f ,0.9800452f ,0.15134156f ,0.98813176f ,0.22065675f ,0.9881317f ,0.22065687f ,0.9800452f ,0.28895545f ,0.98813176f ,0.28895557f ,0.9800452f ,0.3385929f ,0.9800452f ,0.33859265f ,0.98813176f ,0.39192665f ,0.9800452f ,0.39192665f ,0.98813176f ,0.4440503f ,0.98813176f ,0.44405043f ,0.9800452f ,0.50725293f ,0.9881317f ,0.50725293f ,0.98004526f ,0.56618f ,0.98813176f ,0.56618f ,0.9800452f ,0.62943256f ,0.9881317f ,0.6294327f ,0.9800452f ,0.7366055f ,0.9881318f ,0.73660564f ,0.9800452f ,0.84632885f ,0.9800452f ,0.84632885f ,0.98813176f ,0.9886291f ,0.98813164f ,0.9886291f ,0.9800452f });
  }
}
private class MFInt32223 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,12,0,13,13,0,2,14,15,16,17,14,16,18,19,16,15,18,16,1,0,20,20,0,21,4,1,22,22,1,20,4,22,6,6,22,23,6,23,8,8,23,24,8,24,10,10,24,25,0,12,21,21,12,26,27,28,29,29,28,30,31,27,32,32,27,29,33,31,34,34,31,32,35,33,36,36,33,34,37,35,38,38,35,36,28,39,30,30,39,40});
  }
}
private class MFVec3f224 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.16351752f ,1.1991979f ,-3.3085482f ,-0.19463776f ,1.2386878f ,-3.3085482f ,-0.11004939f ,1.2413331f ,-3.3085482f ,-0.1411697f ,1.2808233f ,-3.3085482f ,-0.21019764f ,1.2584331f ,-3.2650058f ,-0.15672977f ,1.3005682f ,-3.2650058f ,-0.19463776f ,1.2386878f ,-3.2214632f ,-0.1411697f ,1.2808233f ,-3.2214632f ,-0.16351752f ,1.1991979f ,-3.2214632f ,-0.11004939f ,1.2413331f ,-3.2214632f ,-0.14795738f ,1.1794527f ,-3.2650058f ,-0.094489485f ,1.2215885f ,-3.2650058f ,-0.14795738f ,1.1794527f ,-3.2650058f ,-0.094489485f ,1.2215885f ,-3.2650058f ,-0.23354459f ,1.1981579f ,-3.2957013f ,-0.2116031f ,1.1703213f ,-3.2957013f ,-0.23354453f ,1.1981579f ,-3.2343102f ,-0.24450918f ,1.212081f ,-3.2650058f ,-0.2006354f ,1.1564008f ,-3.2650058f ,-0.2116031f ,1.1703213f ,-3.2343102f ,-0.19433913f ,1.2290539f ,-3.2957013f ,-0.17239764f ,1.2012173f ,-3.2957013f ,-0.20530361f ,1.2429769f ,-3.2650058f ,-0.19433913f ,1.2290539f ,-3.2343102f ,-0.17239764f ,1.2012173f ,-3.2343102f ,-0.1614299f ,1.1872966f ,-3.2650058f ,-0.1614299f ,1.1872966f ,-3.2650058f ,-0.19433913f ,1.2290539f ,-3.2957013f ,-0.17239764f ,1.2012173f ,-3.2957013f ,-0.23354459f ,1.1981579f ,-3.2957013f ,-0.2116031f ,1.1703213f ,-3.2957013f ,-0.20530361f ,1.2429769f ,-3.2650058f ,-0.24450918f ,1.212081f ,-3.2650058f ,-0.19433913f ,1.2290539f ,-3.2343102f ,-0.23354453f ,1.1981579f ,-3.2343102f ,-0.17239764f ,1.2012173f ,-3.2343102f ,-0.2116031f ,1.1703213f ,-3.2343102f ,-0.1614299f ,1.1872966f ,-3.2650058f ,-0.2006354f ,1.1564008f ,-3.2650058f ,-0.1614299f ,1.1872966f ,-3.2650058f ,-0.2006354f ,1.1564008f ,-3.2650058f });
  }
}
private class MFVec3f225 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.210072f ,-0.46916547f ,-0.85776085f ,-0.4060489f ,0.30823362f ,-0.8603002f ,0.30947876f ,-0.39271593f ,-0.8660237f ,-0.30947396f ,0.39271185f ,-0.86602736f ,-0.7254808f ,0.6882425f ,-0.0000010611478f ,-0.6189538f ,0.7854274f ,0.0000028253153f ,-0.40604693f ,0.30823576f ,0.8603003f ,-0.30948153f ,0.3927137f ,0.8660237f ,0.21007186f ,-0.4691648f ,0.85776126f ,0.30947497f ,-0.3927138f ,0.86602604f ,0.5282709f ,-0.8490759f ,-0.0000045524625f ,0.6189576f ,-0.7854245f ,-8.500933e-7f ,0.5282709f ,-0.8490759f ,-0.0000045524625f ,0.6189576f ,-0.7854245f ,-8.500933e-7f ,-0.739385f ,-0.09250562f ,-0.6668978f ,-0.31521228f ,-0.71071786f ,-0.62890494f ,-0.7070796f ,-0.038186956f ,0.70610213f ,-0.89544785f ,0.44516644f ,-1.5298308e-7f ,-0.02442682f ,-0.9997016f ,-0.00001840094f ,-0.056297902f ,-0.6197614f ,0.7827685f ,-0.5685573f ,0.13021782f ,-0.81227213f ,0.013891973f ,-0.59745264f ,-0.8017839f ,-0.8858141f ,0.46404025f ,0.000002660539f ,-0.56855994f ,0.13021877f ,0.8122701f ,0.013894558f ,-0.59745526f ,0.8017819f ,0.34134412f ,-0.9399384f ,-6.5892806e-7f ,0.34134412f ,-0.9399384f ,-6.5892806e-7f ,-0.5685573f ,0.13021782f ,-0.81227213f ,0.013891973f ,-0.59745264f ,-0.8017839f ,-0.739385f ,-0.09250562f ,-0.6668978f ,-0.31521228f ,-0.71071786f ,-0.62890494f ,-0.8858141f ,0.46404025f ,0.000002660539f ,-0.89544785f ,0.44516644f ,-1.5298308e-7f ,-0.56855994f ,0.13021877f ,0.8122701f ,-0.7070796f ,-0.038186956f ,0.70610213f ,0.013894558f ,-0.59745526f ,0.8017819f ,-0.056297902f ,-0.6197614f ,0.7827685f ,0.34134412f ,-0.9399384f ,-6.5892806e-7f ,-0.02442682f ,-0.9997016f ,-0.00001840094f ,0.34134412f ,-0.9399384f ,-6.5892806e-7f ,-0.02442682f ,-0.9997016f ,-0.00001840094f });
  }
}
private class MFVec4f226 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.89172655f ,-0.26777706f ,0.36485523f ,1f ,0.70982134f ,-0.48653957f ,-0.50934553f ,1f ,0.8836978f ,-0.21753009f ,0.4144381f ,1f ,0.73473495f ,-0.47939354f ,-0.47994426f ,1f ,0.0116994595f ,0.012330933f ,-0.9998556f ,1f ,-0.057639413f ,-0.045418985f ,-0.99730384f ,1f ,-0.68852454f ,0.5158084f ,-0.50978f ,1f ,-0.82668585f ,0.33893973f ,-0.44912198f ,1f ,-0.88538015f ,0.28084117f ,0.370446f ,1f ,-0.92846584f ,0.071899936f ,0.3643921f ,1f ,-0.686313f ,-0.4270076f ,0.5887607f ,1f ,-0.55385053f ,-0.43646544f ,0.70904696f ,1f ,0.7274651f ,0.45260534f ,0.5156966f ,1f ,0.5402948f ,0.4257812f ,0.7258043f ,1f ,0.40730467f ,0.7272538f ,-0.5524535f ,1f ,-0.20934893f ,0.6984368f ,-0.68436766f ,1f ,-0.65459335f ,0.41305536f ,-0.633161f ,1f ,0.10681883f ,0.2148647f ,-0.97078466f ,1f ,-0.3455885f ,0.008461419f ,-0.938348f ,1f ,-0.8423615f ,-0.39138544f ,-0.37046552f ,1f ,0.64685434f ,-0.5392741f ,-0.5392243f ,1f ,0.894907f ,-0.35026503f ,0.27650684f ,1f ,0.0005756161f ,0.0011045382f ,-0.9999993f ,1f ,-0.6397546f ,0.55073977f ,-0.53609693f ,1f ,-0.8827611f ,0.36927328f ,0.29046527f ,1f ,-0.88827723f ,-0.32258323f ,0.32696146f ,1f ,0.90159494f ,0.32741922f ,0.2827073f ,1f ,-0.5854348f ,0.6296292f ,0.5107182f ,1f ,-0.59283286f ,0.6408043f ,-0.48776963f ,1f ,-0.48237324f ,0.7638053f ,0.42885622f ,1f ,-0.42861223f ,0.6978655f ,-0.5738253f ,1f ,-0.036314324f ,-0.069326736f ,0.99693286f ,1f ,0.036574192f ,0.07356896f ,0.99661934f ,1f ,0.4987905f ,-0.7306199f ,0.4662645f ,1f ,0.5838571f ,-0.59486204f ,0.5524944f ,1f ,0.4766876f ,-0.70091474f ,-0.530554f ,1f ,0.6034333f ,-0.6457337f ,-0.46786347f ,1f ,0.1676012f ,0.060866036f ,-0.98397416f ,1f ,0.34560296f ,-0.00842723f ,-0.938343f ,1f ,-0.16739595f ,-0.060790118f ,-0.98401386f ,1f ,-0.3454413f ,0.008457825f ,-0.9384023f ,1f });
  }
}
private class MFVec2f227 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.56743914f ,0.6463155f ,0.55129564f ,0.637786f ,0.5822089f ,0.62056804f ,0.5585638f ,0.6096952f ,0.5334747f ,0.6351497f ,0.532549f ,0.60619366f ,0.5156897f ,0.63772184f ,0.50668585f ,0.61055034f ,0.49911374f ,0.64587015f ,0.48389924f ,0.62238395f ,0.48470944f ,0.66111666f ,0.46636254f ,0.6374431f ,0.5802106f ,0.6613513f ,0.6010892f ,0.63632834f ,0.13916409f ,0.52920717f ,0.13152522f ,0.5424365f ,0.116250336f ,0.5159765f ,0.13152659f ,0.51597726f ,0.1162492f ,0.5424357f ,0.10861158f ,0.52920586f ,0.54910743f ,0.6438151f ,0.5632559f ,0.65084153f ,0.5332737f ,0.64194125f ,0.51739866f ,0.6438455f ,0.50284916f ,0.65070695f ,0.4918936f ,0.66253716f ,0.57302946f ,0.6625358f ,0.3561001f ,0.5433817f ,0.34082404f ,0.543385f ,0.35609785f ,0.52186835f ,0.3408217f ,0.5218717f ,0.37137625f ,0.54338264f ,0.3713739f ,0.5218692f ,0.38665232f ,0.54337823f ,0.38665f ,0.521865f ,0.40192845f ,0.54337823f ,0.40192607f ,0.5218649f ,0.4172047f ,0.54337585f ,0.41720223f ,0.5218624f ,0.3255479f ,0.54338586f ,0.32554567f ,0.5218725f });
  }
}
private class MFInt32228 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,6,6,5,7,7,0,6,6,0,2,8,9,6,6,9,4,8,6,10,10,6,2,11,12,13,13,12,14,15,8,16,16,8,10,17,9,15,15,9,8,4,9,18,18,9,17,19,5,18,18,5,4,7,5,20,20,5,19,0,7,21,21,7,20,22,23,24,16,10,25,25,10,26,27,28,29,29,28,30,28,31,30,31,32,30,30,32,33,32,34,33,33,34,35,36,37,34,34,37,35,1,24,3,3,24,14,10,2,26,26,2,3,1,0,38,38,0,21,26,12,25,25,12,39,26,3,12,12,3,14,1,38,24,24,38,22,23,13,24,24,13,14,12,11,39,40,41,42,42,41,43,44,45,46,46,45,47,42,43,45,45,43,47,48,45,49,49,45,44,42,45,50,50,45,48,51,52,53,53,52,54,55,56,48,48,56,50,57,55,49,49,55,48,57,49,58,58,49,44,59,58,46,46,58,44,47,60,46,46,60,59,43,61,47,47,61,60,62,63,64,56,65,50,50,65,66,67,68,69,69,68,70,68,71,70,70,71,72,71,73,72,73,74,72,72,74,75,76,77,74,74,77,75,41,40,63,63,40,54,40,42,66,66,42,50,41,78,43,43,78,61,66,65,53,53,65,79,54,40,53,53,40,66,62,78,63,63,78,41,54,52,63,63,52,64,53,79,51});
  }
}
private class MFVec3f229 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.05915592f ,1.7104447f ,-3.2970521f ,-0.06552539f ,1.4893674f ,-3.2987967f ,-0.07611269f ,1.7104447f ,-3.2749639f ,-0.08248216f ,1.4893674f ,-3.2749639f ,-0.02087657f ,1.8601682f ,-3.274964f ,-0.016225591f ,1.8502463f ,-3.281549f ,-0.055168908f ,1.7770799f ,-3.2749639f ,-0.042878103f ,1.7770799f ,-3.2934184f ,-0.042878103f ,1.7770799f ,-3.2565098f ,-0.016225591f ,1.8502463f ,-3.2683792f ,-0.05915592f ,1.7104447f ,-3.2528758f ,-0.05915592f ,1.3208008f ,-3.2498014f ,-0.08359742f ,1.3438822f ,-3.250112f ,-0.07611269f ,1.3208008f ,-3.2749639f ,-0.10055419f ,1.3438822f ,-3.2749639f ,-0.006983404f ,1.77708f ,-3.2565098f ,-0.0069936886f ,1.7104448f ,-3.2528758f ,-0.0067603793f ,1.8502464f ,-3.2683792f ,-0.0067204796f ,1.8601683f ,-3.2749639f ,-0.0067603793f ,1.8502464f ,-3.281549f ,-0.0069833915f ,1.77708f ,-3.2934184f ,-0.0069936886f ,1.7104448f ,-3.2970521f ,-0.00699382f ,1.3208008f ,-3.299971f ,-0.05915592f ,1.3208008f ,-3.3001266f ,-0.08359742f ,1.3438822f ,-3.299816f ,-0.0069936886f ,1.4893674f ,-3.2511315f ,-0.06552539f ,1.4893674f ,-3.2511315f ,-0.0067204796f ,1.8601683f ,-3.2749639f ,-0.0067603793f ,1.8502464f ,-3.2683792f ,-0.0067603793f ,1.8502464f ,-3.281549f ,-0.0069833915f ,1.77708f ,-3.2934184f ,-0.006983404f ,1.77708f ,-3.2565098f ,-0.0069936886f ,1.7104448f ,-3.2528758f ,-0.0069936886f ,1.7104448f ,-3.2970521f ,-0.0069936886f ,1.4893674f ,-3.2511315f ,-0.0069936886f ,1.4893674f ,-3.2987967f ,-0.006993821f ,1.3208008f ,-3.2499566f ,-0.00699382f ,1.3208008f ,-3.299971f ,-0.0069936886f ,1.4893674f ,-3.2987967f ,-0.006993821f ,1.3208008f ,-3.2499566f ,0.08248216f ,1.4893674f ,-3.2749639f ,0.06552539f ,1.4893674f ,-3.2987967f ,0.07611269f ,1.7104447f ,-3.2749639f ,0.05915592f ,1.7104447f ,-3.2970521f ,0.02087657f ,1.8601682f ,-3.274964f ,0.055168908f ,1.7770799f ,-3.2749639f ,0.016225591f ,1.8502463f ,-3.281549f ,0.042878103f ,1.7770799f ,-3.2934184f ,0.042878103f ,1.7770799f ,-3.2565098f ,0.016225591f ,1.8502463f ,-3.2683792f ,0.05915592f ,1.7104447f ,-3.2528758f ,0.05915592f ,1.3208008f ,-3.2498014f ,0.07611269f ,1.3208008f ,-3.2749639f ,0.08359742f ,1.3438822f ,-3.250112f ,0.10055419f ,1.3438822f ,-3.2749639f ,0.006983404f ,1.77708f ,-3.2565098f ,0.0069936886f ,1.7104448f ,-3.2528758f ,0.0067603793f ,1.8502464f ,-3.2683792f ,0.0067204796f ,1.8601683f ,-3.2749639f ,0.0067603793f ,1.8502464f ,-3.281549f ,0.0069833915f ,1.77708f ,-3.2934184f ,0.0069936886f ,1.7104448f ,-3.2970521f ,0.00699382f ,1.3208008f ,-3.299971f ,0.08359742f ,1.3438822f ,-3.299816f ,0.05915592f ,1.3208008f ,-3.3001266f ,0.0069936886f ,1.4893674f ,-3.2511315f ,0.06552539f ,1.4893674f ,-3.2511315f ,0.0067204796f ,1.8601683f ,-3.2749639f ,0.0067603793f ,1.8502464f ,-3.281549f ,0.0067603793f ,1.8502464f ,-3.2683792f ,0.006983404f ,1.77708f ,-3.2565098f ,0.0069833915f ,1.77708f ,-3.2934184f ,0.0069936886f ,1.7104448f ,-3.2528758f ,0.0069936886f ,1.7104448f ,-3.2970521f ,0.0069936886f ,1.4893674f ,-3.2987967f ,0.0069936886f ,1.4893674f ,-3.2511315f ,0.00699382f ,1.3208008f ,-3.299971f ,0.006993821f ,1.3208008f ,-3.2499566f ,0.0069936886f ,1.4893674f ,-3.2987967f ,0.006993821f ,1.3208008f ,-3.2499566f });
  }
}
private class MFVec3f230 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.306059f ,0.042939015f ,-0.9510438f ,-0.29311013f ,0.02551151f ,-0.95573825f ,-0.9957612f ,0.09197668f ,-2.3539455e-8f ,-0.9975691f ,0.06968449f ,9.390209e-8f ,-0.84730595f ,0.5311052f ,-0.000004111367f ,-0.32366726f ,0.25020346f ,-0.9124899f ,-0.93830746f ,0.34580216f ,3.433389e-7f ,-0.33652055f ,0.19668484f ,-0.9209066f ,-0.33651507f ,0.19668439f ,0.9209088f ,-0.3236635f ,0.25020242f ,0.91249156f ,-0.30605757f ,0.042938355f ,0.9510442f ,-0.19039623f ,-0.18864337f ,0.9634122f ,-0.25871354f ,-0.012102757f ,0.96587825f ,-0.6882838f ,-0.7254416f ,-0.000001307812f ,-0.99999267f ,-0.0038476468f ,-4.1120364e-7f ,0.71239614f ,0.07514873f ,0.69774234f ,0.6487292f ,0.0135694025f ,0.7608984f ,0.90281177f ,0.09066142f ,0.4203706f ,0.5220024f ,0.85294396f ,0.0000070940373f ,0.8182839f ,0.12231675f ,-0.56164944f ,0.71228695f ,0.07523606f ,-0.6978444f ,0.65633005f ,0.013451544f ,-0.754354f ,0.6129657f ,0.005663644f ,-0.7900892f ,-0.19038716f ,-0.1886423f ,-0.96341413f ,-0.25871608f ,-0.012104651f ,-0.96587765f ,0.63398564f ,0.005798082f ,0.77332306f ,-0.29310292f ,0.025511354f ,0.95574045f ,0.5220024f ,0.85294396f ,0.0000070940373f ,0.90281177f ,0.09066142f ,0.4203706f ,0.8182839f ,0.12231675f ,-0.56164944f ,0.71228695f ,0.07523606f ,-0.6978444f ,0.71239614f ,0.07514873f ,0.69774234f ,0.6487292f ,0.0135694025f ,0.7608984f ,0.65633005f ,0.013451544f ,-0.754354f ,0.63398564f ,0.005798082f ,0.77332306f ,0.6344729f ,0.0057948427f ,-0.77292347f ,0.61613697f ,0.005648027f ,0.78761876f ,0.6129657f ,0.005663644f ,-0.7900892f ,0.6344729f ,0.0057948427f ,-0.77292347f ,0.61613697f ,0.005648027f ,0.78761876f ,0.99756914f ,0.0696845f ,1.0016224e-7f ,0.29311013f ,0.02551151f ,-0.95573825f ,0.9957612f ,0.09197669f ,7.061837e-8f ,0.30606034f ,0.042938985f ,-0.9510433f ,0.84730846f ,0.5311012f ,0.0000010869085f ,0.9383075f ,0.34580207f ,5.218755e-7f ,0.3236685f ,0.250203f ,-0.91248953f ,0.3365178f ,0.19668482f ,-0.9209076f ,0.33651498f ,0.1966842f ,0.9209088f ,0.32366472f ,0.2502022f ,0.9124911f ,0.3060554f ,0.04293839f ,0.951045f ,0.19039573f ,-0.18864278f ,0.9634124f ,0.6882838f ,-0.7254415f ,3.7490662e-7f ,0.25871482f ,-0.012102623f ,0.96587795f ,0.9999926f ,-0.003847489f ,-1.7452247e-7f ,-0.698819f ,0.07667888f ,0.7111768f ,-0.6518551f ,0.013521692f ,0.75822294f ,-0.8182857f ,0.12231313f ,0.56164765f ,-0.5220064f ,0.85294163f ,0.0000060522502f ,-0.90281105f ,0.090663694f ,-0.42037174f ,-0.72511625f ,0.07373538f ,-0.68466747f ,-0.6532584f ,0.013498993f ,-0.75701475f ,-0.6161336f ,0.0056459527f ,-0.7876215f ,0.25871608f ,-0.012104654f ,-0.9658776f ,0.19038704f ,-0.18864217f ,-0.96341425f ,-0.6344728f ,0.005795086f ,0.7729236f ,0.29310292f ,0.025511358f ,0.95574045f ,-0.5220064f ,0.85294163f ,0.0000060522502f ,-0.90281105f ,0.090663694f ,-0.42037174f ,-0.8182857f ,0.12231313f ,0.56164765f ,-0.698819f ,0.07667888f ,0.7111768f ,-0.72511625f ,0.07373538f ,-0.68466747f ,-0.6518551f ,0.013521692f ,0.75822294f ,-0.6532584f ,0.013498993f ,-0.75701475f ,-0.6339854f ,0.005797836f ,-0.77332324f ,-0.6344728f ,0.005795086f ,0.7729236f ,-0.6161336f ,0.0056459527f ,-0.7876215f ,-0.6129592f ,0.005665786f ,0.7900943f ,-0.6339854f ,0.005797836f ,-0.77332324f ,-0.6129592f ,0.005665786f ,0.7900943f });
  }
}
private class MFVec4f231 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {0.17095247f ,0.985223f ,-0.010532682f ,1f ,0.06033561f ,0.998145f ,0.008139476f ,1f ,0.09197668f ,0.9957612f ,0.00015315479f ,1f ,0.0696845f ,0.9975691f ,0.00015227382f ,1f ,0.5311052f ,0.84730595f ,0.00015963435f ,1f ,0.6906084f ,0.72169524f ,-0.047076344f ,1f ,0.34580213f ,0.93830746f ,0.00014889058f ,1f ,0.37228376f ,0.9260629f ,0.061745007f ,1f ,0.37258372f ,0.925951f ,-0.061613124f ,1f ,0.6908969f ,0.72140723f ,0.047255546f ,1f ,0.17127323f ,0.98516613f ,0.010638892f ,1f ,-0.48991778f ,0.86868376f ,0.07327387f ,1f ,-0.20792702f ,0.9771789f ,-0.043449555f ,1f ,-0.7254416f ,0.6882838f ,0.000109683446f ,1f ,-0.0038476468f ,0.99999267f ,0.00017936062f ,1f ,0.26934186f ,0.8888286f ,-0.37072763f ,1f ,0.15260889f ,0.97721183f ,-0.14753878f ,1f ,0.2531685f ,0.67812085f ,-0.6899695f ,1f ,0.852944f ,-0.52200246f ,0.000118781696f ,1f ,0.3896625f ,0.6002852f ,0.6984418f ,1f ,0.2691316f ,0.88896906f ,0.37054315f ,1f ,0.15000065f ,0.9775548f ,0.14794055f ,1f ,-0.12631874f ,0.9878144f ,-0.09091939f ,1f ,-0.49008906f ,0.86859137f ,-0.07322541f ,1f ,-0.20820385f ,0.9771167f ,0.043523148f ,1f ,0.031998325f ,0.99891895f ,-0.03372238f ,1f ,0.06063445f ,0.99812764f ,-0.008047637f ,1f ,0.8529434f ,-0.52200204f ,0.0012306642f ,-1f ,0.08135308f ,-0.9958798f ,0.040063143f ,-1f ,0.09999287f ,-0.99249005f ,-0.070463195f ,-1f ,0.05325118f ,-0.9971655f ,-0.053153235f ,-1f ,0.05260586f ,-0.9971712f ,0.053687353f ,-1f ,0.008452426f ,-0.9999079f ,0.010625357f ,-1f ,0.009093006f ,-0.99990946f ,-0.009918834f ,-1f ,0.0033862884f ,-0.9999832f ,0.0047213463f ,-1f ,0.003966049f ,-0.9999832f ,-0.0042415513f ,-1f ,0.0031930942f ,-0.999984f ,0.004673015f ,-1f ,0.003757129f ,-0.99998397f ,-0.004253396f ,-1f ,0.031732175f ,0.9989336f ,0.033537433f ,1f ,-0.12530252f ,0.9879423f ,0.09093689f ,1f ,-0.069684505f ,0.9975691f ,0.00015227422f ,-1f ,-0.06033561f ,0.998145f ,0.008139476f ,-1f ,-0.09197669f ,0.9957612f ,0.00015315597f ,-1f ,-0.17095238f ,0.98522305f ,-0.010532923f ,-1f ,-0.5311012f ,0.84730846f ,0.00016238287f ,-1f ,-0.34580207f ,0.93830746f ,0.00014888811f ,-1f ,-0.6906079f ,0.72169554f ,-0.047077384f ,-1f ,-0.372284f ,0.92606264f ,0.061745893f ,-1f ,-0.37258363f ,0.925951f ,-0.061613f ,-1f ,-0.6908965f ,0.7214076f ,0.04725643f ,-1f ,-0.1712734f ,0.9851662f ,0.010638508f ,-1f ,0.4899178f ,0.86868393f ,0.0732736f ,-1f ,0.7254415f ,0.6882839f ,0.00010980591f ,-1f ,0.20792681f ,0.9771789f ,-0.043449916f ,-1f ,0.003847489f ,0.9999926f ,0.00017927212f ,-1f ,-0.27871633f ,0.88646644f ,-0.3694517f ,-1f ,-0.1516382f ,0.9773243f ,-0.14779453f ,-1f ,-0.3898301f ,0.5999719f ,-0.6986174f ,-1f ,-0.8529417f ,-0.5220064f ,0.00011968754f ,-1f ,-0.25304392f ,0.6783809f ,0.68975943f ,-1f ,-0.26006323f ,0.89130086f ,0.37141612f ,-1f ,-0.15096079f ,0.97744346f ,0.14769976f ,-1f ,0.1255257f ,0.9878977f ,-0.09111352f ,-1f ,0.20820402f ,0.9771166f ,0.043523185f ,-1f ,0.49008882f ,0.8685914f ,-0.073225416f ,-1f ,-0.031965256f ,0.9989197f ,-0.03372896f ,-1f ,-0.06063444f ,0.99812764f ,-0.008047643f ,-1f ,-0.8529411f ,-0.522006f ,0.0012289373f ,1f ,-0.08181924f ,-0.9958812f ,-0.03906768f ,1f ,-0.099415414f ,-0.99248844f ,0.07129762f ,1f ,-0.052384026f ,-0.9970541f ,0.05602832f ,1f ,-0.053379197f ,-0.9972778f ,-0.050869264f ,1f ,-0.008478634f ,-0.9999085f ,0.010542564f ,1f ,-0.009067641f ,-0.99990886f ,-0.010005421f ,1f ,-0.0039650127f ,-0.9999832f ,-0.004246579f ,1f ,-0.0033871767f ,-0.9999832f ,0.004717047f ,1f ,-0.003764848f ,-0.9999841f ,-0.0042231125f ,1f ,-0.003186524f ,-0.9999839f ,0.0046987883f ,1f ,-0.031765044f ,0.99893284f ,0.0335309f ,-1f ,0.12609717f ,0.98785895f ,0.09074287f ,-1f });
  }
}
private class MFVec2f232 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {1.1398716f ,0.9094127f ,1.0751653f ,0.9104874f ,1.1391218f ,0.9013992f ,1.0749745f ,0.9013866f ,1.1822257f ,0.90140796f ,1.1812315f ,0.90428376f ,1.1580188f ,0.9014029f ,1.1592021f ,0.90791357f ,1.1592046f ,0.89489305f ,1.1812327f ,0.8985317f ,1.1398747f ,0.8933861f ,1.0258801f ,0.88946354f ,1.0334976f ,0.893925f ,1.0254359f ,0.9013778f ,1.034205f ,0.9013791f ,1.1634396f ,0.8852553f ,1.142623f ,0.8784103f ,1.183244f ,0.89681077f ,1.1853696f ,0.90140855f ,1.1832422f ,0.9060056f ,1.1634333f ,0.9175529f ,1.1426138f ,0.92438966f ,1.0234886f ,0.9291089f ,1.025876f ,0.91329175f ,1.0334952f ,0.90883285f ,1.0760217f ,0.87423253f ,1.0751687f ,0.89228565f ,1.7748468f ,0.9235203f ,1.7777548f ,0.9254476f ,1.7777525f ,0.92158926f ,1.799186f ,0.9180993f ,1.7991924f ,0.9289123f ,1.8187151f ,0.92996544f ,1.8187075f ,0.9170231f ,1.883484f ,0.9304382f ,1.8834759f ,0.9164738f ,1.9328691f ,0.9307533f ,1.9328604f ,0.91610056f ,1.0760111f ,0.92854095f ,1.0234984f ,0.87364525f ,0.07497454f ,0.9013866f ,0.07516527f ,0.9104874f ,0.13912177f ,0.9013992f ,0.1398716f ,0.9094127f ,0.1822257f ,0.90140796f ,0.15801883f ,0.9014029f ,0.1812315f ,0.90428376f ,0.1592021f ,0.90791357f ,0.1592046f ,0.89489305f ,0.18123269f ,0.8985317f ,0.1398747f ,0.8933861f ,0.025880098f ,0.88946354f ,0.025435925f ,0.9013778f ,0.033497572f ,0.893925f ,0.03420496f ,0.9013791f ,0.16343963f ,0.8852553f ,0.14262295f ,0.8784103f ,0.18324399f ,0.89681077f ,0.18536961f ,0.90140855f ,0.1832422f ,0.9060056f ,0.16343331f ,0.9175529f ,0.14261377f ,0.92438966f ,0.023488522f ,0.9291089f ,0.033495188f ,0.90883285f ,0.025876045f ,0.91329175f ,0.07602167f ,0.87423253f ,0.07516873f ,0.89228565f ,0.7748468f ,0.9235203f ,0.7777525f ,0.92158926f ,0.7777548f ,0.9254476f ,0.7991924f ,0.9289123f ,0.79918605f ,0.9180993f ,0.8187151f ,0.92996544f ,0.8187074f ,0.9170231f ,0.8834759f ,0.9164738f ,0.883484f ,0.9304382f ,0.9328604f ,0.91610056f ,0.9328691f ,0.9307533f ,0.07601106f ,0.92854095f ,0.023498416f ,0.87364525f });
  }
}
private class MFInt32233 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,4,5,6,6,5,7,5,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,0,21,21,0,2,22,23,24,25,22,24,26,25,24,27,26,24,28,27,24,29,28,24,30,31,24,23,30,24,32,33,34,33,35,34,35,36,34,36,37,34,37,38,34,38,39,34,40,41,34,41,32,34,42,43,22,22,43,23,44,42,25,25,42,22,45,44,26,26,44,25,46,45,27,27,45,26,47,46,28,28,46,27,48,47,29,29,47,28,49,48,24,24,48,29,50,49,31,31,49,24,51,50,30,30,50,31,43,51,23,23,51,30,52,53,32,32,53,33,53,54,33,33,54,35,54,55,35,35,55,36,55,56,36,36,56,37,56,57,37,37,57,38,57,58,38,38,58,39,58,59,39,39,59,34,59,60,34,34,60,40,60,61,40,40,61,41,61,52,41,41,52,32});
  }
}
private class MFVec3f234 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.06357767f ,1.0649683f ,-3.2377489f ,0.024284499f ,1.0364202f ,-3.2377489f ,0.06357767f ,1.0649683f ,-3.3116426f ,0.024284499f ,1.0364202f ,-3.3116426f ,0.024284499f ,1.0364202f ,-3.2377489f ,-0.024284516f ,1.0364202f ,-3.2377489f ,0.024284499f ,1.0364202f ,-3.3116426f ,-0.024284516f ,1.0364202f ,-3.3116426f ,-0.06357767f ,1.0649683f ,-3.2377489f ,-0.06357767f ,1.0649683f ,-3.3116426f ,-0.07858631f ,1.1111603f ,-3.2377489f ,-0.07858631f ,1.1111603f ,-3.3116426f ,-0.06357767f ,1.1573522f ,-3.2377489f ,-0.06357767f ,1.1573522f ,-3.3116426f ,-0.024284504f ,1.1859003f ,-3.2377489f ,-0.024284504f ,1.1859003f ,-3.3116426f ,0.024284506f ,1.1859003f ,-3.2377489f ,0.024284506f ,1.1859003f ,-3.3116426f ,0.06357766f ,1.1573522f ,-3.2377489f ,0.06357766f ,1.1573522f ,-3.3116426f ,0.0785863f ,1.1111603f ,-3.2377489f ,0.0785863f ,1.1111603f ,-3.3116426f ,0.013769796f ,1.0687811f ,-3.201665f ,0.03604981f ,1.0849686f ,-3.201665f ,0.013769787f ,1.1535394f ,-3.201665f ,-0.013769807f ,1.0687811f ,-3.201665f ,-0.036049813f ,1.0849686f ,-3.201665f ,-0.044560008f ,1.1111603f ,-3.201665f ,-0.03604981f ,1.137352f ,-3.201665f ,-0.013769801f ,1.1535394f ,-3.201665f ,0.044560004f ,1.1111603f ,-3.201665f ,0.0360498f ,1.137352f ,-3.201665f ,0.03604981f ,1.0849686f ,-3.3477268f ,0.013769796f ,1.0687811f ,-3.3477268f ,0.013769785f ,1.1535394f ,-3.3477268f ,-0.013769807f ,1.0687811f ,-3.3477268f ,-0.036049813f ,1.0849686f ,-3.3477268f ,-0.044560008f ,1.1111603f ,-3.3477268f ,-0.03604981f ,1.137352f ,-3.3477268f ,-0.013769801f ,1.1535394f ,-3.3477268f ,0.0360498f ,1.137352f ,-3.3477268f ,0.044560004f ,1.1111603f ,-3.3477268f ,0.024284499f ,1.0364202f ,-3.2377489f ,0.06357767f ,1.0649683f ,-3.2377489f ,-0.024284516f ,1.0364202f ,-3.2377489f ,-0.06357767f ,1.0649683f ,-3.2377489f ,-0.07858631f ,1.1111603f ,-3.2377489f ,-0.06357767f ,1.1573522f ,-3.2377489f ,-0.024284504f ,1.1859003f ,-3.2377489f ,0.024284506f ,1.1859003f ,-3.2377489f ,0.06357766f ,1.1573522f ,-3.2377489f ,0.0785863f ,1.1111603f ,-3.2377489f ,0.06357767f ,1.0649683f ,-3.3116426f ,0.024284499f ,1.0364202f ,-3.3116426f ,-0.024284516f ,1.0364202f ,-3.3116426f ,-0.06357767f ,1.0649683f ,-3.3116426f ,-0.07858631f ,1.1111603f ,-3.3116426f ,-0.06357767f ,1.1573522f ,-3.3116426f ,-0.024284504f ,1.1859003f ,-3.3116426f ,0.024284506f ,1.1859003f ,-3.3116426f ,0.06357766f ,1.1573522f ,-3.3116426f ,0.0785863f ,1.1111603f ,-3.3116426f });
  }
}
private class MFVec3f235 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.78598183f ,-0.5625637f ,0.25642672f ,0.30520618f ,-0.91711223f ,0.25642627f ,0.77791184f ,-0.5736712f ,-0.25642663f ,0.2921479f ,-0.9213554f ,-0.25642526f ,0.30520618f ,-0.91711223f ,0.25642627f ,-0.29214728f ,-0.9213553f ,0.25642642f ,0.2921479f ,-0.9213554f ,-0.25642526f ,-0.30520576f ,-0.91711235f ,-0.25642616f ,-0.7779108f ,-0.5736721f ,0.25642768f ,-0.78598195f ,-0.5625636f ,-0.25642654f ,-0.9665394f ,-0.006865411f ,0.25642654f ,-0.9665395f ,0.0068653543f ,-0.25642583f ,-0.7859818f ,0.5625637f ,0.256427f ,-0.7779117f ,0.57367134f ,-0.25642642f ,-0.30520624f ,0.91711223f ,0.25642607f ,-0.29214787f ,0.9213552f ,-0.25642583f ,0.2921474f ,0.9213554f ,0.25642595f ,0.3052058f ,0.9171124f ,-0.25642583f ,0.7779106f ,0.57367224f ,0.25642794f ,0.7859818f ,0.5625637f ,-0.25642678f ,0.96653926f ,0.0068652574f ,0.256427f ,0.9665395f ,-0.0068652285f ,-0.25642622f ,0.1425862f ,-0.37251624f ,0.9170065f ,0.37310714f ,-0.24280715f ,0.8954528f ,0.12323276f ,0.45814908f ,0.8802916f ,-0.09977649f ,-0.37092683f ,0.92328656f ,-0.31022742f ,-0.2507202f ,0.91700506f ,-0.44457087f ,-0.022871802f ,0.89545166f ,-0.44099492f ,0.2869851f ,0.85038996f ,-0.22650707f ,0.5917651f ,0.7736334f ,0.5254583f ,0.027032956f ,0.85038984f ,0.49280947f ,0.39828598f ,0.7736324f ,0.34622407f ,-0.27981505f ,-0.89545095f ,0.10360626f ,-0.385184f ,-0.91700554f ,0.16959809f ,0.4430863f ,-0.8802903f ,-0.1373095f ,-0.35873115f ,-0.9232866f ,-0.33431673f ,-0.2175631f ,-0.91700524f ,-0.44457296f ,0.022871673f ,-0.89545065f ,-0.40922f ,0.33072683f ,-0.85038733f ,-0.16458116f ,0.6118913f ,-0.7736292f ,0.5310863f ,0.34561133f ,-0.7736279f ,0.52545995f ,-0.027033027f ,-0.85038877f ,0.30520618f ,-0.91711223f ,0.25642627f ,0.78598183f ,-0.5625637f ,0.25642672f ,-0.29214728f ,-0.9213553f ,0.25642642f ,-0.7779108f ,-0.5736721f ,0.25642768f ,-0.9665394f ,-0.006865411f ,0.25642654f ,-0.7859818f ,0.5625637f ,0.256427f ,-0.30520624f ,0.91711223f ,0.25642607f ,0.2921474f ,0.9213554f ,0.25642595f ,0.7779106f ,0.57367224f ,0.25642794f ,0.96653926f ,0.0068652574f ,0.256427f ,0.77791184f ,-0.5736712f ,-0.25642663f ,0.2921479f ,-0.9213554f ,-0.25642526f ,-0.30520576f ,-0.91711235f ,-0.25642616f ,-0.78598195f ,-0.5625636f ,-0.25642654f ,-0.9665395f ,0.0068653543f ,-0.25642583f ,-0.7779117f ,0.57367134f ,-0.25642642f ,-0.29214787f ,0.9213552f ,-0.25642583f ,0.3052058f ,0.9171124f ,-0.25642583f ,0.7859818f ,0.5625637f ,-0.25642678f ,0.9665395f ,-0.0068652285f ,-0.25642622f });
  }
}
private class MFVec4f236 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.5764532f ,-0.81675f ,-0.024927633f ,1f ,-0.93917567f ,-0.3344148f ,-0.078204535f ,1f ,-0.59864146f ,-0.80062914f ,-0.024928752f ,1f ,-0.943165f ,-0.3219709f ,0.08230858f ,1f ,-0.9522863f ,-0.29389572f ,0.08231731f ,1f ,-0.9549093f ,0.29584935f ,-0.02492633f ,1f ,-0.9563732f ,-0.28148702f ,-0.07820158f ,1f ,-0.94643426f ,0.32193327f ,-0.024926644f ,1f ,-0.5986422f ,0.8006287f ,-0.024926824f ,1f ,-0.57645285f ,0.8167501f ,-0.024928281f ,1f ,-0.013713936f ,0.99959517f ,-0.024928883f ,1f ,0.013713453f ,0.9995953f ,-0.024927353f ,1f ,0.5764535f ,0.8167498f ,-0.024926612f ,1f ,0.59864193f ,0.8006287f ,-0.024930451f ,1f ,0.9464333f ,0.32193536f ,-0.024933068f ,1f ,0.95490944f ,0.295849f ,-0.024930302f ,1f ,0.95490927f ,-0.29584968f ,-0.024925398f ,1f ,0.94643444f ,-0.32193273f ,-0.02492444f ,1f ,0.5986425f ,-0.8006284f ,-0.024927106f ,1f ,0.5764523f ,-0.81675047f ,-0.02493177f ,1f ,0.013714457f ,-0.9995951f ,-0.02493139f ,1f ,-0.013713963f ,-0.9995952f ,-0.024929732f ,1f ,0.776122f ,-0.5328816f ,-0.33715284f ,1f ,0.7017303f ,-0.55751795f ,-0.44356322f ,1f ,0.82046473f ,-0.5460444f ,0.16933209f ,1f ,0.8066176f ,-0.57346046f ,-0.14321707f ,1f ,0.771132f ,-0.6304954f ,0.08849281f ,1f ,0.70199615f ,-0.6298308f ,0.33243746f ,1f ,0.66495043f ,-0.53189915f ,0.52433234f ,1f ,0.723048f ,-0.43002483f ,0.5406296f ,1f ,0.6666692f ,-0.6340826f ,-0.39178005f ,1f ,0.7451177f ,-0.65232766f ,-0.13881019f ,1f ,-0.93813133f ,-0.09695115f ,-0.33243057f ,1f ,-0.9944544f ,-0.056862958f ,-0.088471666f ,1f ,-0.9847253f ,0.040475264f ,-0.16934581f ,1f ,-0.9896361f ,0.010133228f ,0.14323975f ,1f ,-0.94111276f ,0.025041746f ,0.33716446f ,1f ,-0.89540964f ,-0.038606156f ,0.44356647f ,1f ,-0.9120498f ,-0.12116031f ,0.3917721f ,1f ,-0.98624265f ,-0.089801885f ,0.13878481f ,1f ,-0.8377149f ,0.077098854f ,-0.540638f ,1f ,-0.8505971f ,-0.039483704f ,-0.52433354f ,1f ,0.661788f ,0.010642789f ,-0.74961555f ,1f ,0.23816024f ,-0.10725097f ,-0.96528596f ,1f ,0.904351f ,-0.3533662f ,-0.23933618f ,1f ,0.6277244f ,-0.69089466f ,0.35864562f ,1f ,0.21975163f ,-0.53784055f ,0.8139022f ,1f ,0.23872128f ,-0.10644504f ,0.9652366f ,1f ,0.66271085f ,0.011180416f ,0.74879193f ,1f ,0.9042306f ,-0.35342872f ,0.23969825f ,1f ,0.6277514f ,-0.69130874f ,-0.35779947f ,1f ,0.21966243f ,-0.5384106f ,-0.8135494f ,1f ,-0.4939253f ,-0.3059712f ,-0.81389153f ,1f ,-0.91395086f ,-0.1899965f ,-0.35860175f ,1f ,-0.93932974f ,0.2456651f ,0.23939198f ,1f ,-0.52912766f ,0.39756632f ,0.74964327f ,1f ,-0.2557157f ,0.053200413f ,0.96528715f ,1f ,-0.49418682f ,-0.306483f ,0.81354016f ,1f ,-0.91421163f ,-0.19031048f ,0.3577698f ,1f ,-0.9392753f ,0.24555637f ,-0.23971634f ,1f ,-0.5295719f ,0.39857337f ,-0.7487943f ,1f ,-0.2556958f ,0.054193564f ,-0.9652372f ,1f });
  }
}
private class MFVec2f237 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.5215564f ,0.67825687f ,0.54248923f ,0.6782597f ,0.5215523f ,0.7101043f ,0.54248506f ,0.71010697f ,0.33316153f ,0.67823225f ,0.35409427f ,0.6782351f ,0.33315736f ,0.71007985f ,0.35409015f ,0.7100826f ,0.375027f ,0.6782378f ,0.3750229f ,0.71008545f ,0.39595997f ,0.67824054f ,0.39595565f ,0.710088f ,0.41689265f ,0.67824334f ,0.41688845f ,0.7100909f ,0.43782532f ,0.67824596f ,0.43782124f ,0.71009344f ,0.45875815f ,0.67824864f ,0.4587539f ,0.71009624f ,0.47969088f ,0.6782515f ,0.4796868f ,0.710099f ,0.5006236f ,0.6782541f ,0.5006194f ,0.7101016f ,0.1972442f ,0.720016f ,0.20048782f ,0.730949f ,0.17590392f ,0.74783355f ,0.18819273f ,0.7130769f ,0.1767922f ,0.712782f ,0.16739786f ,0.7192429f ,0.16359866f ,0.72998905f ,0.16684708f ,0.74091136f ,0.19668403f ,0.7416961f ,0.18729046f ,0.74814606f ,0.26254457f ,0.7192356f ,0.27193934f ,0.712775f ,0.27105016f ,0.7478264f ,0.28333986f ,0.7130704f ,0.29239106f ,0.72001016f ,0.2956344f ,0.73094314f ,0.29183054f ,0.7416899f ,0.2824368f ,0.74813926f ,0.26199347f ,0.7409041f ,0.25874513f ,0.72998166f ,0.21372208f ,0.70742154f ,0.221221f ,0.7304467f ,0.19412416f ,0.6932017f ,0.1699085f ,0.6932158f ,0.15032363f ,0.7074655f ,0.14286432f ,0.73051f ,0.15038338f ,0.75352246f ,0.16995957f ,0.7677145f ,0.19415843f ,0.76772124f ,0.21374905f ,0.75348496f ,0.2454708f ,0.70745754f ,0.26505697f ,0.693208f ,0.28927273f ,0.6931958f ,0.30886954f ,0.7074163f ,0.3163677f ,0.7304412f ,0.30889523f ,0.753479f ,0.28930426f ,0.76771486f ,0.26510584f ,0.7677076f ,0.24552973f ,0.75351536f ,0.23801084f ,0.7305024f });
  }
}
private class MFInt32238 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,2,3,4,4,3,5,5,6,4,4,6,7,6,8,7,7,8,9,7,9,10,10,9,11,11,12,10,10,12,13,12,14,13,13,14,15,13,15,16,16,15,17,17,0,16,16,0,2,16,2,18,18,2,4,4,7,18,18,7,10,10,13,18,18,13,16,9,8,19,19,8,20,19,20,21,21,20,22,22,23,21,21,23,24,23,25,24,24,25,26,24,26,27,27,26,28,28,29,27,27,29,30,29,14,30,30,14,12,30,12,31,31,12,11,11,9,31,31,9,19,31,19,32,32,19,21,21,24,32,32,24,27,27,30,32,32,30,31,33,34,35,35,34,36,35,36,37,37,36,38,38,39,37,37,39,40,39,41,40,40,41,42,40,42,43,43,42,44,44,45,43,43,45,46,45,47,46,46,47,48,46,48,49,49,48,50,50,33,49,49,33,35,49,35,51,51,35,37,37,40,51,51,40,43,43,46,51,51,46,49,52,53,54,54,53,55,54,55,56,56,55,57,57,58,56,56,58,59,58,34,59,59,34,33,59,33,60,60,33,50,50,48,60,60,48,61,48,47,61,61,47,62,61,62,63,63,62,64,64,52,63,63,52,54,63,54,65,65,54,56,56,59,65,65,59,60,60,61,65,65,61,63,15,14,66,66,14,67,29,68,14,14,68,67,69,70,71,71,70,72,73,71,74,74,71,72,62,47,73,73,47,71,45,69,47,47,69,71,68,75,67,67,75,76,66,67,77,77,67,76,1,0,78,78,0,79,0,17,79,79,17,80,15,81,17,17,81,80,29,28,82,82,28,83,26,84,28,28,84,83,25,85,26,26,85,84,45,44,86,86,44,87,42,88,44,44,88,87,41,89,42,42,89,88,53,52,90,90,52,91,52,64,91,91,64,92,62,93,64,64,93,92,15,66,81,81,66,94,76,95,77,77,95,96,29,82,68,68,82,97,76,75,95,95,75,98,45,86,69,69,86,99,72,70,100,100,70,101,62,73,93,93,73,102,72,100,74,74,100,103,73,74,102,102,74,103,69,99,70,70,99,101,68,97,75,75,97,98,66,77,94,94,77,96,104,105,106,106,105,107,105,108,107,107,108,109,110,111,112,112,111,113,111,114,113,113,114,115,116,104,106,117,115,114,118,119,120,120,119,121,119,122,121,121,122,123,122,110,123,123,110,124,125,126,127,127,126,128,129,130,125,125,130,126,131,132,129,129,132,130,133,134,135,135,134,136,137,138,133,133,138,134,139,140,137,137,140,138,141,142,143,143,142,144,142,145,144,144,145,146,145,109,146,146,109,147,109,108,147,147,108,148,110,112,124,124,112,149,117,150,115,115,150,113,113,150,151,113,151,112,112,151,127,149,112,128,128,112,127,152,104,116,153,105,152,152,105,104,135,108,153,153,108,105,148,108,136,136,108,135});
  }
}
private class MFVec3f239 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.32518554f ,0.60700655f ,-2.584631f ,-0.35197532f ,0.60700655f ,-2.7031727f ,-0.30709028f ,0.4860226f ,-2.5962493f ,-0.32518554f ,0.47287285f ,-2.7031727f ,-0.2377603f ,0.38817966f ,-2.6123886f ,-0.24889445f ,0.37833235f ,-2.7031727f ,-0.13471687f ,0.31085947f ,-2.7031727f ,-0.121513486f ,0.32686323f ,-2.5962493f ,0f ,0.28716612f ,-2.7031727f ,0f ,0.31085947f ,-2.584631f ,-0.103171825f ,0.38817966f ,-2.4939604f ,0f ,0.37833235f ,-2.484163f ,0f ,0.47287285f ,-2.4170325f ,-0.121513486f ,0.4860226f ,-2.4329548f ,0f ,0.60700655f ,-2.393459f ,-0.13471687f ,0.60700655f ,-2.4170325f ,-0.2377603f ,0.5042896f ,-2.4939604f ,-0.24889445f ,0.60700655f ,-2.484163f ,-0.20315707f ,0.41878325f ,-2.5244088f ,0.121513486f ,0.32686323f ,-2.5962493f ,0.13471687f ,0.31085947f ,-2.7031727f ,0.2596127f ,0.38817966f ,-2.6123886f ,0.27384353f ,0.37833235f ,-2.7031727f ,0.37135306f ,0.47287285f ,-2.7031727f ,0.34822506f ,0.4860226f ,-2.5962493f ,0.40559375f ,0.60700655f ,-2.7031727f ,0.37135306f ,0.60700655f ,-2.584631f ,0.2596127f ,0.5042896f ,-2.4939604f ,0.27384353f ,0.60700655f ,-2.484163f ,0.13471687f ,0.60700655f ,-2.4170325f ,0.121513486f ,0.4860226f ,-2.4329548f ,0.103171825f ,0.38817966f ,-2.4939604f ,0.21538544f ,0.41878325f ,-2.5244088f ,0f ,0.31085947f ,-2.821714f ,0f ,0.28716612f ,-2.7031727f ,-0.121513486f ,0.32686323f ,-2.8100958f ,-0.13471687f ,0.31085947f ,-2.7031727f ,-0.2377603f ,0.38817966f ,-2.7939565f ,-0.24889445f ,0.37833235f ,-2.7031727f ,-0.32518554f ,0.47287285f ,-2.7031727f ,-0.30709028f ,0.4860226f ,-2.8100958f ,-0.35197532f ,0.60700655f ,-2.7031727f ,-0.32518554f ,0.60700655f ,-2.821714f ,-0.2377603f ,0.5042896f ,-2.9123847f ,-0.24889445f ,0.60700655f ,-2.9221818f ,-0.13471687f ,0.60700655f ,-2.9893124f ,-0.121513486f ,0.4860226f ,-2.97339f ,0f ,0.60700655f ,-3.0128858f ,0f ,0.47287285f ,-2.9893124f ,-0.103171825f ,0.38817966f ,-2.9123847f ,0f ,0.37833235f ,-2.9221818f ,-0.20315707f ,0.41878325f ,-2.881936f ,0.37135306f ,0.60700655f ,-2.821714f ,0.40559375f ,0.60700655f ,-2.7031727f ,0.34822506f ,0.4860226f ,-2.8100958f ,0.37135306f ,0.47287285f ,-2.7031727f ,0.2596127f ,0.38817966f ,-2.7939565f ,0.27384353f ,0.37833235f ,-2.7031727f ,0.13471687f ,0.31085947f ,-2.7031727f ,0.121513486f ,0.32686323f ,-2.8100958f ,0.103171825f ,0.38817966f ,-2.9123847f ,0.121513486f ,0.4860226f ,-2.97339f ,0.13471687f ,0.60700655f ,-2.9893124f ,0.2596127f ,0.5042896f ,-2.9123847f ,0.27384353f ,0.60700655f ,-2.9221818f ,0.21538544f ,0.41878325f ,-2.881936f ,-0.09501147f ,0.68553853f ,-2.4135928f ,-0.00069856644f ,0.68553877f ,-2.40142f ,0.09361446f ,0.6855386f ,-2.4135928f ,-0.09501147f ,0.6855386f ,-2.992752f ,-0.061734557f ,0.7232322f ,-2.9893124f ,-0.00069856644f ,0.68553877f ,-3.0049248f ,-0.00069856644f ,0.7416791f ,-2.992981f ,0.09361446f ,0.6855386f ,-2.992752f ,0.060337543f ,0.7232322f ,-2.9893124f ,0.060337543f ,0.7232322f ,-2.4170325f ,-0.00069856644f ,0.7416791f ,-2.413364f ,-0.061734557f ,0.7232322f ,-2.4170325f ,-0.31621754f ,0.61967236f ,-2.7031727f ,-0.29211473f ,0.6194316f ,-2.5966916f ,-0.22355163f ,0.6191909f ,-2.506463f ,-0.1450541f ,0.61915874f ,-2.4463334f ,0.1450615f ,0.61909825f ,-2.4463322f ,0.24890243f ,0.6191909f ,-2.4996552f ,0.34147617f ,0.6194316f ,-2.5930066f ,0.3740197f ,0.61967236f ,-2.7031727f ,-0.14505398f ,0.61915874f ,-2.9600115f ,-0.22355163f ,0.6191909f ,-2.8998818f ,-0.29211473f ,0.6194316f ,-2.8096533f ,-0.31621754f ,0.61967236f ,-2.7031727f ,0.3740197f ,0.61967236f ,-2.7031727f ,0.34147617f ,0.6194316f ,-2.8133383f ,0.24890243f ,0.6191909f ,-2.9066896f ,0.1450615f ,0.61909825f ,-2.960013f ,-0.10364056f ,0.6923125f ,-2.4446945f ,-0.00083994865f ,0.7573893f ,-2.4447408f ,-0.068873644f ,0.73433065f ,-2.4467893f ,0.10196972f ,0.6922602f ,-2.4446933f ,0.067193866f ,0.7343307f ,-2.4467893f ,-0.10364044f ,0.69231254f ,-2.9616504f ,-0.00083994865f ,0.7573892f ,-2.961604f ,-0.068873644f ,0.7343306f ,-2.9595556f ,0.10196972f ,0.6922602f ,-2.9616518f ,0.067193866f ,0.7343306f ,-2.9595556f ,-0.00072042644f ,0.7343306f ,-2.9592028f ,0.00037733093f ,0.6922861f ,-2.95806f ,0.067193866f ,0.7343306f ,-2.9595556f ,0.10196972f ,0.6922602f ,-2.9616518f ,0.0014601424f ,0.61912817f ,-2.9567637f ,0.1450615f ,0.61909825f ,-2.960013f ,-0.1450541f ,0.61915874f ,-2.4463334f ,-0.10364056f ,0.6923125f ,-2.4446945f ,0.006434694f ,0.61912715f ,-2.4495811f ,0.003086187f ,0.69228536f ,-2.4482849f ,-0.068873644f ,0.73433065f ,-2.4467893f ,-0.00063020363f ,0.7343307f ,-2.4471421f ,-0.00083994865f ,0.7573892f ,-2.961604f ,-0.00083994865f ,0.7573893f ,-2.4447408f ,-0.31621754f ,0.61967236f ,-2.7031727f ,-0.29211473f ,0.6194316f ,-2.5966916f ,-0.27805364f ,0.5107115f ,-2.7031727f ,-0.25719345f ,0.5103459f ,-2.6095634f ,-0.22355163f ,0.6191909f ,-2.506463f ,-0.19259787f ,0.51151246f ,-2.5311944f ,-0.102007344f ,0.51057214f ,-2.4673934f ,0.24890243f ,0.6191909f ,-2.4996552f ,0.20718485f ,0.5114899f ,-2.525225f ,0.1450615f ,0.61909825f ,-2.4463322f ,0.10206993f ,0.5104891f ,-2.4673786f ,0.34147617f ,0.6194316f ,-2.5930066f ,0.29432553f ,0.5103459f ,-2.606324f ,0.3740197f ,0.61967236f ,-2.7031727f ,0.3224909f ,0.5107115f ,-2.7031727f ,-0.22355163f ,0.6191909f ,-2.8998818f ,-0.19259787f ,0.51151246f ,-2.8751504f ,-0.14505398f ,0.61915874f ,-2.9600115f ,-0.10200723f ,0.51057214f ,-2.9389515f ,-0.29211473f ,0.6194316f ,-2.8096533f ,-0.25719345f ,0.5103459f ,-2.7967815f ,-0.31621754f ,0.61967236f ,-2.7031727f ,-0.27805364f ,0.5107115f ,-2.7031727f ,0.3740197f ,0.61967236f ,-2.7031727f ,0.34147617f ,0.6194316f ,-2.8133383f ,0.3224909f ,0.5107115f ,-2.7031727f ,0.29432553f ,0.5103459f ,-2.8000212f ,0.24890243f ,0.6191909f ,-2.9066896f ,0.20718485f ,0.5114899f ,-2.8811202f ,0.10206993f ,0.5104891f ,-2.9389663f ,0.000031348318f ,0.5105306f ,-2.9512782f ,0.00003129244f ,0.5105306f ,-2.455067f ,0.067193866f ,0.7343307f ,-2.4467893f ,0.10196972f ,0.6922602f ,-2.4446933f ,-0.068873644f ,0.7343306f ,-2.9595556f ,-0.10364044f ,0.69231254f ,-2.9616504f });
  }
}
private class MFVec3f240 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {-0.9071036f ,0.080959976f ,0.41304776f ,-0.9974054f ,0.07199028f ,1.07832484e-7f ,-0.8561472f ,-0.35410023f ,0.37633097f ,-0.9167923f ,-0.39936435f ,1.7682123e-7f ,-0.62066996f ,-0.7223548f ,0.30491367f ,-0.6498091f ,-0.7600974f ,-7.319822e-8f ,-0.3374133f ,-0.94135666f ,-1.1048427e-8f ,-0.30326566f ,-0.88833994f ,0.34479302f ,3.9432697e-9f ,-1f ,5.257693e-9f ,8.18035e-9f ,-0.92733014f ,0.37424427f ,-0.25609916f ,-0.69287205f ,0.6740486f ,0f ,-0.7188721f ,0.6951424f ,-6.578052e-9f ,-0.35905635f ,0.93331593f ,-0.30602443f ,-0.32766068f ,0.893861f ,0.0002953874f ,-0.079959475f ,0.9967981f ,-0.34608212f ,-0.049986586f ,0.9368717f ,-0.63454944f ,-0.2849366f ,0.7184415f ,-0.66357213f ,0.09408968f ,0.74217194f ,-0.5242613f ,-0.6082721f ,0.595949f ,0.2839665f ,-0.89408445f ,0.34637547f ,0.31224215f ,-0.9500026f ,-7.591121e-9f ,0.54235023f ,-0.77173567f ,0.33208463f ,0.5704309f ,-0.82134557f ,8.718137e-8f ,0.877073f ,-0.48035714f ,2.407308e-7f ,0.79436994f ,-0.41576183f ,0.44285288f ,0.99997175f ,-0.007522944f ,1.5220296e-7f ,0.8679686f ,0.0126798935f ,0.49645713f ,0.55616397f ,-0.3119183f ,0.77031726f ,0.58599204f ,0.05130591f ,0.808691f ,0.32590798f ,-0.04384344f ,0.9443844f ,0.28661314f ,-0.32910842f ,0.8997447f ,0.24512878f ,-0.69488686f ,0.6760505f ,0.4559826f ,-0.63574046f ,0.6228274f ,-2.7267877e-9f ,-0.92732996f ,-0.37424475f ,3.9432697e-9f ,-1f ,5.257693e-9f ,-0.3032657f ,-0.8883397f ,-0.34479365f ,-0.3374133f ,-0.94135666f ,-1.1048427e-8f ,-0.6206687f ,-0.7223554f ,-0.3049147f ,-0.6498091f ,-0.7600974f ,-7.319822e-8f ,-0.9167923f ,-0.39936435f ,1.7682123e-7f ,-0.8561471f ,-0.35409963f ,-0.37633184f ,-0.9974054f ,0.07199028f ,1.07832484e-7f ,-0.90710306f ,0.08096048f ,-0.41304886f ,-0.6345488f ,-0.28493664f ,-0.71844214f ,-0.6635712f ,0.09409153f ,-0.7421726f ,-0.34608278f ,-0.04998591f ,-0.93687147f ,-0.30602527f ,-0.3276602f ,-0.89386094f ,0.00029529477f ,-0.07995946f ,-0.99679816f ,2.6312224e-9f ,-0.35905594f ,-0.93331605f ,-0.25610015f ,-0.69287145f ,-0.6740489f ,-3.1295304e-9f ,-0.71887225f ,-0.69514227f ,-0.52425957f ,-0.6082727f ,-0.59594995f ,0.867968f ,0.01268071f ,-0.49645823f ,0.99997175f ,-0.007522944f ,1.5220296e-7f ,0.7943697f ,-0.41576114f ,-0.4428538f ,0.877073f ,-0.48035714f ,2.407308e-7f ,0.54234886f ,-0.77173626f ,-0.33208576f ,0.5704309f ,-0.82134557f ,8.718137e-8f ,0.31224215f ,-0.9500026f ,-7.591121e-9f ,0.28396663f ,-0.8940842f ,-0.3463761f ,0.2451296f ,-0.69488627f ,-0.6760507f ,0.28661394f ,-0.32910797f ,-0.89974463f ,0.32590723f ,-0.043843854f ,-0.9443846f ,0.55616325f ,-0.31191823f ,-0.77031785f ,0.5859908f ,0.05130768f ,-0.80869174f ,0.45598072f ,-0.635741f ,-0.6228282f ,-0.33249527f ,0.19915861f ,0.9218367f ,-0.00048781675f ,0.13421765f ,0.9909518f ,0.331468f ,0.20335649f ,0.9212899f ,-0.33249426f ,0.19915922f ,-0.9218369f ,-0.30693462f ,0.49451336f ,-0.8131713f ,-0.0004864669f ,0.13421765f ,-0.9909518f ,0.00033727387f ,0.56289977f ,-0.8265252f ,0.33146584f ,0.20335604f ,-0.9212908f ,0.3078672f ,0.49493873f ,-0.81255984f ,0.3078654f ,0.4949389f ,0.81256044f ,0.0003359713f ,0.5628986f ,0.8265259f ,-0.30693597f ,0.4945129f ,0.81317115f ,0.73772097f ,0.67510575f ,-2.5639704e-7f ,0.6810453f ,0.65952957f ,-0.31811646f ,0.55012095f ,0.629854f ,-0.54831636f ,0.108318046f ,0.43124393f ,-0.8957097f ,-0.091037065f ,0.45581004f ,-0.8854093f ,-0.472607f ,0.62247825f ,-0.62382966f ,-0.6305034f ,0.68259597f ,-0.36949742f ,-0.69796246f ,0.7161343f ,-1.6631398e-7f ,0.11063577f ,0.43754426f ,0.89236474f ,0.5501219f ,0.6298536f ,0.54831594f ,0.681045f ,0.6595295f ,0.31811735f ,0.73772097f ,0.67510575f ,-2.5639704e-7f ,-0.69796246f ,0.7161343f ,-1.6631398e-7f ,-0.63050294f ,0.68259597f ,0.3694982f ,-0.47260863f ,0.6224771f ,0.62382966f ,-0.089254074f ,0.44959748f ,0.88876086f ,-0.25262168f ,0.17619215f ,-0.9513877f ,-0.0008387811f ,0.9823946f ,-0.1868163f ,-0.3302064f ,0.46986863f ,-0.81864965f ,0.27516845f ,0.19488633f ,-0.94143593f ,0.34778872f ,0.50144833f ,-0.7922074f ,-0.26125526f ,0.18177666f ,0.9479995f ,-0.0008281335f ,0.9823955f ,0.18681118f ,-0.33648625f ,0.48062035f ,0.8098032f ,0.26565778f ,0.18859011f ,0.9454416f ,0.34138802f ,0.4903216f ,0.80189717f ,-0.000049506787f ,0.054348115f ,0.99852204f ,-0.0001319081f ,0.01391832f ,0.9999032f ,0.34138802f ,0.4903216f ,0.80189717f ,0.26565778f ,0.18859011f ,0.9454416f ,-0.000008803011f ,0.0905193f ,0.99589473f ,-0.089254074f ,0.44959748f ,0.88876086f ,0.108318046f ,0.43124393f ,-0.8957097f ,-0.25262168f ,0.17619215f ,-0.9513877f ,-0.0003614841f ,0.090601586f ,-0.9958872f ,-0.00041285955f ,0.013900143f ,-0.9999034f ,-0.3302064f ,0.46986863f ,-0.81864965f ,-0.00017695497f ,0.054329626f ,-0.99852306f ,-0.0008281335f ,0.9823955f ,0.18681118f ,-0.0008387811f ,0.9823946f ,-0.1868163f ,0.73772097f ,0.67510575f ,-2.5639704e-7f ,0.6810453f ,0.65952957f ,-0.31811646f ,0.94435453f ,0.32892933f ,4.6015536e-8f ,0.84527254f ,0.33144358f ,-0.41911745f ,0.55012095f ,0.629854f ,-0.54831636f ,0.6372659f ,0.35062903f ,-0.68625903f ,0.23354441f ,0.23599137f ,-0.9432736f ,-0.472607f ,0.62247825f ,-0.62382966f ,-0.5276002f ,0.3762599f ,-0.761621f ,-0.091037065f ,0.45581004f ,-0.8854093f ,-0.21236363f ,0.22822778f ,-0.95016515f ,-0.6305034f ,0.68259597f ,-0.36949742f ,-0.76211834f ,0.40439072f ,-0.50561225f ,-0.69796246f ,0.7161343f ,-1.6631398e-7f ,-0.90491843f ,0.4255851f ,-2.981747e-7f ,0.5501219f ,0.6298536f ,0.54831594f ,0.6372655f ,0.3506292f ,0.68625927f ,0.11063577f ,0.43754426f ,0.89236474f ,0.23838252f ,0.23692769f ,0.94182754f ,0.681045f ,0.6595295f ,0.31811735f ,0.84527224f ,0.33144364f ,0.41911823f ,0.73772097f ,0.67510575f ,-2.5639704e-7f ,0.94435453f ,0.32892933f ,4.6015536e-8f ,-0.69796246f ,0.7161343f ,-1.6631398e-7f ,-0.63050294f ,0.68259597f ,0.3694982f ,-0.90491843f ,0.4255851f ,-2.981747e-7f ,-0.76211846f ,0.4043896f ,0.505613f ,-0.47260863f ,0.6224771f ,0.62382966f ,-0.5276005f ,0.37625924f ,0.7616212f ,-0.20804736f ,0.22738886f ,0.95132047f ,0.0010606975f ,0.05043424f ,0.9987269f ,0.0045289434f ,0.050184026f ,-0.99872977f ,0.34778872f ,0.50144833f ,-0.7922074f ,0.27516845f ,0.19488633f ,-0.94143593f ,-0.33648625f ,0.48062035f ,0.8098032f ,-0.26125526f ,0.18177666f ,0.9479995f });
  }
}
private class MFVec4f241 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.0047221114f ,0.97930795f ,-0.2023209f ,1f ,0.0705432f ,0.9773569f ,-0.1994922f ,1f ,-0.33929858f ,0.93452513f ,0.10742153f ,1f ,-0.38947386f ,0.8940874f ,0.22117405f ,1f ,-0.58211833f ,0.68505555f ,0.4379923f ,1f ,-0.66196054f ,0.5659117f ,0.49147964f ,1f ,-0.701514f ,0.2514458f ,0.66682315f ,1f ,-0.6065163f ,0.45902318f ,0.6491808f ,1f ,-0.5045367f ,2.5499167e-9f ,0.8633902f ,1f ,-0.5421438f ,0.3144721f ,0.77922225f ,1f ,-0.5544468f ,0.67648685f ,0.4847208f ,1f ,-0.54875475f ,0.5811275f ,0.60096514f ,1f ,-0.5455563f ,0.78218794f ,0.30091584f ,1f ,-0.480833f ,0.8635491f ,0.15193017f ,1f ,-0.505292f ,0.86017346f ,0.06914968f ,1f ,-0.36905453f ,0.9253308f ,-0.08695859f ,1f ,-0.35524336f ,0.9330769f ,0.056300033f ,1f ,-0.12558103f ,0.963973f ,-0.23449007f ,1f ,-0.5237551f ,0.78213555f ,0.33755687f ,1f ,-0.40099445f ,0.21740024f ,0.88991046f ,1f ,-0.19715269f ,-0.064799175f ,0.978229f ,1f ,-0.22849266f ,0.24487923f ,0.9422449f ,1f ,-0.022803957f ,-0.015837418f ,0.99961454f ,1f ,0.0898138f ,0.16398942f ,0.9823651f ,1f ,-0.25332406f ,0.43588045f ,0.8636175f ,1f ,0.0030794076f ,0.4093424f ,0.91237575f ,1f ,-0.45295045f ,0.43011722f ,0.7809194f ,1f ,-0.5209023f ,0.5913966f ,0.6155575f ,1f ,-0.7309467f ,0.46423298f ,0.5002047f ,1f ,-0.6216626f ,0.742649f ,0.24901417f ,1f ,-0.5648095f ,0.70053756f ,0.43616214f ,1f ,-0.5121154f ,0.4992906f ,0.6988897f ,1f ,-0.4330886f ,0.4528646f ,0.77932537f ,1f ,-0.8450759f ,-0.20008859f ,0.49579358f ,1f ,-0.8145727f ,-1.6229407e-10f ,0.5800616f ,1f ,-0.7030119f ,-0.035686165f ,0.71028227f ,1f ,-0.516786f ,0.18523312f ,0.8358355f ,1f ,-0.4820136f ,0.044805013f ,0.87501746f ,1f ,-0.27120015f ,0.23184958f ,0.9341822f ,1f ,-0.07433275f ,0.17064083f ,0.98252547f ,1f ,-0.39499888f ,-0.02107053f ,0.91844f ,1f ,-0.0028829759f ,-0.03994433f ,0.9991978f ,1f ,-0.4185825f ,-0.07048821f ,0.90543926f ,1f ,-0.7071775f ,-0.16101353f ,0.68845814f ,1f ,-0.74751234f ,-0.12314397f ,0.6527334f ,1f ,-0.8606551f ,-0.38061708f ,0.33823577f ,1f ,-0.84551275f ,-0.33798742f ,0.41336775f ,1f ,-0.84917116f ,-0.52644676f ,0.041978043f ,1f ,-0.86002696f ,-0.47622347f ,0.18320788f ,1f ,-0.8072817f ,-0.2302482f ,0.5433987f ,1f ,-0.85495245f ,-0.3605748f ,0.37288374f ,1f ,-0.68554807f ,-0.11366912f ,0.7190989f ,1f ,-0.3310254f ,-0.7304387f ,-0.59739554f ,1f ,-0.0056884172f ,-0.7561345f ,-0.6543915f ,1f ,-0.5595322f ,-0.7846045f ,-0.26705733f ,1f ,-0.46678454f ,-0.8522911f ,-0.23603445f ,1f ,-0.81014043f ,-0.5850917f ,0.03661038f ,1f ,-0.8208471f ,-0.5700847f ,0.034836415f ,1f ,-0.9133945f ,-0.30021f ,0.27492625f ,1f ,-0.8733883f ,-0.3902656f ,0.29135147f ,1f ,-0.84808296f ,-0.4915741f ,0.19776312f ,1f ,-0.80308944f ,-0.5946248f ,-0.038322955f ,1f ,-0.7588601f ,-0.6078932f ,-0.23366073f ,1f ,-0.6625976f ,-0.72590697f ,-0.18445489f ,1f ,-0.5833165f ,-0.6660154f ,-0.46493593f ,1f ,-0.7995587f ,-0.5999786f ,0.027050328f ,1f ,-0.39052486f ,0.8606369f ,-0.32679424f ,1f ,-0.48901668f ,0.86435f ,-0.117311046f ,1f ,-0.5014477f ,0.86512375f ,-0.010544643f ,1f ,-0.79562193f ,-0.58406675f ,0.16078487f ,1f ,-0.8417379f ,-0.5397834f ,-0.010540921f ,1f ,-0.84577864f ,-0.5287615f ,-0.071201935f ,1f ,-0.87328994f ,-0.4025179f ,-0.27448863f ,1f ,-0.78623587f ,-0.48021922f ,-0.38887373f ,1f ,-0.789141f ,-0.34424442f ,-0.50867707f ,1f ,-0.5339489f ,0.7967483f ,-0.2830033f ,1f ,-0.53468394f ,0.6985586f ,-0.47553024f ,1f ,-0.4278453f ,0.6915173f ,-0.5820242f ,1f ,0.36976185f ,-0.4040572f ,-0.83666843f ,1f ,0.18144609f ,-0.57289493f ,-0.79929274f ,1f ,-0.013293069f ,-0.64991146f ,-0.7598937f ,1f ,0.2985557f ,0.84530675f ,0.4430815f ,-1f ,-0.81840235f ,0.47232577f ,0.3273014f ,-1f ,-0.8631238f ,-0.184024f ,0.4702685f ,1f ,-0.6793011f ,-0.25495756f ,0.6881473f ,1f ,-0.39417928f ,-0.38417682f ,0.83488375f ,1f ,-0.82614106f ,-0.45864907f ,0.32731014f ,-1f ,-0.741868f ,0.067150585f ,0.6671751f ,1f ,-0.48053572f ,0.074751414f ,0.87378365f ,1f ,-0.13255642f ,0.14485125f ,0.980534f ,1f ,0.13827404f ,0.1347651f ,-0.98118234f ,1f ,-0.26788166f ,0.2554287f ,-0.9289755f ,1f ,-0.63289654f ,0.252854f ,-0.73178333f ,1f ,-0.9197114f ,0.30531234f ,-0.24681064f ,-1f ,0.47331968f ,0.88010037f ,0.037309654f ,-1f ,-0.55394423f ,-0.1559911f ,-0.8178097f ,1f ,0.53072953f ,-0.6247942f ,-0.57267654f ,1f ,-0.60688883f ,0.7946825f ,-0.01287808f ,-1f ,-0.8821269f ,0.4612719f ,-0.09529043f ,1f ,-0.6166052f ,-0.78704286f ,-0.019014066f ,-1f ,-0.8839102f ,0.08664433f ,-0.45956025f ,1f ,-0.82230586f ,-0.569032f ,-0.0039592693f ,1f ,-0.7160163f ,0.69527996f ,0.06250241f ,-1f ,-0.5292119f ,0.8053426f ,-0.26712936f ,1f ,0.0021525885f ,0.9985198f ,-0.054347884f ,1f ,0.0021727714f ,0.9999008f ,-0.013918f ,1f ,-0.17444216f ,0.8713824f ,-0.45854405f ,1f ,-0.044778727f ,0.9820353f ,-0.18330725f ,1f ,0.002245316f ,0.9958923f ,-0.090519056f ,1f ,0.12683862f ,0.8901879f ,-0.4375816f ,1f ,0.9857238f ,0.07023907f ,0.15302038f ,1f ,0.96755266f ,0.041008163f ,-0.24931943f ,1f ,0.9999997f ,-0.00073128997f ,-0.00042950647f ,1f ,0.9999976f ,-0.0021602898f ,-0.0004429297f ,1f ,0.94388014f ,0.15761685f ,-0.29025364f ,1f ,0.9999978f ,-0.0020958725f ,-0.0002912527f ,1f ,0.01019587f ,0.18680982f ,-0.98234326f ,1f ,0.9999996f ,0.00076221244f ,-0.00048168917f ,1f ,0.103070095f ,-0.112629354f ,0.9882769f ,1f ,0.39693922f ,0.032544922f ,0.91726774f ,1f ,0.025179802f ,-0.07229123f ,0.99706566f ,1f ,0.45021585f ,-0.01932306f ,0.8927106f ,1f ,0.69788784f ,0.0138319265f ,0.7160736f ,1f ,0.7352707f ,-0.009938511f ,0.67770076f ,1f ,0.9711762f ,-0.009038488f ,0.23819153f ,1f ,0.793023f ,-0.008366424f ,-0.60913444f ,1f ,0.8246745f ,0.011727013f ,-0.5654861f ,1f ,0.9902996f ,-0.05228319f ,-0.12873729f ,1f ,0.9763948f ,0.010319405f ,-0.21574731f ,1f ,0.47581527f ,-0.03620176f ,-0.87880003f ,1f ,0.559316f ,0.01788588f ,-0.8287616f ,1f ,0.14923984f ,0.14545266f ,-0.97804457f ,1f ,0.05380881f ,0.11441257f ,-0.991975f ,1f ,-0.49627227f ,0.77465653f ,-0.39194542f ,1f ,-0.2173632f ,0.93612504f ,-0.2764476f ,1f ,-0.1229353f ,0.8970062f ,-0.42457846f ,1f ,-0.0377017f ,0.97131175f ,-0.23480225f ,1f ,-0.62459415f ,0.7499861f ,-0.21772252f ,1f ,-0.29484096f ,0.9434645f ,-0.15147144f ,1f ,-0.6751058f ,0.73772097f ,1.0967689e-7f ,1f ,-0.32837814f ,0.9427719f ,-0.057870295f ,1f ,0.7161343f ,0.69796246f ,6.193836e-8f ,1f ,0.65816826f ,0.72250855f ,-0.2116507f ,1f ,0.42492768f ,0.90352064f ,-0.055561204f ,1f ,0.37833795f ,0.91189885f ,-0.15906247f ,1f ,0.49942f ,0.7724107f ,-0.39237922f ,1f ,0.24445294f ,0.92588323f ,-0.2880679f ,1f ,0.035577912f ,0.97371787f ,-0.22496173f ,1f ,0.0023412989f ,0.9987246f ,-0.05043661f ,1f ,0.9999897f ,-0.00076796906f ,0.0044960673f ,1f ,0.9375625f ,-0.1820245f ,0.2963842f ,1f ,0.9613914f ,-0.05272655f ,0.27008623f ,1f ,0.17143057f ,0.8768423f ,-0.44917613f ,1f ,0.046466015f ,0.98333806f ,-0.1757474f ,1f });
  }
}
private class MFVec2f242 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.67388076f ,0.5521339f ,0.67872554f ,0.6047981f ,0.62170863f ,0.55985206f ,0.6123927f ,0.60522497f ,0.56920534f ,0.5518371f ,0.55403996f ,0.58664674f ,0.49638465f ,0.5511035f ,0.5241523f ,0.5142813f ,0.4491786f ,0.49860933f ,0.49346223f ,0.46997783f ,0.5593789f ,0.47778174f ,0.5364093f ,0.4425325f ,0.5768858f ,0.41704646f ,0.6047811f ,0.45836f ,0.6252109f ,0.38748375f ,0.6546914f ,0.44054332f ,0.62562805f ,0.50735193f ,0.66791505f ,0.49842897f ,0.58520436f ,0.5134409f ,0.46616971f ,0.42357174f ,0.42094734f ,0.434122f ,0.44773576f ,0.35888162f ,0.40927458f ,0.35710025f ,0.4155807f ,0.2901624f ,0.46066344f ,0.3025552f ,0.4442989f ,0.23010767f ,0.48957786f ,0.2586655f ,0.5128881f ,0.32681644f ,0.5389884f ,0.29175296f ,0.5919428f ,0.33667102f ,0.5525343f ,0.37346485f ,0.51458657f ,0.40643492f ,0.49119827f ,0.36376733f ,0.25916195f ,0.30460876f ,0.28779304f ,0.260325f ,0.30346552f ,0.3352983f ,0.34028763f ,0.30753064f ,0.34102184f ,0.3803511f ,0.37583122f ,0.36518562f ,0.39440995f ,0.42353806f ,0.34903726f ,0.4328541f ,0.3939837f ,0.48987088f ,0.3413197f ,0.48502633f ,0.29653725f ,0.436774f ,0.2876149f ,0.47906104f ,0.22972916f ,0.46583828f ,0.24754505f ,0.41592762f ,0.17666896f ,0.43635866f ,0.20623125f ,0.3880331f ,0.26696637f ,0.3705254f ,0.23171689f ,0.34755617f ,0.3026258f ,0.39635035f ,0.047849458f ,0.30072698f ,0.019291054f ,0.2554486f ,0.091738865f ,0.271812f ,0.07934556f ,0.22672959f ,0.14806512f ,0.25888368f ,0.14628318f ,0.22042263f ,0.22330509f ,0.23209435f ,0.21275552f ,0.27731702f ,0.19561906f ,0.325734f ,0.16264941f ,0.36368212f ,0.12585588f ,0.4030911f ,0.11600076f ,0.3240364f ,0.08093739f ,0.35013708f ,0.1529514f ,0.30234608f ,0.6748206f ,0.40693656f ,0.6531961f ,0.3712817f ,0.6319828f ,0.33543378f ,0.19612287f ,0.48596784f ,0.17507665f ,0.4925659f ,0.16046758f ,0.464344f ,0.14849305f ,0.48463354f ,0.12461908f ,0.44313136f ,0.12887122f ,0.46495268f ,0.6538041f ,0.33968535f ,0.6734852f ,0.35930672f ,0.6814183f ,0.38589013f ,0.69500756f ,0.59788936f ,0.68909484f ,0.5478667f ,0.6818349f ,0.49378124f ,0.66754293f ,0.44796726f ,0.5921637f ,0.32179442f ,0.55082935f ,0.2854854f ,0.5007203f ,0.24995892f ,0.45691046f ,0.22047548f ,0.23715337f ,0.47868964f ,0.28296736f ,0.492981f ,0.33705255f ,0.5002405f ,0.38707492f ,0.50615287f ,0.009659182f ,0.26806027f ,0.039143037f ,0.31186935f ,0.074669935f ,0.36197785f ,0.11097933f ,0.40331206f ,0.6879335f ,0.41222873f ,0.6867601f ,0.3515322f ,0.69505507f ,0.3858566f ,0.63384664f ,0.3214487f ,0.6605296f ,0.32785726f ,0.2014154f ,0.4990807f ,0.14071894f ,0.49790856f ,0.17504345f ,0.5062028f ,0.11063419f ,0.44499543f ,0.1170433f ,0.47167847f ,0.9496684f ,0.21777351f ,0.931383f ,0.21725774f ,0.949784f ,0.18830827f ,0.9315999f ,0.17313288f ,0.89953715f ,0.21671739f ,0.89999616f ,0.15425132f ,0.18647735f ,0.56476367f ,0.20433946f ,0.53285176f ,0.25020036f ,0.56476367f ,0.25020036f ,0.53289855f ,0.21931003f ,0.51477176f ,0.25020036f ,0.51476455f ,0.959737f ,0.21784689f ,0.25020036f ,0.50477815f ,0.05913539f ,0.56476367f ,0.1031719f ,0.56476367f ,0.05913539f ,0.61375725f ,0.10335596f ,0.61375725f ,0.14934698f ,0.56476367f ,0.14934698f ,0.61375725f ,0.20500682f ,0.61375725f ,0.3553408f ,0.56476367f ,0.35483006f ,0.61375725f ,0.31164467f ,0.56476367f ,0.29337162f ,0.61375725f ,0.40882388f ,0.56476367f ,0.40882388f ,0.61375725f ,0.45502055f ,0.56476367f ,0.45502055f ,0.61375725f ,0.89814883f ,0.3137227f ,0.8507546f ,0.3137227f ,0.8997436f ,0.2804502f ,0.8507546f ,0.26177713f ,0.89838445f ,0.3603935f ,0.8507546f ,0.36013716f ,0.897803f ,0.40470746f ,0.8507546f ,0.40470746f ,0.9018615f ,0.011819445f ,0.90186256f ,0.06042468f ,0.8507545f ,0.011819445f ,0.8507546f ,0.06042468f ,0.9019602f ,0.113672815f ,0.8507546f ,0.11579069f ,0.8507546f ,0.17268477f ,0.8507546f ,0.21723f ,0.25020036f ,0.61375725f ,0.27786347f ,0.51465285f ,0.2929143f ,0.5326873f ,0.94965893f ,0.24734402f ,0.93143123f ,0.26243752f });
  }
}
private class MFInt32243 {
  private org.web3d.x3d.jsail.fields.MFInt32 getArray() {
    return new org.web3d.x3d.jsail.fields.MFInt32(new int[] {0,1,2,2,1,3,1,4,3,3,4,5,6,7,8,8,7,9,10,11,12,12,11,13,12,13,14,14,13,15,16,17,18,18,17,19,19,20,18,18,20,21,9,7,10,10,7,11,8,5,6,6,5,4,14,15,16,16,15,17});
  }
}
private class MFVec3f244 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.06200948f ,0.6910942f ,-2.9928417f ,0.11523493f ,0.78967f ,-2.8562284f ,0.08724747f ,0.6750508f ,-2.9834526f ,0.15313822f ,0.785147f ,-2.8258429f ,0.15967855f ,0.85473186f ,-2.7543817f ,0.19264756f ,0.8432554f ,-2.7384536f ,0.20583265f ,0.90997446f ,-2.670503f ,0.23792747f ,0.9664714f ,-2.58899f ,0.23061123f ,0.8952387f ,-2.6620595f ,0.26471788f ,0.9429152f ,-2.5779068f ,0.29968962f ,0.9701018f ,-2.5143304f ,0.27767706f ,0.9884858f ,-2.5119953f ,0.32155013f ,0.9847418f ,-2.4434128f ,0.30163246f ,1.0060022f ,-2.4333441f ,0.2841978f ,0.94004565f ,-2.3815982f ,0.2588771f ,0.9542094f ,-2.36995f ,0.23668532f ,0.8895322f ,-2.3555284f ,0.21070203f ,0.9033098f ,-2.3456495f ,0.16726524f ,0.80318594f ,-2.3657067f ,0.13992584f ,0.8209743f ,-2.35381f ,0.044245712f ,0.68998605f ,-2.4038422f ,0.07610073f ,0.6734552f ,-2.4155822f });
  }
}
private class MFVec3f245 {
  private org.web3d.x3d.jsail.fields.MFVec3f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec3f(new float[] {0.3608542f ,0.022033777f ,-0.93236196f ,0.4598998f ,0.05775032f ,-0.88609093f ,0.37756467f ,0.01777664f ,-0.92581254f ,0.46056938f ,0.119052514f ,-0.87960356f ,0.4087713f ,0.3905981f ,-0.8248267f ,0.3988907f ,0.4462503f ,-0.80109113f ,0.3790548f ,0.622313f ,-0.6848679f ,0.63610506f ,0.646817f ,-0.4207114f ,0.40232754f ,0.62677217f ,-0.6673f ,0.6661441f ,0.62847155f ,-0.40159142f ,0.68205935f ,0.7305912f ,-0.032120463f ,0.68535024f ,0.7281214f ,-0.011586986f ,0.7235749f ,0.60404706f ,0.33401582f ,0.7148875f ,0.589475f ,0.37610513f ,0.6155831f ,0.48589686f ,0.62045276f ,0.59972507f ,0.47889295f ,0.64108616f ,0.54466057f ,0.30349386f ,0.7818161f ,0.5534655f ,0.28551415f ,0.78240496f ,0.5480111f ,0.039765716f ,0.8355253f ,0.56873864f ,0.029521214f ,0.8219884f ,0.4023924f ,0.03871f ,0.9146486f ,0.38542718f ,0.05249691f ,0.92124367f });
  }
}
private class MFVec4f246 {
  private org.web3d.x3d.jsail.fields.MFVec4f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec4f(new float[] {-0.8051776f ,0.51182836f ,-0.29953417f ,1f ,-0.87585735f ,0.19376655f ,-0.44195974f ,1f ,-0.8942206f ,0.26661777f ,-0.3595615f ,1f ,-0.8850939f ,0.13636099f ,-0.444988f ,1f ,-0.91253775f ,0.16161375f ,-0.37570712f ,1f ,-0.9096527f ,0.30291712f ,-0.28420627f ,1f ,-0.9219878f ,0.31724003f ,-0.22203004f ,1f ,-0.7625967f ,0.6100703f ,-0.21508259f ,1f ,-0.8958882f ,0.4195914f ,-0.14603962f ,1f ,-0.7428236f ,0.6073152f ,-0.281747f ,1f ,-0.73070186f ,0.6790753f ,-0.07022544f ,1f ,-0.7164773f ,0.67706454f ,0.16805938f ,1f ,-0.68610525f ,0.6823403f ,0.25233185f ,1f ,-0.698676f ,0.6237701f ,0.35037503f ,1f ,-0.77218974f ,0.5291622f ,0.35172492f ,1f ,-0.7913236f ,0.4739674f ,0.3862148f ,1f ,-0.8012007f ,0.46378532f ,0.37812775f ,1f ,-0.78650224f ,0.48824528f ,0.37819403f ,1f ,-0.73988104f ,0.48900598f ,0.4620056f ,1f ,-0.7096772f ,0.5228146f ,0.47225344f ,1f ,-0.8129174f ,0.4745782f ,0.3375513f ,1f ,-0.8376489f ,0.43866032f ,0.32545608f ,1f });
  }
}
private class MFVec2f247 {
  private org.web3d.x3d.jsail.fields.MFVec2f getArray() {
    return new org.web3d.x3d.jsail.fields.MFVec2f(new float[] {0.9909669f ,0.00990659f ,0.9909669f ,0.081162214f ,0.9773874f ,0.009906471f ,0.97738737f ,0.081162155f ,0.9909668f ,0.12400401f ,0.97738737f ,0.124004066f ,0.9909669f ,0.16033858f ,0.99096704f ,0.20545208f ,0.97738737f ,0.16033834f ,0.97738737f ,0.20545202f ,0.97738737f ,0.2399106f ,0.9909669f ,0.2399106f ,0.97738737f ,0.27581513f ,0.99096704f ,0.27581513f ,0.97738737f ,0.3169213f ,0.9909669f ,0.3169213f ,0.97738755f ,0.35053885f ,0.99096704f ,0.35053885f ,0.97738737f ,0.39937466f ,0.9909669f ,0.39937466f ,0.9909669f ,0.4737965f ,0.97738737f ,0.4737966f });
  }
}
}
